Fix QT5 compilation errors

This commit is contained in:
Spiros
2025-05-30 23:40:32 +03:00
parent 7f50f8a5d3
commit e998352834
34 changed files with 6897 additions and 7013 deletions

View File

@@ -4,6 +4,7 @@
#include <fcntl.h>
#include <sys/ioctl.h>
#include <unistd.h>
#include <QArrayDataPointer>
QVector<unsigned char> AsciiView::readSMARTData(const QString& device_path) {
int fd;
@@ -14,7 +15,12 @@ QVector<unsigned char> AsciiView::readSMARTData(const QString& device_path) {
unsigned char sense_buffer[SENSE_BUFFER_LEN];
sg_io_hdr_t io_hdr;
QVector<unsigned char> 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<unsigned char> AsciiView::readSMARTData(const QString& device_path) {
if (ioctl(fd, SG_IO, &io_hdr) < 0) {
close(fd);
return result;
}
result.append(QArrayDataPointer<unsigned char>::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<unsigned char> AsciiView::readSMARTData(const QString& device_path) {
if (ioctl(fd, SG_IO, &io_hdr) < 0) {
close(fd);
return result;
}
result.append(QArrayDataPointer<unsigned char>::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;
}

View File

@@ -58,7 +58,7 @@ void GridView::resizeEvent(QResizeEvent *) {
}
void GridView::setDisks(const QVector<DiskItem> &newDisks) {
disks = newDisks;
disks = newDisks.toList();
populateGrid();
}

View File

@@ -1,449 +1,445 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="af_ZA" sourcelanguage="en">
<context>
<context>
<name>GridView</name>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
</message>
</context>
<context>
</context>
<context>
<name>MainWindow</name>
<message>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Firmware</source>
<translation>Firmware</translation>
<source>Firmware</source>
<translation>Firmware</translation>
</message>
<message>
<source>Serial Number</source>
<translation>Serial Number</translation>
<source>Serial Number</source>
<translation>Serial Number</translation>
</message>
<message>
<source>Protocol</source>
<translation>Protocol</translation>
<source>Protocol</source>
<translation>Protocol</translation>
</message>
<message>
<source>Device Node</source>
<translation>Device Node</translation>
<source>Device Node</source>
<translation>Device Node</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Type</source>
<translation>Type</translation>
<source>Type</source>
<translation>Type</translation>
</message>
<message>
<source>Total Host Reads</source>
<translation>Total Host Reads</translation>
<source>Total Host Reads</source>
<translation>Total Host Reads</translation>
</message>
<message>
<source>Total Host Writes</source>
<translation>Total Host Writes</translation>
<source>Total Host Writes</source>
<translation>Total Host Writes</translation>
</message>
<message>
<source>Rotation Rate</source>
<translation>Rotation Rate</translation>
<source>Rotation Rate</source>
<translation>Rotation Rate</translation>
</message>
<message>
<source>Power On Count</source>
<translation>Power On Count</translation>
<source>Power On Count</source>
<translation>Power On Count</translation>
</message>
<message>
<source>Power On Hours</source>
<translation>Power On Hours</translation>
<source>Power On Hours</source>
<translation>Power On Hours</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>File</source>
<translation>File</translation>
<source>File</source>
<translation>File</translation>
</message>
<message>
<source>Settings</source>
<translation>Settings</translation>
<source>Settings</source>
<translation>Settings</translation>
</message>
<message>
<source>&amp;Help</source>
<translation>&amp;Help</translation>
<source>&amp;Help</source>
<translation>&amp;Help</translation>
</message>
<message>
<source>De&amp;vice</source>
<translation>De&amp;vice</translation>
<source>De&amp;vice</source>
<translation>De&amp;vice</translation>
</message>
<message>
<source>Disk</source>
<translation>Disk</translation>
<source>Disk</source>
<translation>Disk</translation>
</message>
<message>
<source>&amp;Quit</source>
<translation>&amp;Quit</translation>
<source>&amp;Quit</source>
<translation>&amp;Quit</translation>
</message>
<message>
<source>&amp;Refresh Devices</source>
<translation>&amp;Refresh Devices</translation>
<source>&amp;Refresh Devices</source>
<translation>&amp;Refresh Devices</translation>
</message>
<message>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
</message>
<message>
<source>&amp;About QDiskInfo</source>
<translation>&amp;About QDiskInfo</translation>
<source>&amp;About QDiskInfo</source>
<translation>&amp;About QDiskInfo</translation>
</message>
<message>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ignore C4 (Reallocated Event Count)</translation>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ignore C4 (Reallocated Event Count)</translation>
</message>
<message>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Convert Raw values to HEX</translation>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Convert Raw values to HEX</translation>
</message>
<message>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Use Fahrenheit</translation>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Use Fahrenheit</translation>
</message>
<message>
<source>Self Test</source>
<translation>Self Test</translation>
<source>Self Test</source>
<translation>Self Test</translation>
</message>
<message>
<source>Cyclic &amp;Navigation</source>
<translation>Cyclic &amp;Navigation</translation>
<source>Cyclic &amp;Navigation</source>
<translation>Cyclic &amp;Navigation</translation>
</message>
<message>
<source>Use &amp;GB instead of TB</source>
<translation>Use &amp;GB instead of TB</translation>
<source>Use &amp;GB instead of TB</source>
<translation>Use &amp;GB instead of TB</translation>
</message>
<message>
<source>About &amp;Qt</source>
<translation>About &amp;Qt</translation>
<source>About &amp;Qt</source>
<translation>About &amp;Qt</translation>
</message>
<message>
<source>Start Self Test</source>
<translation>Start Self Test</translation>
<source>Start Self Test</source>
<translation>Start Self Test</translation>
</message>
<message>
<source>Self Test Log</source>
<translation>Self Test Log</translation>
<source>Self Test Log</source>
<translation>Self Test Log</translation>
</message>
<message>
<source>Critical Warning</source>
<translation>Critical Warning</translation>
<source>Critical Warning</source>
<translation>Critical Warning</translation>
</message>
<message>
<source>Grown Defect List</source>
<translation>Grown Defect List</translation>
<source>Grown Defect List</source>
<translation>Grown Defect List</translation>
</message>
<message>
<source>Good</source>
<translation>Good</translation>
<source>Good</source>
<translation>Good</translation>
</message>
<message>
<source>Caution</source>
<translation>Caution</translation>
<source>Caution</source>
<translation>Caution</translation>
</message>
<message>
<source>Bad</source>
<translation>Bad</translation>
<source>Bad</source>
<translation>Bad</translation>
</message>
<message>
<source>Unknown</source>
<translation>Unknown</translation>
<source>Unknown</source>
<translation>Unknown</translation>
</message>
<message>
<source>Status</source>
<translation>Status</translation>
<source>Status</source>
<translation>Status</translation>
</message>
<message>
<source>count</source>
<translation>count</translation>
<source>count</source>
<translation>count</translation>
</message>
<message>
<source>hours</source>
<translation>hours</translation>
<source>hours</source>
<translation>hours</translation>
</message>
<message>
<source>Short</source>
<translation>Short</translation>
<source>Short</source>
<translation>Short</translation>
</message>
<message>
<source>Conveyance</source>
<translation>Conveyance</translation>
<source>Conveyance</source>
<translation>Conveyance</translation>
</message>
<message>
<source>Extended</source>
<translation>Extended</translation>
<source>Extended</source>
<translation>Extended</translation>
</message>
<message>
<source>Min.)</source>
<translation>Min.)</translation>
<source>Min.)</source>
<translation>Min.)</translation>
</message>
<message>
<source>Read</source>
<translation>Read</translation>
<source>Read</source>
<translation>Read</translation>
</message>
<message>
<source>Write</source>
<translation>Write</translation>
<source>Write</source>
<translation>Write</translation>
</message>
<message>
<source>Verify</source>
<translation>Verify</translation>
<source>Verify</source>
<translation>Verify</translation>
</message>
<message>
<source>ID</source>
<translation>ID</translation>
<source>ID</source>
<translation>ID</translation>
</message>
<message>
<source>Attribute Name</source>
<translation>Attribute Name</translation>
<source>Attribute Name</source>
<translation>Attribute Name</translation>
</message>
<message>
<source>Raw Values</source>
<translation>Raw Values</translation>
<source>Raw Values</source>
<translation>Raw Values</translation>
</message>
<message>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Available spare capacity has fallen below the threshold</translation>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Available spare capacity has fallen below the threshold</translation>
</message>
<message>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Temperature error (Overheat or Overcool)</translation>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Temperature error (Overheat or Overcool)</translation>
</message>
<message>
<source>NVM subsystem reliability has been degraded</source>
<translation>NVM subsystem reliability has been degraded</translation>
<source>NVM subsystem reliability has been degraded</source>
<translation>NVM subsystem reliability has been degraded</translation>
</message>
<message>
<source>Media has been placed in Read Only Mode</source>
<translation>Media has been placed in Read Only Mode</translation>
<source>Media has been placed in Read Only Mode</source>
<translation>Media has been placed in Read Only Mode</translation>
</message>
<message>
<source>Volatile memory backup device has Failed</source>
<translation>Volatile memory backup device has Failed</translation>
<source>Volatile memory backup device has Failed</source>
<translation>Volatile memory backup device has Failed</translation>
</message>
<message>
<source>Persistent memory region has become Read-Only</source>
<translation>Persistent memory region has become Read-Only</translation>
<source>Persistent memory region has become Read-Only</source>
<translation>Persistent memory region has become Read-Only</translation>
</message>
<message>
<source>Current</source>
<translation>Current</translation>
<source>Current</source>
<translation>Current</translation>
</message>
<message>
<source>Worst</source>
<translation>Worst</translation>
<source>Worst</source>
<translation>Worst</translation>
</message>
<message>
<source>Threshold</source>
<translation>Threshold</translation>
<source>Threshold</source>
<translation>Threshold</translation>
</message>
<message>
<source>Empty JSON</source>
<translation>Empty JSON</translation>
<source>Empty JSON</source>
<translation>Empty JSON</translation>
</message>
<message>
<source>The JSON is empty</source>
<translation>The JSON is empty</translation>
<source>The JSON is empty</source>
<translation>The JSON is empty</translation>
</message>
<message>
<source>Save JSON</source>
<translation>Save JSON</translation>
<source>Save JSON</source>
<translation>Save JSON</translation>
</message>
<message>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;All Files (*)</translation>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;All Files (*)</translation>
</message>
<message>
<source>Unable to open file for writing</source>
<translation>Unable to open file for writing</translation>
<source>Unable to open file for writing</source>
<translation>Unable to open file for writing</translation>
</message>
<message>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>An ATA and NVMe S.M.A.R.T. data viewer for Linux</translation>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>An ATA and NVMe S.M.A.R.T. data viewer for Linux</translation>
</message>
<message>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Licensed under the GNU G.P.L. Version 3</translation>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Licensed under the GNU G.P.L. Version 3</translation>
</message>
<message>
<source>Made by Samantas5855</source>
<translation>Made by Samantas5855</translation>
<source>Made by Samantas5855</source>
<translation>Made by Samantas5855</translation>
</message>
<message>
<source>Version</source>
<translation>Version</translation>
<source>Version</source>
<translation>Version</translation>
</message>
<message>
<source>About QDiskInfo</source>
<translation>About QDiskInfo</translation>
<source>About QDiskInfo</source>
<translation>About QDiskInfo</translation>
</message>
<message>
<source>About Qt</source>
<translation>About Qt</translation>
<source>About Qt</source>
<translation>About Qt</translation>
</message>
<message>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
</message>
<message>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
</message>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
</message>
<message>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
</message>
<message>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
</message>
<message>
<source>Success</source>
<translation type="unfinished">Success</translation>
<source>Success</source>
<translation type="unfinished">Success</translation>
</message>
<message>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
</message>
<message>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
</message>
<message>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
</message>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
</message>
<message>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
</message>
<message>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
</message>
<message>
<source>&amp;Save JSON</source>
<translation>&amp;Save JSON</translation>
</message>
</context>
<context>
</context>
<context>
<name>QObject</name>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
</message>
<message>
<source>smartctl was not found, please install it!</source>
<translation>smartctl was not found, please install it!</translation>
<source>smartctl was not found, please install it!</source>
<translation>smartctl was not found, please install it!</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo needs root access in order to abort a self-test!</translation>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo needs root access in order to abort a self-test!</translation>
</message>
<message>
<source>Test Requested</source>
<translation>Test Requested</translation>
<source>Test Requested</source>
<translation>Test Requested</translation>
</message>
<message>
<source>The self-test has been aborted</source>
<translation>The self-test has been aborted</translation>
<source>The self-test has been aborted</source>
<translation>The self-test has been aborted</translation>
</message>
<message>
<source>Error: Something went wrong</source>
<translation>Error: Something went wrong</translation>
<source>Error: Something went wrong</source>
<translation>Error: Something went wrong</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo needs root access in order to request a self-test!</translation>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo needs root access in order to request a self-test!</translation>
</message>
<message>
<source>remaining</source>
<translation>remaining</translation>
<source>remaining</source>
<translation>remaining</translation>
</message>
<message>
<source>completed</source>
<translation>completed</translation>
<source>completed</source>
<translation>completed</translation>
</message>
<message>
<source>Test Already Running</source>
<translation>Test Already Running</translation>
<source>Test Already Running</source>
<translation>Test Already Running</translation>
</message>
<message>
<source>A self-test is already being performed</source>
<translation>A self-test is already being performed</translation>
<source>A self-test is already being performed</source>
<translation>A self-test is already being performed</translation>
</message>
<message>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>You can press the Ok button in order to abort the test that is currently running</translation>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>You can press the Ok button in order to abort the test that is currently running</translation>
</message>
<message>
<source>A self-test has been requested successfully</source>
<translation>A self-test has been requested successfully</translation>
<source>A self-test has been requested successfully</source>
<translation>A self-test has been requested successfully</translation>
</message>
<message>
<source>It will be completed after</source>
<translation>It will be completed after</translation>
<source>It will be completed after</source>
<translation>It will be completed after</translation>
</message>
<message>
<source>minutes</source>
<translation>minutes</translation>
<source>minutes</source>
<translation>minutes</translation>
</message>
<message>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
</message>
<message>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
</message>
</context>
</context>
</TS>

View File

@@ -1,449 +1,445 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="ar_SA" sourcelanguage="en">
<context>
<context>
<name>GridView</name>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
</message>
</context>
<context>
</context>
<context>
<name>MainWindow</name>
<message>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Firmware</source>
<translation>Firmware</translation>
<source>Firmware</source>
<translation>Firmware</translation>
</message>
<message>
<source>Serial Number</source>
<translation>Serial Number</translation>
<source>Serial Number</source>
<translation>Serial Number</translation>
</message>
<message>
<source>Protocol</source>
<translation>Protocol</translation>
<source>Protocol</source>
<translation>Protocol</translation>
</message>
<message>
<source>Device Node</source>
<translation>Device Node</translation>
<source>Device Node</source>
<translation>Device Node</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Type</source>
<translation>Type</translation>
<source>Type</source>
<translation>Type</translation>
</message>
<message>
<source>Total Host Reads</source>
<translation>Total Host Reads</translation>
<source>Total Host Reads</source>
<translation>Total Host Reads</translation>
</message>
<message>
<source>Total Host Writes</source>
<translation>Total Host Writes</translation>
<source>Total Host Writes</source>
<translation>Total Host Writes</translation>
</message>
<message>
<source>Rotation Rate</source>
<translation>Rotation Rate</translation>
<source>Rotation Rate</source>
<translation>Rotation Rate</translation>
</message>
<message>
<source>Power On Count</source>
<translation>Power On Count</translation>
<source>Power On Count</source>
<translation>Power On Count</translation>
</message>
<message>
<source>Power On Hours</source>
<translation>Power On Hours</translation>
<source>Power On Hours</source>
<translation>Power On Hours</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>File</source>
<translation>File</translation>
<source>File</source>
<translation>File</translation>
</message>
<message>
<source>Settings</source>
<translation>Settings</translation>
<source>Settings</source>
<translation>Settings</translation>
</message>
<message>
<source>&amp;Help</source>
<translation>&amp;Help</translation>
<source>&amp;Help</source>
<translation>&amp;Help</translation>
</message>
<message>
<source>De&amp;vice</source>
<translation>De&amp;vice</translation>
<source>De&amp;vice</source>
<translation>De&amp;vice</translation>
</message>
<message>
<source>Disk</source>
<translation>Disk</translation>
<source>Disk</source>
<translation>Disk</translation>
</message>
<message>
<source>&amp;Quit</source>
<translation>&amp;Quit</translation>
<source>&amp;Quit</source>
<translation>&amp;Quit</translation>
</message>
<message>
<source>&amp;Refresh Devices</source>
<translation>&amp;Refresh Devices</translation>
<source>&amp;Refresh Devices</source>
<translation>&amp;Refresh Devices</translation>
</message>
<message>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
</message>
<message>
<source>&amp;About QDiskInfo</source>
<translation>&amp;About QDiskInfo</translation>
<source>&amp;About QDiskInfo</source>
<translation>&amp;About QDiskInfo</translation>
</message>
<message>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ignore C4 (Reallocated Event Count)</translation>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ignore C4 (Reallocated Event Count)</translation>
</message>
<message>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Convert Raw values to HEX</translation>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Convert Raw values to HEX</translation>
</message>
<message>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Use Fahrenheit</translation>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Use Fahrenheit</translation>
</message>
<message>
<source>Self Test</source>
<translation>Self Test</translation>
<source>Self Test</source>
<translation>Self Test</translation>
</message>
<message>
<source>Cyclic &amp;Navigation</source>
<translation>Cyclic &amp;Navigation</translation>
<source>Cyclic &amp;Navigation</source>
<translation>Cyclic &amp;Navigation</translation>
</message>
<message>
<source>Use &amp;GB instead of TB</source>
<translation>Use &amp;GB instead of TB</translation>
<source>Use &amp;GB instead of TB</source>
<translation>Use &amp;GB instead of TB</translation>
</message>
<message>
<source>About &amp;Qt</source>
<translation>About &amp;Qt</translation>
<source>About &amp;Qt</source>
<translation>About &amp;Qt</translation>
</message>
<message>
<source>Start Self Test</source>
<translation>Start Self Test</translation>
<source>Start Self Test</source>
<translation>Start Self Test</translation>
</message>
<message>
<source>Self Test Log</source>
<translation>Self Test Log</translation>
<source>Self Test Log</source>
<translation>Self Test Log</translation>
</message>
<message>
<source>Critical Warning</source>
<translation>Critical Warning</translation>
<source>Critical Warning</source>
<translation>Critical Warning</translation>
</message>
<message>
<source>Grown Defect List</source>
<translation>Grown Defect List</translation>
<source>Grown Defect List</source>
<translation>Grown Defect List</translation>
</message>
<message>
<source>Good</source>
<translation>Good</translation>
<source>Good</source>
<translation>Good</translation>
</message>
<message>
<source>Caution</source>
<translation>Caution</translation>
<source>Caution</source>
<translation>Caution</translation>
</message>
<message>
<source>Bad</source>
<translation>Bad</translation>
<source>Bad</source>
<translation>Bad</translation>
</message>
<message>
<source>Unknown</source>
<translation>Unknown</translation>
<source>Unknown</source>
<translation>Unknown</translation>
</message>
<message>
<source>Status</source>
<translation>Status</translation>
<source>Status</source>
<translation>Status</translation>
</message>
<message>
<source>count</source>
<translation>count</translation>
<source>count</source>
<translation>count</translation>
</message>
<message>
<source>hours</source>
<translation>hours</translation>
<source>hours</source>
<translation>hours</translation>
</message>
<message>
<source>Short</source>
<translation>Short</translation>
<source>Short</source>
<translation>Short</translation>
</message>
<message>
<source>Conveyance</source>
<translation>Conveyance</translation>
<source>Conveyance</source>
<translation>Conveyance</translation>
</message>
<message>
<source>Extended</source>
<translation>Extended</translation>
<source>Extended</source>
<translation>Extended</translation>
</message>
<message>
<source>Min.)</source>
<translation>Min.)</translation>
<source>Min.)</source>
<translation>Min.)</translation>
</message>
<message>
<source>Read</source>
<translation>Read</translation>
<source>Read</source>
<translation>Read</translation>
</message>
<message>
<source>Write</source>
<translation>Write</translation>
<source>Write</source>
<translation>Write</translation>
</message>
<message>
<source>Verify</source>
<translation>Verify</translation>
<source>Verify</source>
<translation>Verify</translation>
</message>
<message>
<source>ID</source>
<translation>ID</translation>
<source>ID</source>
<translation>ID</translation>
</message>
<message>
<source>Attribute Name</source>
<translation>Attribute Name</translation>
<source>Attribute Name</source>
<translation>Attribute Name</translation>
</message>
<message>
<source>Raw Values</source>
<translation>Raw Values</translation>
<source>Raw Values</source>
<translation>Raw Values</translation>
</message>
<message>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Available spare capacity has fallen below the threshold</translation>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Available spare capacity has fallen below the threshold</translation>
</message>
<message>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Temperature error (Overheat or Overcool)</translation>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Temperature error (Overheat or Overcool)</translation>
</message>
<message>
<source>NVM subsystem reliability has been degraded</source>
<translation>NVM subsystem reliability has been degraded</translation>
<source>NVM subsystem reliability has been degraded</source>
<translation>NVM subsystem reliability has been degraded</translation>
</message>
<message>
<source>Media has been placed in Read Only Mode</source>
<translation>Media has been placed in Read Only Mode</translation>
<source>Media has been placed in Read Only Mode</source>
<translation>Media has been placed in Read Only Mode</translation>
</message>
<message>
<source>Volatile memory backup device has Failed</source>
<translation>Volatile memory backup device has Failed</translation>
<source>Volatile memory backup device has Failed</source>
<translation>Volatile memory backup device has Failed</translation>
</message>
<message>
<source>Persistent memory region has become Read-Only</source>
<translation>Persistent memory region has become Read-Only</translation>
<source>Persistent memory region has become Read-Only</source>
<translation>Persistent memory region has become Read-Only</translation>
</message>
<message>
<source>Current</source>
<translation>Current</translation>
<source>Current</source>
<translation>Current</translation>
</message>
<message>
<source>Worst</source>
<translation>Worst</translation>
<source>Worst</source>
<translation>Worst</translation>
</message>
<message>
<source>Threshold</source>
<translation>Threshold</translation>
<source>Threshold</source>
<translation>Threshold</translation>
</message>
<message>
<source>Empty JSON</source>
<translation>Empty JSON</translation>
<source>Empty JSON</source>
<translation>Empty JSON</translation>
</message>
<message>
<source>The JSON is empty</source>
<translation>The JSON is empty</translation>
<source>The JSON is empty</source>
<translation>The JSON is empty</translation>
</message>
<message>
<source>Save JSON</source>
<translation>Save JSON</translation>
<source>Save JSON</source>
<translation>Save JSON</translation>
</message>
<message>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;All Files (*)</translation>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;All Files (*)</translation>
</message>
<message>
<source>Unable to open file for writing</source>
<translation>Unable to open file for writing</translation>
<source>Unable to open file for writing</source>
<translation>Unable to open file for writing</translation>
</message>
<message>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>An ATA and NVMe S.M.A.R.T. data viewer for Linux</translation>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>An ATA and NVMe S.M.A.R.T. data viewer for Linux</translation>
</message>
<message>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Licensed under the GNU G.P.L. Version 3</translation>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Licensed under the GNU G.P.L. Version 3</translation>
</message>
<message>
<source>Made by Samantas5855</source>
<translation>Made by Samantas5855</translation>
<source>Made by Samantas5855</source>
<translation>Made by Samantas5855</translation>
</message>
<message>
<source>Version</source>
<translation>Version</translation>
<source>Version</source>
<translation>Version</translation>
</message>
<message>
<source>About QDiskInfo</source>
<translation>About QDiskInfo</translation>
<source>About QDiskInfo</source>
<translation>About QDiskInfo</translation>
</message>
<message>
<source>About Qt</source>
<translation>About Qt</translation>
<source>About Qt</source>
<translation>About Qt</translation>
</message>
<message>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
</message>
<message>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
</message>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
</message>
<message>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
</message>
<message>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
</message>
<message>
<source>Success</source>
<translation type="unfinished">Success</translation>
<source>Success</source>
<translation type="unfinished">Success</translation>
</message>
<message>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
</message>
<message>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
</message>
<message>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
</message>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
</message>
<message>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
</message>
<message>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
</message>
<message>
<source>&amp;Save JSON</source>
<translation>&amp;Save JSON</translation>
</message>
</context>
<context>
</context>
<context>
<name>QObject</name>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
</message>
<message>
<source>smartctl was not found, please install it!</source>
<translation>smartctl was not found, please install it!</translation>
<source>smartctl was not found, please install it!</source>
<translation>smartctl was not found, please install it!</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo needs root access in order to abort a self-test!</translation>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo needs root access in order to abort a self-test!</translation>
</message>
<message>
<source>Test Requested</source>
<translation>Test Requested</translation>
<source>Test Requested</source>
<translation>Test Requested</translation>
</message>
<message>
<source>The self-test has been aborted</source>
<translation>The self-test has been aborted</translation>
<source>The self-test has been aborted</source>
<translation>The self-test has been aborted</translation>
</message>
<message>
<source>Error: Something went wrong</source>
<translation>Error: Something went wrong</translation>
<source>Error: Something went wrong</source>
<translation>Error: Something went wrong</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo needs root access in order to request a self-test!</translation>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo needs root access in order to request a self-test!</translation>
</message>
<message>
<source>remaining</source>
<translation>remaining</translation>
<source>remaining</source>
<translation>remaining</translation>
</message>
<message>
<source>completed</source>
<translation>completed</translation>
<source>completed</source>
<translation>completed</translation>
</message>
<message>
<source>Test Already Running</source>
<translation>Test Already Running</translation>
<source>Test Already Running</source>
<translation>Test Already Running</translation>
</message>
<message>
<source>A self-test is already being performed</source>
<translation>A self-test is already being performed</translation>
<source>A self-test is already being performed</source>
<translation>A self-test is already being performed</translation>
</message>
<message>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>You can press the Ok button in order to abort the test that is currently running</translation>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>You can press the Ok button in order to abort the test that is currently running</translation>
</message>
<message>
<source>A self-test has been requested successfully</source>
<translation>A self-test has been requested successfully</translation>
<source>A self-test has been requested successfully</source>
<translation>A self-test has been requested successfully</translation>
</message>
<message>
<source>It will be completed after</source>
<translation>It will be completed after</translation>
<source>It will be completed after</source>
<translation>It will be completed after</translation>
</message>
<message>
<source>minutes</source>
<translation>minutes</translation>
<source>minutes</source>
<translation>minutes</translation>
</message>
<message>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
</message>
<message>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
</message>
</context>
</context>
</TS>

View File

@@ -1,449 +1,445 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="ca_ES" sourcelanguage="en">
<context>
<context>
<name>GridView</name>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
</message>
</context>
<context>
</context>
<context>
<name>MainWindow</name>
<message>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Firmware</source>
<translation>Firmware</translation>
<source>Firmware</source>
<translation>Firmware</translation>
</message>
<message>
<source>Serial Number</source>
<translation>Serial Number</translation>
<source>Serial Number</source>
<translation>Serial Number</translation>
</message>
<message>
<source>Protocol</source>
<translation>Protocol</translation>
<source>Protocol</source>
<translation>Protocol</translation>
</message>
<message>
<source>Device Node</source>
<translation>Device Node</translation>
<source>Device Node</source>
<translation>Device Node</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Type</source>
<translation>Type</translation>
<source>Type</source>
<translation>Type</translation>
</message>
<message>
<source>Total Host Reads</source>
<translation>Total Host Reads</translation>
<source>Total Host Reads</source>
<translation>Total Host Reads</translation>
</message>
<message>
<source>Total Host Writes</source>
<translation>Total Host Writes</translation>
<source>Total Host Writes</source>
<translation>Total Host Writes</translation>
</message>
<message>
<source>Rotation Rate</source>
<translation>Rotation Rate</translation>
<source>Rotation Rate</source>
<translation>Rotation Rate</translation>
</message>
<message>
<source>Power On Count</source>
<translation>Power On Count</translation>
<source>Power On Count</source>
<translation>Power On Count</translation>
</message>
<message>
<source>Power On Hours</source>
<translation>Power On Hours</translation>
<source>Power On Hours</source>
<translation>Power On Hours</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>File</source>
<translation>File</translation>
<source>File</source>
<translation>File</translation>
</message>
<message>
<source>Settings</source>
<translation>Settings</translation>
<source>Settings</source>
<translation>Settings</translation>
</message>
<message>
<source>&amp;Help</source>
<translation>&amp;Help</translation>
<source>&amp;Help</source>
<translation>&amp;Help</translation>
</message>
<message>
<source>De&amp;vice</source>
<translation>De&amp;vice</translation>
<source>De&amp;vice</source>
<translation>De&amp;vice</translation>
</message>
<message>
<source>Disk</source>
<translation>Disk</translation>
<source>Disk</source>
<translation>Disk</translation>
</message>
<message>
<source>&amp;Quit</source>
<translation>&amp;Quit</translation>
<source>&amp;Quit</source>
<translation>&amp;Quit</translation>
</message>
<message>
<source>&amp;Refresh Devices</source>
<translation>&amp;Refresh Devices</translation>
<source>&amp;Refresh Devices</source>
<translation>&amp;Refresh Devices</translation>
</message>
<message>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
</message>
<message>
<source>&amp;About QDiskInfo</source>
<translation>&amp;About QDiskInfo</translation>
<source>&amp;About QDiskInfo</source>
<translation>&amp;About QDiskInfo</translation>
</message>
<message>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ignore C4 (Reallocated Event Count)</translation>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ignore C4 (Reallocated Event Count)</translation>
</message>
<message>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Convert Raw values to HEX</translation>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Convert Raw values to HEX</translation>
</message>
<message>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Use Fahrenheit</translation>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Use Fahrenheit</translation>
</message>
<message>
<source>Self Test</source>
<translation>Self Test</translation>
<source>Self Test</source>
<translation>Self Test</translation>
</message>
<message>
<source>Cyclic &amp;Navigation</source>
<translation>Cyclic &amp;Navigation</translation>
<source>Cyclic &amp;Navigation</source>
<translation>Cyclic &amp;Navigation</translation>
</message>
<message>
<source>Use &amp;GB instead of TB</source>
<translation>Use &amp;GB instead of TB</translation>
<source>Use &amp;GB instead of TB</source>
<translation>Use &amp;GB instead of TB</translation>
</message>
<message>
<source>About &amp;Qt</source>
<translation>About &amp;Qt</translation>
<source>About &amp;Qt</source>
<translation>About &amp;Qt</translation>
</message>
<message>
<source>Start Self Test</source>
<translation>Start Self Test</translation>
<source>Start Self Test</source>
<translation>Start Self Test</translation>
</message>
<message>
<source>Self Test Log</source>
<translation>Self Test Log</translation>
<source>Self Test Log</source>
<translation>Self Test Log</translation>
</message>
<message>
<source>Critical Warning</source>
<translation>Critical Warning</translation>
<source>Critical Warning</source>
<translation>Critical Warning</translation>
</message>
<message>
<source>Grown Defect List</source>
<translation>Grown Defect List</translation>
<source>Grown Defect List</source>
<translation>Grown Defect List</translation>
</message>
<message>
<source>Good</source>
<translation>Good</translation>
<source>Good</source>
<translation>Good</translation>
</message>
<message>
<source>Caution</source>
<translation>Caution</translation>
<source>Caution</source>
<translation>Caution</translation>
</message>
<message>
<source>Bad</source>
<translation>Bad</translation>
<source>Bad</source>
<translation>Bad</translation>
</message>
<message>
<source>Unknown</source>
<translation>Unknown</translation>
<source>Unknown</source>
<translation>Unknown</translation>
</message>
<message>
<source>Status</source>
<translation>Status</translation>
<source>Status</source>
<translation>Status</translation>
</message>
<message>
<source>count</source>
<translation>count</translation>
<source>count</source>
<translation>count</translation>
</message>
<message>
<source>hours</source>
<translation>hours</translation>
<source>hours</source>
<translation>hours</translation>
</message>
<message>
<source>Short</source>
<translation>Short</translation>
<source>Short</source>
<translation>Short</translation>
</message>
<message>
<source>Conveyance</source>
<translation>Conveyance</translation>
<source>Conveyance</source>
<translation>Conveyance</translation>
</message>
<message>
<source>Extended</source>
<translation>Extended</translation>
<source>Extended</source>
<translation>Extended</translation>
</message>
<message>
<source>Min.)</source>
<translation>Min.)</translation>
<source>Min.)</source>
<translation>Min.)</translation>
</message>
<message>
<source>Read</source>
<translation>Read</translation>
<source>Read</source>
<translation>Read</translation>
</message>
<message>
<source>Write</source>
<translation>Write</translation>
<source>Write</source>
<translation>Write</translation>
</message>
<message>
<source>Verify</source>
<translation>Verify</translation>
<source>Verify</source>
<translation>Verify</translation>
</message>
<message>
<source>ID</source>
<translation>ID</translation>
<source>ID</source>
<translation>ID</translation>
</message>
<message>
<source>Attribute Name</source>
<translation>Attribute Name</translation>
<source>Attribute Name</source>
<translation>Attribute Name</translation>
</message>
<message>
<source>Raw Values</source>
<translation>Raw Values</translation>
<source>Raw Values</source>
<translation>Raw Values</translation>
</message>
<message>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Available spare capacity has fallen below the threshold</translation>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Available spare capacity has fallen below the threshold</translation>
</message>
<message>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Temperature error (Overheat or Overcool)</translation>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Temperature error (Overheat or Overcool)</translation>
</message>
<message>
<source>NVM subsystem reliability has been degraded</source>
<translation>NVM subsystem reliability has been degraded</translation>
<source>NVM subsystem reliability has been degraded</source>
<translation>NVM subsystem reliability has been degraded</translation>
</message>
<message>
<source>Media has been placed in Read Only Mode</source>
<translation>Media has been placed in Read Only Mode</translation>
<source>Media has been placed in Read Only Mode</source>
<translation>Media has been placed in Read Only Mode</translation>
</message>
<message>
<source>Volatile memory backup device has Failed</source>
<translation>Volatile memory backup device has Failed</translation>
<source>Volatile memory backup device has Failed</source>
<translation>Volatile memory backup device has Failed</translation>
</message>
<message>
<source>Persistent memory region has become Read-Only</source>
<translation>Persistent memory region has become Read-Only</translation>
<source>Persistent memory region has become Read-Only</source>
<translation>Persistent memory region has become Read-Only</translation>
</message>
<message>
<source>Current</source>
<translation>Current</translation>
<source>Current</source>
<translation>Current</translation>
</message>
<message>
<source>Worst</source>
<translation>Worst</translation>
<source>Worst</source>
<translation>Worst</translation>
</message>
<message>
<source>Threshold</source>
<translation>Threshold</translation>
<source>Threshold</source>
<translation>Threshold</translation>
</message>
<message>
<source>Empty JSON</source>
<translation>Empty JSON</translation>
<source>Empty JSON</source>
<translation>Empty JSON</translation>
</message>
<message>
<source>The JSON is empty</source>
<translation>The JSON is empty</translation>
<source>The JSON is empty</source>
<translation>The JSON is empty</translation>
</message>
<message>
<source>Save JSON</source>
<translation>Save JSON</translation>
<source>Save JSON</source>
<translation>Save JSON</translation>
</message>
<message>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;All Files (*)</translation>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;All Files (*)</translation>
</message>
<message>
<source>Unable to open file for writing</source>
<translation>Unable to open file for writing</translation>
<source>Unable to open file for writing</source>
<translation>Unable to open file for writing</translation>
</message>
<message>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>An ATA and NVMe S.M.A.R.T. data viewer for Linux</translation>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>An ATA and NVMe S.M.A.R.T. data viewer for Linux</translation>
</message>
<message>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Licensed under the GNU G.P.L. Version 3</translation>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Licensed under the GNU G.P.L. Version 3</translation>
</message>
<message>
<source>Made by Samantas5855</source>
<translation>Made by Samantas5855</translation>
<source>Made by Samantas5855</source>
<translation>Made by Samantas5855</translation>
</message>
<message>
<source>Version</source>
<translation>Version</translation>
<source>Version</source>
<translation>Version</translation>
</message>
<message>
<source>About QDiskInfo</source>
<translation>About QDiskInfo</translation>
<source>About QDiskInfo</source>
<translation>About QDiskInfo</translation>
</message>
<message>
<source>About Qt</source>
<translation>About Qt</translation>
<source>About Qt</source>
<translation>About Qt</translation>
</message>
<message>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
</message>
<message>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
</message>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
</message>
<message>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
</message>
<message>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
</message>
<message>
<source>Success</source>
<translation type="unfinished">Success</translation>
<source>Success</source>
<translation type="unfinished">Success</translation>
</message>
<message>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
</message>
<message>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
</message>
<message>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
</message>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
</message>
<message>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
</message>
<message>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
</message>
<message>
<source>&amp;Save JSON</source>
<translation>&amp;Save JSON</translation>
</message>
</context>
<context>
</context>
<context>
<name>QObject</name>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
</message>
<message>
<source>smartctl was not found, please install it!</source>
<translation>smartctl was not found, please install it!</translation>
<source>smartctl was not found, please install it!</source>
<translation>smartctl was not found, please install it!</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo needs root access in order to abort a self-test!</translation>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo needs root access in order to abort a self-test!</translation>
</message>
<message>
<source>Test Requested</source>
<translation>Test Requested</translation>
<source>Test Requested</source>
<translation>Test Requested</translation>
</message>
<message>
<source>The self-test has been aborted</source>
<translation>The self-test has been aborted</translation>
<source>The self-test has been aborted</source>
<translation>The self-test has been aborted</translation>
</message>
<message>
<source>Error: Something went wrong</source>
<translation>Error: Something went wrong</translation>
<source>Error: Something went wrong</source>
<translation>Error: Something went wrong</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo needs root access in order to request a self-test!</translation>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo needs root access in order to request a self-test!</translation>
</message>
<message>
<source>remaining</source>
<translation>remaining</translation>
<source>remaining</source>
<translation>remaining</translation>
</message>
<message>
<source>completed</source>
<translation>completed</translation>
<source>completed</source>
<translation>completed</translation>
</message>
<message>
<source>Test Already Running</source>
<translation>Test Already Running</translation>
<source>Test Already Running</source>
<translation>Test Already Running</translation>
</message>
<message>
<source>A self-test is already being performed</source>
<translation>A self-test is already being performed</translation>
<source>A self-test is already being performed</source>
<translation>A self-test is already being performed</translation>
</message>
<message>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>You can press the Ok button in order to abort the test that is currently running</translation>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>You can press the Ok button in order to abort the test that is currently running</translation>
</message>
<message>
<source>A self-test has been requested successfully</source>
<translation>A self-test has been requested successfully</translation>
<source>A self-test has been requested successfully</source>
<translation>A self-test has been requested successfully</translation>
</message>
<message>
<source>It will be completed after</source>
<translation>It will be completed after</translation>
<source>It will be completed after</source>
<translation>It will be completed after</translation>
</message>
<message>
<source>minutes</source>
<translation>minutes</translation>
<source>minutes</source>
<translation>minutes</translation>
</message>
<message>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
</message>
<message>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
</message>
</context>
</context>
</TS>

View File

@@ -1,449 +1,445 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="cs_CZ" sourcelanguage="en">
<context>
<context>
<name>GridView</name>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
</message>
</context>
<context>
</context>
<context>
<name>MainWindow</name>
<message>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Firmware</source>
<translation>Firmware</translation>
<source>Firmware</source>
<translation>Firmware</translation>
</message>
<message>
<source>Serial Number</source>
<translation>Serial Number</translation>
<source>Serial Number</source>
<translation>Serial Number</translation>
</message>
<message>
<source>Protocol</source>
<translation>Protocol</translation>
<source>Protocol</source>
<translation>Protocol</translation>
</message>
<message>
<source>Device Node</source>
<translation>Device Node</translation>
<source>Device Node</source>
<translation>Device Node</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Type</source>
<translation>Type</translation>
<source>Type</source>
<translation>Type</translation>
</message>
<message>
<source>Total Host Reads</source>
<translation>Total Host Reads</translation>
<source>Total Host Reads</source>
<translation>Total Host Reads</translation>
</message>
<message>
<source>Total Host Writes</source>
<translation>Total Host Writes</translation>
<source>Total Host Writes</source>
<translation>Total Host Writes</translation>
</message>
<message>
<source>Rotation Rate</source>
<translation>Rotation Rate</translation>
<source>Rotation Rate</source>
<translation>Rotation Rate</translation>
</message>
<message>
<source>Power On Count</source>
<translation>Power On Count</translation>
<source>Power On Count</source>
<translation>Power On Count</translation>
</message>
<message>
<source>Power On Hours</source>
<translation>Power On Hours</translation>
<source>Power On Hours</source>
<translation>Power On Hours</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>File</source>
<translation>File</translation>
<source>File</source>
<translation>File</translation>
</message>
<message>
<source>Settings</source>
<translation>Settings</translation>
<source>Settings</source>
<translation>Settings</translation>
</message>
<message>
<source>&amp;Help</source>
<translation>&amp;Help</translation>
<source>&amp;Help</source>
<translation>&amp;Help</translation>
</message>
<message>
<source>De&amp;vice</source>
<translation>De&amp;vice</translation>
<source>De&amp;vice</source>
<translation>De&amp;vice</translation>
</message>
<message>
<source>Disk</source>
<translation>Disk</translation>
<source>Disk</source>
<translation>Disk</translation>
</message>
<message>
<source>&amp;Quit</source>
<translation>&amp;Quit</translation>
<source>&amp;Quit</source>
<translation>&amp;Quit</translation>
</message>
<message>
<source>&amp;Refresh Devices</source>
<translation>&amp;Refresh Devices</translation>
<source>&amp;Refresh Devices</source>
<translation>&amp;Refresh Devices</translation>
</message>
<message>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
</message>
<message>
<source>&amp;About QDiskInfo</source>
<translation>&amp;About QDiskInfo</translation>
<source>&amp;About QDiskInfo</source>
<translation>&amp;About QDiskInfo</translation>
</message>
<message>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ignore C4 (Reallocated Event Count)</translation>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ignore C4 (Reallocated Event Count)</translation>
</message>
<message>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Convert Raw values to HEX</translation>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Convert Raw values to HEX</translation>
</message>
<message>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Use Fahrenheit</translation>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Use Fahrenheit</translation>
</message>
<message>
<source>Self Test</source>
<translation>Self Test</translation>
<source>Self Test</source>
<translation>Self Test</translation>
</message>
<message>
<source>Cyclic &amp;Navigation</source>
<translation>Cyclic &amp;Navigation</translation>
<source>Cyclic &amp;Navigation</source>
<translation>Cyclic &amp;Navigation</translation>
</message>
<message>
<source>Use &amp;GB instead of TB</source>
<translation>Use &amp;GB instead of TB</translation>
<source>Use &amp;GB instead of TB</source>
<translation>Use &amp;GB instead of TB</translation>
</message>
<message>
<source>About &amp;Qt</source>
<translation>About &amp;Qt</translation>
<source>About &amp;Qt</source>
<translation>About &amp;Qt</translation>
</message>
<message>
<source>Start Self Test</source>
<translation>Start Self Test</translation>
<source>Start Self Test</source>
<translation>Start Self Test</translation>
</message>
<message>
<source>Self Test Log</source>
<translation>Self Test Log</translation>
<source>Self Test Log</source>
<translation>Self Test Log</translation>
</message>
<message>
<source>Critical Warning</source>
<translation>Critical Warning</translation>
<source>Critical Warning</source>
<translation>Critical Warning</translation>
</message>
<message>
<source>Grown Defect List</source>
<translation>Grown Defect List</translation>
<source>Grown Defect List</source>
<translation>Grown Defect List</translation>
</message>
<message>
<source>Good</source>
<translation>Good</translation>
<source>Good</source>
<translation>Good</translation>
</message>
<message>
<source>Caution</source>
<translation>Caution</translation>
<source>Caution</source>
<translation>Caution</translation>
</message>
<message>
<source>Bad</source>
<translation>Bad</translation>
<source>Bad</source>
<translation>Bad</translation>
</message>
<message>
<source>Unknown</source>
<translation>Unknown</translation>
<source>Unknown</source>
<translation>Unknown</translation>
</message>
<message>
<source>Status</source>
<translation>Status</translation>
<source>Status</source>
<translation>Status</translation>
</message>
<message>
<source>count</source>
<translation>count</translation>
<source>count</source>
<translation>count</translation>
</message>
<message>
<source>hours</source>
<translation>hours</translation>
<source>hours</source>
<translation>hours</translation>
</message>
<message>
<source>Short</source>
<translation>Short</translation>
<source>Short</source>
<translation>Short</translation>
</message>
<message>
<source>Conveyance</source>
<translation>Conveyance</translation>
<source>Conveyance</source>
<translation>Conveyance</translation>
</message>
<message>
<source>Extended</source>
<translation>Extended</translation>
<source>Extended</source>
<translation>Extended</translation>
</message>
<message>
<source>Min.)</source>
<translation>Min.)</translation>
<source>Min.)</source>
<translation>Min.)</translation>
</message>
<message>
<source>Read</source>
<translation>Read</translation>
<source>Read</source>
<translation>Read</translation>
</message>
<message>
<source>Write</source>
<translation>Write</translation>
<source>Write</source>
<translation>Write</translation>
</message>
<message>
<source>Verify</source>
<translation>Verify</translation>
<source>Verify</source>
<translation>Verify</translation>
</message>
<message>
<source>ID</source>
<translation>ID</translation>
<source>ID</source>
<translation>ID</translation>
</message>
<message>
<source>Attribute Name</source>
<translation>Attribute Name</translation>
<source>Attribute Name</source>
<translation>Attribute Name</translation>
</message>
<message>
<source>Raw Values</source>
<translation>Raw Values</translation>
<source>Raw Values</source>
<translation>Raw Values</translation>
</message>
<message>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Available spare capacity has fallen below the threshold</translation>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Available spare capacity has fallen below the threshold</translation>
</message>
<message>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Temperature error (Overheat or Overcool)</translation>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Temperature error (Overheat or Overcool)</translation>
</message>
<message>
<source>NVM subsystem reliability has been degraded</source>
<translation>NVM subsystem reliability has been degraded</translation>
<source>NVM subsystem reliability has been degraded</source>
<translation>NVM subsystem reliability has been degraded</translation>
</message>
<message>
<source>Media has been placed in Read Only Mode</source>
<translation>Media has been placed in Read Only Mode</translation>
<source>Media has been placed in Read Only Mode</source>
<translation>Media has been placed in Read Only Mode</translation>
</message>
<message>
<source>Volatile memory backup device has Failed</source>
<translation>Volatile memory backup device has Failed</translation>
<source>Volatile memory backup device has Failed</source>
<translation>Volatile memory backup device has Failed</translation>
</message>
<message>
<source>Persistent memory region has become Read-Only</source>
<translation>Persistent memory region has become Read-Only</translation>
<source>Persistent memory region has become Read-Only</source>
<translation>Persistent memory region has become Read-Only</translation>
</message>
<message>
<source>Current</source>
<translation>Current</translation>
<source>Current</source>
<translation>Current</translation>
</message>
<message>
<source>Worst</source>
<translation>Worst</translation>
<source>Worst</source>
<translation>Worst</translation>
</message>
<message>
<source>Threshold</source>
<translation>Threshold</translation>
<source>Threshold</source>
<translation>Threshold</translation>
</message>
<message>
<source>Empty JSON</source>
<translation>Empty JSON</translation>
<source>Empty JSON</source>
<translation>Empty JSON</translation>
</message>
<message>
<source>The JSON is empty</source>
<translation>The JSON is empty</translation>
<source>The JSON is empty</source>
<translation>The JSON is empty</translation>
</message>
<message>
<source>Save JSON</source>
<translation>Save JSON</translation>
<source>Save JSON</source>
<translation>Save JSON</translation>
</message>
<message>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;All Files (*)</translation>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;All Files (*)</translation>
</message>
<message>
<source>Unable to open file for writing</source>
<translation>Unable to open file for writing</translation>
<source>Unable to open file for writing</source>
<translation>Unable to open file for writing</translation>
</message>
<message>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>An ATA and NVMe S.M.A.R.T. data viewer for Linux</translation>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>An ATA and NVMe S.M.A.R.T. data viewer for Linux</translation>
</message>
<message>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Licensed under the GNU G.P.L. Version 3</translation>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Licensed under the GNU G.P.L. Version 3</translation>
</message>
<message>
<source>Made by Samantas5855</source>
<translation>Made by Samantas5855</translation>
<source>Made by Samantas5855</source>
<translation>Made by Samantas5855</translation>
</message>
<message>
<source>Version</source>
<translation>Version</translation>
<source>Version</source>
<translation>Version</translation>
</message>
<message>
<source>About QDiskInfo</source>
<translation>About QDiskInfo</translation>
<source>About QDiskInfo</source>
<translation>About QDiskInfo</translation>
</message>
<message>
<source>About Qt</source>
<translation>About Qt</translation>
<source>About Qt</source>
<translation>About Qt</translation>
</message>
<message>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
</message>
<message>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
</message>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
</message>
<message>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
</message>
<message>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
</message>
<message>
<source>Success</source>
<translation type="unfinished">Success</translation>
<source>Success</source>
<translation type="unfinished">Success</translation>
</message>
<message>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
</message>
<message>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
</message>
<message>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
</message>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
</message>
<message>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
</message>
<message>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
</message>
<message>
<source>&amp;Save JSON</source>
<translation>&amp;Save JSON</translation>
</message>
</context>
<context>
</context>
<context>
<name>QObject</name>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
</message>
<message>
<source>smartctl was not found, please install it!</source>
<translation>smartctl was not found, please install it!</translation>
<source>smartctl was not found, please install it!</source>
<translation>smartctl was not found, please install it!</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo needs root access in order to abort a self-test!</translation>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo needs root access in order to abort a self-test!</translation>
</message>
<message>
<source>Test Requested</source>
<translation>Test Requested</translation>
<source>Test Requested</source>
<translation>Test Requested</translation>
</message>
<message>
<source>The self-test has been aborted</source>
<translation>The self-test has been aborted</translation>
<source>The self-test has been aborted</source>
<translation>The self-test has been aborted</translation>
</message>
<message>
<source>Error: Something went wrong</source>
<translation>Error: Something went wrong</translation>
<source>Error: Something went wrong</source>
<translation>Error: Something went wrong</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo needs root access in order to request a self-test!</translation>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo needs root access in order to request a self-test!</translation>
</message>
<message>
<source>remaining</source>
<translation>remaining</translation>
<source>remaining</source>
<translation>remaining</translation>
</message>
<message>
<source>completed</source>
<translation>completed</translation>
<source>completed</source>
<translation>completed</translation>
</message>
<message>
<source>Test Already Running</source>
<translation>Test Already Running</translation>
<source>Test Already Running</source>
<translation>Test Already Running</translation>
</message>
<message>
<source>A self-test is already being performed</source>
<translation>A self-test is already being performed</translation>
<source>A self-test is already being performed</source>
<translation>A self-test is already being performed</translation>
</message>
<message>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>You can press the Ok button in order to abort the test that is currently running</translation>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>You can press the Ok button in order to abort the test that is currently running</translation>
</message>
<message>
<source>A self-test has been requested successfully</source>
<translation>A self-test has been requested successfully</translation>
<source>A self-test has been requested successfully</source>
<translation>A self-test has been requested successfully</translation>
</message>
<message>
<source>It will be completed after</source>
<translation>It will be completed after</translation>
<source>It will be completed after</source>
<translation>It will be completed after</translation>
</message>
<message>
<source>minutes</source>
<translation>minutes</translation>
<source>minutes</source>
<translation>minutes</translation>
</message>
<message>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
</message>
<message>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
</message>
</context>
</context>
</TS>

View File

@@ -1,449 +1,445 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="da_DK" sourcelanguage="en">
<context>
<context>
<name>GridView</name>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
</message>
</context>
<context>
</context>
<context>
<name>MainWindow</name>
<message>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Firmware</source>
<translation>Firmware</translation>
<source>Firmware</source>
<translation>Firmware</translation>
</message>
<message>
<source>Serial Number</source>
<translation>Serial Number</translation>
<source>Serial Number</source>
<translation>Serial Number</translation>
</message>
<message>
<source>Protocol</source>
<translation>Protocol</translation>
<source>Protocol</source>
<translation>Protocol</translation>
</message>
<message>
<source>Device Node</source>
<translation>Device Node</translation>
<source>Device Node</source>
<translation>Device Node</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Type</source>
<translation>Type</translation>
<source>Type</source>
<translation>Type</translation>
</message>
<message>
<source>Total Host Reads</source>
<translation>Total Host Reads</translation>
<source>Total Host Reads</source>
<translation>Total Host Reads</translation>
</message>
<message>
<source>Total Host Writes</source>
<translation>Total Host Writes</translation>
<source>Total Host Writes</source>
<translation>Total Host Writes</translation>
</message>
<message>
<source>Rotation Rate</source>
<translation>Rotation Rate</translation>
<source>Rotation Rate</source>
<translation>Rotation Rate</translation>
</message>
<message>
<source>Power On Count</source>
<translation>Power On Count</translation>
<source>Power On Count</source>
<translation>Power On Count</translation>
</message>
<message>
<source>Power On Hours</source>
<translation>Power On Hours</translation>
<source>Power On Hours</source>
<translation>Power On Hours</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>File</source>
<translation>File</translation>
<source>File</source>
<translation>File</translation>
</message>
<message>
<source>Settings</source>
<translation>Settings</translation>
<source>Settings</source>
<translation>Settings</translation>
</message>
<message>
<source>&amp;Help</source>
<translation>&amp;Help</translation>
<source>&amp;Help</source>
<translation>&amp;Help</translation>
</message>
<message>
<source>De&amp;vice</source>
<translation>De&amp;vice</translation>
<source>De&amp;vice</source>
<translation>De&amp;vice</translation>
</message>
<message>
<source>Disk</source>
<translation>Disk</translation>
<source>Disk</source>
<translation>Disk</translation>
</message>
<message>
<source>&amp;Quit</source>
<translation>&amp;Quit</translation>
<source>&amp;Quit</source>
<translation>&amp;Quit</translation>
</message>
<message>
<source>&amp;Refresh Devices</source>
<translation>&amp;Refresh Devices</translation>
<source>&amp;Refresh Devices</source>
<translation>&amp;Refresh Devices</translation>
</message>
<message>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
</message>
<message>
<source>&amp;About QDiskInfo</source>
<translation>&amp;About QDiskInfo</translation>
<source>&amp;About QDiskInfo</source>
<translation>&amp;About QDiskInfo</translation>
</message>
<message>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ignore C4 (Reallocated Event Count)</translation>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ignore C4 (Reallocated Event Count)</translation>
</message>
<message>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Convert Raw values to HEX</translation>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Convert Raw values to HEX</translation>
</message>
<message>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Use Fahrenheit</translation>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Use Fahrenheit</translation>
</message>
<message>
<source>Self Test</source>
<translation>Self Test</translation>
<source>Self Test</source>
<translation>Self Test</translation>
</message>
<message>
<source>Cyclic &amp;Navigation</source>
<translation>Cyclic &amp;Navigation</translation>
<source>Cyclic &amp;Navigation</source>
<translation>Cyclic &amp;Navigation</translation>
</message>
<message>
<source>Use &amp;GB instead of TB</source>
<translation>Use &amp;GB instead of TB</translation>
<source>Use &amp;GB instead of TB</source>
<translation>Use &amp;GB instead of TB</translation>
</message>
<message>
<source>About &amp;Qt</source>
<translation>About &amp;Qt</translation>
<source>About &amp;Qt</source>
<translation>About &amp;Qt</translation>
</message>
<message>
<source>Start Self Test</source>
<translation>Start Self Test</translation>
<source>Start Self Test</source>
<translation>Start Self Test</translation>
</message>
<message>
<source>Self Test Log</source>
<translation>Self Test Log</translation>
<source>Self Test Log</source>
<translation>Self Test Log</translation>
</message>
<message>
<source>Critical Warning</source>
<translation>Critical Warning</translation>
<source>Critical Warning</source>
<translation>Critical Warning</translation>
</message>
<message>
<source>Grown Defect List</source>
<translation>Grown Defect List</translation>
<source>Grown Defect List</source>
<translation>Grown Defect List</translation>
</message>
<message>
<source>Good</source>
<translation>Good</translation>
<source>Good</source>
<translation>Good</translation>
</message>
<message>
<source>Caution</source>
<translation>Caution</translation>
<source>Caution</source>
<translation>Caution</translation>
</message>
<message>
<source>Bad</source>
<translation>Bad</translation>
<source>Bad</source>
<translation>Bad</translation>
</message>
<message>
<source>Unknown</source>
<translation>Unknown</translation>
<source>Unknown</source>
<translation>Unknown</translation>
</message>
<message>
<source>Status</source>
<translation>Status</translation>
<source>Status</source>
<translation>Status</translation>
</message>
<message>
<source>count</source>
<translation>count</translation>
<source>count</source>
<translation>count</translation>
</message>
<message>
<source>hours</source>
<translation>hours</translation>
<source>hours</source>
<translation>hours</translation>
</message>
<message>
<source>Short</source>
<translation>Short</translation>
<source>Short</source>
<translation>Short</translation>
</message>
<message>
<source>Conveyance</source>
<translation>Conveyance</translation>
<source>Conveyance</source>
<translation>Conveyance</translation>
</message>
<message>
<source>Extended</source>
<translation>Extended</translation>
<source>Extended</source>
<translation>Extended</translation>
</message>
<message>
<source>Min.)</source>
<translation>Min.)</translation>
<source>Min.)</source>
<translation>Min.)</translation>
</message>
<message>
<source>Read</source>
<translation>Read</translation>
<source>Read</source>
<translation>Read</translation>
</message>
<message>
<source>Write</source>
<translation>Write</translation>
<source>Write</source>
<translation>Write</translation>
</message>
<message>
<source>Verify</source>
<translation>Verify</translation>
<source>Verify</source>
<translation>Verify</translation>
</message>
<message>
<source>ID</source>
<translation>ID</translation>
<source>ID</source>
<translation>ID</translation>
</message>
<message>
<source>Attribute Name</source>
<translation>Attribute Name</translation>
<source>Attribute Name</source>
<translation>Attribute Name</translation>
</message>
<message>
<source>Raw Values</source>
<translation>Raw Values</translation>
<source>Raw Values</source>
<translation>Raw Values</translation>
</message>
<message>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Available spare capacity has fallen below the threshold</translation>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Available spare capacity has fallen below the threshold</translation>
</message>
<message>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Temperature error (Overheat or Overcool)</translation>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Temperature error (Overheat or Overcool)</translation>
</message>
<message>
<source>NVM subsystem reliability has been degraded</source>
<translation>NVM subsystem reliability has been degraded</translation>
<source>NVM subsystem reliability has been degraded</source>
<translation>NVM subsystem reliability has been degraded</translation>
</message>
<message>
<source>Media has been placed in Read Only Mode</source>
<translation>Media has been placed in Read Only Mode</translation>
<source>Media has been placed in Read Only Mode</source>
<translation>Media has been placed in Read Only Mode</translation>
</message>
<message>
<source>Volatile memory backup device has Failed</source>
<translation>Volatile memory backup device has Failed</translation>
<source>Volatile memory backup device has Failed</source>
<translation>Volatile memory backup device has Failed</translation>
</message>
<message>
<source>Persistent memory region has become Read-Only</source>
<translation>Persistent memory region has become Read-Only</translation>
<source>Persistent memory region has become Read-Only</source>
<translation>Persistent memory region has become Read-Only</translation>
</message>
<message>
<source>Current</source>
<translation>Current</translation>
<source>Current</source>
<translation>Current</translation>
</message>
<message>
<source>Worst</source>
<translation>Worst</translation>
<source>Worst</source>
<translation>Worst</translation>
</message>
<message>
<source>Threshold</source>
<translation>Threshold</translation>
<source>Threshold</source>
<translation>Threshold</translation>
</message>
<message>
<source>Empty JSON</source>
<translation>Empty JSON</translation>
<source>Empty JSON</source>
<translation>Empty JSON</translation>
</message>
<message>
<source>The JSON is empty</source>
<translation>The JSON is empty</translation>
<source>The JSON is empty</source>
<translation>The JSON is empty</translation>
</message>
<message>
<source>Save JSON</source>
<translation>Save JSON</translation>
<source>Save JSON</source>
<translation>Save JSON</translation>
</message>
<message>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;All Files (*)</translation>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;All Files (*)</translation>
</message>
<message>
<source>Unable to open file for writing</source>
<translation>Unable to open file for writing</translation>
<source>Unable to open file for writing</source>
<translation>Unable to open file for writing</translation>
</message>
<message>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>An ATA and NVMe S.M.A.R.T. data viewer for Linux</translation>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>An ATA and NVMe S.M.A.R.T. data viewer for Linux</translation>
</message>
<message>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Licensed under the GNU G.P.L. Version 3</translation>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Licensed under the GNU G.P.L. Version 3</translation>
</message>
<message>
<source>Made by Samantas5855</source>
<translation>Made by Samantas5855</translation>
<source>Made by Samantas5855</source>
<translation>Made by Samantas5855</translation>
</message>
<message>
<source>Version</source>
<translation>Version</translation>
<source>Version</source>
<translation>Version</translation>
</message>
<message>
<source>About QDiskInfo</source>
<translation>About QDiskInfo</translation>
<source>About QDiskInfo</source>
<translation>About QDiskInfo</translation>
</message>
<message>
<source>About Qt</source>
<translation>About Qt</translation>
<source>About Qt</source>
<translation>About Qt</translation>
</message>
<message>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
</message>
<message>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
</message>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
</message>
<message>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
</message>
<message>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
</message>
<message>
<source>Success</source>
<translation type="unfinished">Success</translation>
<source>Success</source>
<translation type="unfinished">Success</translation>
</message>
<message>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
</message>
<message>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
</message>
<message>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
</message>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
</message>
<message>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
</message>
<message>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
</message>
<message>
<source>&amp;Save JSON</source>
<translation>&amp;Save JSON</translation>
</message>
</context>
<context>
</context>
<context>
<name>QObject</name>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
</message>
<message>
<source>smartctl was not found, please install it!</source>
<translation>smartctl was not found, please install it!</translation>
<source>smartctl was not found, please install it!</source>
<translation>smartctl was not found, please install it!</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo needs root access in order to abort a self-test!</translation>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo needs root access in order to abort a self-test!</translation>
</message>
<message>
<source>Test Requested</source>
<translation>Test Requested</translation>
<source>Test Requested</source>
<translation>Test Requested</translation>
</message>
<message>
<source>The self-test has been aborted</source>
<translation>The self-test has been aborted</translation>
<source>The self-test has been aborted</source>
<translation>The self-test has been aborted</translation>
</message>
<message>
<source>Error: Something went wrong</source>
<translation>Error: Something went wrong</translation>
<source>Error: Something went wrong</source>
<translation>Error: Something went wrong</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo needs root access in order to request a self-test!</translation>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo needs root access in order to request a self-test!</translation>
</message>
<message>
<source>remaining</source>
<translation>remaining</translation>
<source>remaining</source>
<translation>remaining</translation>
</message>
<message>
<source>completed</source>
<translation>completed</translation>
<source>completed</source>
<translation>completed</translation>
</message>
<message>
<source>Test Already Running</source>
<translation>Test Already Running</translation>
<source>Test Already Running</source>
<translation>Test Already Running</translation>
</message>
<message>
<source>A self-test is already being performed</source>
<translation>A self-test is already being performed</translation>
<source>A self-test is already being performed</source>
<translation>A self-test is already being performed</translation>
</message>
<message>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>You can press the Ok button in order to abort the test that is currently running</translation>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>You can press the Ok button in order to abort the test that is currently running</translation>
</message>
<message>
<source>A self-test has been requested successfully</source>
<translation>A self-test has been requested successfully</translation>
<source>A self-test has been requested successfully</source>
<translation>A self-test has been requested successfully</translation>
</message>
<message>
<source>It will be completed after</source>
<translation>It will be completed after</translation>
<source>It will be completed after</source>
<translation>It will be completed after</translation>
</message>
<message>
<source>minutes</source>
<translation>minutes</translation>
<source>minutes</source>
<translation>minutes</translation>
</message>
<message>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
</message>
<message>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
</message>
</context>
</context>
</TS>

View File

@@ -1,449 +1,445 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="de_DE" sourcelanguage="en">
<context>
<context>
<name>GridView</name>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
</message>
</context>
<context>
</context>
<context>
<name>MainWindow</name>
<message>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Gesundheitsstatus&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Gesundheitsstatus&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Gut&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Gut&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperatur&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperatur&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Firmware</source>
<translation>Firmware</translation>
<source>Firmware</source>
<translation>Firmware</translation>
</message>
<message>
<source>Serial Number</source>
<translation>Seriennummer</translation>
<source>Serial Number</source>
<translation>Seriennummer</translation>
</message>
<message>
<source>Protocol</source>
<translation>Protokoll</translation>
<source>Protocol</source>
<translation>Protokoll</translation>
</message>
<message>
<source>Device Node</source>
<translation>Geräteknoten</translation>
<source>Device Node</source>
<translation>Geräteknoten</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Type</source>
<translation>Art</translation>
<source>Type</source>
<translation>Art</translation>
</message>
<message>
<source>Total Host Reads</source>
<translation>Gesamte Lesezugriffe</translation>
<source>Total Host Reads</source>
<translation>Gesamte Lesezugriffe</translation>
</message>
<message>
<source>Total Host Writes</source>
<translation>Gesamte Schreibzugriffe</translation>
<source>Total Host Writes</source>
<translation>Gesamte Schreibzugriffe</translation>
</message>
<message>
<source>Rotation Rate</source>
<translation>Drehrate</translation>
<source>Rotation Rate</source>
<translation>Drehrate</translation>
</message>
<message>
<source>Power On Count</source>
<translation>Anzahl der Einschaltungen</translation>
<source>Power On Count</source>
<translation>Anzahl der Einschaltungen</translation>
</message>
<message>
<source>Power On Hours</source>
<translation>Betriebsstunden</translation>
<source>Power On Hours</source>
<translation>Betriebsstunden</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Festplatten Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Festplatten Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>File</source>
<translation>Datei</translation>
<source>File</source>
<translation>Datei</translation>
</message>
<message>
<source>Settings</source>
<translation>Einstellungen</translation>
<source>Settings</source>
<translation>Einstellungen</translation>
</message>
<message>
<source>&amp;Help</source>
<translation>&amp;Hilfe</translation>
<source>&amp;Help</source>
<translation>&amp;Hilfe</translation>
</message>
<message>
<source>De&amp;vice</source>
<translation>Gerät</translation>
<source>De&amp;vice</source>
<translation>Gerät</translation>
</message>
<message>
<source>Disk</source>
<translation>Festplatte</translation>
<source>Disk</source>
<translation>Festplatte</translation>
</message>
<message>
<source>&amp;Quit</source>
<translation>&amp;Beenden</translation>
<source>&amp;Quit</source>
<translation>&amp;Beenden</translation>
</message>
<message>
<source>&amp;Refresh Devices</source>
<translation>&amp;Geräte neu laden</translation>
<source>&amp;Refresh Devices</source>
<translation>&amp;Geräte neu laden</translation>
</message>
<message>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
</message>
<message>
<source>&amp;About QDiskInfo</source>
<translation>&amp;Über QDiskInfo</translation>
<source>&amp;About QDiskInfo</source>
<translation>&amp;Über QDiskInfo</translation>
</message>
<message>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>C4 ignorieren (neu zugewiesene Ereignisanzahl)</translation>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>C4 ignorieren (neu zugewiesene Ereignisanzahl)</translation>
</message>
<message>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Rohwert nach HEX konvertieren</translation>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Rohwert nach HEX konvertieren</translation>
</message>
<message>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Fahrenheit benutzen</translation>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Fahrenheit benutzen</translation>
</message>
<message>
<source>Self Test</source>
<translation>Selbsttest</translation>
<source>Self Test</source>
<translation>Selbsttest</translation>
</message>
<message>
<source>Cyclic &amp;Navigation</source>
<translation>Zyklische &amp;Navigation</translation>
<source>Cyclic &amp;Navigation</source>
<translation>Zyklische &amp;Navigation</translation>
</message>
<message>
<source>Use &amp;GB instead of TB</source>
<translation>&amp;GB statt TB benutzen</translation>
<source>Use &amp;GB instead of TB</source>
<translation>&amp;GB statt TB benutzen</translation>
</message>
<message>
<source>About &amp;Qt</source>
<translation>Über &amp;Qt</translation>
<source>About &amp;Qt</source>
<translation>Über &amp;Qt</translation>
</message>
<message>
<source>Start Self Test</source>
<translation>Selbsttest starten</translation>
<source>Start Self Test</source>
<translation>Selbsttest starten</translation>
</message>
<message>
<source>Self Test Log</source>
<translation>Selbsttest Log</translation>
<source>Self Test Log</source>
<translation>Selbsttest Log</translation>
</message>
<message>
<source>Critical Warning</source>
<translation>Kritische Warnung</translation>
<source>Critical Warning</source>
<translation>Kritische Warnung</translation>
</message>
<message>
<source>Grown Defect List</source>
<translation>Gewachsene Defekt Liste</translation>
<source>Grown Defect List</source>
<translation>Gewachsene Defekt Liste</translation>
</message>
<message>
<source>Good</source>
<translation>Gut</translation>
<source>Good</source>
<translation>Gut</translation>
</message>
<message>
<source>Caution</source>
<translation>Vorsicht</translation>
<source>Caution</source>
<translation>Vorsicht</translation>
</message>
<message>
<source>Bad</source>
<translation>Schlecht</translation>
<source>Bad</source>
<translation>Schlecht</translation>
</message>
<message>
<source>Unknown</source>
<translation>Unbekannt</translation>
<source>Unknown</source>
<translation>Unbekannt</translation>
</message>
<message>
<source>Status</source>
<translation>Status</translation>
<source>Status</source>
<translation>Status</translation>
</message>
<message>
<source>count</source>
<translation>Anzahl</translation>
<source>count</source>
<translation>Anzahl</translation>
</message>
<message>
<source>hours</source>
<translation>Stunden</translation>
<source>hours</source>
<translation>Stunden</translation>
</message>
<message>
<source>Short</source>
<translation>Kurz</translation>
<source>Short</source>
<translation>Kurz</translation>
</message>
<message>
<source>Conveyance</source>
<translation>Übermittlung</translation>
<source>Conveyance</source>
<translation>Übermittlung</translation>
</message>
<message>
<source>Extended</source>
<translation>Erweitert</translation>
<source>Extended</source>
<translation>Erweitert</translation>
</message>
<message>
<source>Min.)</source>
<translation>Min.)</translation>
<source>Min.)</source>
<translation>Min.)</translation>
</message>
<message>
<source>Read</source>
<translation>Lesen</translation>
<source>Read</source>
<translation>Lesen</translation>
</message>
<message>
<source>Write</source>
<translation>Schreiben</translation>
<source>Write</source>
<translation>Schreiben</translation>
</message>
<message>
<source>Verify</source>
<translation>Verifizieren</translation>
<source>Verify</source>
<translation>Verifizieren</translation>
</message>
<message>
<source>ID</source>
<translation>ID</translation>
<source>ID</source>
<translation>ID</translation>
</message>
<message>
<source>Attribute Name</source>
<translation>Attributname</translation>
<source>Attribute Name</source>
<translation>Attributname</translation>
</message>
<message>
<source>Raw Values</source>
<translation>Rohwerte</translation>
<source>Raw Values</source>
<translation>Rohwerte</translation>
</message>
<message>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Die verfügbaren Kapazitätsreserven sind unter den Schwellenwert gefallen</translation>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Die verfügbaren Kapazitätsreserven sind unter den Schwellenwert gefallen</translation>
</message>
<message>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Temperaturfehler (Überhitzung oder Unterkühlung)</translation>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Temperaturfehler (Überhitzung oder Unterkühlung)</translation>
</message>
<message>
<source>NVM subsystem reliability has been degraded</source>
<translation>Die Zuverlässigkeit des NVM Untersystems ist gesunken</translation>
<source>NVM subsystem reliability has been degraded</source>
<translation>Die Zuverlässigkeit des NVM Untersystems ist gesunken</translation>
</message>
<message>
<source>Media has been placed in Read Only Mode</source>
<translation>Medium wurde in den nur-Lesen Modus versetzt</translation>
<source>Media has been placed in Read Only Mode</source>
<translation>Medium wurde in den nur-Lesen Modus versetzt</translation>
</message>
<message>
<source>Volatile memory backup device has Failed</source>
<translation>Sicherungsgerät mit flüchtigem Speicher ist ausgefallen</translation>
<source>Volatile memory backup device has Failed</source>
<translation>Sicherungsgerät mit flüchtigem Speicher ist ausgefallen</translation>
</message>
<message>
<source>Persistent memory region has become Read-Only</source>
<translation>Dauerhafte Speicherregion wurde schreibgeschützt</translation>
<source>Persistent memory region has become Read-Only</source>
<translation>Dauerhafte Speicherregion wurde schreibgeschützt</translation>
</message>
<message>
<source>Current</source>
<translation>Momentan</translation>
<source>Current</source>
<translation>Momentan</translation>
</message>
<message>
<source>Worst</source>
<translation>Am schlechtesten</translation>
<source>Worst</source>
<translation>Am schlechtesten</translation>
</message>
<message>
<source>Threshold</source>
<translation>Schwellenwert</translation>
<source>Threshold</source>
<translation>Schwellenwert</translation>
</message>
<message>
<source>Empty JSON</source>
<translation>Leeres JSON</translation>
<source>Empty JSON</source>
<translation>Leeres JSON</translation>
</message>
<message>
<source>The JSON is empty</source>
<translation>Das JSON ist leer</translation>
<source>The JSON is empty</source>
<translation>Das JSON ist leer</translation>
</message>
<message>
<source>Save JSON</source>
<translation>Als JSON speichern</translation>
<source>Save JSON</source>
<translation>Als JSON speichern</translation>
</message>
<message>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;Alle Dateien (*)</translation>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;Alle Dateien (*)</translation>
</message>
<message>
<source>Unable to open file for writing</source>
<translation>Konnte Datei nicht zum Schreiben öffnen</translation>
<source>Unable to open file for writing</source>
<translation>Konnte Datei nicht zum Schreiben öffnen</translation>
</message>
<message>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>Eine ATA und NVMe S.M.A.R.T. Datenanzeige für Linux</translation>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>Eine ATA und NVMe S.M.A.R.T. Datenanzeige für Linux</translation>
</message>
<message>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Lizenziert unter der GNU G.P.L. Version 3</translation>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Lizenziert unter der GNU G.P.L. Version 3</translation>
</message>
<message>
<source>Made by Samantas5855</source>
<translation>Erstellt von Samantas5855</translation>
<source>Made by Samantas5855</source>
<translation>Erstellt von Samantas5855</translation>
</message>
<message>
<source>Version</source>
<translation>Version</translation>
<source>Version</source>
<translation>Version</translation>
</message>
<message>
<source>About QDiskInfo</source>
<translation>Über QDiskInfo</translation>
<source>About QDiskInfo</source>
<translation>Über QDiskInfo</translation>
</message>
<message>
<source>About Qt</source>
<translation>Über Qt</translation>
<source>About Qt</source>
<translation>Über Qt</translation>
</message>
<message>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
</message>
<message>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
</message>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Fehler</translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Fehler</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo benötigt Rootzugriff um S.M.A.R.T. Daten zu lesen!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo benötigt Rootzugriff um S.M.A.R.T. Daten zu lesen!</translation>
</message>
<message>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
</message>
<message>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
</message>
<message>
<source>Success</source>
<translation type="unfinished">Success</translation>
<source>Success</source>
<translation type="unfinished">Success</translation>
</message>
<message>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
</message>
<message>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
</message>
<message>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
</message>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
</message>
<message>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
</message>
<message>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
</message>
<message>
<source>&amp;Save JSON</source>
<translation>&amp;Als JSON speichern</translation>
</message>
</context>
<context>
</context>
<context>
<name>QObject</name>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Fehler</translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Fehler</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo benötigt Rootzugriff um S.M.A.R.T. Daten zu lesen!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo benötigt Rootzugriff um S.M.A.R.T. Daten zu lesen!</translation>
</message>
<message>
<source>smartctl was not found, please install it!</source>
<translation>smartctl wurde nicht gefunden, bitte installiere es!</translation>
<source>smartctl was not found, please install it!</source>
<translation>smartctl wurde nicht gefunden, bitte installiere es!</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo benötigt Rootzugriff um einen Selbsttest abzubrechen!</translation>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo benötigt Rootzugriff um einen Selbsttest abzubrechen!</translation>
</message>
<message>
<source>Test Requested</source>
<translation>Test angefragt</translation>
<source>Test Requested</source>
<translation>Test angefragt</translation>
</message>
<message>
<source>The self-test has been aborted</source>
<translation>Der Selbsttest wurde abgebrochen</translation>
<source>The self-test has been aborted</source>
<translation>Der Selbsttest wurde abgebrochen</translation>
</message>
<message>
<source>Error: Something went wrong</source>
<translation>Fehler: Etwas ging schief</translation>
<source>Error: Something went wrong</source>
<translation>Fehler: Etwas ging schief</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo benötigt Rootzugriff um einen Selbsttest anzufragen!</translation>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo benötigt Rootzugriff um einen Selbsttest anzufragen!</translation>
</message>
<message>
<source>remaining</source>
<translation>übrig</translation>
<source>remaining</source>
<translation>übrig</translation>
</message>
<message>
<source>completed</source>
<translation>vollendet</translation>
<source>completed</source>
<translation>vollendet</translation>
</message>
<message>
<source>Test Already Running</source>
<translation>Test läuft bereits</translation>
<source>Test Already Running</source>
<translation>Test läuft bereits</translation>
</message>
<message>
<source>A self-test is already being performed</source>
<translation>Ein Selbsttest läuft bereits</translation>
<source>A self-test is already being performed</source>
<translation>Ein Selbsttest läuft bereits</translation>
</message>
<message>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>Du kannst den Ok Knopf drücken, um den Test abzubrechen</translation>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>Du kannst den Ok Knopf drücken, um den Test abzubrechen</translation>
</message>
<message>
<source>A self-test has been requested successfully</source>
<translation>Ein Selbsttest wurde erfolgreich in Auftrag gegeben</translation>
<source>A self-test has been requested successfully</source>
<translation>Ein Selbsttest wurde erfolgreich in Auftrag gegeben</translation>
</message>
<message>
<source>It will be completed after</source>
<translation>Er wird fertig sein nach</translation>
<source>It will be completed after</source>
<translation>Er wird fertig sein nach</translation>
</message>
<message>
<source>minutes</source>
<translation>Minuten</translation>
<source>minutes</source>
<translation>Minuten</translation>
</message>
<message>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
</message>
<message>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
</message>
</context>
</context>
</TS>

View File

@@ -1,449 +1,445 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="el_GR" sourcelanguage="en">
<context>
<context>
<name>GridView</name>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
</message>
</context>
<context>
</context>
<context>
<name>MainWindow</name>
<message>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Κατάστ. Υγειας&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Κατάστ. Υγειας&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Θερμοκρασία&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Θερμοκρασία&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Firmware</source>
<translation>Έκδοση Λογισμικού</translation>
<source>Firmware</source>
<translation>Έκδοση Λογισμικού</translation>
</message>
<message>
<source>Serial Number</source>
<translation>Σειριακός Αριθμός</translation>
<source>Serial Number</source>
<translation>Σειριακός Αριθμός</translation>
</message>
<message>
<source>Protocol</source>
<translation>Πρωτόκολλο</translation>
<source>Protocol</source>
<translation>Πρωτόκολλο</translation>
</message>
<message>
<source>Device Node</source>
<translation>Διαδρομή</translation>
<source>Device Node</source>
<translation>Διαδρομή</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Type</source>
<translation>Τύπος</translation>
<source>Type</source>
<translation>Τύπος</translation>
</message>
<message>
<source>Total Host Reads</source>
<translation>Συνολικές Αναγνώσεις</translation>
<source>Total Host Reads</source>
<translation>Συνολικές Αναγνώσεις</translation>
</message>
<message>
<source>Total Host Writes</source>
<translation>Συνολικές Εγγραφές</translation>
<source>Total Host Writes</source>
<translation>Συνολικές Εγγραφές</translation>
</message>
<message>
<source>Rotation Rate</source>
<translation>Ρυθμός Περιστροφής</translation>
<source>Rotation Rate</source>
<translation>Ρυθμός Περιστροφής</translation>
</message>
<message>
<source>Power On Count</source>
<translation>Μετρητής Λειτουργίας</translation>
<source>Power On Count</source>
<translation>Μετρητής Λειτουργίας</translation>
</message>
<message>
<source>Power On Hours</source>
<translation>Ώρες Λειτουργίας</translation>
<source>Power On Hours</source>
<translation>Ώρες Λειτουργίας</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>File</source>
<translation>&amp;Αρχείο</translation>
<source>File</source>
<translation>&amp;Αρχείο</translation>
</message>
<message>
<source>Settings</source>
<translation>&amp;Ρυθμίσεις</translation>
<source>Settings</source>
<translation>&amp;Ρυθμίσεις</translation>
</message>
<message>
<source>&amp;Help</source>
<translation>&amp;Βοήθεια</translation>
<source>&amp;Help</source>
<translation>&amp;Βοήθεια</translation>
</message>
<message>
<source>De&amp;vice</source>
<translation>&amp;Συσκευή</translation>
<source>De&amp;vice</source>
<translation>&amp;Συσκευή</translation>
</message>
<message>
<source>Disk</source>
<translation>&amp;Δίσκος</translation>
<source>Disk</source>
<translation>&amp;Δίσκος</translation>
</message>
<message>
<source>&amp;Quit</source>
<translation>Έ&amp;ξοδος</translation>
<source>&amp;Quit</source>
<translation>Έ&amp;ξοδος</translation>
</message>
<message>
<source>&amp;Refresh Devices</source>
<translation>&amp;Ανανέωση Συσκευών</translation>
<source>&amp;Refresh Devices</source>
<translation>&amp;Ανανέωση Συσκευών</translation>
</message>
<message>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
</message>
<message>
<source>&amp;About QDiskInfo</source>
<translation>Σχετικά με το &amp;QDiskInfo</translation>
<source>&amp;About QDiskInfo</source>
<translation>Σχετικά με το &amp;QDiskInfo</translation>
</message>
<message>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Αγνόησε το C4 (Reallocated Event Count)</translation>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Αγνόησε το C4 (Reallocated Event Count)</translation>
</message>
<message>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Μετατροπή των τιμών σε δεκαεξαδικές</translation>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Μετατροπή των τιμών σε δεκαεξαδικές</translation>
</message>
<message>
<source>&amp;Use Fahrenheit</source>
<translation>Χρήση &amp;Fahrenheit</translation>
<source>&amp;Use Fahrenheit</source>
<translation>Χρήση &amp;Fahrenheit</translation>
</message>
<message>
<source>Self Test</source>
<translation>Αυτοδιάγνωση</translation>
<source>Self Test</source>
<translation>Αυτοδιάγνωση</translation>
</message>
<message>
<source>Cyclic &amp;Navigation</source>
<translation>&amp;Κυκλική Πλοήγηση</translation>
<source>Cyclic &amp;Navigation</source>
<translation>&amp;Κυκλική Πλοήγηση</translation>
</message>
<message>
<source>Use &amp;GB instead of TB</source>
<translation>Χρήση &amp;GB αντί για TB</translation>
<source>Use &amp;GB instead of TB</source>
<translation>Χρήση &amp;GB αντί για TB</translation>
</message>
<message>
<source>About &amp;Qt</source>
<translation>Σχετικά με το &amp;Qt</translation>
<source>About &amp;Qt</source>
<translation>Σχετικά με το &amp;Qt</translation>
</message>
<message>
<source>Start Self Test</source>
<translation>&amp;Εκκίνηση Αυτοδιάγνωσης</translation>
<source>Start Self Test</source>
<translation>&amp;Εκκίνηση Αυτοδιάγνωσης</translation>
</message>
<message>
<source>Self Test Log</source>
<translation>&amp;Καταγραφολόγιο Αυτοδιάγνωσης</translation>
<source>Self Test Log</source>
<translation>&amp;Καταγραφολόγιο Αυτοδιάγνωσης</translation>
</message>
<message>
<source>Critical Warning</source>
<translation>Σημαντική Προειδοποίηση</translation>
<source>Critical Warning</source>
<translation>Σημαντική Προειδοποίηση</translation>
</message>
<message>
<source>Grown Defect List</source>
<translation>Grown Defect List</translation>
<source>Grown Defect List</source>
<translation>Grown Defect List</translation>
</message>
<message>
<source>Good</source>
<translation>Καλή</translation>
<source>Good</source>
<translation>Καλή</translation>
</message>
<message>
<source>Caution</source>
<translation>Προσοχή</translation>
<source>Caution</source>
<translation>Προσοχή</translation>
</message>
<message>
<source>Bad</source>
<translation>Κακή</translation>
<source>Bad</source>
<translation>Κακή</translation>
</message>
<message>
<source>Unknown</source>
<translation>Άγνωστη</translation>
<source>Unknown</source>
<translation>Άγνωστη</translation>
</message>
<message>
<source>Status</source>
<translation>Κατάσταση</translation>
<source>Status</source>
<translation>Κατάσταση</translation>
</message>
<message>
<source>count</source>
<translation>μονάδες</translation>
<source>count</source>
<translation>μονάδες</translation>
</message>
<message>
<source>hours</source>
<translation>ώρες</translation>
<source>hours</source>
<translation>ώρες</translation>
</message>
<message>
<source>Short</source>
<translation>Σύντομο</translation>
<source>Short</source>
<translation>Σύντομο</translation>
</message>
<message>
<source>Conveyance</source>
<translation>Μεταφορά</translation>
<source>Conveyance</source>
<translation>Μεταφορά</translation>
</message>
<message>
<source>Extended</source>
<translation>Εμπεριστατωμένο</translation>
<source>Extended</source>
<translation>Εμπεριστατωμένο</translation>
</message>
<message>
<source>Min.)</source>
<translation>Λεπ.)</translation>
<source>Min.)</source>
<translation>Λεπ.)</translation>
</message>
<message>
<source>Read</source>
<translation>Ανάγνωση</translation>
<source>Read</source>
<translation>Ανάγνωση</translation>
</message>
<message>
<source>Write</source>
<translation>Εγγραφή</translation>
<source>Write</source>
<translation>Εγγραφή</translation>
</message>
<message>
<source>Verify</source>
<translation>Επαλήθευση</translation>
<source>Verify</source>
<translation>Επαλήθευση</translation>
</message>
<message>
<source>ID</source>
<translation>ID</translation>
<source>ID</source>
<translation>ID</translation>
</message>
<message>
<source>Attribute Name</source>
<translation>Ιδιότητα</translation>
<source>Attribute Name</source>
<translation>Ιδιότητα</translation>
</message>
<message>
<source>Raw Values</source>
<translation>Τιμή</translation>
<source>Raw Values</source>
<translation>Τιμή</translation>
</message>
<message>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Η υγεία του δίσκου έχει πέσει κάτω από το όριο</translation>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Η υγεία του δίσκου έχει πέσει κάτω από το όριο</translation>
</message>
<message>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Σφάλμα θερμοκρασίας (Υπερθέρμανση ή Υπερψύξη)</translation>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Σφάλμα θερμοκρασίας (Υπερθέρμανση ή Υπερψύξη)</translation>
</message>
<message>
<source>NVM subsystem reliability has been degraded</source>
<translation>Η αξιοπιστία του NVMe έχει μειωθεί</translation>
<source>NVM subsystem reliability has been degraded</source>
<translation>Η αξιοπιστία του NVMe έχει μειωθεί</translation>
</message>
<message>
<source>Media has been placed in Read Only Mode</source>
<translation>Το μέσο έχει τεθεί αποκλειστικά σε λειτουργία ανάγνωσης</translation>
<source>Media has been placed in Read Only Mode</source>
<translation>Το μέσο έχει τεθεί αποκλειστικά σε λειτουργία ανάγνωσης</translation>
</message>
<message>
<source>Volatile memory backup device has Failed</source>
<translation>Η δημιουργία αρχείου επαναφοράς της μη διατηρήσιμης μνήμης απέτυχε</translation>
<source>Volatile memory backup device has Failed</source>
<translation>Η δημιουργία αρχείου επαναφοράς της μη διατηρήσιμης μνήμης απέτυχε</translation>
</message>
<message>
<source>Persistent memory region has become Read-Only</source>
<translation>Η διατηρήσιμη μνήμη έχει μεταβεί αποκλειστικά σε λειτουργία ανάγνωσης</translation>
<source>Persistent memory region has become Read-Only</source>
<translation>Η διατηρήσιμη μνήμη έχει μεταβεί αποκλειστικά σε λειτουργία ανάγνωσης</translation>
</message>
<message>
<source>Current</source>
<translation>Τρέχουσα</translation>
<source>Current</source>
<translation>Τρέχουσα</translation>
</message>
<message>
<source>Worst</source>
<translation>Χειρότερη</translation>
<source>Worst</source>
<translation>Χειρότερη</translation>
</message>
<message>
<source>Threshold</source>
<translation>Όριο</translation>
<source>Threshold</source>
<translation>Όριο</translation>
</message>
<message>
<source>Empty JSON</source>
<translation>Κενό JSON</translation>
<source>Empty JSON</source>
<translation>Κενό JSON</translation>
</message>
<message>
<source>The JSON is empty</source>
<translation>Αυτό το JSON είναι κενό</translation>
<source>The JSON is empty</source>
<translation>Αυτό το JSON είναι κενό</translation>
</message>
<message>
<source>Save JSON</source>
<translation>Αποθήκευση JSON</translation>
<source>Save JSON</source>
<translation>Αποθήκευση JSON</translation>
</message>
<message>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;;Όλα τα αρχεία (*)</translation>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;;Όλα τα αρχεία (*)</translation>
</message>
<message>
<source>Unable to open file for writing</source>
<translation>Δεν είναι δυνατό το άνοιγμα αυτού του αρχείου για εγγραφή</translation>
<source>Unable to open file for writing</source>
<translation>Δεν είναι δυνατό το άνοιγμα αυτού του αρχείου για εγγραφή</translation>
</message>
<message>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>Ένας αναγνώστης S.M.A.R.T. για τα Linux</translation>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>Ένας αναγνώστης S.M.A.R.T. για τα Linux</translation>
</message>
<message>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Διατίθεται υπό την άδεια GNU G.P.L. Έκδοση 3</translation>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Διατίθεται υπό την άδεια GNU G.P.L. Έκδοση 3</translation>
</message>
<message>
<source>Made by Samantas5855</source>
<translation>Δημιουργήθηκε από τον Samantas5855</translation>
<source>Made by Samantas5855</source>
<translation>Δημιουργήθηκε από τον Samantas5855</translation>
</message>
<message>
<source>Version</source>
<translation>Έκδοση</translation>
<source>Version</source>
<translation>Έκδοση</translation>
</message>
<message>
<source>About QDiskInfo</source>
<translation>Σχετικά με το QDiskInfo</translation>
<source>About QDiskInfo</source>
<translation>Σχετικά με το QDiskInfo</translation>
</message>
<message>
<source>About Qt</source>
<translation>Σχετικά με το Qt</translation>
<source>About Qt</source>
<translation>Σχετικά με το Qt</translation>
</message>
<message>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
</message>
<message>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
</message>
<message>
<source>QDiskInfo Error</source>
<translation>Σφάλμα QDiskInfo</translation>
<source>QDiskInfo Error</source>
<translation>Σφάλμα QDiskInfo</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>Το QDiskInfo χρειάζεται δικαιώματα υπερχρήστη για να προσπελάσει τα δεδομένα S.M.A.R.T.!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>Το QDiskInfo χρειάζεται δικαιώματα υπερχρήστη για να προσπελάσει τα δεδομένα S.M.A.R.T.!</translation>
</message>
<message>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
</message>
<message>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
</message>
<message>
<source>Success</source>
<translation type="unfinished">Success</translation>
<source>Success</source>
<translation type="unfinished">Success</translation>
</message>
<message>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
</message>
<message>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
</message>
<message>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
</message>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
</message>
<message>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
</message>
<message>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
</message>
<message>
<source>&amp;Save JSON</source>
<translation>Αποθήκευση &amp;JSON</translation>
</message>
</context>
<context>
</context>
<context>
<name>QObject</name>
<message>
<source>QDiskInfo Error</source>
<translation>Σφάλμα QDiskInfo</translation>
<source>QDiskInfo Error</source>
<translation>Σφάλμα QDiskInfo</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>Το QDiskInfo χρειάζεται δικαιώματα υπερχρήστη για να προσπελάσει τα δεδομένα S.M.A.R.T.!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>Το QDiskInfo χρειάζεται δικαιώματα υπερχρήστη για να προσπελάσει τα δεδομένα S.M.A.R.T.!</translation>
</message>
<message>
<source>smartctl was not found, please install it!</source>
<translation>Το smartctl δε βρέθηκε, παρακαλείσθε να το εγκαταστήσετε!</translation>
<source>smartctl was not found, please install it!</source>
<translation>Το smartctl δε βρέθηκε, παρακαλείσθε να το εγκαταστήσετε!</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>Το QDiskInfo χρειάζεται δικαιώματα υπερχρήστη για να ακυρώσει μία αυτοδιάγνωση!</translation>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>Το QDiskInfo χρειάζεται δικαιώματα υπερχρήστη για να ακυρώσει μία αυτοδιάγνωση!</translation>
</message>
<message>
<source>Test Requested</source>
<translation>Η αυτοδιάγνωση ξεκίνησε</translation>
<source>Test Requested</source>
<translation>Η αυτοδιάγνωση ξεκίνησε</translation>
</message>
<message>
<source>The self-test has been aborted</source>
<translation>Η τρέχουσα αυτοδιάγνωση ακυρώθηκε</translation>
<source>The self-test has been aborted</source>
<translation>Η τρέχουσα αυτοδιάγνωση ακυρώθηκε</translation>
</message>
<message>
<source>Error: Something went wrong</source>
<translation>Σφάλμα: Κάτι πήγε στραβά</translation>
<source>Error: Something went wrong</source>
<translation>Σφάλμα: Κάτι πήγε στραβά</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>Το QDiskInfo χρειάζεται δικαιώματα υπερχρήστη για να εκτελέσει την αυτοδιάγνωση!</translation>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>Το QDiskInfo χρειάζεται δικαιώματα υπερχρήστη για να εκτελέσει την αυτοδιάγνωση!</translation>
</message>
<message>
<source>remaining</source>
<translation>απομένει</translation>
<source>remaining</source>
<translation>απομένει</translation>
</message>
<message>
<source>completed</source>
<translation>ολοκληρώθηκε</translation>
<source>completed</source>
<translation>ολοκληρώθηκε</translation>
</message>
<message>
<source>Test Already Running</source>
<translation>Μία αυτοδιάγνωση είναι ήδη σε εκτέλεση</translation>
<source>Test Already Running</source>
<translation>Μία αυτοδιάγνωση είναι ήδη σε εκτέλεση</translation>
</message>
<message>
<source>A self-test is already being performed</source>
<translation>Μία αυτοδιάγνωση εκτελείτε αυτή τη στιγμή</translation>
<source>A self-test is already being performed</source>
<translation>Μία αυτοδιάγνωση εκτελείτε αυτή τη στιγμή</translation>
</message>
<message>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>Μπορείτε να πατήσετε το κουμπί Εντάξει για να ακυρώσετε την τρέχουσα αυτοδιάγνωση</translation>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>Μπορείτε να πατήσετε το κουμπί Εντάξει για να ακυρώσετε την τρέχουσα αυτοδιάγνωση</translation>
</message>
<message>
<source>A self-test has been requested successfully</source>
<translation>Η αυτοδιάγνωση ξεκίνησε επιτυχώς</translation>
<source>A self-test has been requested successfully</source>
<translation>Η αυτοδιάγνωση ξεκίνησε επιτυχώς</translation>
</message>
<message>
<source>It will be completed after</source>
<translation>Θα τελειώσει μετά από</translation>
<source>It will be completed after</source>
<translation>Θα τελειώσει μετά από</translation>
</message>
<message>
<source>minutes</source>
<translation>λεπτά</translation>
<source>minutes</source>
<translation>λεπτά</translation>
</message>
<message>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
</message>
<message>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
</message>
</context>
</context>
</TS>

View File

@@ -366,10 +366,6 @@
<source>PNG Files (*.png)</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>&amp;Save JSON</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>QObject</name>

View File

@@ -1,449 +1,445 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="es_ES" sourcelanguage="en">
<context>
<context>
<name>GridView</name>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
</message>
</context>
<context>
</context>
<context>
<name>MainWindow</name>
<message>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Estado&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Estado&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Bueno&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Bueno&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperatura&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperatura&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Firmware</source>
<translation>Firmware</translation>
<source>Firmware</source>
<translation>Firmware</translation>
</message>
<message>
<source>Serial Number</source>
<translation>Número de Serie</translation>
<source>Serial Number</source>
<translation>Número de Serie</translation>
</message>
<message>
<source>Protocol</source>
<translation>Protocolo</translation>
<source>Protocol</source>
<translation>Protocolo</translation>
</message>
<message>
<source>Device Node</source>
<translation>Archivo de Dispositivo</translation>
<source>Device Node</source>
<translation>Archivo de Dispositivo</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Type</source>
<translation>Tipo</translation>
<source>Type</source>
<translation>Tipo</translation>
</message>
<message>
<source>Total Host Reads</source>
<translation>Lecturas Totales</translation>
<source>Total Host Reads</source>
<translation>Lecturas Totales</translation>
</message>
<message>
<source>Total Host Writes</source>
<translation>Escrituras Totales</translation>
<source>Total Host Writes</source>
<translation>Escrituras Totales</translation>
</message>
<message>
<source>Rotation Rate</source>
<translation>Velocidad Rotacional</translation>
<source>Rotation Rate</source>
<translation>Velocidad Rotacional</translation>
</message>
<message>
<source>Power On Count</source>
<translation>Veces Encendido</translation>
<source>Power On Count</source>
<translation>Veces Encendido</translation>
</message>
<message>
<source>Power On Hours</source>
<translation>Horas Encendido</translation>
<source>Power On Hours</source>
<translation>Horas Encendido</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Nombre del Disco&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Nombre del Disco&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>File</source>
<translation>Archivo</translation>
<source>File</source>
<translation>Archivo</translation>
</message>
<message>
<source>Settings</source>
<translation>Ajustes</translation>
<source>Settings</source>
<translation>Ajustes</translation>
</message>
<message>
<source>&amp;Help</source>
<translation>Ayuda</translation>
<source>&amp;Help</source>
<translation>Ayuda</translation>
</message>
<message>
<source>De&amp;vice</source>
<translation>Dispositi&amp;vo</translation>
<source>De&amp;vice</source>
<translation>Dispositi&amp;vo</translation>
</message>
<message>
<source>Disk</source>
<translation>Disco</translation>
<source>Disk</source>
<translation>Disco</translation>
</message>
<message>
<source>&amp;Quit</source>
<translation>Salir</translation>
<source>&amp;Quit</source>
<translation>Salir</translation>
</message>
<message>
<source>&amp;Refresh Devices</source>
<translation>Actualizar Dispositivos</translation>
<source>&amp;Refresh Devices</source>
<translation>Actualizar Dispositivos</translation>
</message>
<message>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
</message>
<message>
<source>&amp;About QDiskInfo</source>
<translation>Acerca de &amp;QDiskInfo</translation>
<source>&amp;About QDiskInfo</source>
<translation>Acerca de &amp;QDiskInfo</translation>
</message>
<message>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ignorar C4 (Reallocated Event Count)</translation>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ignorar C4 (Reallocated Event Count)</translation>
</message>
<message>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Convertir valores en Bruto a HEX</translation>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Convertir valores en Bruto a HEX</translation>
</message>
<message>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Usar Fahrenheit</translation>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Usar Fahrenheit</translation>
</message>
<message>
<source>Self Test</source>
<translation>Ejecutar Autotest</translation>
<source>Self Test</source>
<translation>Ejecutar Autotest</translation>
</message>
<message>
<source>Cyclic &amp;Navigation</source>
<translation>&amp;Navegación Cíclica</translation>
<source>Cyclic &amp;Navigation</source>
<translation>&amp;Navegación Cíclica</translation>
</message>
<message>
<source>Use &amp;GB instead of TB</source>
<translation>Usar &amp;GB en lugar de TB</translation>
<source>Use &amp;GB instead of TB</source>
<translation>Usar &amp;GB en lugar de TB</translation>
</message>
<message>
<source>About &amp;Qt</source>
<translation>Acerca de &amp;Qt</translation>
<source>About &amp;Qt</source>
<translation>Acerca de &amp;Qt</translation>
</message>
<message>
<source>Start Self Test</source>
<translation>Iniciar Autotest</translation>
<source>Start Self Test</source>
<translation>Iniciar Autotest</translation>
</message>
<message>
<source>Self Test Log</source>
<translation>Registro del Autotest</translation>
<source>Self Test Log</source>
<translation>Registro del Autotest</translation>
</message>
<message>
<source>Critical Warning</source>
<translation>Aviso Importante</translation>
<source>Critical Warning</source>
<translation>Aviso Importante</translation>
</message>
<message>
<source>Grown Defect List</source>
<translation>Grown Defect List</translation>
<source>Grown Defect List</source>
<translation>Grown Defect List</translation>
</message>
<message>
<source>Good</source>
<translation>Bueno</translation>
<source>Good</source>
<translation>Bueno</translation>
</message>
<message>
<source>Caution</source>
<translation>Precaución</translation>
<source>Caution</source>
<translation>Precaución</translation>
</message>
<message>
<source>Bad</source>
<translation>Malo</translation>
<source>Bad</source>
<translation>Malo</translation>
</message>
<message>
<source>Unknown</source>
<translation>Desconocido</translation>
<source>Unknown</source>
<translation>Desconocido</translation>
</message>
<message>
<source>Status</source>
<translation>Estado</translation>
<source>Status</source>
<translation>Estado</translation>
</message>
<message>
<source>count</source>
<translation>veces</translation>
<source>count</source>
<translation>veces</translation>
</message>
<message>
<source>hours</source>
<translation>horas</translation>
<source>hours</source>
<translation>horas</translation>
</message>
<message>
<source>Short</source>
<translation>Corto</translation>
<source>Short</source>
<translation>Corto</translation>
</message>
<message>
<source>Conveyance</source>
<translation>Transferencia</translation>
<source>Conveyance</source>
<translation>Transferencia</translation>
</message>
<message>
<source>Extended</source>
<translation>Extendido</translation>
<source>Extended</source>
<translation>Extendido</translation>
</message>
<message>
<source>Min.)</source>
<translation>Min.)</translation>
<source>Min.)</source>
<translation>Min.)</translation>
</message>
<message>
<source>Read</source>
<translation>Read</translation>
<source>Read</source>
<translation>Read</translation>
</message>
<message>
<source>Write</source>
<translation>Write</translation>
<source>Write</source>
<translation>Write</translation>
</message>
<message>
<source>Verify</source>
<translation>Verify</translation>
<source>Verify</source>
<translation>Verify</translation>
</message>
<message>
<source>ID</source>
<translation>ID</translation>
<source>ID</source>
<translation>ID</translation>
</message>
<message>
<source>Attribute Name</source>
<translation>Nombre del Atributo</translation>
<source>Attribute Name</source>
<translation>Nombre del Atributo</translation>
</message>
<message>
<source>Raw Values</source>
<translation>Valores en Bruto</translation>
<source>Raw Values</source>
<translation>Valores en Bruto</translation>
</message>
<message>
<source>Available spare capacity has fallen below the threshold</source>
<translation>El espacio libre disponible ha caído por debajo del umbral</translation>
<source>Available spare capacity has fallen below the threshold</source>
<translation>El espacio libre disponible ha caído por debajo del umbral</translation>
</message>
<message>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Error de temperatura (Sobrecalentado o Sobre-enfriado)</translation>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Error de temperatura (Sobrecalentado o Sobre-enfriado)</translation>
</message>
<message>
<source>NVM subsystem reliability has been degraded</source>
<translation>La fiabilidad del subsitema NVM se ha degradado</translation>
<source>NVM subsystem reliability has been degraded</source>
<translation>La fiabilidad del subsitema NVM se ha degradado</translation>
</message>
<message>
<source>Media has been placed in Read Only Mode</source>
<translation>El medio se ha configurado en Modo de Solo Lectura</translation>
<source>Media has been placed in Read Only Mode</source>
<translation>El medio se ha configurado en Modo de Solo Lectura</translation>
</message>
<message>
<source>Volatile memory backup device has Failed</source>
<translation>No se pudo crear el archivo de reversión de memoria no volátil</translation>
<source>Volatile memory backup device has Failed</source>
<translation>No se pudo crear el archivo de reversión de memoria no volátil</translation>
</message>
<message>
<source>Persistent memory region has become Read-Only</source>
<translation>Una región de memoria no volátil se ha vuelto de Solo Lectura</translation>
<source>Persistent memory region has become Read-Only</source>
<translation>Una región de memoria no volátil se ha vuelto de Solo Lectura</translation>
</message>
<message>
<source>Current</source>
<translation>Actual</translation>
<source>Current</source>
<translation>Actual</translation>
</message>
<message>
<source>Worst</source>
<translation>Peor</translation>
<source>Worst</source>
<translation>Peor</translation>
</message>
<message>
<source>Threshold</source>
<translation>Umbral</translation>
<source>Threshold</source>
<translation>Umbral</translation>
</message>
<message>
<source>Empty JSON</source>
<translation>Archivo JSON vacío</translation>
<source>Empty JSON</source>
<translation>Archivo JSON vacío</translation>
</message>
<message>
<source>The JSON is empty</source>
<translation>El archivo JSON está vacío</translation>
<source>The JSON is empty</source>
<translation>El archivo JSON está vacío</translation>
</message>
<message>
<source>Save JSON</source>
<translation>Guardar archivo JSON</translation>
<source>Save JSON</source>
<translation>Guardar archivo JSON</translation>
</message>
<message>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;Todos los archivos (*)</translation>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;Todos los archivos (*)</translation>
</message>
<message>
<source>Unable to open file for writing</source>
<translation>No se ha podido abrir el archivo de escritura</translation>
<source>Unable to open file for writing</source>
<translation>No se ha podido abrir el archivo de escritura</translation>
</message>
<message>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>Un visor de datos S.M.A.R.T. para ATA y NVMe</translation>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>Un visor de datos S.M.A.R.T. para ATA y NVMe</translation>
</message>
<message>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Licenciado bajo Licencia Pública General de GNU, Versión 3</translation>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Licenciado bajo Licencia Pública General de GNU, Versión 3</translation>
</message>
<message>
<source>Made by Samantas5855</source>
<translation>Hecho por Samantas5855</translation>
<source>Made by Samantas5855</source>
<translation>Hecho por Samantas5855</translation>
</message>
<message>
<source>Version</source>
<translation>Versión</translation>
<source>Version</source>
<translation>Versión</translation>
</message>
<message>
<source>About QDiskInfo</source>
<translation>Acerca de QDiskInfo</translation>
<source>About QDiskInfo</source>
<translation>Acerca de QDiskInfo</translation>
</message>
<message>
<source>About Qt</source>
<translation>Acerca de Qt</translation>
<source>About Qt</source>
<translation>Acerca de Qt</translation>
</message>
<message>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
</message>
<message>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
</message>
<message>
<source>QDiskInfo Error</source>
<translation>Error de QDiskInfo</translation>
<source>QDiskInfo Error</source>
<translation>Error de QDiskInfo</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>¡QDiskInfo necesita acceso root para poder leer información S.M.A.R.T!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>¡QDiskInfo necesita acceso root para poder leer información S.M.A.R.T!</translation>
</message>
<message>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
</message>
<message>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
</message>
<message>
<source>Success</source>
<translation type="unfinished">Success</translation>
<source>Success</source>
<translation type="unfinished">Success</translation>
</message>
<message>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
</message>
<message>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
</message>
<message>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
</message>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
</message>
<message>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
</message>
<message>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
</message>
<message>
<source>&amp;Save JSON</source>
<translation>Guardar Archivo JSON</translation>
</message>
</context>
<context>
</context>
<context>
<name>QObject</name>
<message>
<source>QDiskInfo Error</source>
<translation>Error de QDiskInfo</translation>
<source>QDiskInfo Error</source>
<translation>Error de QDiskInfo</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>¡QDiskInfo necesita acceso root para poder leer información S.M.A.R.T!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>¡QDiskInfo necesita acceso root para poder leer información S.M.A.R.T!</translation>
</message>
<message>
<source>smartctl was not found, please install it!</source>
<translation>smartctl no ha sido encontrado. ¡Por favor, instálalo!</translation>
<source>smartctl was not found, please install it!</source>
<translation>smartctl no ha sido encontrado. ¡Por favor, instálalo!</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>¡QDiskInfo necesita acceso root para poder abortar un autotest!</translation>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>¡QDiskInfo necesita acceso root para poder abortar un autotest!</translation>
</message>
<message>
<source>Test Requested</source>
<translation>Autotest Solicitado</translation>
<source>Test Requested</source>
<translation>Autotest Solicitado</translation>
</message>
<message>
<source>The self-test has been aborted</source>
<translation>El autotest ha sido abortado</translation>
<source>The self-test has been aborted</source>
<translation>El autotest ha sido abortado</translation>
</message>
<message>
<source>Error: Something went wrong</source>
<translation>Error: Algo ha salido mal</translation>
<source>Error: Something went wrong</source>
<translation>Error: Algo ha salido mal</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>¡QDiskInfo necesita acceso root para poder solicitar un autotest!</translation>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>¡QDiskInfo necesita acceso root para poder solicitar un autotest!</translation>
</message>
<message>
<source>remaining</source>
<translation>restante</translation>
<source>remaining</source>
<translation>restante</translation>
</message>
<message>
<source>completed</source>
<translation>completado</translation>
<source>completed</source>
<translation>completado</translation>
</message>
<message>
<source>Test Already Running</source>
<translation>Autotest ya ejecutándose</translation>
<source>Test Already Running</source>
<translation>Autotest ya ejecutándose</translation>
</message>
<message>
<source>A self-test is already being performed</source>
<translation>Un autotest ya está siendo realizado</translation>
<source>A self-test is already being performed</source>
<translation>Un autotest ya está siendo realizado</translation>
</message>
<message>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>Puedes pulsar el botón &apos;Aceptar&apos; para abortar el test que se está realizando</translation>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>Puedes pulsar el botón &apos;Aceptar&apos; para abortar el test que se está realizando</translation>
</message>
<message>
<source>A self-test has been requested successfully</source>
<translation>El autotest ha sido solicitado exitosamente</translation>
<source>A self-test has been requested successfully</source>
<translation>El autotest ha sido solicitado exitosamente</translation>
</message>
<message>
<source>It will be completed after</source>
<translation>Se completará en</translation>
<source>It will be completed after</source>
<translation>Se completará en</translation>
</message>
<message>
<source>minutes</source>
<translation>minutos</translation>
<source>minutes</source>
<translation>minutos</translation>
</message>
<message>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
</message>
<message>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
</message>
</context>
</context>
</TS>

View File

@@ -1,449 +1,445 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="fi_FI" sourcelanguage="en">
<context>
<context>
<name>GridView</name>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
</message>
</context>
<context>
</context>
<context>
<name>MainWindow</name>
<message>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Firmware</source>
<translation>Firmware</translation>
<source>Firmware</source>
<translation>Firmware</translation>
</message>
<message>
<source>Serial Number</source>
<translation>Serial Number</translation>
<source>Serial Number</source>
<translation>Serial Number</translation>
</message>
<message>
<source>Protocol</source>
<translation>Protocol</translation>
<source>Protocol</source>
<translation>Protocol</translation>
</message>
<message>
<source>Device Node</source>
<translation>Device Node</translation>
<source>Device Node</source>
<translation>Device Node</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Type</source>
<translation>Type</translation>
<source>Type</source>
<translation>Type</translation>
</message>
<message>
<source>Total Host Reads</source>
<translation>Total Host Reads</translation>
<source>Total Host Reads</source>
<translation>Total Host Reads</translation>
</message>
<message>
<source>Total Host Writes</source>
<translation>Total Host Writes</translation>
<source>Total Host Writes</source>
<translation>Total Host Writes</translation>
</message>
<message>
<source>Rotation Rate</source>
<translation>Rotation Rate</translation>
<source>Rotation Rate</source>
<translation>Rotation Rate</translation>
</message>
<message>
<source>Power On Count</source>
<translation>Power On Count</translation>
<source>Power On Count</source>
<translation>Power On Count</translation>
</message>
<message>
<source>Power On Hours</source>
<translation>Power On Hours</translation>
<source>Power On Hours</source>
<translation>Power On Hours</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>File</source>
<translation>File</translation>
<source>File</source>
<translation>File</translation>
</message>
<message>
<source>Settings</source>
<translation>Settings</translation>
<source>Settings</source>
<translation>Settings</translation>
</message>
<message>
<source>&amp;Help</source>
<translation>&amp;Help</translation>
<source>&amp;Help</source>
<translation>&amp;Help</translation>
</message>
<message>
<source>De&amp;vice</source>
<translation>De&amp;vice</translation>
<source>De&amp;vice</source>
<translation>De&amp;vice</translation>
</message>
<message>
<source>Disk</source>
<translation>Disk</translation>
<source>Disk</source>
<translation>Disk</translation>
</message>
<message>
<source>&amp;Quit</source>
<translation>&amp;Quit</translation>
<source>&amp;Quit</source>
<translation>&amp;Quit</translation>
</message>
<message>
<source>&amp;Refresh Devices</source>
<translation>&amp;Refresh Devices</translation>
<source>&amp;Refresh Devices</source>
<translation>&amp;Refresh Devices</translation>
</message>
<message>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
</message>
<message>
<source>&amp;About QDiskInfo</source>
<translation>&amp;About QDiskInfo</translation>
<source>&amp;About QDiskInfo</source>
<translation>&amp;About QDiskInfo</translation>
</message>
<message>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ignore C4 (Reallocated Event Count)</translation>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ignore C4 (Reallocated Event Count)</translation>
</message>
<message>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Convert Raw values to HEX</translation>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Convert Raw values to HEX</translation>
</message>
<message>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Use Fahrenheit</translation>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Use Fahrenheit</translation>
</message>
<message>
<source>Self Test</source>
<translation>Self Test</translation>
<source>Self Test</source>
<translation>Self Test</translation>
</message>
<message>
<source>Cyclic &amp;Navigation</source>
<translation>Cyclic &amp;Navigation</translation>
<source>Cyclic &amp;Navigation</source>
<translation>Cyclic &amp;Navigation</translation>
</message>
<message>
<source>Use &amp;GB instead of TB</source>
<translation>Use &amp;GB instead of TB</translation>
<source>Use &amp;GB instead of TB</source>
<translation>Use &amp;GB instead of TB</translation>
</message>
<message>
<source>About &amp;Qt</source>
<translation>About &amp;Qt</translation>
<source>About &amp;Qt</source>
<translation>About &amp;Qt</translation>
</message>
<message>
<source>Start Self Test</source>
<translation>Start Self Test</translation>
<source>Start Self Test</source>
<translation>Start Self Test</translation>
</message>
<message>
<source>Self Test Log</source>
<translation>Self Test Log</translation>
<source>Self Test Log</source>
<translation>Self Test Log</translation>
</message>
<message>
<source>Critical Warning</source>
<translation>Critical Warning</translation>
<source>Critical Warning</source>
<translation>Critical Warning</translation>
</message>
<message>
<source>Grown Defect List</source>
<translation>Grown Defect List</translation>
<source>Grown Defect List</source>
<translation>Grown Defect List</translation>
</message>
<message>
<source>Good</source>
<translation>Good</translation>
<source>Good</source>
<translation>Good</translation>
</message>
<message>
<source>Caution</source>
<translation>Caution</translation>
<source>Caution</source>
<translation>Caution</translation>
</message>
<message>
<source>Bad</source>
<translation>Bad</translation>
<source>Bad</source>
<translation>Bad</translation>
</message>
<message>
<source>Unknown</source>
<translation>Unknown</translation>
<source>Unknown</source>
<translation>Unknown</translation>
</message>
<message>
<source>Status</source>
<translation>Status</translation>
<source>Status</source>
<translation>Status</translation>
</message>
<message>
<source>count</source>
<translation>count</translation>
<source>count</source>
<translation>count</translation>
</message>
<message>
<source>hours</source>
<translation>hours</translation>
<source>hours</source>
<translation>hours</translation>
</message>
<message>
<source>Short</source>
<translation>Short</translation>
<source>Short</source>
<translation>Short</translation>
</message>
<message>
<source>Conveyance</source>
<translation>Conveyance</translation>
<source>Conveyance</source>
<translation>Conveyance</translation>
</message>
<message>
<source>Extended</source>
<translation>Extended</translation>
<source>Extended</source>
<translation>Extended</translation>
</message>
<message>
<source>Min.)</source>
<translation>Min.)</translation>
<source>Min.)</source>
<translation>Min.)</translation>
</message>
<message>
<source>Read</source>
<translation>Read</translation>
<source>Read</source>
<translation>Read</translation>
</message>
<message>
<source>Write</source>
<translation>Write</translation>
<source>Write</source>
<translation>Write</translation>
</message>
<message>
<source>Verify</source>
<translation>Verify</translation>
<source>Verify</source>
<translation>Verify</translation>
</message>
<message>
<source>ID</source>
<translation>ID</translation>
<source>ID</source>
<translation>ID</translation>
</message>
<message>
<source>Attribute Name</source>
<translation>Attribute Name</translation>
<source>Attribute Name</source>
<translation>Attribute Name</translation>
</message>
<message>
<source>Raw Values</source>
<translation>Raw Values</translation>
<source>Raw Values</source>
<translation>Raw Values</translation>
</message>
<message>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Available spare capacity has fallen below the threshold</translation>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Available spare capacity has fallen below the threshold</translation>
</message>
<message>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Temperature error (Overheat or Overcool)</translation>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Temperature error (Overheat or Overcool)</translation>
</message>
<message>
<source>NVM subsystem reliability has been degraded</source>
<translation>NVM subsystem reliability has been degraded</translation>
<source>NVM subsystem reliability has been degraded</source>
<translation>NVM subsystem reliability has been degraded</translation>
</message>
<message>
<source>Media has been placed in Read Only Mode</source>
<translation>Media has been placed in Read Only Mode</translation>
<source>Media has been placed in Read Only Mode</source>
<translation>Media has been placed in Read Only Mode</translation>
</message>
<message>
<source>Volatile memory backup device has Failed</source>
<translation>Volatile memory backup device has Failed</translation>
<source>Volatile memory backup device has Failed</source>
<translation>Volatile memory backup device has Failed</translation>
</message>
<message>
<source>Persistent memory region has become Read-Only</source>
<translation>Persistent memory region has become Read-Only</translation>
<source>Persistent memory region has become Read-Only</source>
<translation>Persistent memory region has become Read-Only</translation>
</message>
<message>
<source>Current</source>
<translation>Current</translation>
<source>Current</source>
<translation>Current</translation>
</message>
<message>
<source>Worst</source>
<translation>Worst</translation>
<source>Worst</source>
<translation>Worst</translation>
</message>
<message>
<source>Threshold</source>
<translation>Threshold</translation>
<source>Threshold</source>
<translation>Threshold</translation>
</message>
<message>
<source>Empty JSON</source>
<translation>Empty JSON</translation>
<source>Empty JSON</source>
<translation>Empty JSON</translation>
</message>
<message>
<source>The JSON is empty</source>
<translation>The JSON is empty</translation>
<source>The JSON is empty</source>
<translation>The JSON is empty</translation>
</message>
<message>
<source>Save JSON</source>
<translation>Save JSON</translation>
<source>Save JSON</source>
<translation>Save JSON</translation>
</message>
<message>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;All Files (*)</translation>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;All Files (*)</translation>
</message>
<message>
<source>Unable to open file for writing</source>
<translation>Unable to open file for writing</translation>
<source>Unable to open file for writing</source>
<translation>Unable to open file for writing</translation>
</message>
<message>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>An ATA and NVMe S.M.A.R.T. data viewer for Linux</translation>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>An ATA and NVMe S.M.A.R.T. data viewer for Linux</translation>
</message>
<message>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Licensed under the GNU G.P.L. Version 3</translation>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Licensed under the GNU G.P.L. Version 3</translation>
</message>
<message>
<source>Made by Samantas5855</source>
<translation>Made by Samantas5855</translation>
<source>Made by Samantas5855</source>
<translation>Made by Samantas5855</translation>
</message>
<message>
<source>Version</source>
<translation>Version</translation>
<source>Version</source>
<translation>Version</translation>
</message>
<message>
<source>About QDiskInfo</source>
<translation>About QDiskInfo</translation>
<source>About QDiskInfo</source>
<translation>About QDiskInfo</translation>
</message>
<message>
<source>About Qt</source>
<translation>About Qt</translation>
<source>About Qt</source>
<translation>About Qt</translation>
</message>
<message>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
</message>
<message>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
</message>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
</message>
<message>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
</message>
<message>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
</message>
<message>
<source>Success</source>
<translation type="unfinished">Success</translation>
<source>Success</source>
<translation type="unfinished">Success</translation>
</message>
<message>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
</message>
<message>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
</message>
<message>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
</message>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
</message>
<message>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
</message>
<message>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
</message>
<message>
<source>&amp;Save JSON</source>
<translation>&amp;Save JSON</translation>
</message>
</context>
<context>
</context>
<context>
<name>QObject</name>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
</message>
<message>
<source>smartctl was not found, please install it!</source>
<translation>smartctl was not found, please install it!</translation>
<source>smartctl was not found, please install it!</source>
<translation>smartctl was not found, please install it!</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo needs root access in order to abort a self-test!</translation>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo needs root access in order to abort a self-test!</translation>
</message>
<message>
<source>Test Requested</source>
<translation>Test Requested</translation>
<source>Test Requested</source>
<translation>Test Requested</translation>
</message>
<message>
<source>The self-test has been aborted</source>
<translation>The self-test has been aborted</translation>
<source>The self-test has been aborted</source>
<translation>The self-test has been aborted</translation>
</message>
<message>
<source>Error: Something went wrong</source>
<translation>Error: Something went wrong</translation>
<source>Error: Something went wrong</source>
<translation>Error: Something went wrong</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo needs root access in order to request a self-test!</translation>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo needs root access in order to request a self-test!</translation>
</message>
<message>
<source>remaining</source>
<translation>remaining</translation>
<source>remaining</source>
<translation>remaining</translation>
</message>
<message>
<source>completed</source>
<translation>completed</translation>
<source>completed</source>
<translation>completed</translation>
</message>
<message>
<source>Test Already Running</source>
<translation>Test Already Running</translation>
<source>Test Already Running</source>
<translation>Test Already Running</translation>
</message>
<message>
<source>A self-test is already being performed</source>
<translation>A self-test is already being performed</translation>
<source>A self-test is already being performed</source>
<translation>A self-test is already being performed</translation>
</message>
<message>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>You can press the Ok button in order to abort the test that is currently running</translation>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>You can press the Ok button in order to abort the test that is currently running</translation>
</message>
<message>
<source>A self-test has been requested successfully</source>
<translation>A self-test has been requested successfully</translation>
<source>A self-test has been requested successfully</source>
<translation>A self-test has been requested successfully</translation>
</message>
<message>
<source>It will be completed after</source>
<translation>It will be completed after</translation>
<source>It will be completed after</source>
<translation>It will be completed after</translation>
</message>
<message>
<source>minutes</source>
<translation>minutes</translation>
<source>minutes</source>
<translation>minutes</translation>
</message>
<message>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
</message>
<message>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
</message>
</context>
</context>
</TS>

View File

@@ -1,449 +1,445 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="fr_FR" sourcelanguage="en">
<context>
<context>
<name>GridView</name>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
</message>
</context>
<context>
</context>
<context>
<name>MainWindow</name>
<message>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Firmware</source>
<translation>Firmware</translation>
<source>Firmware</source>
<translation>Firmware</translation>
</message>
<message>
<source>Serial Number</source>
<translation>Serial Number</translation>
<source>Serial Number</source>
<translation>Serial Number</translation>
</message>
<message>
<source>Protocol</source>
<translation>Protocol</translation>
<source>Protocol</source>
<translation>Protocol</translation>
</message>
<message>
<source>Device Node</source>
<translation>Device Node</translation>
<source>Device Node</source>
<translation>Device Node</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Type</source>
<translation>Type</translation>
<source>Type</source>
<translation>Type</translation>
</message>
<message>
<source>Total Host Reads</source>
<translation>Total Host Reads</translation>
<source>Total Host Reads</source>
<translation>Total Host Reads</translation>
</message>
<message>
<source>Total Host Writes</source>
<translation>Total Host Writes</translation>
<source>Total Host Writes</source>
<translation>Total Host Writes</translation>
</message>
<message>
<source>Rotation Rate</source>
<translation>Rotation Rate</translation>
<source>Rotation Rate</source>
<translation>Rotation Rate</translation>
</message>
<message>
<source>Power On Count</source>
<translation>Power On Count</translation>
<source>Power On Count</source>
<translation>Power On Count</translation>
</message>
<message>
<source>Power On Hours</source>
<translation>Power On Hours</translation>
<source>Power On Hours</source>
<translation>Power On Hours</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>File</source>
<translation>File</translation>
<source>File</source>
<translation>File</translation>
</message>
<message>
<source>Settings</source>
<translation>Settings</translation>
<source>Settings</source>
<translation>Settings</translation>
</message>
<message>
<source>&amp;Help</source>
<translation>&amp;Help</translation>
<source>&amp;Help</source>
<translation>&amp;Help</translation>
</message>
<message>
<source>De&amp;vice</source>
<translation>De&amp;vice</translation>
<source>De&amp;vice</source>
<translation>De&amp;vice</translation>
</message>
<message>
<source>Disk</source>
<translation>Disk</translation>
<source>Disk</source>
<translation>Disk</translation>
</message>
<message>
<source>&amp;Quit</source>
<translation>&amp;Quit</translation>
<source>&amp;Quit</source>
<translation>&amp;Quit</translation>
</message>
<message>
<source>&amp;Refresh Devices</source>
<translation>&amp;Refresh Devices</translation>
<source>&amp;Refresh Devices</source>
<translation>&amp;Refresh Devices</translation>
</message>
<message>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
</message>
<message>
<source>&amp;About QDiskInfo</source>
<translation>&amp;About QDiskInfo</translation>
<source>&amp;About QDiskInfo</source>
<translation>&amp;About QDiskInfo</translation>
</message>
<message>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ignore C4 (Reallocated Event Count)</translation>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ignore C4 (Reallocated Event Count)</translation>
</message>
<message>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Convert Raw values to HEX</translation>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Convert Raw values to HEX</translation>
</message>
<message>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Use Fahrenheit</translation>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Use Fahrenheit</translation>
</message>
<message>
<source>Self Test</source>
<translation>Self Test</translation>
<source>Self Test</source>
<translation>Self Test</translation>
</message>
<message>
<source>Cyclic &amp;Navigation</source>
<translation>Cyclic &amp;Navigation</translation>
<source>Cyclic &amp;Navigation</source>
<translation>Cyclic &amp;Navigation</translation>
</message>
<message>
<source>Use &amp;GB instead of TB</source>
<translation>Use &amp;GB instead of TB</translation>
<source>Use &amp;GB instead of TB</source>
<translation>Use &amp;GB instead of TB</translation>
</message>
<message>
<source>About &amp;Qt</source>
<translation>About &amp;Qt</translation>
<source>About &amp;Qt</source>
<translation>About &amp;Qt</translation>
</message>
<message>
<source>Start Self Test</source>
<translation>Start Self Test</translation>
<source>Start Self Test</source>
<translation>Start Self Test</translation>
</message>
<message>
<source>Self Test Log</source>
<translation>Self Test Log</translation>
<source>Self Test Log</source>
<translation>Self Test Log</translation>
</message>
<message>
<source>Critical Warning</source>
<translation>Critical Warning</translation>
<source>Critical Warning</source>
<translation>Critical Warning</translation>
</message>
<message>
<source>Grown Defect List</source>
<translation>Grown Defect List</translation>
<source>Grown Defect List</source>
<translation>Grown Defect List</translation>
</message>
<message>
<source>Good</source>
<translation>Good</translation>
<source>Good</source>
<translation>Good</translation>
</message>
<message>
<source>Caution</source>
<translation>Caution</translation>
<source>Caution</source>
<translation>Caution</translation>
</message>
<message>
<source>Bad</source>
<translation>Bad</translation>
<source>Bad</source>
<translation>Bad</translation>
</message>
<message>
<source>Unknown</source>
<translation>Unknown</translation>
<source>Unknown</source>
<translation>Unknown</translation>
</message>
<message>
<source>Status</source>
<translation>Status</translation>
<source>Status</source>
<translation>Status</translation>
</message>
<message>
<source>count</source>
<translation>count</translation>
<source>count</source>
<translation>count</translation>
</message>
<message>
<source>hours</source>
<translation>hours</translation>
<source>hours</source>
<translation>hours</translation>
</message>
<message>
<source>Short</source>
<translation>Short</translation>
<source>Short</source>
<translation>Short</translation>
</message>
<message>
<source>Conveyance</source>
<translation>Conveyance</translation>
<source>Conveyance</source>
<translation>Conveyance</translation>
</message>
<message>
<source>Extended</source>
<translation>Extended</translation>
<source>Extended</source>
<translation>Extended</translation>
</message>
<message>
<source>Min.)</source>
<translation>Min.)</translation>
<source>Min.)</source>
<translation>Min.)</translation>
</message>
<message>
<source>Read</source>
<translation>Read</translation>
<source>Read</source>
<translation>Read</translation>
</message>
<message>
<source>Write</source>
<translation>Write</translation>
<source>Write</source>
<translation>Write</translation>
</message>
<message>
<source>Verify</source>
<translation>Verify</translation>
<source>Verify</source>
<translation>Verify</translation>
</message>
<message>
<source>ID</source>
<translation>ID</translation>
<source>ID</source>
<translation>ID</translation>
</message>
<message>
<source>Attribute Name</source>
<translation>Attribute Name</translation>
<source>Attribute Name</source>
<translation>Attribute Name</translation>
</message>
<message>
<source>Raw Values</source>
<translation>Raw Values</translation>
<source>Raw Values</source>
<translation>Raw Values</translation>
</message>
<message>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Available spare capacity has fallen below the threshold</translation>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Available spare capacity has fallen below the threshold</translation>
</message>
<message>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Temperature error (Overheat or Overcool)</translation>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Temperature error (Overheat or Overcool)</translation>
</message>
<message>
<source>NVM subsystem reliability has been degraded</source>
<translation>NVM subsystem reliability has been degraded</translation>
<source>NVM subsystem reliability has been degraded</source>
<translation>NVM subsystem reliability has been degraded</translation>
</message>
<message>
<source>Media has been placed in Read Only Mode</source>
<translation>Media has been placed in Read Only Mode</translation>
<source>Media has been placed in Read Only Mode</source>
<translation>Media has been placed in Read Only Mode</translation>
</message>
<message>
<source>Volatile memory backup device has Failed</source>
<translation>Volatile memory backup device has Failed</translation>
<source>Volatile memory backup device has Failed</source>
<translation>Volatile memory backup device has Failed</translation>
</message>
<message>
<source>Persistent memory region has become Read-Only</source>
<translation>Persistent memory region has become Read-Only</translation>
<source>Persistent memory region has become Read-Only</source>
<translation>Persistent memory region has become Read-Only</translation>
</message>
<message>
<source>Current</source>
<translation>Current</translation>
<source>Current</source>
<translation>Current</translation>
</message>
<message>
<source>Worst</source>
<translation>Worst</translation>
<source>Worst</source>
<translation>Worst</translation>
</message>
<message>
<source>Threshold</source>
<translation>Threshold</translation>
<source>Threshold</source>
<translation>Threshold</translation>
</message>
<message>
<source>Empty JSON</source>
<translation>Empty JSON</translation>
<source>Empty JSON</source>
<translation>Empty JSON</translation>
</message>
<message>
<source>The JSON is empty</source>
<translation>The JSON is empty</translation>
<source>The JSON is empty</source>
<translation>The JSON is empty</translation>
</message>
<message>
<source>Save JSON</source>
<translation>Save JSON</translation>
<source>Save JSON</source>
<translation>Save JSON</translation>
</message>
<message>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;All Files (*)</translation>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;All Files (*)</translation>
</message>
<message>
<source>Unable to open file for writing</source>
<translation>Unable to open file for writing</translation>
<source>Unable to open file for writing</source>
<translation>Unable to open file for writing</translation>
</message>
<message>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>An ATA and NVMe S.M.A.R.T. data viewer for Linux</translation>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>An ATA and NVMe S.M.A.R.T. data viewer for Linux</translation>
</message>
<message>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Licensed under the GNU G.P.L. Version 3</translation>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Licensed under the GNU G.P.L. Version 3</translation>
</message>
<message>
<source>Made by Samantas5855</source>
<translation>Made by Samantas5855</translation>
<source>Made by Samantas5855</source>
<translation>Made by Samantas5855</translation>
</message>
<message>
<source>Version</source>
<translation>Version</translation>
<source>Version</source>
<translation>Version</translation>
</message>
<message>
<source>About QDiskInfo</source>
<translation>About QDiskInfo</translation>
<source>About QDiskInfo</source>
<translation>About QDiskInfo</translation>
</message>
<message>
<source>About Qt</source>
<translation>About Qt</translation>
<source>About Qt</source>
<translation>About Qt</translation>
</message>
<message>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
</message>
<message>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
</message>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
</message>
<message>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
</message>
<message>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
</message>
<message>
<source>Success</source>
<translation type="unfinished">Success</translation>
<source>Success</source>
<translation type="unfinished">Success</translation>
</message>
<message>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
</message>
<message>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
</message>
<message>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
</message>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
</message>
<message>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
</message>
<message>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
</message>
<message>
<source>&amp;Save JSON</source>
<translation>&amp;Save JSON</translation>
</message>
</context>
<context>
</context>
<context>
<name>QObject</name>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
</message>
<message>
<source>smartctl was not found, please install it!</source>
<translation>smartctl was not found, please install it!</translation>
<source>smartctl was not found, please install it!</source>
<translation>smartctl was not found, please install it!</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo needs root access in order to abort a self-test!</translation>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo needs root access in order to abort a self-test!</translation>
</message>
<message>
<source>Test Requested</source>
<translation>Test Requested</translation>
<source>Test Requested</source>
<translation>Test Requested</translation>
</message>
<message>
<source>The self-test has been aborted</source>
<translation>The self-test has been aborted</translation>
<source>The self-test has been aborted</source>
<translation>The self-test has been aborted</translation>
</message>
<message>
<source>Error: Something went wrong</source>
<translation>Error: Something went wrong</translation>
<source>Error: Something went wrong</source>
<translation>Error: Something went wrong</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo needs root access in order to request a self-test!</translation>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo needs root access in order to request a self-test!</translation>
</message>
<message>
<source>remaining</source>
<translation>remaining</translation>
<source>remaining</source>
<translation>remaining</translation>
</message>
<message>
<source>completed</source>
<translation>completed</translation>
<source>completed</source>
<translation>completed</translation>
</message>
<message>
<source>Test Already Running</source>
<translation>Test Already Running</translation>
<source>Test Already Running</source>
<translation>Test Already Running</translation>
</message>
<message>
<source>A self-test is already being performed</source>
<translation>A self-test is already being performed</translation>
<source>A self-test is already being performed</source>
<translation>A self-test is already being performed</translation>
</message>
<message>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>You can press the Ok button in order to abort the test that is currently running</translation>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>You can press the Ok button in order to abort the test that is currently running</translation>
</message>
<message>
<source>A self-test has been requested successfully</source>
<translation>A self-test has been requested successfully</translation>
<source>A self-test has been requested successfully</source>
<translation>A self-test has been requested successfully</translation>
</message>
<message>
<source>It will be completed after</source>
<translation>It will be completed after</translation>
<source>It will be completed after</source>
<translation>It will be completed after</translation>
</message>
<message>
<source>minutes</source>
<translation>minutes</translation>
<source>minutes</source>
<translation>minutes</translation>
</message>
<message>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
</message>
<message>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
</message>
</context>
</context>
</TS>

View File

@@ -1,449 +1,445 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="he_IL" sourcelanguage="en">
<context>
<context>
<name>GridView</name>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
</message>
</context>
<context>
</context>
<context>
<name>MainWindow</name>
<message>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Firmware</source>
<translation>Firmware</translation>
<source>Firmware</source>
<translation>Firmware</translation>
</message>
<message>
<source>Serial Number</source>
<translation>Serial Number</translation>
<source>Serial Number</source>
<translation>Serial Number</translation>
</message>
<message>
<source>Protocol</source>
<translation>Protocol</translation>
<source>Protocol</source>
<translation>Protocol</translation>
</message>
<message>
<source>Device Node</source>
<translation>Device Node</translation>
<source>Device Node</source>
<translation>Device Node</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Type</source>
<translation>Type</translation>
<source>Type</source>
<translation>Type</translation>
</message>
<message>
<source>Total Host Reads</source>
<translation>Total Host Reads</translation>
<source>Total Host Reads</source>
<translation>Total Host Reads</translation>
</message>
<message>
<source>Total Host Writes</source>
<translation>Total Host Writes</translation>
<source>Total Host Writes</source>
<translation>Total Host Writes</translation>
</message>
<message>
<source>Rotation Rate</source>
<translation>Rotation Rate</translation>
<source>Rotation Rate</source>
<translation>Rotation Rate</translation>
</message>
<message>
<source>Power On Count</source>
<translation>Power On Count</translation>
<source>Power On Count</source>
<translation>Power On Count</translation>
</message>
<message>
<source>Power On Hours</source>
<translation>Power On Hours</translation>
<source>Power On Hours</source>
<translation>Power On Hours</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>File</source>
<translation>File</translation>
<source>File</source>
<translation>File</translation>
</message>
<message>
<source>Settings</source>
<translation>Settings</translation>
<source>Settings</source>
<translation>Settings</translation>
</message>
<message>
<source>&amp;Help</source>
<translation>&amp;Help</translation>
<source>&amp;Help</source>
<translation>&amp;Help</translation>
</message>
<message>
<source>De&amp;vice</source>
<translation>De&amp;vice</translation>
<source>De&amp;vice</source>
<translation>De&amp;vice</translation>
</message>
<message>
<source>Disk</source>
<translation>Disk</translation>
<source>Disk</source>
<translation>Disk</translation>
</message>
<message>
<source>&amp;Quit</source>
<translation>&amp;Quit</translation>
<source>&amp;Quit</source>
<translation>&amp;Quit</translation>
</message>
<message>
<source>&amp;Refresh Devices</source>
<translation>&amp;Refresh Devices</translation>
<source>&amp;Refresh Devices</source>
<translation>&amp;Refresh Devices</translation>
</message>
<message>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
</message>
<message>
<source>&amp;About QDiskInfo</source>
<translation>&amp;About QDiskInfo</translation>
<source>&amp;About QDiskInfo</source>
<translation>&amp;About QDiskInfo</translation>
</message>
<message>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ignore C4 (Reallocated Event Count)</translation>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ignore C4 (Reallocated Event Count)</translation>
</message>
<message>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Convert Raw values to HEX</translation>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Convert Raw values to HEX</translation>
</message>
<message>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Use Fahrenheit</translation>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Use Fahrenheit</translation>
</message>
<message>
<source>Self Test</source>
<translation>Self Test</translation>
<source>Self Test</source>
<translation>Self Test</translation>
</message>
<message>
<source>Cyclic &amp;Navigation</source>
<translation>Cyclic &amp;Navigation</translation>
<source>Cyclic &amp;Navigation</source>
<translation>Cyclic &amp;Navigation</translation>
</message>
<message>
<source>Use &amp;GB instead of TB</source>
<translation>Use &amp;GB instead of TB</translation>
<source>Use &amp;GB instead of TB</source>
<translation>Use &amp;GB instead of TB</translation>
</message>
<message>
<source>About &amp;Qt</source>
<translation>About &amp;Qt</translation>
<source>About &amp;Qt</source>
<translation>About &amp;Qt</translation>
</message>
<message>
<source>Start Self Test</source>
<translation>Start Self Test</translation>
<source>Start Self Test</source>
<translation>Start Self Test</translation>
</message>
<message>
<source>Self Test Log</source>
<translation>Self Test Log</translation>
<source>Self Test Log</source>
<translation>Self Test Log</translation>
</message>
<message>
<source>Critical Warning</source>
<translation>Critical Warning</translation>
<source>Critical Warning</source>
<translation>Critical Warning</translation>
</message>
<message>
<source>Grown Defect List</source>
<translation>Grown Defect List</translation>
<source>Grown Defect List</source>
<translation>Grown Defect List</translation>
</message>
<message>
<source>Good</source>
<translation>Good</translation>
<source>Good</source>
<translation>Good</translation>
</message>
<message>
<source>Caution</source>
<translation>Caution</translation>
<source>Caution</source>
<translation>Caution</translation>
</message>
<message>
<source>Bad</source>
<translation>Bad</translation>
<source>Bad</source>
<translation>Bad</translation>
</message>
<message>
<source>Unknown</source>
<translation>Unknown</translation>
<source>Unknown</source>
<translation>Unknown</translation>
</message>
<message>
<source>Status</source>
<translation>Status</translation>
<source>Status</source>
<translation>Status</translation>
</message>
<message>
<source>count</source>
<translation>count</translation>
<source>count</source>
<translation>count</translation>
</message>
<message>
<source>hours</source>
<translation>hours</translation>
<source>hours</source>
<translation>hours</translation>
</message>
<message>
<source>Short</source>
<translation>Short</translation>
<source>Short</source>
<translation>Short</translation>
</message>
<message>
<source>Conveyance</source>
<translation>Conveyance</translation>
<source>Conveyance</source>
<translation>Conveyance</translation>
</message>
<message>
<source>Extended</source>
<translation>Extended</translation>
<source>Extended</source>
<translation>Extended</translation>
</message>
<message>
<source>Min.)</source>
<translation>Min.)</translation>
<source>Min.)</source>
<translation>Min.)</translation>
</message>
<message>
<source>Read</source>
<translation>Read</translation>
<source>Read</source>
<translation>Read</translation>
</message>
<message>
<source>Write</source>
<translation>Write</translation>
<source>Write</source>
<translation>Write</translation>
</message>
<message>
<source>Verify</source>
<translation>Verify</translation>
<source>Verify</source>
<translation>Verify</translation>
</message>
<message>
<source>ID</source>
<translation>ID</translation>
<source>ID</source>
<translation>ID</translation>
</message>
<message>
<source>Attribute Name</source>
<translation>Attribute Name</translation>
<source>Attribute Name</source>
<translation>Attribute Name</translation>
</message>
<message>
<source>Raw Values</source>
<translation>Raw Values</translation>
<source>Raw Values</source>
<translation>Raw Values</translation>
</message>
<message>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Available spare capacity has fallen below the threshold</translation>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Available spare capacity has fallen below the threshold</translation>
</message>
<message>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Temperature error (Overheat or Overcool)</translation>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Temperature error (Overheat or Overcool)</translation>
</message>
<message>
<source>NVM subsystem reliability has been degraded</source>
<translation>NVM subsystem reliability has been degraded</translation>
<source>NVM subsystem reliability has been degraded</source>
<translation>NVM subsystem reliability has been degraded</translation>
</message>
<message>
<source>Media has been placed in Read Only Mode</source>
<translation>Media has been placed in Read Only Mode</translation>
<source>Media has been placed in Read Only Mode</source>
<translation>Media has been placed in Read Only Mode</translation>
</message>
<message>
<source>Volatile memory backup device has Failed</source>
<translation>Volatile memory backup device has Failed</translation>
<source>Volatile memory backup device has Failed</source>
<translation>Volatile memory backup device has Failed</translation>
</message>
<message>
<source>Persistent memory region has become Read-Only</source>
<translation>Persistent memory region has become Read-Only</translation>
<source>Persistent memory region has become Read-Only</source>
<translation>Persistent memory region has become Read-Only</translation>
</message>
<message>
<source>Current</source>
<translation>Current</translation>
<source>Current</source>
<translation>Current</translation>
</message>
<message>
<source>Worst</source>
<translation>Worst</translation>
<source>Worst</source>
<translation>Worst</translation>
</message>
<message>
<source>Threshold</source>
<translation>Threshold</translation>
<source>Threshold</source>
<translation>Threshold</translation>
</message>
<message>
<source>Empty JSON</source>
<translation>Empty JSON</translation>
<source>Empty JSON</source>
<translation>Empty JSON</translation>
</message>
<message>
<source>The JSON is empty</source>
<translation>The JSON is empty</translation>
<source>The JSON is empty</source>
<translation>The JSON is empty</translation>
</message>
<message>
<source>Save JSON</source>
<translation>Save JSON</translation>
<source>Save JSON</source>
<translation>Save JSON</translation>
</message>
<message>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;All Files (*)</translation>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;All Files (*)</translation>
</message>
<message>
<source>Unable to open file for writing</source>
<translation>Unable to open file for writing</translation>
<source>Unable to open file for writing</source>
<translation>Unable to open file for writing</translation>
</message>
<message>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>An ATA and NVMe S.M.A.R.T. data viewer for Linux</translation>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>An ATA and NVMe S.M.A.R.T. data viewer for Linux</translation>
</message>
<message>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Licensed under the GNU G.P.L. Version 3</translation>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Licensed under the GNU G.P.L. Version 3</translation>
</message>
<message>
<source>Made by Samantas5855</source>
<translation>Made by Samantas5855</translation>
<source>Made by Samantas5855</source>
<translation>Made by Samantas5855</translation>
</message>
<message>
<source>Version</source>
<translation>Version</translation>
<source>Version</source>
<translation>Version</translation>
</message>
<message>
<source>About QDiskInfo</source>
<translation>About QDiskInfo</translation>
<source>About QDiskInfo</source>
<translation>About QDiskInfo</translation>
</message>
<message>
<source>About Qt</source>
<translation>About Qt</translation>
<source>About Qt</source>
<translation>About Qt</translation>
</message>
<message>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
</message>
<message>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
</message>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
</message>
<message>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
</message>
<message>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
</message>
<message>
<source>Success</source>
<translation type="unfinished">Success</translation>
<source>Success</source>
<translation type="unfinished">Success</translation>
</message>
<message>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
</message>
<message>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
</message>
<message>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
</message>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
</message>
<message>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
</message>
<message>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
</message>
<message>
<source>&amp;Save JSON</source>
<translation>&amp;Save JSON</translation>
</message>
</context>
<context>
</context>
<context>
<name>QObject</name>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
</message>
<message>
<source>smartctl was not found, please install it!</source>
<translation>smartctl was not found, please install it!</translation>
<source>smartctl was not found, please install it!</source>
<translation>smartctl was not found, please install it!</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo needs root access in order to abort a self-test!</translation>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo needs root access in order to abort a self-test!</translation>
</message>
<message>
<source>Test Requested</source>
<translation>Test Requested</translation>
<source>Test Requested</source>
<translation>Test Requested</translation>
</message>
<message>
<source>The self-test has been aborted</source>
<translation>The self-test has been aborted</translation>
<source>The self-test has been aborted</source>
<translation>The self-test has been aborted</translation>
</message>
<message>
<source>Error: Something went wrong</source>
<translation>Error: Something went wrong</translation>
<source>Error: Something went wrong</source>
<translation>Error: Something went wrong</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo needs root access in order to request a self-test!</translation>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo needs root access in order to request a self-test!</translation>
</message>
<message>
<source>remaining</source>
<translation>remaining</translation>
<source>remaining</source>
<translation>remaining</translation>
</message>
<message>
<source>completed</source>
<translation>completed</translation>
<source>completed</source>
<translation>completed</translation>
</message>
<message>
<source>Test Already Running</source>
<translation>Test Already Running</translation>
<source>Test Already Running</source>
<translation>Test Already Running</translation>
</message>
<message>
<source>A self-test is already being performed</source>
<translation>A self-test is already being performed</translation>
<source>A self-test is already being performed</source>
<translation>A self-test is already being performed</translation>
</message>
<message>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>You can press the Ok button in order to abort the test that is currently running</translation>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>You can press the Ok button in order to abort the test that is currently running</translation>
</message>
<message>
<source>A self-test has been requested successfully</source>
<translation>A self-test has been requested successfully</translation>
<source>A self-test has been requested successfully</source>
<translation>A self-test has been requested successfully</translation>
</message>
<message>
<source>It will be completed after</source>
<translation>It will be completed after</translation>
<source>It will be completed after</source>
<translation>It will be completed after</translation>
</message>
<message>
<source>minutes</source>
<translation>minutes</translation>
<source>minutes</source>
<translation>minutes</translation>
</message>
<message>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
</message>
<message>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
</message>
</context>
</context>
</TS>

View File

@@ -1,449 +1,445 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="hu_HU" sourcelanguage="en">
<context>
<context>
<name>GridView</name>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
</message>
</context>
<context>
</context>
<context>
<name>MainWindow</name>
<message>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Firmware</source>
<translation>Firmware</translation>
<source>Firmware</source>
<translation>Firmware</translation>
</message>
<message>
<source>Serial Number</source>
<translation>Serial Number</translation>
<source>Serial Number</source>
<translation>Serial Number</translation>
</message>
<message>
<source>Protocol</source>
<translation>Protocol</translation>
<source>Protocol</source>
<translation>Protocol</translation>
</message>
<message>
<source>Device Node</source>
<translation>Device Node</translation>
<source>Device Node</source>
<translation>Device Node</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Type</source>
<translation>Type</translation>
<source>Type</source>
<translation>Type</translation>
</message>
<message>
<source>Total Host Reads</source>
<translation>Total Host Reads</translation>
<source>Total Host Reads</source>
<translation>Total Host Reads</translation>
</message>
<message>
<source>Total Host Writes</source>
<translation>Total Host Writes</translation>
<source>Total Host Writes</source>
<translation>Total Host Writes</translation>
</message>
<message>
<source>Rotation Rate</source>
<translation>Rotation Rate</translation>
<source>Rotation Rate</source>
<translation>Rotation Rate</translation>
</message>
<message>
<source>Power On Count</source>
<translation>Power On Count</translation>
<source>Power On Count</source>
<translation>Power On Count</translation>
</message>
<message>
<source>Power On Hours</source>
<translation>Power On Hours</translation>
<source>Power On Hours</source>
<translation>Power On Hours</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>File</source>
<translation>File</translation>
<source>File</source>
<translation>File</translation>
</message>
<message>
<source>Settings</source>
<translation>Settings</translation>
<source>Settings</source>
<translation>Settings</translation>
</message>
<message>
<source>&amp;Help</source>
<translation>&amp;Help</translation>
<source>&amp;Help</source>
<translation>&amp;Help</translation>
</message>
<message>
<source>De&amp;vice</source>
<translation>De&amp;vice</translation>
<source>De&amp;vice</source>
<translation>De&amp;vice</translation>
</message>
<message>
<source>Disk</source>
<translation>Disk</translation>
<source>Disk</source>
<translation>Disk</translation>
</message>
<message>
<source>&amp;Quit</source>
<translation>&amp;Quit</translation>
<source>&amp;Quit</source>
<translation>&amp;Quit</translation>
</message>
<message>
<source>&amp;Refresh Devices</source>
<translation>&amp;Refresh Devices</translation>
<source>&amp;Refresh Devices</source>
<translation>&amp;Refresh Devices</translation>
</message>
<message>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
</message>
<message>
<source>&amp;About QDiskInfo</source>
<translation>&amp;About QDiskInfo</translation>
<source>&amp;About QDiskInfo</source>
<translation>&amp;About QDiskInfo</translation>
</message>
<message>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ignore C4 (Reallocated Event Count)</translation>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ignore C4 (Reallocated Event Count)</translation>
</message>
<message>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Convert Raw values to HEX</translation>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Convert Raw values to HEX</translation>
</message>
<message>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Use Fahrenheit</translation>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Use Fahrenheit</translation>
</message>
<message>
<source>Self Test</source>
<translation>Self Test</translation>
<source>Self Test</source>
<translation>Self Test</translation>
</message>
<message>
<source>Cyclic &amp;Navigation</source>
<translation>Cyclic &amp;Navigation</translation>
<source>Cyclic &amp;Navigation</source>
<translation>Cyclic &amp;Navigation</translation>
</message>
<message>
<source>Use &amp;GB instead of TB</source>
<translation>Use &amp;GB instead of TB</translation>
<source>Use &amp;GB instead of TB</source>
<translation>Use &amp;GB instead of TB</translation>
</message>
<message>
<source>About &amp;Qt</source>
<translation>About &amp;Qt</translation>
<source>About &amp;Qt</source>
<translation>About &amp;Qt</translation>
</message>
<message>
<source>Start Self Test</source>
<translation>Start Self Test</translation>
<source>Start Self Test</source>
<translation>Start Self Test</translation>
</message>
<message>
<source>Self Test Log</source>
<translation>Self Test Log</translation>
<source>Self Test Log</source>
<translation>Self Test Log</translation>
</message>
<message>
<source>Critical Warning</source>
<translation>Critical Warning</translation>
<source>Critical Warning</source>
<translation>Critical Warning</translation>
</message>
<message>
<source>Grown Defect List</source>
<translation>Grown Defect List</translation>
<source>Grown Defect List</source>
<translation>Grown Defect List</translation>
</message>
<message>
<source>Good</source>
<translation>Good</translation>
<source>Good</source>
<translation>Good</translation>
</message>
<message>
<source>Caution</source>
<translation>Caution</translation>
<source>Caution</source>
<translation>Caution</translation>
</message>
<message>
<source>Bad</source>
<translation>Bad</translation>
<source>Bad</source>
<translation>Bad</translation>
</message>
<message>
<source>Unknown</source>
<translation>Unknown</translation>
<source>Unknown</source>
<translation>Unknown</translation>
</message>
<message>
<source>Status</source>
<translation>Status</translation>
<source>Status</source>
<translation>Status</translation>
</message>
<message>
<source>count</source>
<translation>count</translation>
<source>count</source>
<translation>count</translation>
</message>
<message>
<source>hours</source>
<translation>hours</translation>
<source>hours</source>
<translation>hours</translation>
</message>
<message>
<source>Short</source>
<translation>Short</translation>
<source>Short</source>
<translation>Short</translation>
</message>
<message>
<source>Conveyance</source>
<translation>Conveyance</translation>
<source>Conveyance</source>
<translation>Conveyance</translation>
</message>
<message>
<source>Extended</source>
<translation>Extended</translation>
<source>Extended</source>
<translation>Extended</translation>
</message>
<message>
<source>Min.)</source>
<translation>Min.)</translation>
<source>Min.)</source>
<translation>Min.)</translation>
</message>
<message>
<source>Read</source>
<translation>Read</translation>
<source>Read</source>
<translation>Read</translation>
</message>
<message>
<source>Write</source>
<translation>Write</translation>
<source>Write</source>
<translation>Write</translation>
</message>
<message>
<source>Verify</source>
<translation>Verify</translation>
<source>Verify</source>
<translation>Verify</translation>
</message>
<message>
<source>ID</source>
<translation>ID</translation>
<source>ID</source>
<translation>ID</translation>
</message>
<message>
<source>Attribute Name</source>
<translation>Attribute Name</translation>
<source>Attribute Name</source>
<translation>Attribute Name</translation>
</message>
<message>
<source>Raw Values</source>
<translation>Raw Values</translation>
<source>Raw Values</source>
<translation>Raw Values</translation>
</message>
<message>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Available spare capacity has fallen below the threshold</translation>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Available spare capacity has fallen below the threshold</translation>
</message>
<message>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Temperature error (Overheat or Overcool)</translation>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Temperature error (Overheat or Overcool)</translation>
</message>
<message>
<source>NVM subsystem reliability has been degraded</source>
<translation>NVM subsystem reliability has been degraded</translation>
<source>NVM subsystem reliability has been degraded</source>
<translation>NVM subsystem reliability has been degraded</translation>
</message>
<message>
<source>Media has been placed in Read Only Mode</source>
<translation>Media has been placed in Read Only Mode</translation>
<source>Media has been placed in Read Only Mode</source>
<translation>Media has been placed in Read Only Mode</translation>
</message>
<message>
<source>Volatile memory backup device has Failed</source>
<translation>Volatile memory backup device has Failed</translation>
<source>Volatile memory backup device has Failed</source>
<translation>Volatile memory backup device has Failed</translation>
</message>
<message>
<source>Persistent memory region has become Read-Only</source>
<translation>Persistent memory region has become Read-Only</translation>
<source>Persistent memory region has become Read-Only</source>
<translation>Persistent memory region has become Read-Only</translation>
</message>
<message>
<source>Current</source>
<translation>Current</translation>
<source>Current</source>
<translation>Current</translation>
</message>
<message>
<source>Worst</source>
<translation>Worst</translation>
<source>Worst</source>
<translation>Worst</translation>
</message>
<message>
<source>Threshold</source>
<translation>Threshold</translation>
<source>Threshold</source>
<translation>Threshold</translation>
</message>
<message>
<source>Empty JSON</source>
<translation>Empty JSON</translation>
<source>Empty JSON</source>
<translation>Empty JSON</translation>
</message>
<message>
<source>The JSON is empty</source>
<translation>The JSON is empty</translation>
<source>The JSON is empty</source>
<translation>The JSON is empty</translation>
</message>
<message>
<source>Save JSON</source>
<translation>Save JSON</translation>
<source>Save JSON</source>
<translation>Save JSON</translation>
</message>
<message>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;All Files (*)</translation>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;All Files (*)</translation>
</message>
<message>
<source>Unable to open file for writing</source>
<translation>Unable to open file for writing</translation>
<source>Unable to open file for writing</source>
<translation>Unable to open file for writing</translation>
</message>
<message>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>An ATA and NVMe S.M.A.R.T. data viewer for Linux</translation>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>An ATA and NVMe S.M.A.R.T. data viewer for Linux</translation>
</message>
<message>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Licensed under the GNU G.P.L. Version 3</translation>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Licensed under the GNU G.P.L. Version 3</translation>
</message>
<message>
<source>Made by Samantas5855</source>
<translation>Made by Samantas5855</translation>
<source>Made by Samantas5855</source>
<translation>Made by Samantas5855</translation>
</message>
<message>
<source>Version</source>
<translation>Version</translation>
<source>Version</source>
<translation>Version</translation>
</message>
<message>
<source>About QDiskInfo</source>
<translation>About QDiskInfo</translation>
<source>About QDiskInfo</source>
<translation>About QDiskInfo</translation>
</message>
<message>
<source>About Qt</source>
<translation>About Qt</translation>
<source>About Qt</source>
<translation>About Qt</translation>
</message>
<message>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
</message>
<message>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
</message>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
</message>
<message>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
</message>
<message>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
</message>
<message>
<source>Success</source>
<translation type="unfinished">Success</translation>
<source>Success</source>
<translation type="unfinished">Success</translation>
</message>
<message>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
</message>
<message>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
</message>
<message>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
</message>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
</message>
<message>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
</message>
<message>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
</message>
<message>
<source>&amp;Save JSON</source>
<translation>&amp;Save JSON</translation>
</message>
</context>
<context>
</context>
<context>
<name>QObject</name>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
</message>
<message>
<source>smartctl was not found, please install it!</source>
<translation>smartctl was not found, please install it!</translation>
<source>smartctl was not found, please install it!</source>
<translation>smartctl was not found, please install it!</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo needs root access in order to abort a self-test!</translation>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo needs root access in order to abort a self-test!</translation>
</message>
<message>
<source>Test Requested</source>
<translation>Test Requested</translation>
<source>Test Requested</source>
<translation>Test Requested</translation>
</message>
<message>
<source>The self-test has been aborted</source>
<translation>The self-test has been aborted</translation>
<source>The self-test has been aborted</source>
<translation>The self-test has been aborted</translation>
</message>
<message>
<source>Error: Something went wrong</source>
<translation>Error: Something went wrong</translation>
<source>Error: Something went wrong</source>
<translation>Error: Something went wrong</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo needs root access in order to request a self-test!</translation>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo needs root access in order to request a self-test!</translation>
</message>
<message>
<source>remaining</source>
<translation>remaining</translation>
<source>remaining</source>
<translation>remaining</translation>
</message>
<message>
<source>completed</source>
<translation>completed</translation>
<source>completed</source>
<translation>completed</translation>
</message>
<message>
<source>Test Already Running</source>
<translation>Test Already Running</translation>
<source>Test Already Running</source>
<translation>Test Already Running</translation>
</message>
<message>
<source>A self-test is already being performed</source>
<translation>A self-test is already being performed</translation>
<source>A self-test is already being performed</source>
<translation>A self-test is already being performed</translation>
</message>
<message>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>You can press the Ok button in order to abort the test that is currently running</translation>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>You can press the Ok button in order to abort the test that is currently running</translation>
</message>
<message>
<source>A self-test has been requested successfully</source>
<translation>A self-test has been requested successfully</translation>
<source>A self-test has been requested successfully</source>
<translation>A self-test has been requested successfully</translation>
</message>
<message>
<source>It will be completed after</source>
<translation>It will be completed after</translation>
<source>It will be completed after</source>
<translation>It will be completed after</translation>
</message>
<message>
<source>minutes</source>
<translation>minutes</translation>
<source>minutes</source>
<translation>minutes</translation>
</message>
<message>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
</message>
<message>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
</message>
</context>
</context>
</TS>

View File

@@ -1,449 +1,445 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="it_IT" sourcelanguage="en">
<context>
<context>
<name>GridView</name>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
</message>
</context>
<context>
</context>
<context>
<name>MainWindow</name>
<message>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Stato di salute&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Stato di salute&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Buono&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Buono&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperatura&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperatura&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Firmware</source>
<translation>Firmware</translation>
<source>Firmware</source>
<translation>Firmware</translation>
</message>
<message>
<source>Serial Number</source>
<translation>Numero di serie</translation>
<source>Serial Number</source>
<translation>Numero di serie</translation>
</message>
<message>
<source>Protocol</source>
<translation>Protocollo</translation>
<source>Protocol</source>
<translation>Protocollo</translation>
</message>
<message>
<source>Device Node</source>
<translation>Nodo dispositivo</translation>
<source>Device Node</source>
<translation>Nodo dispositivo</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Buono 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Buono 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Type</source>
<translation>Tipo</translation>
<source>Type</source>
<translation>Tipo</translation>
</message>
<message>
<source>Total Host Reads</source>
<translation>Totale letture host</translation>
<source>Total Host Reads</source>
<translation>Totale letture host</translation>
</message>
<message>
<source>Total Host Writes</source>
<translation>Totale scritture host</translation>
<source>Total Host Writes</source>
<translation>Totale scritture host</translation>
</message>
<message>
<source>Rotation Rate</source>
<translation>Tasso di rotazione</translation>
<source>Rotation Rate</source>
<translation>Tasso di rotazione</translation>
</message>
<message>
<source>Power On Count</source>
<translation>Conteggio accensioni</translation>
<source>Power On Count</source>
<translation>Conteggio accensioni</translation>
</message>
<message>
<source>Power On Hours</source>
<translation>Ore funzionamento</translation>
<source>Power On Hours</source>
<translation>Ore funzionamento</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Nome hard disc&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Nome hard disc&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>File</source>
<translation>File</translation>
<source>File</source>
<translation>File</translation>
</message>
<message>
<source>Settings</source>
<translation>Impostazioni</translation>
<source>Settings</source>
<translation>Impostazioni</translation>
</message>
<message>
<source>&amp;Help</source>
<translation>&amp;Aiuto</translation>
<source>&amp;Help</source>
<translation>&amp;Aiuto</translation>
</message>
<message>
<source>De&amp;vice</source>
<translation>Dispositi&amp;vo</translation>
<source>De&amp;vice</source>
<translation>Dispositi&amp;vo</translation>
</message>
<message>
<source>Disk</source>
<translation>Disco</translation>
<source>Disk</source>
<translation>Disco</translation>
</message>
<message>
<source>&amp;Quit</source>
<translation>&amp;Esci</translation>
<source>&amp;Quit</source>
<translation>&amp;Esci</translation>
</message>
<message>
<source>&amp;Refresh Devices</source>
<translation>Aggio&amp;rna dispositivi</translation>
<source>&amp;Refresh Devices</source>
<translation>Aggio&amp;rna dispositivi</translation>
</message>
<message>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
</message>
<message>
<source>&amp;About QDiskInfo</source>
<translation>&amp;Info su QDiskInfo</translation>
<source>&amp;About QDiskInfo</source>
<translation>&amp;Info su QDiskInfo</translation>
</message>
<message>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ignora C4 (conteggio eventi di riallocazione)</translation>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ignora C4 (conteggio eventi di riallocazione)</translation>
</message>
<message>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Converti valori grezzi in HEX</translation>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Converti valori grezzi in HEX</translation>
</message>
<message>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Usa i Fahrenheit</translation>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Usa i Fahrenheit</translation>
</message>
<message>
<source>Self Test</source>
<translation>Autotest</translation>
<source>Self Test</source>
<translation>Autotest</translation>
</message>
<message>
<source>Cyclic &amp;Navigation</source>
<translation>&amp;Navigazione Ciclica</translation>
<source>Cyclic &amp;Navigation</source>
<translation>&amp;Navigazione Ciclica</translation>
</message>
<message>
<source>Use &amp;GB instead of TB</source>
<translation>Usa &amp;GB invece di TB</translation>
<source>Use &amp;GB instead of TB</source>
<translation>Usa &amp;GB invece di TB</translation>
</message>
<message>
<source>About &amp;Qt</source>
<translation>Info su &amp;Qt</translation>
<source>About &amp;Qt</source>
<translation>Info su &amp;Qt</translation>
</message>
<message>
<source>Start Self Test</source>
<translation>Avvia autotest</translation>
<source>Start Self Test</source>
<translation>Avvia autotest</translation>
</message>
<message>
<source>Self Test Log</source>
<translation>Registro dell&apos;autotest</translation>
<source>Self Test Log</source>
<translation>Registro dell&apos;autotest</translation>
</message>
<message>
<source>Critical Warning</source>
<translation>Avviso critico</translation>
<source>Critical Warning</source>
<translation>Avviso critico</translation>
</message>
<message>
<source>Grown Defect List</source>
<translation>Elenco aumento difetti</translation>
<source>Grown Defect List</source>
<translation>Elenco aumento difetti</translation>
</message>
<message>
<source>Good</source>
<translation>Buono</translation>
<source>Good</source>
<translation>Buono</translation>
</message>
<message>
<source>Caution</source>
<translation>Attenzione</translation>
<source>Caution</source>
<translation>Attenzione</translation>
</message>
<message>
<source>Bad</source>
<translation>Cattivo</translation>
<source>Bad</source>
<translation>Cattivo</translation>
</message>
<message>
<source>Unknown</source>
<translation>Sconosciuto</translation>
<source>Unknown</source>
<translation>Sconosciuto</translation>
</message>
<message>
<source>Status</source>
<translation>Stato</translation>
<source>Status</source>
<translation>Stato</translation>
</message>
<message>
<source>count</source>
<translation>conteggio</translation>
<source>count</source>
<translation>conteggio</translation>
</message>
<message>
<source>hours</source>
<translation>ore</translation>
<source>hours</source>
<translation>ore</translation>
</message>
<message>
<source>Short</source>
<translation>Breve</translation>
<source>Short</source>
<translation>Breve</translation>
</message>
<message>
<source>Conveyance</source>
<translation>Trasporto</translation>
<source>Conveyance</source>
<translation>Trasporto</translation>
</message>
<message>
<source>Extended</source>
<translation>Esteso</translation>
<source>Extended</source>
<translation>Esteso</translation>
</message>
<message>
<source>Min.)</source>
<translation>Min.)</translation>
<source>Min.)</source>
<translation>Min.)</translation>
</message>
<message>
<source>Read</source>
<translation>Lettura</translation>
<source>Read</source>
<translation>Lettura</translation>
</message>
<message>
<source>Write</source>
<translation>Scrivi</translation>
<source>Write</source>
<translation>Scrivi</translation>
</message>
<message>
<source>Verify</source>
<translation>Verifica</translation>
<source>Verify</source>
<translation>Verifica</translation>
</message>
<message>
<source>ID</source>
<translation>ID</translation>
<source>ID</source>
<translation>ID</translation>
</message>
<message>
<source>Attribute Name</source>
<translation>Nome attributo</translation>
<source>Attribute Name</source>
<translation>Nome attributo</translation>
</message>
<message>
<source>Raw Values</source>
<translation>Valori grezzi</translation>
<source>Raw Values</source>
<translation>Valori grezzi</translation>
</message>
<message>
<source>Available spare capacity has fallen below the threshold</source>
<translation>La capacità inutilizzata disponibile è scesa al di sotto della soglia</translation>
<source>Available spare capacity has fallen below the threshold</source>
<translation>La capacità inutilizzata disponibile è scesa al di sotto della soglia</translation>
</message>
<message>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Errore di temperatura (surriscaldamento o sovraraffreddamento)</translation>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Errore di temperatura (surriscaldamento o sovraraffreddamento)</translation>
</message>
<message>
<source>NVM subsystem reliability has been degraded</source>
<translation>L&apos;affidabilità del sottosistema NVM è diminuita</translation>
<source>NVM subsystem reliability has been degraded</source>
<translation>L&apos;affidabilità del sottosistema NVM è diminuita</translation>
</message>
<message>
<source>Media has been placed in Read Only Mode</source>
<translation>Il supporto è stato posto in modalità sola lettura</translation>
<source>Media has been placed in Read Only Mode</source>
<translation>Il supporto è stato posto in modalità sola lettura</translation>
</message>
<message>
<source>Volatile memory backup device has Failed</source>
<translation>Il dispositivo di backup della memoria volatile ha fallito</translation>
<source>Volatile memory backup device has Failed</source>
<translation>Il dispositivo di backup della memoria volatile ha fallito</translation>
</message>
<message>
<source>Persistent memory region has become Read-Only</source>
<translation>La regione della memoria persistente è diventata di sola lettura</translation>
<source>Persistent memory region has become Read-Only</source>
<translation>La regione della memoria persistente è diventata di sola lettura</translation>
</message>
<message>
<source>Current</source>
<translation>Corrente</translation>
<source>Current</source>
<translation>Corrente</translation>
</message>
<message>
<source>Worst</source>
<translation>Peggiore</translation>
<source>Worst</source>
<translation>Peggiore</translation>
</message>
<message>
<source>Threshold</source>
<translation>Soglia</translation>
<source>Threshold</source>
<translation>Soglia</translation>
</message>
<message>
<source>Empty JSON</source>
<translation>JSON vuoto</translation>
<source>Empty JSON</source>
<translation>JSON vuoto</translation>
</message>
<message>
<source>The JSON is empty</source>
<translation>Il JSON è vuoto</translation>
<source>The JSON is empty</source>
<translation>Il JSON è vuoto</translation>
</message>
<message>
<source>Save JSON</source>
<translation>Salva JSON</translation>
<source>Save JSON</source>
<translation>Salva JSON</translation>
</message>
<message>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;Tutti i file (*)</translation>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;Tutti i file (*)</translation>
</message>
<message>
<source>Unable to open file for writing</source>
<translation>Impossibile aprire il file in scrittura</translation>
<source>Unable to open file for writing</source>
<translation>Impossibile aprire il file in scrittura</translation>
</message>
<message>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>Visualizzatore di dati S.M.A.R.T. ATA e NVMe per Linux</translation>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>Visualizzatore di dati S.M.A.R.T. ATA e NVMe per Linux</translation>
</message>
<message>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Rilasciato con licenza GNU G.P.L. Versione 3</translation>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Rilasciato con licenza GNU G.P.L. Versione 3</translation>
</message>
<message>
<source>Made by Samantas5855</source>
<translation>Realizzato da Samantas5855</translation>
<source>Made by Samantas5855</source>
<translation>Realizzato da Samantas5855</translation>
</message>
<message>
<source>Version</source>
<translation>Versione</translation>
<source>Version</source>
<translation>Versione</translation>
</message>
<message>
<source>About QDiskInfo</source>
<translation>Informazioni su QDiskInfo</translation>
<source>About QDiskInfo</source>
<translation>Informazioni su QDiskInfo</translation>
</message>
<message>
<source>About Qt</source>
<translation>Info su Qt</translation>
<source>About Qt</source>
<translation>Info su Qt</translation>
</message>
<message>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
</message>
<message>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
</message>
<message>
<source>QDiskInfo Error</source>
<translation>Errore QDiskInfo</translation>
<source>QDiskInfo Error</source>
<translation>Errore QDiskInfo</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo ha bisogno di accesso root per leggere i dati S.M.A.R.T!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo ha bisogno di accesso root per leggere i dati S.M.A.R.T!</translation>
</message>
<message>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
</message>
<message>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
</message>
<message>
<source>Success</source>
<translation type="unfinished">Success</translation>
<source>Success</source>
<translation type="unfinished">Success</translation>
</message>
<message>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
</message>
<message>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
</message>
<message>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
</message>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
</message>
<message>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
</message>
<message>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
</message>
<message>
<source>&amp;Save JSON</source>
<translation>&amp;Salva JSON</translation>
</message>
</context>
<context>
</context>
<context>
<name>QObject</name>
<message>
<source>QDiskInfo Error</source>
<translation>Errore QDiskInfo</translation>
<source>QDiskInfo Error</source>
<translation>Errore QDiskInfo</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo ha bisogno di accesso root per leggere i dati S.M.A.R.T!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo ha bisogno di accesso root per leggere i dati S.M.A.R.T!</translation>
</message>
<message>
<source>smartctl was not found, please install it!</source>
<translation>smartctl non è stato trovato, è necessario installarlo!</translation>
<source>smartctl was not found, please install it!</source>
<translation>smartctl non è stato trovato, è necessario installarlo!</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo ha bisogno di accesso root per interrompere un autotest!</translation>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo ha bisogno di accesso root per interrompere un autotest!</translation>
</message>
<message>
<source>Test Requested</source>
<translation>Test richiesto</translation>
<source>Test Requested</source>
<translation>Test richiesto</translation>
</message>
<message>
<source>The self-test has been aborted</source>
<translation>L&apos;autotest è stato interrotto</translation>
<source>The self-test has been aborted</source>
<translation>L&apos;autotest è stato interrotto</translation>
</message>
<message>
<source>Error: Something went wrong</source>
<translation>Errore: qualcosa è andato storto</translation>
<source>Error: Something went wrong</source>
<translation>Errore: qualcosa è andato storto</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo ha bisogno di accesso root per richiedere un autotest!</translation>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo ha bisogno di accesso root per richiedere un autotest!</translation>
</message>
<message>
<source>remaining</source>
<translation>rimanenti</translation>
<source>remaining</source>
<translation>rimanenti</translation>
</message>
<message>
<source>completed</source>
<translation>completato</translation>
<source>completed</source>
<translation>completato</translation>
</message>
<message>
<source>Test Already Running</source>
<translation>Test già in esecuzione</translation>
<source>Test Already Running</source>
<translation>Test già in esecuzione</translation>
</message>
<message>
<source>A self-test is already being performed</source>
<translation>Si sta già effettuando un autotest</translation>
<source>A self-test is already being performed</source>
<translation>Si sta già effettuando un autotest</translation>
</message>
<message>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>Premere il pulsante Ok per interrompere il test attualmente in esecuzione</translation>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>Premere il pulsante Ok per interrompere il test attualmente in esecuzione</translation>
</message>
<message>
<source>A self-test has been requested successfully</source>
<translation>Un autotest è stato richiesto con successo</translation>
<source>A self-test has been requested successfully</source>
<translation>Un autotest è stato richiesto con successo</translation>
</message>
<message>
<source>It will be completed after</source>
<translation>Sarà completato dopo</translation>
<source>It will be completed after</source>
<translation>Sarà completato dopo</translation>
</message>
<message>
<source>minutes</source>
<translation>minuti</translation>
<source>minutes</source>
<translation>minuti</translation>
</message>
<message>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
</message>
<message>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
</message>
</context>
</context>
</TS>

View File

@@ -1,449 +1,445 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="ja_JP" sourcelanguage="en">
<context>
<context>
<name>GridView</name>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
</message>
</context>
<context>
</context>
<context>
<name>MainWindow</name>
<message>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Firmware</source>
<translation></translation>
<source>Firmware</source>
<translation></translation>
</message>
<message>
<source>Serial Number</source>
<translation></translation>
<source>Serial Number</source>
<translation></translation>
</message>
<message>
<source>Protocol</source>
<translation></translation>
<source>Protocol</source>
<translation></translation>
</message>
<message>
<source>Device Node</source>
<translation></translation>
<source>Device Node</source>
<translation></translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt; 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt; 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Type</source>
<translation></translation>
<source>Type</source>
<translation></translation>
</message>
<message>
<source>Total Host Reads</source>
<translation></translation>
<source>Total Host Reads</source>
<translation></translation>
</message>
<message>
<source>Total Host Writes</source>
<translation></translation>
<source>Total Host Writes</source>
<translation></translation>
</message>
<message>
<source>Rotation Rate</source>
<translation></translation>
<source>Rotation Rate</source>
<translation></translation>
</message>
<message>
<source>Power On Count</source>
<translation></translation>
<source>Power On Count</source>
<translation></translation>
</message>
<message>
<source>Power On Hours</source>
<translation></translation>
<source>Power On Hours</source>
<translation></translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>File</source>
<translation></translation>
<source>File</source>
<translation></translation>
</message>
<message>
<source>Settings</source>
<translation></translation>
<source>Settings</source>
<translation></translation>
</message>
<message>
<source>&amp;Help</source>
<translation>(&amp;H)</translation>
<source>&amp;Help</source>
<translation>(&amp;H)</translation>
</message>
<message>
<source>De&amp;vice</source>
<translation>(&amp;v)</translation>
<source>De&amp;vice</source>
<translation>(&amp;v)</translation>
</message>
<message>
<source>Disk</source>
<translation></translation>
<source>Disk</source>
<translation></translation>
</message>
<message>
<source>&amp;Quit</source>
<translation>(&amp;Q)</translation>
<source>&amp;Quit</source>
<translation>(&amp;Q)</translation>
</message>
<message>
<source>&amp;Refresh Devices</source>
<translation>(&amp;R)</translation>
<source>&amp;Refresh Devices</source>
<translation>(&amp;R)</translation>
</message>
<message>
<source>&amp;GitHub</source>
<translation>Github(&amp;G)</translation>
<source>&amp;GitHub</source>
<translation>Github(&amp;G)</translation>
</message>
<message>
<source>&amp;About QDiskInfo</source>
<translation>QDiskInfoについて(&amp;A)</translation>
<source>&amp;About QDiskInfo</source>
<translation>QDiskInfoについて(&amp;A)</translation>
</message>
<message>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ignore C4 (Reallocated Event Count)</translation>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ignore C4 (Reallocated Event Count)</translation>
</message>
<message>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Convert Raw values to HEX</translation>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Convert Raw values to HEX</translation>
</message>
<message>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Use Fahrenheit</translation>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Use Fahrenheit</translation>
</message>
<message>
<source>Self Test</source>
<translation></translation>
<source>Self Test</source>
<translation></translation>
</message>
<message>
<source>Cyclic &amp;Navigation</source>
<translation>Cyclic &amp;Navigation</translation>
<source>Cyclic &amp;Navigation</source>
<translation>Cyclic &amp;Navigation</translation>
</message>
<message>
<source>Use &amp;GB instead of TB</source>
<translation>Use &amp;GB instead of TB</translation>
<source>Use &amp;GB instead of TB</source>
<translation>Use &amp;GB instead of TB</translation>
</message>
<message>
<source>About &amp;Qt</source>
<translation>Qtについて(&amp;Q)</translation>
<source>About &amp;Qt</source>
<translation>Qtについて(&amp;Q)</translation>
</message>
<message>
<source>Start Self Test</source>
<translation></translation>
<source>Start Self Test</source>
<translation></translation>
</message>
<message>
<source>Self Test Log</source>
<translation> </translation>
<source>Self Test Log</source>
<translation> </translation>
</message>
<message>
<source>Critical Warning</source>
<translation></translation>
<source>Critical Warning</source>
<translation></translation>
</message>
<message>
<source>Grown Defect List</source>
<translation>Grown Defect List</translation>
<source>Grown Defect List</source>
<translation>Grown Defect List</translation>
</message>
<message>
<source>Good</source>
<translation></translation>
<source>Good</source>
<translation></translation>
</message>
<message>
<source>Caution</source>
<translation></translation>
<source>Caution</source>
<translation></translation>
</message>
<message>
<source>Bad</source>
<translation></translation>
<source>Bad</source>
<translation></translation>
</message>
<message>
<source>Unknown</source>
<translation></translation>
<source>Unknown</source>
<translation></translation>
</message>
<message>
<source>Status</source>
<translation></translation>
<source>Status</source>
<translation></translation>
</message>
<message>
<source>count</source>
<translation>count</translation>
<source>count</source>
<translation>count</translation>
</message>
<message>
<source>hours</source>
<translation>hours</translation>
<source>hours</source>
<translation>hours</translation>
</message>
<message>
<source>Short</source>
<translation>Short</translation>
<source>Short</source>
<translation>Short</translation>
</message>
<message>
<source>Conveyance</source>
<translation>Conveyance</translation>
<source>Conveyance</source>
<translation>Conveyance</translation>
</message>
<message>
<source>Extended</source>
<translation>Extended</translation>
<source>Extended</source>
<translation>Extended</translation>
</message>
<message>
<source>Min.)</source>
<translation>Min.)</translation>
<source>Min.)</source>
<translation>Min.)</translation>
</message>
<message>
<source>Read</source>
<translation>Read</translation>
<source>Read</source>
<translation>Read</translation>
</message>
<message>
<source>Write</source>
<translation>Write</translation>
<source>Write</source>
<translation>Write</translation>
</message>
<message>
<source>Verify</source>
<translation>Verify</translation>
<source>Verify</source>
<translation>Verify</translation>
</message>
<message>
<source>ID</source>
<translation>ID</translation>
<source>ID</source>
<translation>ID</translation>
</message>
<message>
<source>Attribute Name</source>
<translation>Attribute Name</translation>
<source>Attribute Name</source>
<translation>Attribute Name</translation>
</message>
<message>
<source>Raw Values</source>
<translation>Raw Values</translation>
<source>Raw Values</source>
<translation>Raw Values</translation>
</message>
<message>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Available spare capacity has fallen below the threshold</translation>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Available spare capacity has fallen below the threshold</translation>
</message>
<message>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Temperature error (Overheat or Overcool)</translation>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Temperature error (Overheat or Overcool)</translation>
</message>
<message>
<source>NVM subsystem reliability has been degraded</source>
<translation>NVM subsystem reliability has been degraded</translation>
<source>NVM subsystem reliability has been degraded</source>
<translation>NVM subsystem reliability has been degraded</translation>
</message>
<message>
<source>Media has been placed in Read Only Mode</source>
<translation>Media has been placed in Read Only Mode</translation>
<source>Media has been placed in Read Only Mode</source>
<translation>Media has been placed in Read Only Mode</translation>
</message>
<message>
<source>Volatile memory backup device has Failed</source>
<translation>Volatile memory backup device has Failed</translation>
<source>Volatile memory backup device has Failed</source>
<translation>Volatile memory backup device has Failed</translation>
</message>
<message>
<source>Persistent memory region has become Read-Only</source>
<translation>Persistent memory region has become Read-Only</translation>
<source>Persistent memory region has become Read-Only</source>
<translation>Persistent memory region has become Read-Only</translation>
</message>
<message>
<source>Current</source>
<translation>Current</translation>
<source>Current</source>
<translation>Current</translation>
</message>
<message>
<source>Worst</source>
<translation>Worst</translation>
<source>Worst</source>
<translation>Worst</translation>
</message>
<message>
<source>Threshold</source>
<translation>Threshold</translation>
<source>Threshold</source>
<translation>Threshold</translation>
</message>
<message>
<source>Empty JSON</source>
<translation>Empty JSON</translation>
<source>Empty JSON</source>
<translation>Empty JSON</translation>
</message>
<message>
<source>The JSON is empty</source>
<translation>The JSON is empty</translation>
<source>The JSON is empty</source>
<translation>The JSON is empty</translation>
</message>
<message>
<source>Save JSON</source>
<translation>Save JSON</translation>
<source>Save JSON</source>
<translation>Save JSON</translation>
</message>
<message>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;All Files (*)</translation>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;All Files (*)</translation>
</message>
<message>
<source>Unable to open file for writing</source>
<translation>Unable to open file for writing</translation>
<source>Unable to open file for writing</source>
<translation>Unable to open file for writing</translation>
</message>
<message>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>An ATA and NVMe S.M.A.R.T. data viewer for Linux</translation>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>An ATA and NVMe S.M.A.R.T. data viewer for Linux</translation>
</message>
<message>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Licensed under the GNU G.P.L. Version 3</translation>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Licensed under the GNU G.P.L. Version 3</translation>
</message>
<message>
<source>Made by Samantas5855</source>
<translation>Made by Samantas5855</translation>
<source>Made by Samantas5855</source>
<translation>Made by Samantas5855</translation>
</message>
<message>
<source>Version</source>
<translation>Version</translation>
<source>Version</source>
<translation>Version</translation>
</message>
<message>
<source>About QDiskInfo</source>
<translation>About QDiskInfo</translation>
<source>About QDiskInfo</source>
<translation>About QDiskInfo</translation>
</message>
<message>
<source>About Qt</source>
<translation>About Qt</translation>
<source>About Qt</source>
<translation>About Qt</translation>
</message>
<message>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
</message>
<message>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
</message>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
</message>
<message>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
</message>
<message>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
</message>
<message>
<source>Success</source>
<translation type="unfinished">Success</translation>
<source>Success</source>
<translation type="unfinished">Success</translation>
</message>
<message>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
</message>
<message>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
</message>
<message>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
</message>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
</message>
<message>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
</message>
<message>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
</message>
<message>
<source>&amp;Save JSON</source>
<translation>JSONを保存(&amp;S)</translation>
</message>
</context>
<context>
</context>
<context>
<name>QObject</name>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
</message>
<message>
<source>smartctl was not found, please install it!</source>
<translation>smartctl was not found, please install it!</translation>
<source>smartctl was not found, please install it!</source>
<translation>smartctl was not found, please install it!</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo needs root access in order to abort a self-test!</translation>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo needs root access in order to abort a self-test!</translation>
</message>
<message>
<source>Test Requested</source>
<translation>Test Requested</translation>
<source>Test Requested</source>
<translation>Test Requested</translation>
</message>
<message>
<source>The self-test has been aborted</source>
<translation>The self-test has been aborted</translation>
<source>The self-test has been aborted</source>
<translation>The self-test has been aborted</translation>
</message>
<message>
<source>Error: Something went wrong</source>
<translation>Error: Something went wrong</translation>
<source>Error: Something went wrong</source>
<translation>Error: Something went wrong</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo needs root access in order to request a self-test!</translation>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo needs root access in order to request a self-test!</translation>
</message>
<message>
<source>remaining</source>
<translation>remaining</translation>
<source>remaining</source>
<translation>remaining</translation>
</message>
<message>
<source>completed</source>
<translation>completed</translation>
<source>completed</source>
<translation>completed</translation>
</message>
<message>
<source>Test Already Running</source>
<translation>Test Already Running</translation>
<source>Test Already Running</source>
<translation>Test Already Running</translation>
</message>
<message>
<source>A self-test is already being performed</source>
<translation>A self-test is already being performed</translation>
<source>A self-test is already being performed</source>
<translation>A self-test is already being performed</translation>
</message>
<message>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>You can press the Ok button in order to abort the test that is currently running</translation>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>You can press the Ok button in order to abort the test that is currently running</translation>
</message>
<message>
<source>A self-test has been requested successfully</source>
<translation>A self-test has been requested successfully</translation>
<source>A self-test has been requested successfully</source>
<translation>A self-test has been requested successfully</translation>
</message>
<message>
<source>It will be completed after</source>
<translation>It will be completed after</translation>
<source>It will be completed after</source>
<translation>It will be completed after</translation>
</message>
<message>
<source>minutes</source>
<translation>minutes</translation>
<source>minutes</source>
<translation>minutes</translation>
</message>
<message>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
</message>
<message>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
</message>
</context>
</context>
</TS>

View File

@@ -1,449 +1,445 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="ko_KR" sourcelanguage="en">
<context>
<context>
<name>GridView</name>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
</message>
</context>
<context>
</context>
<context>
<name>MainWindow</name>
<message>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Firmware</source>
<translation>Firmware</translation>
<source>Firmware</source>
<translation>Firmware</translation>
</message>
<message>
<source>Serial Number</source>
<translation>Serial Number</translation>
<source>Serial Number</source>
<translation>Serial Number</translation>
</message>
<message>
<source>Protocol</source>
<translation>Protocol</translation>
<source>Protocol</source>
<translation>Protocol</translation>
</message>
<message>
<source>Device Node</source>
<translation>Device Node</translation>
<source>Device Node</source>
<translation>Device Node</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Type</source>
<translation>Type</translation>
<source>Type</source>
<translation>Type</translation>
</message>
<message>
<source>Total Host Reads</source>
<translation>Total Host Reads</translation>
<source>Total Host Reads</source>
<translation>Total Host Reads</translation>
</message>
<message>
<source>Total Host Writes</source>
<translation>Total Host Writes</translation>
<source>Total Host Writes</source>
<translation>Total Host Writes</translation>
</message>
<message>
<source>Rotation Rate</source>
<translation>Rotation Rate</translation>
<source>Rotation Rate</source>
<translation>Rotation Rate</translation>
</message>
<message>
<source>Power On Count</source>
<translation>Power On Count</translation>
<source>Power On Count</source>
<translation>Power On Count</translation>
</message>
<message>
<source>Power On Hours</source>
<translation>Power On Hours</translation>
<source>Power On Hours</source>
<translation>Power On Hours</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>File</source>
<translation>File</translation>
<source>File</source>
<translation>File</translation>
</message>
<message>
<source>Settings</source>
<translation>Settings</translation>
<source>Settings</source>
<translation>Settings</translation>
</message>
<message>
<source>&amp;Help</source>
<translation>&amp;Help</translation>
<source>&amp;Help</source>
<translation>&amp;Help</translation>
</message>
<message>
<source>De&amp;vice</source>
<translation>De&amp;vice</translation>
<source>De&amp;vice</source>
<translation>De&amp;vice</translation>
</message>
<message>
<source>Disk</source>
<translation>Disk</translation>
<source>Disk</source>
<translation>Disk</translation>
</message>
<message>
<source>&amp;Quit</source>
<translation>&amp;Quit</translation>
<source>&amp;Quit</source>
<translation>&amp;Quit</translation>
</message>
<message>
<source>&amp;Refresh Devices</source>
<translation>&amp;Refresh Devices</translation>
<source>&amp;Refresh Devices</source>
<translation>&amp;Refresh Devices</translation>
</message>
<message>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
</message>
<message>
<source>&amp;About QDiskInfo</source>
<translation>&amp;About QDiskInfo</translation>
<source>&amp;About QDiskInfo</source>
<translation>&amp;About QDiskInfo</translation>
</message>
<message>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ignore C4 (Reallocated Event Count)</translation>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ignore C4 (Reallocated Event Count)</translation>
</message>
<message>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Convert Raw values to HEX</translation>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Convert Raw values to HEX</translation>
</message>
<message>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Use Fahrenheit</translation>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Use Fahrenheit</translation>
</message>
<message>
<source>Self Test</source>
<translation>Self Test</translation>
<source>Self Test</source>
<translation>Self Test</translation>
</message>
<message>
<source>Cyclic &amp;Navigation</source>
<translation>Cyclic &amp;Navigation</translation>
<source>Cyclic &amp;Navigation</source>
<translation>Cyclic &amp;Navigation</translation>
</message>
<message>
<source>Use &amp;GB instead of TB</source>
<translation>Use &amp;GB instead of TB</translation>
<source>Use &amp;GB instead of TB</source>
<translation>Use &amp;GB instead of TB</translation>
</message>
<message>
<source>About &amp;Qt</source>
<translation>About &amp;Qt</translation>
<source>About &amp;Qt</source>
<translation>About &amp;Qt</translation>
</message>
<message>
<source>Start Self Test</source>
<translation>Start Self Test</translation>
<source>Start Self Test</source>
<translation>Start Self Test</translation>
</message>
<message>
<source>Self Test Log</source>
<translation>Self Test Log</translation>
<source>Self Test Log</source>
<translation>Self Test Log</translation>
</message>
<message>
<source>Critical Warning</source>
<translation>Critical Warning</translation>
<source>Critical Warning</source>
<translation>Critical Warning</translation>
</message>
<message>
<source>Grown Defect List</source>
<translation>Grown Defect List</translation>
<source>Grown Defect List</source>
<translation>Grown Defect List</translation>
</message>
<message>
<source>Good</source>
<translation>Good</translation>
<source>Good</source>
<translation>Good</translation>
</message>
<message>
<source>Caution</source>
<translation>Caution</translation>
<source>Caution</source>
<translation>Caution</translation>
</message>
<message>
<source>Bad</source>
<translation>Bad</translation>
<source>Bad</source>
<translation>Bad</translation>
</message>
<message>
<source>Unknown</source>
<translation>Unknown</translation>
<source>Unknown</source>
<translation>Unknown</translation>
</message>
<message>
<source>Status</source>
<translation>Status</translation>
<source>Status</source>
<translation>Status</translation>
</message>
<message>
<source>count</source>
<translation>count</translation>
<source>count</source>
<translation>count</translation>
</message>
<message>
<source>hours</source>
<translation>hours</translation>
<source>hours</source>
<translation>hours</translation>
</message>
<message>
<source>Short</source>
<translation>Short</translation>
<source>Short</source>
<translation>Short</translation>
</message>
<message>
<source>Conveyance</source>
<translation>Conveyance</translation>
<source>Conveyance</source>
<translation>Conveyance</translation>
</message>
<message>
<source>Extended</source>
<translation>Extended</translation>
<source>Extended</source>
<translation>Extended</translation>
</message>
<message>
<source>Min.)</source>
<translation>Min.)</translation>
<source>Min.)</source>
<translation>Min.)</translation>
</message>
<message>
<source>Read</source>
<translation>Read</translation>
<source>Read</source>
<translation>Read</translation>
</message>
<message>
<source>Write</source>
<translation>Write</translation>
<source>Write</source>
<translation>Write</translation>
</message>
<message>
<source>Verify</source>
<translation>Verify</translation>
<source>Verify</source>
<translation>Verify</translation>
</message>
<message>
<source>ID</source>
<translation>ID</translation>
<source>ID</source>
<translation>ID</translation>
</message>
<message>
<source>Attribute Name</source>
<translation>Attribute Name</translation>
<source>Attribute Name</source>
<translation>Attribute Name</translation>
</message>
<message>
<source>Raw Values</source>
<translation>Raw Values</translation>
<source>Raw Values</source>
<translation>Raw Values</translation>
</message>
<message>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Available spare capacity has fallen below the threshold</translation>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Available spare capacity has fallen below the threshold</translation>
</message>
<message>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Temperature error (Overheat or Overcool)</translation>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Temperature error (Overheat or Overcool)</translation>
</message>
<message>
<source>NVM subsystem reliability has been degraded</source>
<translation>NVM subsystem reliability has been degraded</translation>
<source>NVM subsystem reliability has been degraded</source>
<translation>NVM subsystem reliability has been degraded</translation>
</message>
<message>
<source>Media has been placed in Read Only Mode</source>
<translation>Media has been placed in Read Only Mode</translation>
<source>Media has been placed in Read Only Mode</source>
<translation>Media has been placed in Read Only Mode</translation>
</message>
<message>
<source>Volatile memory backup device has Failed</source>
<translation>Volatile memory backup device has Failed</translation>
<source>Volatile memory backup device has Failed</source>
<translation>Volatile memory backup device has Failed</translation>
</message>
<message>
<source>Persistent memory region has become Read-Only</source>
<translation>Persistent memory region has become Read-Only</translation>
<source>Persistent memory region has become Read-Only</source>
<translation>Persistent memory region has become Read-Only</translation>
</message>
<message>
<source>Current</source>
<translation>Current</translation>
<source>Current</source>
<translation>Current</translation>
</message>
<message>
<source>Worst</source>
<translation>Worst</translation>
<source>Worst</source>
<translation>Worst</translation>
</message>
<message>
<source>Threshold</source>
<translation>Threshold</translation>
<source>Threshold</source>
<translation>Threshold</translation>
</message>
<message>
<source>Empty JSON</source>
<translation>Empty JSON</translation>
<source>Empty JSON</source>
<translation>Empty JSON</translation>
</message>
<message>
<source>The JSON is empty</source>
<translation>The JSON is empty</translation>
<source>The JSON is empty</source>
<translation>The JSON is empty</translation>
</message>
<message>
<source>Save JSON</source>
<translation>Save JSON</translation>
<source>Save JSON</source>
<translation>Save JSON</translation>
</message>
<message>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;All Files (*)</translation>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;All Files (*)</translation>
</message>
<message>
<source>Unable to open file for writing</source>
<translation>Unable to open file for writing</translation>
<source>Unable to open file for writing</source>
<translation>Unable to open file for writing</translation>
</message>
<message>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>An ATA and NVMe S.M.A.R.T. data viewer for Linux</translation>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>An ATA and NVMe S.M.A.R.T. data viewer for Linux</translation>
</message>
<message>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Licensed under the GNU G.P.L. Version 3</translation>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Licensed under the GNU G.P.L. Version 3</translation>
</message>
<message>
<source>Made by Samantas5855</source>
<translation>Made by Samantas5855</translation>
<source>Made by Samantas5855</source>
<translation>Made by Samantas5855</translation>
</message>
<message>
<source>Version</source>
<translation>Version</translation>
<source>Version</source>
<translation>Version</translation>
</message>
<message>
<source>About QDiskInfo</source>
<translation>About QDiskInfo</translation>
<source>About QDiskInfo</source>
<translation>About QDiskInfo</translation>
</message>
<message>
<source>About Qt</source>
<translation>About Qt</translation>
<source>About Qt</source>
<translation>About Qt</translation>
</message>
<message>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
</message>
<message>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
</message>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
</message>
<message>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
</message>
<message>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
</message>
<message>
<source>Success</source>
<translation type="unfinished">Success</translation>
<source>Success</source>
<translation type="unfinished">Success</translation>
</message>
<message>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
</message>
<message>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
</message>
<message>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
</message>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
</message>
<message>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
</message>
<message>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
</message>
<message>
<source>&amp;Save JSON</source>
<translation>&amp;Save JSON</translation>
</message>
</context>
<context>
</context>
<context>
<name>QObject</name>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
</message>
<message>
<source>smartctl was not found, please install it!</source>
<translation>smartctl was not found, please install it!</translation>
<source>smartctl was not found, please install it!</source>
<translation>smartctl was not found, please install it!</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo needs root access in order to abort a self-test!</translation>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo needs root access in order to abort a self-test!</translation>
</message>
<message>
<source>Test Requested</source>
<translation>Test Requested</translation>
<source>Test Requested</source>
<translation>Test Requested</translation>
</message>
<message>
<source>The self-test has been aborted</source>
<translation>The self-test has been aborted</translation>
<source>The self-test has been aborted</source>
<translation>The self-test has been aborted</translation>
</message>
<message>
<source>Error: Something went wrong</source>
<translation>Error: Something went wrong</translation>
<source>Error: Something went wrong</source>
<translation>Error: Something went wrong</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo needs root access in order to request a self-test!</translation>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo needs root access in order to request a self-test!</translation>
</message>
<message>
<source>remaining</source>
<translation>remaining</translation>
<source>remaining</source>
<translation>remaining</translation>
</message>
<message>
<source>completed</source>
<translation>completed</translation>
<source>completed</source>
<translation>completed</translation>
</message>
<message>
<source>Test Already Running</source>
<translation>Test Already Running</translation>
<source>Test Already Running</source>
<translation>Test Already Running</translation>
</message>
<message>
<source>A self-test is already being performed</source>
<translation>A self-test is already being performed</translation>
<source>A self-test is already being performed</source>
<translation>A self-test is already being performed</translation>
</message>
<message>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>You can press the Ok button in order to abort the test that is currently running</translation>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>You can press the Ok button in order to abort the test that is currently running</translation>
</message>
<message>
<source>A self-test has been requested successfully</source>
<translation>A self-test has been requested successfully</translation>
<source>A self-test has been requested successfully</source>
<translation>A self-test has been requested successfully</translation>
</message>
<message>
<source>It will be completed after</source>
<translation>It will be completed after</translation>
<source>It will be completed after</source>
<translation>It will be completed after</translation>
</message>
<message>
<source>minutes</source>
<translation>minutes</translation>
<source>minutes</source>
<translation>minutes</translation>
</message>
<message>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
</message>
<message>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
</message>
</context>
</context>
</TS>

View File

@@ -1,449 +1,445 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="lv_LV" sourcelanguage="en">
<context>
<context>
<name>GridView</name>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
</message>
</context>
<context>
</context>
<context>
<name>MainWindow</name>
<message>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Veselības stāvoklis&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Veselības stāvoklis&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Labs&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Labs&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperatūra&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperatūra&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Firmware</source>
<translation>Aparātprogrammatūra</translation>
<source>Firmware</source>
<translation>Aparātprogrammatūra</translation>
</message>
<message>
<source>Serial Number</source>
<translation>Sērijas numurs</translation>
<source>Serial Number</source>
<translation>Sērijas numurs</translation>
</message>
<message>
<source>Protocol</source>
<translation>Protokols</translation>
<source>Protocol</source>
<translation>Protokols</translation>
</message>
<message>
<source>Device Node</source>
<translation>Ceļš uz ierīci</translation>
<source>Device Node</source>
<translation>Ceļš uz ierīci</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Labs 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Labs 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Type</source>
<translation>Tips</translation>
<source>Type</source>
<translation>Tips</translation>
</message>
<message>
<source>Total Host Reads</source>
<translation type="unfinished">Total Host Reads</translation>
<source>Total Host Reads</source>
<translation type="unfinished">Total Host Reads</translation>
</message>
<message>
<source>Total Host Writes</source>
<translation type="unfinished">Total Host Writes</translation>
<source>Total Host Writes</source>
<translation type="unfinished">Total Host Writes</translation>
</message>
<message>
<source>Rotation Rate</source>
<translation>Rotācijas ātrums</translation>
<source>Rotation Rate</source>
<translation>Rotācijas ātrums</translation>
</message>
<message>
<source>Power On Count</source>
<translation>Ieslēgšanu skaits</translation>
<source>Power On Count</source>
<translation>Ieslēgšanu skaits</translation>
</message>
<message>
<source>Power On Hours</source>
<translation>Darbojies</translation>
<source>Power On Hours</source>
<translation>Darbojies</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Datu nesēja nosaukums&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Datu nesēja nosaukums&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>File</source>
<translation>Fails</translation>
<source>File</source>
<translation>Fails</translation>
</message>
<message>
<source>Settings</source>
<translation>Iestatījumi</translation>
<source>Settings</source>
<translation>Iestatījumi</translation>
</message>
<message>
<source>&amp;Help</source>
<translation type="unfinished">&amp;Help</translation>
<source>&amp;Help</source>
<translation type="unfinished">&amp;Help</translation>
</message>
<message>
<source>De&amp;vice</source>
<translation>&amp;Ierīce</translation>
<source>De&amp;vice</source>
<translation>&amp;Ierīce</translation>
</message>
<message>
<source>Disk</source>
<translation>Disks</translation>
<source>Disk</source>
<translation>Disks</translation>
</message>
<message>
<source>&amp;Quit</source>
<translation type="unfinished">&amp;Quit</translation>
<source>&amp;Quit</source>
<translation type="unfinished">&amp;Quit</translation>
</message>
<message>
<source>&amp;Refresh Devices</source>
<translation>Atsvaidzināt ie&amp;rīces</translation>
<source>&amp;Refresh Devices</source>
<translation>Atsvaidzināt ie&amp;rīces</translation>
</message>
<message>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
</message>
<message>
<source>&amp;About QDiskInfo</source>
<translation>P&amp;ar QDiskInfo</translation>
<source>&amp;About QDiskInfo</source>
<translation>P&amp;ar QDiskInfo</translation>
</message>
<message>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation type="unfinished">&amp;Ignore C4 (Reallocated Event Count)</translation>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation type="unfinished">&amp;Ignore C4 (Reallocated Event Count)</translation>
</message>
<message>
<source>&amp;Convert Raw values to HEX</source>
<translation>Pārveidot Raw vērtības uz heksade&amp;cimālām vērtībām</translation>
<source>&amp;Convert Raw values to HEX</source>
<translation>Pārveidot Raw vērtības uz heksade&amp;cimālām vērtībām</translation>
</message>
<message>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Temperatūra Fārenheita grādos</translation>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Temperatūra Fārenheita grādos</translation>
</message>
<message>
<source>Self Test</source>
<translation>Pašpārbaude</translation>
<source>Self Test</source>
<translation>Pašpārbaude</translation>
</message>
<message>
<source>Cyclic &amp;Navigation</source>
<translation type="unfinished">Cyclic &amp;Navigation</translation>
<source>Cyclic &amp;Navigation</source>
<translation type="unfinished">Cyclic &amp;Navigation</translation>
</message>
<message>
<source>Use &amp;GB instead of TB</source>
<translation>Lietot &amp;GB nevis TB</translation>
<source>Use &amp;GB instead of TB</source>
<translation>Lietot &amp;GB nevis TB</translation>
</message>
<message>
<source>About &amp;Qt</source>
<translation>Par &amp;Qt</translation>
<source>About &amp;Qt</source>
<translation>Par &amp;Qt</translation>
</message>
<message>
<source>Start Self Test</source>
<translation type="unfinished">Start Self Test</translation>
<source>Start Self Test</source>
<translation type="unfinished">Start Self Test</translation>
</message>
<message>
<source>Self Test Log</source>
<translation>Pašpārbaudes žurnāls</translation>
<source>Self Test Log</source>
<translation>Pašpārbaudes žurnāls</translation>
</message>
<message>
<source>Critical Warning</source>
<translation type="unfinished">Critical Warning</translation>
<source>Critical Warning</source>
<translation type="unfinished">Critical Warning</translation>
</message>
<message>
<source>Grown Defect List</source>
<translation type="unfinished">Grown Defect List</translation>
<source>Grown Defect List</source>
<translation type="unfinished">Grown Defect List</translation>
</message>
<message>
<source>Good</source>
<translation>Labs</translation>
<source>Good</source>
<translation>Labs</translation>
</message>
<message>
<source>Caution</source>
<translation type="unfinished">Caution</translation>
<source>Caution</source>
<translation type="unfinished">Caution</translation>
</message>
<message>
<source>Bad</source>
<translation>Slikts</translation>
<source>Bad</source>
<translation>Slikts</translation>
</message>
<message>
<source>Unknown</source>
<translation>Nezināms</translation>
<source>Unknown</source>
<translation>Nezināms</translation>
</message>
<message>
<source>Status</source>
<translation>Statuss</translation>
<source>Status</source>
<translation>Statuss</translation>
</message>
<message>
<source>count</source>
<translation>reizes ieslēgts</translation>
<source>count</source>
<translation>reizes ieslēgts</translation>
</message>
<message>
<source>hours</source>
<translation>stundas</translation>
<source>hours</source>
<translation>stundas</translation>
</message>
<message>
<source>Short</source>
<translation type="unfinished">Short</translation>
<source>Short</source>
<translation type="unfinished">Short</translation>
</message>
<message>
<source>Conveyance</source>
<translation type="unfinished">Conveyance</translation>
<source>Conveyance</source>
<translation type="unfinished">Conveyance</translation>
</message>
<message>
<source>Extended</source>
<translation type="unfinished">Extended</translation>
<source>Extended</source>
<translation type="unfinished">Extended</translation>
</message>
<message>
<source>Min.)</source>
<translation type="unfinished">Min.)</translation>
<source>Min.)</source>
<translation type="unfinished">Min.)</translation>
</message>
<message>
<source>Read</source>
<translation type="unfinished">Read</translation>
<source>Read</source>
<translation type="unfinished">Read</translation>
</message>
<message>
<source>Write</source>
<translation type="unfinished">Write</translation>
<source>Write</source>
<translation type="unfinished">Write</translation>
</message>
<message>
<source>Verify</source>
<translation type="unfinished">Verify</translation>
<source>Verify</source>
<translation type="unfinished">Verify</translation>
</message>
<message>
<source>ID</source>
<translation>ID</translation>
<source>ID</source>
<translation>ID</translation>
</message>
<message>
<source>Attribute Name</source>
<translation>Atribūta nosaukums</translation>
<source>Attribute Name</source>
<translation>Atribūta nosaukums</translation>
</message>
<message>
<source>Raw Values</source>
<translation>Raw vērtības</translation>
<source>Raw Values</source>
<translation>Raw vērtības</translation>
</message>
<message>
<source>Available spare capacity has fallen below the threshold</source>
<translation type="unfinished">Available spare capacity has fallen below the threshold</translation>
<source>Available spare capacity has fallen below the threshold</source>
<translation type="unfinished">Available spare capacity has fallen below the threshold</translation>
</message>
<message>
<source>Temperature error (Overheat or Overcool)</source>
<translation type="unfinished">Temperature error (Overheat or Overcool)</translation>
<source>Temperature error (Overheat or Overcool)</source>
<translation type="unfinished">Temperature error (Overheat or Overcool)</translation>
</message>
<message>
<source>NVM subsystem reliability has been degraded</source>
<translation type="unfinished">NVM subsystem reliability has been degraded</translation>
<source>NVM subsystem reliability has been degraded</source>
<translation type="unfinished">NVM subsystem reliability has been degraded</translation>
</message>
<message>
<source>Media has been placed in Read Only Mode</source>
<translation type="unfinished">Media has been placed in Read Only Mode</translation>
<source>Media has been placed in Read Only Mode</source>
<translation type="unfinished">Media has been placed in Read Only Mode</translation>
</message>
<message>
<source>Volatile memory backup device has Failed</source>
<translation type="unfinished">Volatile memory backup device has Failed</translation>
<source>Volatile memory backup device has Failed</source>
<translation type="unfinished">Volatile memory backup device has Failed</translation>
</message>
<message>
<source>Persistent memory region has become Read-Only</source>
<translation type="unfinished">Persistent memory region has become Read-Only</translation>
<source>Persistent memory region has become Read-Only</source>
<translation type="unfinished">Persistent memory region has become Read-Only</translation>
</message>
<message>
<source>Current</source>
<translation type="unfinished">Current</translation>
<source>Current</source>
<translation type="unfinished">Current</translation>
</message>
<message>
<source>Worst</source>
<translation type="unfinished">Worst</translation>
<source>Worst</source>
<translation type="unfinished">Worst</translation>
</message>
<message>
<source>Threshold</source>
<translation type="unfinished">Threshold</translation>
<source>Threshold</source>
<translation type="unfinished">Threshold</translation>
</message>
<message>
<source>Empty JSON</source>
<translation type="unfinished">Empty JSON</translation>
<source>Empty JSON</source>
<translation type="unfinished">Empty JSON</translation>
</message>
<message>
<source>The JSON is empty</source>
<translation type="unfinished">The JSON is empty</translation>
<source>The JSON is empty</source>
<translation type="unfinished">The JSON is empty</translation>
</message>
<message>
<source>Save JSON</source>
<translation>Saglabāt JSON</translation>
<source>Save JSON</source>
<translation>Saglabāt JSON</translation>
</message>
<message>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;Visi faili (*)</translation>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;Visi faili (*)</translation>
</message>
<message>
<source>Unable to open file for writing</source>
<translation type="unfinished">Unable to open file for writing</translation>
<source>Unable to open file for writing</source>
<translation type="unfinished">Unable to open file for writing</translation>
</message>
<message>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>ATA un NVMe S.M.A.R.T. datu skatītājs Linux operētājsistēmām</translation>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>ATA un NVMe S.M.A.R.T. datu skatītājs Linux operētājsistēmām</translation>
</message>
<message>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation type="unfinished">Licensed under the GNU G.P.L. Version 3</translation>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation type="unfinished">Licensed under the GNU G.P.L. Version 3</translation>
</message>
<message>
<source>Made by Samantas5855</source>
<translation>Izstrādāja Samantas5855</translation>
<source>Made by Samantas5855</source>
<translation>Izstrādāja Samantas5855</translation>
</message>
<message>
<source>Version</source>
<translation>Versija</translation>
<source>Version</source>
<translation>Versija</translation>
</message>
<message>
<source>About QDiskInfo</source>
<translation>Par QDiskInfo</translation>
<source>About QDiskInfo</source>
<translation>Par QDiskInfo</translation>
</message>
<message>
<source>About Qt</source>
<translation>Par Qt</translation>
<source>About Qt</source>
<translation>Par Qt</translation>
</message>
<message>
<source>Clear &amp;Settings</source>
<translation>Notīrīt ie&amp;statījumus</translation>
<source>Clear &amp;Settings</source>
<translation>Notīrīt ie&amp;statījumus</translation>
</message>
<message>
<source>ASCII View</source>
<translation>ASCII skats</translation>
<source>ASCII View</source>
<translation>ASCII skats</translation>
</message>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo kļūda</translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo kļūda</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo nepieciešama root piekļuve, lai lasītu S.M.A.R.T. datus!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo nepieciešama root piekļuve, lai lasītu S.M.A.R.T. datus!</translation>
</message>
<message>
<source>Save Binary Data</source>
<translation>Saglabāt bināros datus</translation>
<source>Save Binary Data</source>
<translation>Saglabāt bināros datus</translation>
</message>
<message>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation>Binārie faili (*.bin);;Visi faili (*)</translation>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation>Binārie faili (*.bin);;Visi faili (*)</translation>
</message>
<message>
<source>Success</source>
<translation type="unfinished">Success</translation>
<source>Success</source>
<translation type="unfinished">Success</translation>
</message>
<message>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
</message>
<message>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
</message>
<message>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
</message>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
</message>
<message>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
</message>
<message>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
</message>
<message>
<source>&amp;Save JSON</source>
<translation>&amp;Saglabāt JSON</translation>
</message>
</context>
<context>
</context>
<context>
<name>QObject</name>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo kļūda</translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo kļūda</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo nepieciešama root piekļuve, lai lasītu S.M.A.R.T. datus!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo nepieciešama root piekļuve, lai lasītu S.M.A.R.T. datus!</translation>
</message>
<message>
<source>smartctl was not found, please install it!</source>
<translation>smartctl netika atrasts, lūdzu, uzstādiet to!</translation>
<source>smartctl was not found, please install it!</source>
<translation>smartctl netika atrasts, lūdzu, uzstādiet to!</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo nepieciešama root piekļuve, lai pārtrauktu pašpārbaudi!</translation>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo nepieciešama root piekļuve, lai pārtrauktu pašpārbaudi!</translation>
</message>
<message>
<source>Test Requested</source>
<translation type="unfinished">Test Requested</translation>
<source>Test Requested</source>
<translation type="unfinished">Test Requested</translation>
</message>
<message>
<source>The self-test has been aborted</source>
<translation type="unfinished">The self-test has been aborted</translation>
<source>The self-test has been aborted</source>
<translation type="unfinished">The self-test has been aborted</translation>
</message>
<message>
<source>Error: Something went wrong</source>
<translation type="unfinished">Error: Something went wrong</translation>
<source>Error: Something went wrong</source>
<translation type="unfinished">Error: Something went wrong</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo nepieciešama root piekļuve, lai varētu veikt pašpārbaudi!</translation>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo nepieciešama root piekļuve, lai varētu veikt pašpārbaudi!</translation>
</message>
<message>
<source>remaining</source>
<translation>atlikušas</translation>
<source>remaining</source>
<translation>atlikušas</translation>
</message>
<message>
<source>completed</source>
<translation>pabeigts</translation>
<source>completed</source>
<translation>pabeigts</translation>
</message>
<message>
<source>Test Already Running</source>
<translation type="unfinished">Test Already Running</translation>
<source>Test Already Running</source>
<translation type="unfinished">Test Already Running</translation>
</message>
<message>
<source>A self-test is already being performed</source>
<translation type="unfinished">A self-test is already being performed</translation>
<source>A self-test is already being performed</source>
<translation type="unfinished">A self-test is already being performed</translation>
</message>
<message>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation type="unfinished">You can press the Ok button in order to abort the test that is currently running</translation>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation type="unfinished">You can press the Ok button in order to abort the test that is currently running</translation>
</message>
<message>
<source>A self-test has been requested successfully</source>
<translation>Pašpārbaude ir veiksmīgi pieprasīta</translation>
<source>A self-test has been requested successfully</source>
<translation>Pašpārbaude ir veiksmīgi pieprasīta</translation>
</message>
<message>
<source>It will be completed after</source>
<translation> tiks pabeigta pēc</translation>
<source>It will be completed after</source>
<translation> tiks pabeigta pēc</translation>
</message>
<message>
<source>minutes</source>
<translation>minūtes</translation>
<source>minutes</source>
<translation>minūtes</translation>
</message>
<message>
<source>Clear Settings</source>
<translation>Notīrīt iestatījumus</translation>
<source>Clear Settings</source>
<translation>Notīrīt iestatījumus</translation>
</message>
<message>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation>Vai tiešām vēlaties notīrīt diskā saglabātos iestatījumus?</translation>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation>Vai tiešām vēlaties notīrīt diskā saglabātos iestatījumus?</translation>
</message>
</context>
</context>
</TS>

View File

@@ -1,449 +1,445 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="nl_NL" sourcelanguage="en">
<context>
<context>
<name>GridView</name>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
</message>
</context>
<context>
</context>
<context>
<name>MainWindow</name>
<message>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Firmware</source>
<translation>Firmware</translation>
<source>Firmware</source>
<translation>Firmware</translation>
</message>
<message>
<source>Serial Number</source>
<translation>Serial Number</translation>
<source>Serial Number</source>
<translation>Serial Number</translation>
</message>
<message>
<source>Protocol</source>
<translation>Protocol</translation>
<source>Protocol</source>
<translation>Protocol</translation>
</message>
<message>
<source>Device Node</source>
<translation>Device Node</translation>
<source>Device Node</source>
<translation>Device Node</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Type</source>
<translation>Type</translation>
<source>Type</source>
<translation>Type</translation>
</message>
<message>
<source>Total Host Reads</source>
<translation>Total Host Reads</translation>
<source>Total Host Reads</source>
<translation>Total Host Reads</translation>
</message>
<message>
<source>Total Host Writes</source>
<translation>Total Host Writes</translation>
<source>Total Host Writes</source>
<translation>Total Host Writes</translation>
</message>
<message>
<source>Rotation Rate</source>
<translation>Rotation Rate</translation>
<source>Rotation Rate</source>
<translation>Rotation Rate</translation>
</message>
<message>
<source>Power On Count</source>
<translation>Power On Count</translation>
<source>Power On Count</source>
<translation>Power On Count</translation>
</message>
<message>
<source>Power On Hours</source>
<translation>Power On Hours</translation>
<source>Power On Hours</source>
<translation>Power On Hours</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>File</source>
<translation>File</translation>
<source>File</source>
<translation>File</translation>
</message>
<message>
<source>Settings</source>
<translation>Settings</translation>
<source>Settings</source>
<translation>Settings</translation>
</message>
<message>
<source>&amp;Help</source>
<translation>&amp;Help</translation>
<source>&amp;Help</source>
<translation>&amp;Help</translation>
</message>
<message>
<source>De&amp;vice</source>
<translation>De&amp;vice</translation>
<source>De&amp;vice</source>
<translation>De&amp;vice</translation>
</message>
<message>
<source>Disk</source>
<translation>Disk</translation>
<source>Disk</source>
<translation>Disk</translation>
</message>
<message>
<source>&amp;Quit</source>
<translation>&amp;Quit</translation>
<source>&amp;Quit</source>
<translation>&amp;Quit</translation>
</message>
<message>
<source>&amp;Refresh Devices</source>
<translation>&amp;Refresh Devices</translation>
<source>&amp;Refresh Devices</source>
<translation>&amp;Refresh Devices</translation>
</message>
<message>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
</message>
<message>
<source>&amp;About QDiskInfo</source>
<translation>&amp;About QDiskInfo</translation>
<source>&amp;About QDiskInfo</source>
<translation>&amp;About QDiskInfo</translation>
</message>
<message>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ignore C4 (Reallocated Event Count)</translation>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ignore C4 (Reallocated Event Count)</translation>
</message>
<message>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Convert Raw values to HEX</translation>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Convert Raw values to HEX</translation>
</message>
<message>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Use Fahrenheit</translation>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Use Fahrenheit</translation>
</message>
<message>
<source>Self Test</source>
<translation>Self Test</translation>
<source>Self Test</source>
<translation>Self Test</translation>
</message>
<message>
<source>Cyclic &amp;Navigation</source>
<translation>Cyclic &amp;Navigation</translation>
<source>Cyclic &amp;Navigation</source>
<translation>Cyclic &amp;Navigation</translation>
</message>
<message>
<source>Use &amp;GB instead of TB</source>
<translation>Use &amp;GB instead of TB</translation>
<source>Use &amp;GB instead of TB</source>
<translation>Use &amp;GB instead of TB</translation>
</message>
<message>
<source>About &amp;Qt</source>
<translation>About &amp;Qt</translation>
<source>About &amp;Qt</source>
<translation>About &amp;Qt</translation>
</message>
<message>
<source>Start Self Test</source>
<translation>Start Self Test</translation>
<source>Start Self Test</source>
<translation>Start Self Test</translation>
</message>
<message>
<source>Self Test Log</source>
<translation>Self Test Log</translation>
<source>Self Test Log</source>
<translation>Self Test Log</translation>
</message>
<message>
<source>Critical Warning</source>
<translation>Critical Warning</translation>
<source>Critical Warning</source>
<translation>Critical Warning</translation>
</message>
<message>
<source>Grown Defect List</source>
<translation>Grown Defect List</translation>
<source>Grown Defect List</source>
<translation>Grown Defect List</translation>
</message>
<message>
<source>Good</source>
<translation>Good</translation>
<source>Good</source>
<translation>Good</translation>
</message>
<message>
<source>Caution</source>
<translation>Caution</translation>
<source>Caution</source>
<translation>Caution</translation>
</message>
<message>
<source>Bad</source>
<translation>Bad</translation>
<source>Bad</source>
<translation>Bad</translation>
</message>
<message>
<source>Unknown</source>
<translation>Unknown</translation>
<source>Unknown</source>
<translation>Unknown</translation>
</message>
<message>
<source>Status</source>
<translation>Status</translation>
<source>Status</source>
<translation>Status</translation>
</message>
<message>
<source>count</source>
<translation>count</translation>
<source>count</source>
<translation>count</translation>
</message>
<message>
<source>hours</source>
<translation>hours</translation>
<source>hours</source>
<translation>hours</translation>
</message>
<message>
<source>Short</source>
<translation>Short</translation>
<source>Short</source>
<translation>Short</translation>
</message>
<message>
<source>Conveyance</source>
<translation>Conveyance</translation>
<source>Conveyance</source>
<translation>Conveyance</translation>
</message>
<message>
<source>Extended</source>
<translation>Extended</translation>
<source>Extended</source>
<translation>Extended</translation>
</message>
<message>
<source>Min.)</source>
<translation>Min.)</translation>
<source>Min.)</source>
<translation>Min.)</translation>
</message>
<message>
<source>Read</source>
<translation>Read</translation>
<source>Read</source>
<translation>Read</translation>
</message>
<message>
<source>Write</source>
<translation>Write</translation>
<source>Write</source>
<translation>Write</translation>
</message>
<message>
<source>Verify</source>
<translation>Verify</translation>
<source>Verify</source>
<translation>Verify</translation>
</message>
<message>
<source>ID</source>
<translation>ID</translation>
<source>ID</source>
<translation>ID</translation>
</message>
<message>
<source>Attribute Name</source>
<translation>Attribute Name</translation>
<source>Attribute Name</source>
<translation>Attribute Name</translation>
</message>
<message>
<source>Raw Values</source>
<translation>Raw Values</translation>
<source>Raw Values</source>
<translation>Raw Values</translation>
</message>
<message>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Available spare capacity has fallen below the threshold</translation>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Available spare capacity has fallen below the threshold</translation>
</message>
<message>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Temperature error (Overheat or Overcool)</translation>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Temperature error (Overheat or Overcool)</translation>
</message>
<message>
<source>NVM subsystem reliability has been degraded</source>
<translation>NVM subsystem reliability has been degraded</translation>
<source>NVM subsystem reliability has been degraded</source>
<translation>NVM subsystem reliability has been degraded</translation>
</message>
<message>
<source>Media has been placed in Read Only Mode</source>
<translation>Media has been placed in Read Only Mode</translation>
<source>Media has been placed in Read Only Mode</source>
<translation>Media has been placed in Read Only Mode</translation>
</message>
<message>
<source>Volatile memory backup device has Failed</source>
<translation>Volatile memory backup device has Failed</translation>
<source>Volatile memory backup device has Failed</source>
<translation>Volatile memory backup device has Failed</translation>
</message>
<message>
<source>Persistent memory region has become Read-Only</source>
<translation>Persistent memory region has become Read-Only</translation>
<source>Persistent memory region has become Read-Only</source>
<translation>Persistent memory region has become Read-Only</translation>
</message>
<message>
<source>Current</source>
<translation>Current</translation>
<source>Current</source>
<translation>Current</translation>
</message>
<message>
<source>Worst</source>
<translation>Worst</translation>
<source>Worst</source>
<translation>Worst</translation>
</message>
<message>
<source>Threshold</source>
<translation>Threshold</translation>
<source>Threshold</source>
<translation>Threshold</translation>
</message>
<message>
<source>Empty JSON</source>
<translation>Empty JSON</translation>
<source>Empty JSON</source>
<translation>Empty JSON</translation>
</message>
<message>
<source>The JSON is empty</source>
<translation>The JSON is empty</translation>
<source>The JSON is empty</source>
<translation>The JSON is empty</translation>
</message>
<message>
<source>Save JSON</source>
<translation>Save JSON</translation>
<source>Save JSON</source>
<translation>Save JSON</translation>
</message>
<message>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;All Files (*)</translation>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;All Files (*)</translation>
</message>
<message>
<source>Unable to open file for writing</source>
<translation>Unable to open file for writing</translation>
<source>Unable to open file for writing</source>
<translation>Unable to open file for writing</translation>
</message>
<message>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>An ATA and NVMe S.M.A.R.T. data viewer for Linux</translation>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>An ATA and NVMe S.M.A.R.T. data viewer for Linux</translation>
</message>
<message>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Licensed under the GNU G.P.L. Version 3</translation>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Licensed under the GNU G.P.L. Version 3</translation>
</message>
<message>
<source>Made by Samantas5855</source>
<translation>Made by Samantas5855</translation>
<source>Made by Samantas5855</source>
<translation>Made by Samantas5855</translation>
</message>
<message>
<source>Version</source>
<translation>Version</translation>
<source>Version</source>
<translation>Version</translation>
</message>
<message>
<source>About QDiskInfo</source>
<translation>About QDiskInfo</translation>
<source>About QDiskInfo</source>
<translation>About QDiskInfo</translation>
</message>
<message>
<source>About Qt</source>
<translation>About Qt</translation>
<source>About Qt</source>
<translation>About Qt</translation>
</message>
<message>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
</message>
<message>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
</message>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
</message>
<message>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
</message>
<message>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
</message>
<message>
<source>Success</source>
<translation type="unfinished">Success</translation>
<source>Success</source>
<translation type="unfinished">Success</translation>
</message>
<message>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
</message>
<message>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
</message>
<message>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
</message>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
</message>
<message>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
</message>
<message>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
</message>
<message>
<source>&amp;Save JSON</source>
<translation>&amp;Save JSON</translation>
</message>
</context>
<context>
</context>
<context>
<name>QObject</name>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
</message>
<message>
<source>smartctl was not found, please install it!</source>
<translation>smartctl was not found, please install it!</translation>
<source>smartctl was not found, please install it!</source>
<translation>smartctl was not found, please install it!</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo needs root access in order to abort a self-test!</translation>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo needs root access in order to abort a self-test!</translation>
</message>
<message>
<source>Test Requested</source>
<translation>Test Requested</translation>
<source>Test Requested</source>
<translation>Test Requested</translation>
</message>
<message>
<source>The self-test has been aborted</source>
<translation>The self-test has been aborted</translation>
<source>The self-test has been aborted</source>
<translation>The self-test has been aborted</translation>
</message>
<message>
<source>Error: Something went wrong</source>
<translation>Error: Something went wrong</translation>
<source>Error: Something went wrong</source>
<translation>Error: Something went wrong</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo needs root access in order to request a self-test!</translation>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo needs root access in order to request a self-test!</translation>
</message>
<message>
<source>remaining</source>
<translation>remaining</translation>
<source>remaining</source>
<translation>remaining</translation>
</message>
<message>
<source>completed</source>
<translation>completed</translation>
<source>completed</source>
<translation>completed</translation>
</message>
<message>
<source>Test Already Running</source>
<translation>Test Already Running</translation>
<source>Test Already Running</source>
<translation>Test Already Running</translation>
</message>
<message>
<source>A self-test is already being performed</source>
<translation>A self-test is already being performed</translation>
<source>A self-test is already being performed</source>
<translation>A self-test is already being performed</translation>
</message>
<message>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>You can press the Ok button in order to abort the test that is currently running</translation>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>You can press the Ok button in order to abort the test that is currently running</translation>
</message>
<message>
<source>A self-test has been requested successfully</source>
<translation>A self-test has been requested successfully</translation>
<source>A self-test has been requested successfully</source>
<translation>A self-test has been requested successfully</translation>
</message>
<message>
<source>It will be completed after</source>
<translation>It will be completed after</translation>
<source>It will be completed after</source>
<translation>It will be completed after</translation>
</message>
<message>
<source>minutes</source>
<translation>minutes</translation>
<source>minutes</source>
<translation>minutes</translation>
</message>
<message>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
</message>
<message>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
</message>
</context>
</context>
</TS>

View File

@@ -1,449 +1,445 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="no_NO" sourcelanguage="en">
<context>
<context>
<name>GridView</name>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
</message>
</context>
<context>
</context>
<context>
<name>MainWindow</name>
<message>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Firmware</source>
<translation>Firmware</translation>
<source>Firmware</source>
<translation>Firmware</translation>
</message>
<message>
<source>Serial Number</source>
<translation>Serial Number</translation>
<source>Serial Number</source>
<translation>Serial Number</translation>
</message>
<message>
<source>Protocol</source>
<translation>Protocol</translation>
<source>Protocol</source>
<translation>Protocol</translation>
</message>
<message>
<source>Device Node</source>
<translation>Device Node</translation>
<source>Device Node</source>
<translation>Device Node</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Type</source>
<translation>Type</translation>
<source>Type</source>
<translation>Type</translation>
</message>
<message>
<source>Total Host Reads</source>
<translation>Total Host Reads</translation>
<source>Total Host Reads</source>
<translation>Total Host Reads</translation>
</message>
<message>
<source>Total Host Writes</source>
<translation>Total Host Writes</translation>
<source>Total Host Writes</source>
<translation>Total Host Writes</translation>
</message>
<message>
<source>Rotation Rate</source>
<translation>Rotation Rate</translation>
<source>Rotation Rate</source>
<translation>Rotation Rate</translation>
</message>
<message>
<source>Power On Count</source>
<translation>Power On Count</translation>
<source>Power On Count</source>
<translation>Power On Count</translation>
</message>
<message>
<source>Power On Hours</source>
<translation>Power On Hours</translation>
<source>Power On Hours</source>
<translation>Power On Hours</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>File</source>
<translation>File</translation>
<source>File</source>
<translation>File</translation>
</message>
<message>
<source>Settings</source>
<translation>Settings</translation>
<source>Settings</source>
<translation>Settings</translation>
</message>
<message>
<source>&amp;Help</source>
<translation>&amp;Help</translation>
<source>&amp;Help</source>
<translation>&amp;Help</translation>
</message>
<message>
<source>De&amp;vice</source>
<translation>De&amp;vice</translation>
<source>De&amp;vice</source>
<translation>De&amp;vice</translation>
</message>
<message>
<source>Disk</source>
<translation>Disk</translation>
<source>Disk</source>
<translation>Disk</translation>
</message>
<message>
<source>&amp;Quit</source>
<translation>&amp;Quit</translation>
<source>&amp;Quit</source>
<translation>&amp;Quit</translation>
</message>
<message>
<source>&amp;Refresh Devices</source>
<translation>&amp;Refresh Devices</translation>
<source>&amp;Refresh Devices</source>
<translation>&amp;Refresh Devices</translation>
</message>
<message>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
</message>
<message>
<source>&amp;About QDiskInfo</source>
<translation>&amp;About QDiskInfo</translation>
<source>&amp;About QDiskInfo</source>
<translation>&amp;About QDiskInfo</translation>
</message>
<message>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ignore C4 (Reallocated Event Count)</translation>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ignore C4 (Reallocated Event Count)</translation>
</message>
<message>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Convert Raw values to HEX</translation>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Convert Raw values to HEX</translation>
</message>
<message>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Use Fahrenheit</translation>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Use Fahrenheit</translation>
</message>
<message>
<source>Self Test</source>
<translation>Self Test</translation>
<source>Self Test</source>
<translation>Self Test</translation>
</message>
<message>
<source>Cyclic &amp;Navigation</source>
<translation>Cyclic &amp;Navigation</translation>
<source>Cyclic &amp;Navigation</source>
<translation>Cyclic &amp;Navigation</translation>
</message>
<message>
<source>Use &amp;GB instead of TB</source>
<translation>Use &amp;GB instead of TB</translation>
<source>Use &amp;GB instead of TB</source>
<translation>Use &amp;GB instead of TB</translation>
</message>
<message>
<source>About &amp;Qt</source>
<translation>About &amp;Qt</translation>
<source>About &amp;Qt</source>
<translation>About &amp;Qt</translation>
</message>
<message>
<source>Start Self Test</source>
<translation>Start Self Test</translation>
<source>Start Self Test</source>
<translation>Start Self Test</translation>
</message>
<message>
<source>Self Test Log</source>
<translation>Self Test Log</translation>
<source>Self Test Log</source>
<translation>Self Test Log</translation>
</message>
<message>
<source>Critical Warning</source>
<translation>Critical Warning</translation>
<source>Critical Warning</source>
<translation>Critical Warning</translation>
</message>
<message>
<source>Grown Defect List</source>
<translation>Grown Defect List</translation>
<source>Grown Defect List</source>
<translation>Grown Defect List</translation>
</message>
<message>
<source>Good</source>
<translation>Good</translation>
<source>Good</source>
<translation>Good</translation>
</message>
<message>
<source>Caution</source>
<translation>Caution</translation>
<source>Caution</source>
<translation>Caution</translation>
</message>
<message>
<source>Bad</source>
<translation>Bad</translation>
<source>Bad</source>
<translation>Bad</translation>
</message>
<message>
<source>Unknown</source>
<translation>Unknown</translation>
<source>Unknown</source>
<translation>Unknown</translation>
</message>
<message>
<source>Status</source>
<translation>Status</translation>
<source>Status</source>
<translation>Status</translation>
</message>
<message>
<source>count</source>
<translation>count</translation>
<source>count</source>
<translation>count</translation>
</message>
<message>
<source>hours</source>
<translation>hours</translation>
<source>hours</source>
<translation>hours</translation>
</message>
<message>
<source>Short</source>
<translation>Short</translation>
<source>Short</source>
<translation>Short</translation>
</message>
<message>
<source>Conveyance</source>
<translation>Conveyance</translation>
<source>Conveyance</source>
<translation>Conveyance</translation>
</message>
<message>
<source>Extended</source>
<translation>Extended</translation>
<source>Extended</source>
<translation>Extended</translation>
</message>
<message>
<source>Min.)</source>
<translation>Min.)</translation>
<source>Min.)</source>
<translation>Min.)</translation>
</message>
<message>
<source>Read</source>
<translation>Read</translation>
<source>Read</source>
<translation>Read</translation>
</message>
<message>
<source>Write</source>
<translation>Write</translation>
<source>Write</source>
<translation>Write</translation>
</message>
<message>
<source>Verify</source>
<translation>Verify</translation>
<source>Verify</source>
<translation>Verify</translation>
</message>
<message>
<source>ID</source>
<translation>ID</translation>
<source>ID</source>
<translation>ID</translation>
</message>
<message>
<source>Attribute Name</source>
<translation>Attribute Name</translation>
<source>Attribute Name</source>
<translation>Attribute Name</translation>
</message>
<message>
<source>Raw Values</source>
<translation>Raw Values</translation>
<source>Raw Values</source>
<translation>Raw Values</translation>
</message>
<message>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Available spare capacity has fallen below the threshold</translation>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Available spare capacity has fallen below the threshold</translation>
</message>
<message>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Temperature error (Overheat or Overcool)</translation>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Temperature error (Overheat or Overcool)</translation>
</message>
<message>
<source>NVM subsystem reliability has been degraded</source>
<translation>NVM subsystem reliability has been degraded</translation>
<source>NVM subsystem reliability has been degraded</source>
<translation>NVM subsystem reliability has been degraded</translation>
</message>
<message>
<source>Media has been placed in Read Only Mode</source>
<translation>Media has been placed in Read Only Mode</translation>
<source>Media has been placed in Read Only Mode</source>
<translation>Media has been placed in Read Only Mode</translation>
</message>
<message>
<source>Volatile memory backup device has Failed</source>
<translation>Volatile memory backup device has Failed</translation>
<source>Volatile memory backup device has Failed</source>
<translation>Volatile memory backup device has Failed</translation>
</message>
<message>
<source>Persistent memory region has become Read-Only</source>
<translation>Persistent memory region has become Read-Only</translation>
<source>Persistent memory region has become Read-Only</source>
<translation>Persistent memory region has become Read-Only</translation>
</message>
<message>
<source>Current</source>
<translation>Current</translation>
<source>Current</source>
<translation>Current</translation>
</message>
<message>
<source>Worst</source>
<translation>Worst</translation>
<source>Worst</source>
<translation>Worst</translation>
</message>
<message>
<source>Threshold</source>
<translation>Threshold</translation>
<source>Threshold</source>
<translation>Threshold</translation>
</message>
<message>
<source>Empty JSON</source>
<translation>Empty JSON</translation>
<source>Empty JSON</source>
<translation>Empty JSON</translation>
</message>
<message>
<source>The JSON is empty</source>
<translation>The JSON is empty</translation>
<source>The JSON is empty</source>
<translation>The JSON is empty</translation>
</message>
<message>
<source>Save JSON</source>
<translation>Save JSON</translation>
<source>Save JSON</source>
<translation>Save JSON</translation>
</message>
<message>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;All Files (*)</translation>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;All Files (*)</translation>
</message>
<message>
<source>Unable to open file for writing</source>
<translation>Unable to open file for writing</translation>
<source>Unable to open file for writing</source>
<translation>Unable to open file for writing</translation>
</message>
<message>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>An ATA and NVMe S.M.A.R.T. data viewer for Linux</translation>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>An ATA and NVMe S.M.A.R.T. data viewer for Linux</translation>
</message>
<message>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Licensed under the GNU G.P.L. Version 3</translation>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Licensed under the GNU G.P.L. Version 3</translation>
</message>
<message>
<source>Made by Samantas5855</source>
<translation>Made by Samantas5855</translation>
<source>Made by Samantas5855</source>
<translation>Made by Samantas5855</translation>
</message>
<message>
<source>Version</source>
<translation>Version</translation>
<source>Version</source>
<translation>Version</translation>
</message>
<message>
<source>About QDiskInfo</source>
<translation>About QDiskInfo</translation>
<source>About QDiskInfo</source>
<translation>About QDiskInfo</translation>
</message>
<message>
<source>About Qt</source>
<translation>About Qt</translation>
<source>About Qt</source>
<translation>About Qt</translation>
</message>
<message>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
</message>
<message>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
</message>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
</message>
<message>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
</message>
<message>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
</message>
<message>
<source>Success</source>
<translation type="unfinished">Success</translation>
<source>Success</source>
<translation type="unfinished">Success</translation>
</message>
<message>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
</message>
<message>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
</message>
<message>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
</message>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
</message>
<message>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
</message>
<message>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
</message>
<message>
<source>&amp;Save JSON</source>
<translation>&amp;Save JSON</translation>
</message>
</context>
<context>
</context>
<context>
<name>QObject</name>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
</message>
<message>
<source>smartctl was not found, please install it!</source>
<translation>smartctl was not found, please install it!</translation>
<source>smartctl was not found, please install it!</source>
<translation>smartctl was not found, please install it!</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo needs root access in order to abort a self-test!</translation>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo needs root access in order to abort a self-test!</translation>
</message>
<message>
<source>Test Requested</source>
<translation>Test Requested</translation>
<source>Test Requested</source>
<translation>Test Requested</translation>
</message>
<message>
<source>The self-test has been aborted</source>
<translation>The self-test has been aborted</translation>
<source>The self-test has been aborted</source>
<translation>The self-test has been aborted</translation>
</message>
<message>
<source>Error: Something went wrong</source>
<translation>Error: Something went wrong</translation>
<source>Error: Something went wrong</source>
<translation>Error: Something went wrong</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo needs root access in order to request a self-test!</translation>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo needs root access in order to request a self-test!</translation>
</message>
<message>
<source>remaining</source>
<translation>remaining</translation>
<source>remaining</source>
<translation>remaining</translation>
</message>
<message>
<source>completed</source>
<translation>completed</translation>
<source>completed</source>
<translation>completed</translation>
</message>
<message>
<source>Test Already Running</source>
<translation>Test Already Running</translation>
<source>Test Already Running</source>
<translation>Test Already Running</translation>
</message>
<message>
<source>A self-test is already being performed</source>
<translation>A self-test is already being performed</translation>
<source>A self-test is already being performed</source>
<translation>A self-test is already being performed</translation>
</message>
<message>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>You can press the Ok button in order to abort the test that is currently running</translation>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>You can press the Ok button in order to abort the test that is currently running</translation>
</message>
<message>
<source>A self-test has been requested successfully</source>
<translation>A self-test has been requested successfully</translation>
<source>A self-test has been requested successfully</source>
<translation>A self-test has been requested successfully</translation>
</message>
<message>
<source>It will be completed after</source>
<translation>It will be completed after</translation>
<source>It will be completed after</source>
<translation>It will be completed after</translation>
</message>
<message>
<source>minutes</source>
<translation>minutes</translation>
<source>minutes</source>
<translation>minutes</translation>
</message>
<message>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
</message>
<message>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
</message>
</context>
</context>
</TS>

View File

@@ -1,449 +1,445 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="pl_PL" sourcelanguage="en">
<context>
<context>
<name>GridView</name>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
</message>
</context>
<context>
</context>
<context>
<name>MainWindow</name>
<message>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Firmware</source>
<translation>Firmware</translation>
<source>Firmware</source>
<translation>Firmware</translation>
</message>
<message>
<source>Serial Number</source>
<translation>Serial Number</translation>
<source>Serial Number</source>
<translation>Serial Number</translation>
</message>
<message>
<source>Protocol</source>
<translation>Protocol</translation>
<source>Protocol</source>
<translation>Protocol</translation>
</message>
<message>
<source>Device Node</source>
<translation>Device Node</translation>
<source>Device Node</source>
<translation>Device Node</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Type</source>
<translation>Type</translation>
<source>Type</source>
<translation>Type</translation>
</message>
<message>
<source>Total Host Reads</source>
<translation>Total Host Reads</translation>
<source>Total Host Reads</source>
<translation>Total Host Reads</translation>
</message>
<message>
<source>Total Host Writes</source>
<translation>Total Host Writes</translation>
<source>Total Host Writes</source>
<translation>Total Host Writes</translation>
</message>
<message>
<source>Rotation Rate</source>
<translation>Rotation Rate</translation>
<source>Rotation Rate</source>
<translation>Rotation Rate</translation>
</message>
<message>
<source>Power On Count</source>
<translation>Power On Count</translation>
<source>Power On Count</source>
<translation>Power On Count</translation>
</message>
<message>
<source>Power On Hours</source>
<translation>Power On Hours</translation>
<source>Power On Hours</source>
<translation>Power On Hours</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>File</source>
<translation>File</translation>
<source>File</source>
<translation>File</translation>
</message>
<message>
<source>Settings</source>
<translation>Settings</translation>
<source>Settings</source>
<translation>Settings</translation>
</message>
<message>
<source>&amp;Help</source>
<translation>&amp;Help</translation>
<source>&amp;Help</source>
<translation>&amp;Help</translation>
</message>
<message>
<source>De&amp;vice</source>
<translation>De&amp;vice</translation>
<source>De&amp;vice</source>
<translation>De&amp;vice</translation>
</message>
<message>
<source>Disk</source>
<translation>Disk</translation>
<source>Disk</source>
<translation>Disk</translation>
</message>
<message>
<source>&amp;Quit</source>
<translation>&amp;Quit</translation>
<source>&amp;Quit</source>
<translation>&amp;Quit</translation>
</message>
<message>
<source>&amp;Refresh Devices</source>
<translation>&amp;Refresh Devices</translation>
<source>&amp;Refresh Devices</source>
<translation>&amp;Refresh Devices</translation>
</message>
<message>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
</message>
<message>
<source>&amp;About QDiskInfo</source>
<translation>&amp;About QDiskInfo</translation>
<source>&amp;About QDiskInfo</source>
<translation>&amp;About QDiskInfo</translation>
</message>
<message>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ignore C4 (Reallocated Event Count)</translation>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ignore C4 (Reallocated Event Count)</translation>
</message>
<message>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Convert Raw values to HEX</translation>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Convert Raw values to HEX</translation>
</message>
<message>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Use Fahrenheit</translation>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Use Fahrenheit</translation>
</message>
<message>
<source>Self Test</source>
<translation>Self Test</translation>
<source>Self Test</source>
<translation>Self Test</translation>
</message>
<message>
<source>Cyclic &amp;Navigation</source>
<translation>Cyclic &amp;Navigation</translation>
<source>Cyclic &amp;Navigation</source>
<translation>Cyclic &amp;Navigation</translation>
</message>
<message>
<source>Use &amp;GB instead of TB</source>
<translation>Use &amp;GB instead of TB</translation>
<source>Use &amp;GB instead of TB</source>
<translation>Use &amp;GB instead of TB</translation>
</message>
<message>
<source>About &amp;Qt</source>
<translation>About &amp;Qt</translation>
<source>About &amp;Qt</source>
<translation>About &amp;Qt</translation>
</message>
<message>
<source>Start Self Test</source>
<translation>Start Self Test</translation>
<source>Start Self Test</source>
<translation>Start Self Test</translation>
</message>
<message>
<source>Self Test Log</source>
<translation>Self Test Log</translation>
<source>Self Test Log</source>
<translation>Self Test Log</translation>
</message>
<message>
<source>Critical Warning</source>
<translation>Critical Warning</translation>
<source>Critical Warning</source>
<translation>Critical Warning</translation>
</message>
<message>
<source>Grown Defect List</source>
<translation>Grown Defect List</translation>
<source>Grown Defect List</source>
<translation>Grown Defect List</translation>
</message>
<message>
<source>Good</source>
<translation>Good</translation>
<source>Good</source>
<translation>Good</translation>
</message>
<message>
<source>Caution</source>
<translation>Caution</translation>
<source>Caution</source>
<translation>Caution</translation>
</message>
<message>
<source>Bad</source>
<translation>Bad</translation>
<source>Bad</source>
<translation>Bad</translation>
</message>
<message>
<source>Unknown</source>
<translation>Unknown</translation>
<source>Unknown</source>
<translation>Unknown</translation>
</message>
<message>
<source>Status</source>
<translation>Status</translation>
<source>Status</source>
<translation>Status</translation>
</message>
<message>
<source>count</source>
<translation>count</translation>
<source>count</source>
<translation>count</translation>
</message>
<message>
<source>hours</source>
<translation>hours</translation>
<source>hours</source>
<translation>hours</translation>
</message>
<message>
<source>Short</source>
<translation>Short</translation>
<source>Short</source>
<translation>Short</translation>
</message>
<message>
<source>Conveyance</source>
<translation>Conveyance</translation>
<source>Conveyance</source>
<translation>Conveyance</translation>
</message>
<message>
<source>Extended</source>
<translation>Extended</translation>
<source>Extended</source>
<translation>Extended</translation>
</message>
<message>
<source>Min.)</source>
<translation>Min.)</translation>
<source>Min.)</source>
<translation>Min.)</translation>
</message>
<message>
<source>Read</source>
<translation>Read</translation>
<source>Read</source>
<translation>Read</translation>
</message>
<message>
<source>Write</source>
<translation>Write</translation>
<source>Write</source>
<translation>Write</translation>
</message>
<message>
<source>Verify</source>
<translation>Verify</translation>
<source>Verify</source>
<translation>Verify</translation>
</message>
<message>
<source>ID</source>
<translation>ID</translation>
<source>ID</source>
<translation>ID</translation>
</message>
<message>
<source>Attribute Name</source>
<translation>Attribute Name</translation>
<source>Attribute Name</source>
<translation>Attribute Name</translation>
</message>
<message>
<source>Raw Values</source>
<translation>Raw Values</translation>
<source>Raw Values</source>
<translation>Raw Values</translation>
</message>
<message>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Available spare capacity has fallen below the threshold</translation>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Available spare capacity has fallen below the threshold</translation>
</message>
<message>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Temperature error (Overheat or Overcool)</translation>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Temperature error (Overheat or Overcool)</translation>
</message>
<message>
<source>NVM subsystem reliability has been degraded</source>
<translation>NVM subsystem reliability has been degraded</translation>
<source>NVM subsystem reliability has been degraded</source>
<translation>NVM subsystem reliability has been degraded</translation>
</message>
<message>
<source>Media has been placed in Read Only Mode</source>
<translation>Media has been placed in Read Only Mode</translation>
<source>Media has been placed in Read Only Mode</source>
<translation>Media has been placed in Read Only Mode</translation>
</message>
<message>
<source>Volatile memory backup device has Failed</source>
<translation>Volatile memory backup device has Failed</translation>
<source>Volatile memory backup device has Failed</source>
<translation>Volatile memory backup device has Failed</translation>
</message>
<message>
<source>Persistent memory region has become Read-Only</source>
<translation>Persistent memory region has become Read-Only</translation>
<source>Persistent memory region has become Read-Only</source>
<translation>Persistent memory region has become Read-Only</translation>
</message>
<message>
<source>Current</source>
<translation>Current</translation>
<source>Current</source>
<translation>Current</translation>
</message>
<message>
<source>Worst</source>
<translation>Worst</translation>
<source>Worst</source>
<translation>Worst</translation>
</message>
<message>
<source>Threshold</source>
<translation>Threshold</translation>
<source>Threshold</source>
<translation>Threshold</translation>
</message>
<message>
<source>Empty JSON</source>
<translation>Empty JSON</translation>
<source>Empty JSON</source>
<translation>Empty JSON</translation>
</message>
<message>
<source>The JSON is empty</source>
<translation>The JSON is empty</translation>
<source>The JSON is empty</source>
<translation>The JSON is empty</translation>
</message>
<message>
<source>Save JSON</source>
<translation>Save JSON</translation>
<source>Save JSON</source>
<translation>Save JSON</translation>
</message>
<message>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;All Files (*)</translation>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;All Files (*)</translation>
</message>
<message>
<source>Unable to open file for writing</source>
<translation>Unable to open file for writing</translation>
<source>Unable to open file for writing</source>
<translation>Unable to open file for writing</translation>
</message>
<message>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>An ATA and NVMe S.M.A.R.T. data viewer for Linux</translation>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>An ATA and NVMe S.M.A.R.T. data viewer for Linux</translation>
</message>
<message>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Licensed under the GNU G.P.L. Version 3</translation>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Licensed under the GNU G.P.L. Version 3</translation>
</message>
<message>
<source>Made by Samantas5855</source>
<translation>Made by Samantas5855</translation>
<source>Made by Samantas5855</source>
<translation>Made by Samantas5855</translation>
</message>
<message>
<source>Version</source>
<translation>Version</translation>
<source>Version</source>
<translation>Version</translation>
</message>
<message>
<source>About QDiskInfo</source>
<translation>About QDiskInfo</translation>
<source>About QDiskInfo</source>
<translation>About QDiskInfo</translation>
</message>
<message>
<source>About Qt</source>
<translation>About Qt</translation>
<source>About Qt</source>
<translation>About Qt</translation>
</message>
<message>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
</message>
<message>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
</message>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
</message>
<message>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
</message>
<message>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
</message>
<message>
<source>Success</source>
<translation type="unfinished">Success</translation>
<source>Success</source>
<translation type="unfinished">Success</translation>
</message>
<message>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
</message>
<message>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
</message>
<message>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
</message>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
</message>
<message>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
</message>
<message>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
</message>
<message>
<source>&amp;Save JSON</source>
<translation>&amp;Save JSON</translation>
</message>
</context>
<context>
</context>
<context>
<name>QObject</name>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
</message>
<message>
<source>smartctl was not found, please install it!</source>
<translation>smartctl was not found, please install it!</translation>
<source>smartctl was not found, please install it!</source>
<translation>smartctl was not found, please install it!</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo needs root access in order to abort a self-test!</translation>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo needs root access in order to abort a self-test!</translation>
</message>
<message>
<source>Test Requested</source>
<translation>Test Requested</translation>
<source>Test Requested</source>
<translation>Test Requested</translation>
</message>
<message>
<source>The self-test has been aborted</source>
<translation>The self-test has been aborted</translation>
<source>The self-test has been aborted</source>
<translation>The self-test has been aborted</translation>
</message>
<message>
<source>Error: Something went wrong</source>
<translation>Error: Something went wrong</translation>
<source>Error: Something went wrong</source>
<translation>Error: Something went wrong</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo needs root access in order to request a self-test!</translation>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo needs root access in order to request a self-test!</translation>
</message>
<message>
<source>remaining</source>
<translation>remaining</translation>
<source>remaining</source>
<translation>remaining</translation>
</message>
<message>
<source>completed</source>
<translation>completed</translation>
<source>completed</source>
<translation>completed</translation>
</message>
<message>
<source>Test Already Running</source>
<translation>Test Already Running</translation>
<source>Test Already Running</source>
<translation>Test Already Running</translation>
</message>
<message>
<source>A self-test is already being performed</source>
<translation>A self-test is already being performed</translation>
<source>A self-test is already being performed</source>
<translation>A self-test is already being performed</translation>
</message>
<message>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>You can press the Ok button in order to abort the test that is currently running</translation>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>You can press the Ok button in order to abort the test that is currently running</translation>
</message>
<message>
<source>A self-test has been requested successfully</source>
<translation>A self-test has been requested successfully</translation>
<source>A self-test has been requested successfully</source>
<translation>A self-test has been requested successfully</translation>
</message>
<message>
<source>It will be completed after</source>
<translation>It will be completed after</translation>
<source>It will be completed after</source>
<translation>It will be completed after</translation>
</message>
<message>
<source>minutes</source>
<translation>minutes</translation>
<source>minutes</source>
<translation>minutes</translation>
</message>
<message>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
</message>
<message>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
</message>
</context>
</context>
</TS>

View File

@@ -1,449 +1,445 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="pt_BR" sourcelanguage="en">
<context>
<context>
<name>GridView</name>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
</message>
</context>
<context>
</context>
<context>
<name>MainWindow</name>
<message>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Status de Saúde&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Status de Saúde&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Saudável&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Saudável&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperatura&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperatura&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Firmware</source>
<translation>Firmware</translation>
<source>Firmware</source>
<translation>Firmware</translation>
</message>
<message>
<source>Serial Number</source>
<translation>Número Serial</translation>
<source>Serial Number</source>
<translation>Número Serial</translation>
</message>
<message>
<source>Protocol</source>
<translation>Padrão</translation>
<source>Protocol</source>
<translation>Padrão</translation>
</message>
<message>
<source>Device Node</source>
<translation> do Dispositivo</translation>
<source>Device Node</source>
<translation> do Dispositivo</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Type</source>
<translation>Tipo</translation>
<source>Type</source>
<translation>Tipo</translation>
</message>
<message>
<source>Total Host Reads</source>
<translation>Leituras Totais</translation>
<source>Total Host Reads</source>
<translation>Leituras Totais</translation>
</message>
<message>
<source>Total Host Writes</source>
<translation>Escritas Totais</translation>
<source>Total Host Writes</source>
<translation>Escritas Totais</translation>
</message>
<message>
<source>Rotation Rate</source>
<translation>Taxa de Rotação</translation>
<source>Rotation Rate</source>
<translation>Taxa de Rotação</translation>
</message>
<message>
<source>Power On Count</source>
<translation> de Vezes Ligado</translation>
<source>Power On Count</source>
<translation> de Vezes Ligado</translation>
</message>
<message>
<source>Power On Hours</source>
<translation> de Horas Ligado</translation>
<source>Power On Hours</source>
<translation> de Horas Ligado</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Nome do Disco Rígido&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Nome do Disco Rígido&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>File</source>
<translation>Arquivo</translation>
<source>File</source>
<translation>Arquivo</translation>
</message>
<message>
<source>Settings</source>
<translation>Configurações</translation>
<source>Settings</source>
<translation>Configurações</translation>
</message>
<message>
<source>&amp;Help</source>
<translation>&amp;Ajuda</translation>
<source>&amp;Help</source>
<translation>&amp;Ajuda</translation>
</message>
<message>
<source>De&amp;vice</source>
<translation>&amp;Dispositivo</translation>
<source>De&amp;vice</source>
<translation>&amp;Dispositivo</translation>
</message>
<message>
<source>Disk</source>
<translation>Disco</translation>
<source>Disk</source>
<translation>Disco</translation>
</message>
<message>
<source>&amp;Quit</source>
<translation>&amp;Sair</translation>
<source>&amp;Quit</source>
<translation>&amp;Sair</translation>
</message>
<message>
<source>&amp;Refresh Devices</source>
<translation>&amp;Atualizar Dispositivos</translation>
<source>&amp;Refresh Devices</source>
<translation>&amp;Atualizar Dispositivos</translation>
</message>
<message>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
</message>
<message>
<source>&amp;About QDiskInfo</source>
<translation>Sobre &amp;QDiskInfo</translation>
<source>&amp;About QDiskInfo</source>
<translation>Sobre &amp;QDiskInfo</translation>
</message>
<message>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ignorar C4 ( de Eventos Realocados)</translation>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ignorar C4 ( de Eventos Realocados)</translation>
</message>
<message>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Converter Valores Puros para HEX</translation>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Converter Valores Puros para HEX</translation>
</message>
<message>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Usar Fahrenheit</translation>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Usar Fahrenheit</translation>
</message>
<message>
<source>Self Test</source>
<translation>Auto Teste</translation>
<source>Self Test</source>
<translation>Auto Teste</translation>
</message>
<message>
<source>Cyclic &amp;Navigation</source>
<translation>&amp;Navegação Cíclica</translation>
<source>Cyclic &amp;Navigation</source>
<translation>&amp;Navegação Cíclica</translation>
</message>
<message>
<source>Use &amp;GB instead of TB</source>
<translation>&amp;Usar GB invés de TB</translation>
<source>Use &amp;GB instead of TB</source>
<translation>&amp;Usar GB invés de TB</translation>
</message>
<message>
<source>About &amp;Qt</source>
<translation>Sobre o &amp;Qt</translation>
<source>About &amp;Qt</source>
<translation>Sobre o &amp;Qt</translation>
</message>
<message>
<source>Start Self Test</source>
<translation>Começar Auto Teste</translation>
<source>Start Self Test</source>
<translation>Começar Auto Teste</translation>
</message>
<message>
<source>Self Test Log</source>
<translation>Log do Auto Teste</translation>
<source>Self Test Log</source>
<translation>Log do Auto Teste</translation>
</message>
<message>
<source>Critical Warning</source>
<translation>Aviso Crítico</translation>
<source>Critical Warning</source>
<translation>Aviso Crítico</translation>
</message>
<message>
<source>Grown Defect List</source>
<translation>Grown Defect List</translation>
<source>Grown Defect List</source>
<translation>Grown Defect List</translation>
</message>
<message>
<source>Good</source>
<translation>Saúdavel</translation>
<source>Good</source>
<translation>Saúdavel</translation>
</message>
<message>
<source>Caution</source>
<translation>Alerta</translation>
<source>Caution</source>
<translation>Alerta</translation>
</message>
<message>
<source>Bad</source>
<translation>Crítico</translation>
<source>Bad</source>
<translation>Crítico</translation>
</message>
<message>
<source>Unknown</source>
<translation>Indefinido</translation>
<source>Unknown</source>
<translation>Indefinido</translation>
</message>
<message>
<source>Status</source>
<translation>Status</translation>
<source>Status</source>
<translation>Status</translation>
</message>
<message>
<source>count</source>
<translation>vezes</translation>
<source>count</source>
<translation>vezes</translation>
</message>
<message>
<source>hours</source>
<translation>horas</translation>
<source>hours</source>
<translation>horas</translation>
</message>
<message>
<source>Short</source>
<translation>Rápido</translation>
<source>Short</source>
<translation>Rápido</translation>
</message>
<message>
<source>Conveyance</source>
<translation>Médio</translation>
<source>Conveyance</source>
<translation>Médio</translation>
</message>
<message>
<source>Extended</source>
<translation>Longo</translation>
<source>Extended</source>
<translation>Longo</translation>
</message>
<message>
<source>Min.)</source>
<translation>Min.)</translation>
<source>Min.)</source>
<translation>Min.)</translation>
</message>
<message>
<source>Read</source>
<translation>Read</translation>
<source>Read</source>
<translation>Read</translation>
</message>
<message>
<source>Write</source>
<translation>Write</translation>
<source>Write</source>
<translation>Write</translation>
</message>
<message>
<source>Verify</source>
<translation>Verify</translation>
<source>Verify</source>
<translation>Verify</translation>
</message>
<message>
<source>ID</source>
<translation>ID</translation>
<source>ID</source>
<translation>ID</translation>
</message>
<message>
<source>Attribute Name</source>
<translation>Nome do Atributo</translation>
<source>Attribute Name</source>
<translation>Nome do Atributo</translation>
</message>
<message>
<source>Raw Values</source>
<translation>Valores Puros</translation>
<source>Raw Values</source>
<translation>Valores Puros</translation>
</message>
<message>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Capacidade restante disponível caiu abaixo do limite</translation>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Capacidade restante disponível caiu abaixo do limite</translation>
</message>
<message>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Erro de Temperatura (Muito Quente ou Frio)</translation>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Erro de Temperatura (Muito Quente ou Frio)</translation>
</message>
<message>
<source>NVM subsystem reliability has been degraded</source>
<translation>Confiabilidade do subsistema NVM degradada</translation>
<source>NVM subsystem reliability has been degraded</source>
<translation>Confiabilidade do subsistema NVM degradada</translation>
</message>
<message>
<source>Media has been placed in Read Only Mode</source>
<translation>Media em modo de apenas leitura</translation>
<source>Media has been placed in Read Only Mode</source>
<translation>Media em modo de apenas leitura</translation>
</message>
<message>
<source>Volatile memory backup device has Failed</source>
<translation>Dispositivo de backup de memória volátil falhou</translation>
<source>Volatile memory backup device has Failed</source>
<translation>Dispositivo de backup de memória volátil falhou</translation>
</message>
<message>
<source>Persistent memory region has become Read-Only</source>
<translation>Região de memória persistente entrou em modo de apenas leitura</translation>
<source>Persistent memory region has become Read-Only</source>
<translation>Região de memória persistente entrou em modo de apenas leitura</translation>
</message>
<message>
<source>Current</source>
<translation>Atual</translation>
<source>Current</source>
<translation>Atual</translation>
</message>
<message>
<source>Worst</source>
<translation>Pior</translation>
<source>Worst</source>
<translation>Pior</translation>
</message>
<message>
<source>Threshold</source>
<translation>Limite</translation>
<source>Threshold</source>
<translation>Limite</translation>
</message>
<message>
<source>Empty JSON</source>
<translation>JSON vazio</translation>
<source>Empty JSON</source>
<translation>JSON vazio</translation>
</message>
<message>
<source>The JSON is empty</source>
<translation>O JSON está vazio</translation>
<source>The JSON is empty</source>
<translation>O JSON está vazio</translation>
</message>
<message>
<source>Save JSON</source>
<translation>Salvar JSON</translation>
<source>Save JSON</source>
<translation>Salvar JSON</translation>
</message>
<message>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;All Files (*)</translation>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;All Files (*)</translation>
</message>
<message>
<source>Unable to open file for writing</source>
<translation>Não foi possível abrir o aquivo para escrita</translation>
<source>Unable to open file for writing</source>
<translation>Não foi possível abrir o aquivo para escrita</translation>
</message>
<message>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>Um visualizador ATA e NVMe S.M.A.R.T. para Linux</translation>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>Um visualizador ATA e NVMe S.M.A.R.T. para Linux</translation>
</message>
<message>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Licenciado sob a GNU G.P.L. Versão 3</translation>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Licenciado sob a GNU G.P.L. Versão 3</translation>
</message>
<message>
<source>Made by Samantas5855</source>
<translation>Feito por Samantas5855</translation>
<source>Made by Samantas5855</source>
<translation>Feito por Samantas5855</translation>
</message>
<message>
<source>Version</source>
<translation>Versão</translation>
<source>Version</source>
<translation>Versão</translation>
</message>
<message>
<source>About QDiskInfo</source>
<translation>Sobre QDiskInfo</translation>
<source>About QDiskInfo</source>
<translation>Sobre QDiskInfo</translation>
</message>
<message>
<source>About Qt</source>
<translation>Sobre o Qt</translation>
<source>About Qt</source>
<translation>Sobre o Qt</translation>
</message>
<message>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
</message>
<message>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
</message>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Erro</translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Erro</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo precisa de acesso root para leitura dos dados S.M.A.R.T.!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo precisa de acesso root para leitura dos dados S.M.A.R.T.!</translation>
</message>
<message>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
</message>
<message>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
</message>
<message>
<source>Success</source>
<translation type="unfinished">Success</translation>
<source>Success</source>
<translation type="unfinished">Success</translation>
</message>
<message>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
</message>
<message>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
</message>
<message>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
</message>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
</message>
<message>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
</message>
<message>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
</message>
<message>
<source>&amp;Save JSON</source>
<translation>&amp;Salvar JSON</translation>
</message>
</context>
<context>
</context>
<context>
<name>QObject</name>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Erro</translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Erro</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo precisa de acesso root para leitura dos dados S.M.A.R.T.!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo precisa de acesso root para leitura dos dados S.M.A.R.T.!</translation>
</message>
<message>
<source>smartctl was not found, please install it!</source>
<translation>smartctl não foi encontrado, por favor instalar!</translation>
<source>smartctl was not found, please install it!</source>
<translation>smartctl não foi encontrado, por favor instalar!</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo precisa de acesso root para abortar um auto teste!</translation>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo precisa de acesso root para abortar um auto teste!</translation>
</message>
<message>
<source>Test Requested</source>
<translation>Teste Solicitado</translation>
<source>Test Requested</source>
<translation>Teste Solicitado</translation>
</message>
<message>
<source>The self-test has been aborted</source>
<translation>Auto teste abortado</translation>
<source>The self-test has been aborted</source>
<translation>Auto teste abortado</translation>
</message>
<message>
<source>Error: Something went wrong</source>
<translation>Erro: Algo de errado não deu certo</translation>
<source>Error: Something went wrong</source>
<translation>Erro: Algo de errado não deu certo</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo precisa de acesso root para solicitar um auto teste!</translation>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo precisa de acesso root para solicitar um auto teste!</translation>
</message>
<message>
<source>remaining</source>
<translation>restante</translation>
<source>remaining</source>
<translation>restante</translation>
</message>
<message>
<source>completed</source>
<translation>completo</translation>
<source>completed</source>
<translation>completo</translation>
</message>
<message>
<source>Test Already Running</source>
<translation>Teste Executando</translation>
<source>Test Already Running</source>
<translation>Teste Executando</translation>
</message>
<message>
<source>A self-test is already being performed</source>
<translation>Um auto teste está em execução</translation>
<source>A self-test is already being performed</source>
<translation>Um auto teste está em execução</translation>
</message>
<message>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>Você pode apertar o botão de Ok para abortar o auto teste em execução</translation>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>Você pode apertar o botão de Ok para abortar o auto teste em execução</translation>
</message>
<message>
<source>A self-test has been requested successfully</source>
<translation>Um auto teste foi solicitado com sucesso</translation>
<source>A self-test has been requested successfully</source>
<translation>Um auto teste foi solicitado com sucesso</translation>
</message>
<message>
<source>It will be completed after</source>
<translation>O teste será completado depois de</translation>
<source>It will be completed after</source>
<translation>O teste será completado depois de</translation>
</message>
<message>
<source>minutes</source>
<translation>minutos</translation>
<source>minutes</source>
<translation>minutos</translation>
</message>
<message>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
</message>
<message>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
</message>
</context>
</context>
</TS>

View File

@@ -1,449 +1,445 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="pt_PT" sourcelanguage="en">
<context>
<context>
<name>GridView</name>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
</message>
</context>
<context>
</context>
<context>
<name>MainWindow</name>
<message>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Firmware</source>
<translation>Firmware</translation>
<source>Firmware</source>
<translation>Firmware</translation>
</message>
<message>
<source>Serial Number</source>
<translation>Serial Number</translation>
<source>Serial Number</source>
<translation>Serial Number</translation>
</message>
<message>
<source>Protocol</source>
<translation>Protocol</translation>
<source>Protocol</source>
<translation>Protocol</translation>
</message>
<message>
<source>Device Node</source>
<translation>Device Node</translation>
<source>Device Node</source>
<translation>Device Node</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Type</source>
<translation>Type</translation>
<source>Type</source>
<translation>Type</translation>
</message>
<message>
<source>Total Host Reads</source>
<translation>Total Host Reads</translation>
<source>Total Host Reads</source>
<translation>Total Host Reads</translation>
</message>
<message>
<source>Total Host Writes</source>
<translation>Total Host Writes</translation>
<source>Total Host Writes</source>
<translation>Total Host Writes</translation>
</message>
<message>
<source>Rotation Rate</source>
<translation>Rotation Rate</translation>
<source>Rotation Rate</source>
<translation>Rotation Rate</translation>
</message>
<message>
<source>Power On Count</source>
<translation>Power On Count</translation>
<source>Power On Count</source>
<translation>Power On Count</translation>
</message>
<message>
<source>Power On Hours</source>
<translation>Power On Hours</translation>
<source>Power On Hours</source>
<translation>Power On Hours</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>File</source>
<translation>File</translation>
<source>File</source>
<translation>File</translation>
</message>
<message>
<source>Settings</source>
<translation>Settings</translation>
<source>Settings</source>
<translation>Settings</translation>
</message>
<message>
<source>&amp;Help</source>
<translation>&amp;Help</translation>
<source>&amp;Help</source>
<translation>&amp;Help</translation>
</message>
<message>
<source>De&amp;vice</source>
<translation>De&amp;vice</translation>
<source>De&amp;vice</source>
<translation>De&amp;vice</translation>
</message>
<message>
<source>Disk</source>
<translation>Disk</translation>
<source>Disk</source>
<translation>Disk</translation>
</message>
<message>
<source>&amp;Quit</source>
<translation>&amp;Quit</translation>
<source>&amp;Quit</source>
<translation>&amp;Quit</translation>
</message>
<message>
<source>&amp;Refresh Devices</source>
<translation>&amp;Refresh Devices</translation>
<source>&amp;Refresh Devices</source>
<translation>&amp;Refresh Devices</translation>
</message>
<message>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
</message>
<message>
<source>&amp;About QDiskInfo</source>
<translation>&amp;About QDiskInfo</translation>
<source>&amp;About QDiskInfo</source>
<translation>&amp;About QDiskInfo</translation>
</message>
<message>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ignore C4 (Reallocated Event Count)</translation>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ignore C4 (Reallocated Event Count)</translation>
</message>
<message>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Convert Raw values to HEX</translation>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Convert Raw values to HEX</translation>
</message>
<message>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Use Fahrenheit</translation>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Use Fahrenheit</translation>
</message>
<message>
<source>Self Test</source>
<translation>Self Test</translation>
<source>Self Test</source>
<translation>Self Test</translation>
</message>
<message>
<source>Cyclic &amp;Navigation</source>
<translation>Cyclic &amp;Navigation</translation>
<source>Cyclic &amp;Navigation</source>
<translation>Cyclic &amp;Navigation</translation>
</message>
<message>
<source>Use &amp;GB instead of TB</source>
<translation>Use &amp;GB instead of TB</translation>
<source>Use &amp;GB instead of TB</source>
<translation>Use &amp;GB instead of TB</translation>
</message>
<message>
<source>About &amp;Qt</source>
<translation>About &amp;Qt</translation>
<source>About &amp;Qt</source>
<translation>About &amp;Qt</translation>
</message>
<message>
<source>Start Self Test</source>
<translation>Start Self Test</translation>
<source>Start Self Test</source>
<translation>Start Self Test</translation>
</message>
<message>
<source>Self Test Log</source>
<translation>Self Test Log</translation>
<source>Self Test Log</source>
<translation>Self Test Log</translation>
</message>
<message>
<source>Critical Warning</source>
<translation>Critical Warning</translation>
<source>Critical Warning</source>
<translation>Critical Warning</translation>
</message>
<message>
<source>Grown Defect List</source>
<translation>Grown Defect List</translation>
<source>Grown Defect List</source>
<translation>Grown Defect List</translation>
</message>
<message>
<source>Good</source>
<translation>Good</translation>
<source>Good</source>
<translation>Good</translation>
</message>
<message>
<source>Caution</source>
<translation>Caution</translation>
<source>Caution</source>
<translation>Caution</translation>
</message>
<message>
<source>Bad</source>
<translation>Bad</translation>
<source>Bad</source>
<translation>Bad</translation>
</message>
<message>
<source>Unknown</source>
<translation>Unknown</translation>
<source>Unknown</source>
<translation>Unknown</translation>
</message>
<message>
<source>Status</source>
<translation>Status</translation>
<source>Status</source>
<translation>Status</translation>
</message>
<message>
<source>count</source>
<translation>count</translation>
<source>count</source>
<translation>count</translation>
</message>
<message>
<source>hours</source>
<translation>hours</translation>
<source>hours</source>
<translation>hours</translation>
</message>
<message>
<source>Short</source>
<translation>Short</translation>
<source>Short</source>
<translation>Short</translation>
</message>
<message>
<source>Conveyance</source>
<translation>Conveyance</translation>
<source>Conveyance</source>
<translation>Conveyance</translation>
</message>
<message>
<source>Extended</source>
<translation>Extended</translation>
<source>Extended</source>
<translation>Extended</translation>
</message>
<message>
<source>Min.)</source>
<translation>Min.)</translation>
<source>Min.)</source>
<translation>Min.)</translation>
</message>
<message>
<source>Read</source>
<translation>Read</translation>
<source>Read</source>
<translation>Read</translation>
</message>
<message>
<source>Write</source>
<translation>Write</translation>
<source>Write</source>
<translation>Write</translation>
</message>
<message>
<source>Verify</source>
<translation>Verify</translation>
<source>Verify</source>
<translation>Verify</translation>
</message>
<message>
<source>ID</source>
<translation>ID</translation>
<source>ID</source>
<translation>ID</translation>
</message>
<message>
<source>Attribute Name</source>
<translation>Attribute Name</translation>
<source>Attribute Name</source>
<translation>Attribute Name</translation>
</message>
<message>
<source>Raw Values</source>
<translation>Raw Values</translation>
<source>Raw Values</source>
<translation>Raw Values</translation>
</message>
<message>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Available spare capacity has fallen below the threshold</translation>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Available spare capacity has fallen below the threshold</translation>
</message>
<message>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Temperature error (Overheat or Overcool)</translation>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Temperature error (Overheat or Overcool)</translation>
</message>
<message>
<source>NVM subsystem reliability has been degraded</source>
<translation>NVM subsystem reliability has been degraded</translation>
<source>NVM subsystem reliability has been degraded</source>
<translation>NVM subsystem reliability has been degraded</translation>
</message>
<message>
<source>Media has been placed in Read Only Mode</source>
<translation>Media has been placed in Read Only Mode</translation>
<source>Media has been placed in Read Only Mode</source>
<translation>Media has been placed in Read Only Mode</translation>
</message>
<message>
<source>Volatile memory backup device has Failed</source>
<translation>Volatile memory backup device has Failed</translation>
<source>Volatile memory backup device has Failed</source>
<translation>Volatile memory backup device has Failed</translation>
</message>
<message>
<source>Persistent memory region has become Read-Only</source>
<translation>Persistent memory region has become Read-Only</translation>
<source>Persistent memory region has become Read-Only</source>
<translation>Persistent memory region has become Read-Only</translation>
</message>
<message>
<source>Current</source>
<translation>Current</translation>
<source>Current</source>
<translation>Current</translation>
</message>
<message>
<source>Worst</source>
<translation>Worst</translation>
<source>Worst</source>
<translation>Worst</translation>
</message>
<message>
<source>Threshold</source>
<translation>Threshold</translation>
<source>Threshold</source>
<translation>Threshold</translation>
</message>
<message>
<source>Empty JSON</source>
<translation>Empty JSON</translation>
<source>Empty JSON</source>
<translation>Empty JSON</translation>
</message>
<message>
<source>The JSON is empty</source>
<translation>The JSON is empty</translation>
<source>The JSON is empty</source>
<translation>The JSON is empty</translation>
</message>
<message>
<source>Save JSON</source>
<translation>Save JSON</translation>
<source>Save JSON</source>
<translation>Save JSON</translation>
</message>
<message>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;All Files (*)</translation>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;All Files (*)</translation>
</message>
<message>
<source>Unable to open file for writing</source>
<translation>Unable to open file for writing</translation>
<source>Unable to open file for writing</source>
<translation>Unable to open file for writing</translation>
</message>
<message>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>An ATA and NVMe S.M.A.R.T. data viewer for Linux</translation>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>An ATA and NVMe S.M.A.R.T. data viewer for Linux</translation>
</message>
<message>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Licensed under the GNU G.P.L. Version 3</translation>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Licensed under the GNU G.P.L. Version 3</translation>
</message>
<message>
<source>Made by Samantas5855</source>
<translation>Made by Samantas5855</translation>
<source>Made by Samantas5855</source>
<translation>Made by Samantas5855</translation>
</message>
<message>
<source>Version</source>
<translation>Version</translation>
<source>Version</source>
<translation>Version</translation>
</message>
<message>
<source>About QDiskInfo</source>
<translation>About QDiskInfo</translation>
<source>About QDiskInfo</source>
<translation>About QDiskInfo</translation>
</message>
<message>
<source>About Qt</source>
<translation>About Qt</translation>
<source>About Qt</source>
<translation>About Qt</translation>
</message>
<message>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
</message>
<message>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
</message>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
</message>
<message>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
</message>
<message>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
</message>
<message>
<source>Success</source>
<translation type="unfinished">Success</translation>
<source>Success</source>
<translation type="unfinished">Success</translation>
</message>
<message>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
</message>
<message>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
</message>
<message>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
</message>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
</message>
<message>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
</message>
<message>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
</message>
<message>
<source>&amp;Save JSON</source>
<translation>&amp;Save JSON</translation>
</message>
</context>
<context>
</context>
<context>
<name>QObject</name>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
</message>
<message>
<source>smartctl was not found, please install it!</source>
<translation>smartctl was not found, please install it!</translation>
<source>smartctl was not found, please install it!</source>
<translation>smartctl was not found, please install it!</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo needs root access in order to abort a self-test!</translation>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo needs root access in order to abort a self-test!</translation>
</message>
<message>
<source>Test Requested</source>
<translation>Test Requested</translation>
<source>Test Requested</source>
<translation>Test Requested</translation>
</message>
<message>
<source>The self-test has been aborted</source>
<translation>The self-test has been aborted</translation>
<source>The self-test has been aborted</source>
<translation>The self-test has been aborted</translation>
</message>
<message>
<source>Error: Something went wrong</source>
<translation>Error: Something went wrong</translation>
<source>Error: Something went wrong</source>
<translation>Error: Something went wrong</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo needs root access in order to request a self-test!</translation>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo needs root access in order to request a self-test!</translation>
</message>
<message>
<source>remaining</source>
<translation>remaining</translation>
<source>remaining</source>
<translation>remaining</translation>
</message>
<message>
<source>completed</source>
<translation>completed</translation>
<source>completed</source>
<translation>completed</translation>
</message>
<message>
<source>Test Already Running</source>
<translation>Test Already Running</translation>
<source>Test Already Running</source>
<translation>Test Already Running</translation>
</message>
<message>
<source>A self-test is already being performed</source>
<translation>A self-test is already being performed</translation>
<source>A self-test is already being performed</source>
<translation>A self-test is already being performed</translation>
</message>
<message>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>You can press the Ok button in order to abort the test that is currently running</translation>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>You can press the Ok button in order to abort the test that is currently running</translation>
</message>
<message>
<source>A self-test has been requested successfully</source>
<translation>A self-test has been requested successfully</translation>
<source>A self-test has been requested successfully</source>
<translation>A self-test has been requested successfully</translation>
</message>
<message>
<source>It will be completed after</source>
<translation>It will be completed after</translation>
<source>It will be completed after</source>
<translation>It will be completed after</translation>
</message>
<message>
<source>minutes</source>
<translation>minutes</translation>
<source>minutes</source>
<translation>minutes</translation>
</message>
<message>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
</message>
<message>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
</message>
</context>
</context>
</TS>

View File

@@ -1,449 +1,445 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="ro_RO" sourcelanguage="en">
<context>
<context>
<name>GridView</name>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
</message>
</context>
<context>
</context>
<context>
<name>MainWindow</name>
<message>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Firmware</source>
<translation>Firmware</translation>
<source>Firmware</source>
<translation>Firmware</translation>
</message>
<message>
<source>Serial Number</source>
<translation>Serial Number</translation>
<source>Serial Number</source>
<translation>Serial Number</translation>
</message>
<message>
<source>Protocol</source>
<translation>Protocol</translation>
<source>Protocol</source>
<translation>Protocol</translation>
</message>
<message>
<source>Device Node</source>
<translation>Device Node</translation>
<source>Device Node</source>
<translation>Device Node</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Type</source>
<translation>Type</translation>
<source>Type</source>
<translation>Type</translation>
</message>
<message>
<source>Total Host Reads</source>
<translation>Total Host Reads</translation>
<source>Total Host Reads</source>
<translation>Total Host Reads</translation>
</message>
<message>
<source>Total Host Writes</source>
<translation>Total Host Writes</translation>
<source>Total Host Writes</source>
<translation>Total Host Writes</translation>
</message>
<message>
<source>Rotation Rate</source>
<translation>Rotation Rate</translation>
<source>Rotation Rate</source>
<translation>Rotation Rate</translation>
</message>
<message>
<source>Power On Count</source>
<translation>Power On Count</translation>
<source>Power On Count</source>
<translation>Power On Count</translation>
</message>
<message>
<source>Power On Hours</source>
<translation>Power On Hours</translation>
<source>Power On Hours</source>
<translation>Power On Hours</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>File</source>
<translation>File</translation>
<source>File</source>
<translation>File</translation>
</message>
<message>
<source>Settings</source>
<translation>Settings</translation>
<source>Settings</source>
<translation>Settings</translation>
</message>
<message>
<source>&amp;Help</source>
<translation>&amp;Help</translation>
<source>&amp;Help</source>
<translation>&amp;Help</translation>
</message>
<message>
<source>De&amp;vice</source>
<translation>De&amp;vice</translation>
<source>De&amp;vice</source>
<translation>De&amp;vice</translation>
</message>
<message>
<source>Disk</source>
<translation>Disk</translation>
<source>Disk</source>
<translation>Disk</translation>
</message>
<message>
<source>&amp;Quit</source>
<translation>&amp;Quit</translation>
<source>&amp;Quit</source>
<translation>&amp;Quit</translation>
</message>
<message>
<source>&amp;Refresh Devices</source>
<translation>&amp;Refresh Devices</translation>
<source>&amp;Refresh Devices</source>
<translation>&amp;Refresh Devices</translation>
</message>
<message>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
</message>
<message>
<source>&amp;About QDiskInfo</source>
<translation>&amp;About QDiskInfo</translation>
<source>&amp;About QDiskInfo</source>
<translation>&amp;About QDiskInfo</translation>
</message>
<message>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ignore C4 (Reallocated Event Count)</translation>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ignore C4 (Reallocated Event Count)</translation>
</message>
<message>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Convert Raw values to HEX</translation>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Convert Raw values to HEX</translation>
</message>
<message>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Use Fahrenheit</translation>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Use Fahrenheit</translation>
</message>
<message>
<source>Self Test</source>
<translation>Self Test</translation>
<source>Self Test</source>
<translation>Self Test</translation>
</message>
<message>
<source>Cyclic &amp;Navigation</source>
<translation>Cyclic &amp;Navigation</translation>
<source>Cyclic &amp;Navigation</source>
<translation>Cyclic &amp;Navigation</translation>
</message>
<message>
<source>Use &amp;GB instead of TB</source>
<translation>Use &amp;GB instead of TB</translation>
<source>Use &amp;GB instead of TB</source>
<translation>Use &amp;GB instead of TB</translation>
</message>
<message>
<source>About &amp;Qt</source>
<translation>About &amp;Qt</translation>
<source>About &amp;Qt</source>
<translation>About &amp;Qt</translation>
</message>
<message>
<source>Start Self Test</source>
<translation>Start Self Test</translation>
<source>Start Self Test</source>
<translation>Start Self Test</translation>
</message>
<message>
<source>Self Test Log</source>
<translation>Self Test Log</translation>
<source>Self Test Log</source>
<translation>Self Test Log</translation>
</message>
<message>
<source>Critical Warning</source>
<translation>Critical Warning</translation>
<source>Critical Warning</source>
<translation>Critical Warning</translation>
</message>
<message>
<source>Grown Defect List</source>
<translation>Grown Defect List</translation>
<source>Grown Defect List</source>
<translation>Grown Defect List</translation>
</message>
<message>
<source>Good</source>
<translation>Good</translation>
<source>Good</source>
<translation>Good</translation>
</message>
<message>
<source>Caution</source>
<translation>Caution</translation>
<source>Caution</source>
<translation>Caution</translation>
</message>
<message>
<source>Bad</source>
<translation>Bad</translation>
<source>Bad</source>
<translation>Bad</translation>
</message>
<message>
<source>Unknown</source>
<translation>Unknown</translation>
<source>Unknown</source>
<translation>Unknown</translation>
</message>
<message>
<source>Status</source>
<translation>Status</translation>
<source>Status</source>
<translation>Status</translation>
</message>
<message>
<source>count</source>
<translation>count</translation>
<source>count</source>
<translation>count</translation>
</message>
<message>
<source>hours</source>
<translation>hours</translation>
<source>hours</source>
<translation>hours</translation>
</message>
<message>
<source>Short</source>
<translation>Short</translation>
<source>Short</source>
<translation>Short</translation>
</message>
<message>
<source>Conveyance</source>
<translation>Conveyance</translation>
<source>Conveyance</source>
<translation>Conveyance</translation>
</message>
<message>
<source>Extended</source>
<translation>Extended</translation>
<source>Extended</source>
<translation>Extended</translation>
</message>
<message>
<source>Min.)</source>
<translation>Min.)</translation>
<source>Min.)</source>
<translation>Min.)</translation>
</message>
<message>
<source>Read</source>
<translation>Read</translation>
<source>Read</source>
<translation>Read</translation>
</message>
<message>
<source>Write</source>
<translation>Write</translation>
<source>Write</source>
<translation>Write</translation>
</message>
<message>
<source>Verify</source>
<translation>Verify</translation>
<source>Verify</source>
<translation>Verify</translation>
</message>
<message>
<source>ID</source>
<translation>ID</translation>
<source>ID</source>
<translation>ID</translation>
</message>
<message>
<source>Attribute Name</source>
<translation>Attribute Name</translation>
<source>Attribute Name</source>
<translation>Attribute Name</translation>
</message>
<message>
<source>Raw Values</source>
<translation>Raw Values</translation>
<source>Raw Values</source>
<translation>Raw Values</translation>
</message>
<message>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Available spare capacity has fallen below the threshold</translation>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Available spare capacity has fallen below the threshold</translation>
</message>
<message>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Temperature error (Overheat or Overcool)</translation>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Temperature error (Overheat or Overcool)</translation>
</message>
<message>
<source>NVM subsystem reliability has been degraded</source>
<translation>NVM subsystem reliability has been degraded</translation>
<source>NVM subsystem reliability has been degraded</source>
<translation>NVM subsystem reliability has been degraded</translation>
</message>
<message>
<source>Media has been placed in Read Only Mode</source>
<translation>Media has been placed in Read Only Mode</translation>
<source>Media has been placed in Read Only Mode</source>
<translation>Media has been placed in Read Only Mode</translation>
</message>
<message>
<source>Volatile memory backup device has Failed</source>
<translation>Volatile memory backup device has Failed</translation>
<source>Volatile memory backup device has Failed</source>
<translation>Volatile memory backup device has Failed</translation>
</message>
<message>
<source>Persistent memory region has become Read-Only</source>
<translation>Persistent memory region has become Read-Only</translation>
<source>Persistent memory region has become Read-Only</source>
<translation>Persistent memory region has become Read-Only</translation>
</message>
<message>
<source>Current</source>
<translation>Current</translation>
<source>Current</source>
<translation>Current</translation>
</message>
<message>
<source>Worst</source>
<translation>Worst</translation>
<source>Worst</source>
<translation>Worst</translation>
</message>
<message>
<source>Threshold</source>
<translation>Threshold</translation>
<source>Threshold</source>
<translation>Threshold</translation>
</message>
<message>
<source>Empty JSON</source>
<translation>Empty JSON</translation>
<source>Empty JSON</source>
<translation>Empty JSON</translation>
</message>
<message>
<source>The JSON is empty</source>
<translation>The JSON is empty</translation>
<source>The JSON is empty</source>
<translation>The JSON is empty</translation>
</message>
<message>
<source>Save JSON</source>
<translation>Save JSON</translation>
<source>Save JSON</source>
<translation>Save JSON</translation>
</message>
<message>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;All Files (*)</translation>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;All Files (*)</translation>
</message>
<message>
<source>Unable to open file for writing</source>
<translation>Unable to open file for writing</translation>
<source>Unable to open file for writing</source>
<translation>Unable to open file for writing</translation>
</message>
<message>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>An ATA and NVMe S.M.A.R.T. data viewer for Linux</translation>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>An ATA and NVMe S.M.A.R.T. data viewer for Linux</translation>
</message>
<message>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Licensed under the GNU G.P.L. Version 3</translation>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Licensed under the GNU G.P.L. Version 3</translation>
</message>
<message>
<source>Made by Samantas5855</source>
<translation>Made by Samantas5855</translation>
<source>Made by Samantas5855</source>
<translation>Made by Samantas5855</translation>
</message>
<message>
<source>Version</source>
<translation>Version</translation>
<source>Version</source>
<translation>Version</translation>
</message>
<message>
<source>About QDiskInfo</source>
<translation>About QDiskInfo</translation>
<source>About QDiskInfo</source>
<translation>About QDiskInfo</translation>
</message>
<message>
<source>About Qt</source>
<translation>About Qt</translation>
<source>About Qt</source>
<translation>About Qt</translation>
</message>
<message>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
</message>
<message>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
</message>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
</message>
<message>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
</message>
<message>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
</message>
<message>
<source>Success</source>
<translation type="unfinished">Success</translation>
<source>Success</source>
<translation type="unfinished">Success</translation>
</message>
<message>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
</message>
<message>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
</message>
<message>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
</message>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
</message>
<message>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
</message>
<message>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
</message>
<message>
<source>&amp;Save JSON</source>
<translation>&amp;Save JSON</translation>
</message>
</context>
<context>
</context>
<context>
<name>QObject</name>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
</message>
<message>
<source>smartctl was not found, please install it!</source>
<translation>smartctl was not found, please install it!</translation>
<source>smartctl was not found, please install it!</source>
<translation>smartctl was not found, please install it!</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo needs root access in order to abort a self-test!</translation>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo needs root access in order to abort a self-test!</translation>
</message>
<message>
<source>Test Requested</source>
<translation>Test Requested</translation>
<source>Test Requested</source>
<translation>Test Requested</translation>
</message>
<message>
<source>The self-test has been aborted</source>
<translation>The self-test has been aborted</translation>
<source>The self-test has been aborted</source>
<translation>The self-test has been aborted</translation>
</message>
<message>
<source>Error: Something went wrong</source>
<translation>Error: Something went wrong</translation>
<source>Error: Something went wrong</source>
<translation>Error: Something went wrong</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo needs root access in order to request a self-test!</translation>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo needs root access in order to request a self-test!</translation>
</message>
<message>
<source>remaining</source>
<translation>remaining</translation>
<source>remaining</source>
<translation>remaining</translation>
</message>
<message>
<source>completed</source>
<translation>completed</translation>
<source>completed</source>
<translation>completed</translation>
</message>
<message>
<source>Test Already Running</source>
<translation>Test Already Running</translation>
<source>Test Already Running</source>
<translation>Test Already Running</translation>
</message>
<message>
<source>A self-test is already being performed</source>
<translation>A self-test is already being performed</translation>
<source>A self-test is already being performed</source>
<translation>A self-test is already being performed</translation>
</message>
<message>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>You can press the Ok button in order to abort the test that is currently running</translation>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>You can press the Ok button in order to abort the test that is currently running</translation>
</message>
<message>
<source>A self-test has been requested successfully</source>
<translation>A self-test has been requested successfully</translation>
<source>A self-test has been requested successfully</source>
<translation>A self-test has been requested successfully</translation>
</message>
<message>
<source>It will be completed after</source>
<translation>It will be completed after</translation>
<source>It will be completed after</source>
<translation>It will be completed after</translation>
</message>
<message>
<source>minutes</source>
<translation>minutes</translation>
<source>minutes</source>
<translation>minutes</translation>
</message>
<message>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
</message>
<message>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
</message>
</context>
</context>
</TS>

View File

@@ -1,449 +1,445 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="ru_RU" sourcelanguage="en">
<context>
<context>
<name>GridView</name>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
</message>
</context>
<context>
</context>
<context>
<name>MainWindow</name>
<message>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Состояние здоровья&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Состояние здоровья&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Хорошее&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Хорошее&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Температура&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Температура&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Firmware</source>
<translation>Прошивка</translation>
<source>Firmware</source>
<translation>Прошивка</translation>
</message>
<message>
<source>Serial Number</source>
<translation>Серийный номер</translation>
<source>Serial Number</source>
<translation>Серийный номер</translation>
</message>
<message>
<source>Protocol</source>
<translation>Протокол</translation>
<source>Protocol</source>
<translation>Протокол</translation>
</message>
<message>
<source>Device Node</source>
<translation>Путь к устройству</translation>
<source>Device Node</source>
<translation>Путь к устройству</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Хорошее 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Хорошее 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Type</source>
<translation>Тип</translation>
<source>Type</source>
<translation>Тип</translation>
</message>
<message>
<source>Total Host Reads</source>
<translation>Всего прочитано</translation>
<source>Total Host Reads</source>
<translation>Всего прочитано</translation>
</message>
<message>
<source>Total Host Writes</source>
<translation>Всего записано</translation>
<source>Total Host Writes</source>
<translation>Всего записано</translation>
</message>
<message>
<source>Rotation Rate</source>
<translation>Скорость вращения</translation>
<source>Rotation Rate</source>
<translation>Скорость вращения</translation>
</message>
<message>
<source>Power On Count</source>
<translation>Количество включений</translation>
<source>Power On Count</source>
<translation>Количество включений</translation>
</message>
<message>
<source>Power On Hours</source>
<translation>Время работы</translation>
<source>Power On Hours</source>
<translation>Время работы</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Наименование устройства&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Наименование устройства&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>File</source>
<translation>Файл</translation>
<source>File</source>
<translation>Файл</translation>
</message>
<message>
<source>Settings</source>
<translation>Настройки</translation>
<source>Settings</source>
<translation>Настройки</translation>
</message>
<message>
<source>&amp;Help</source>
<translation>&amp;Помощь</translation>
<source>&amp;Help</source>
<translation>&amp;Помощь</translation>
</message>
<message>
<source>De&amp;vice</source>
<translation>У&amp;стройство</translation>
<source>De&amp;vice</source>
<translation>У&amp;стройство</translation>
</message>
<message>
<source>Disk</source>
<translation>Диск</translation>
<source>Disk</source>
<translation>Диск</translation>
</message>
<message>
<source>&amp;Quit</source>
<translation>&amp;Выход</translation>
<source>&amp;Quit</source>
<translation>&amp;Выход</translation>
</message>
<message>
<source>&amp;Refresh Devices</source>
<translation>&amp;Обновить устройства</translation>
<source>&amp;Refresh Devices</source>
<translation>&amp;Обновить устройства</translation>
</message>
<message>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
</message>
<message>
<source>&amp;About QDiskInfo</source>
<translation>&amp;Об QDiskInfo</translation>
<source>&amp;About QDiskInfo</source>
<translation>&amp;Об QDiskInfo</translation>
</message>
<message>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Игнорировать C4 (Reallocated Event Count)</translation>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Игнорировать C4 (Reallocated Event Count)</translation>
</message>
<message>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Преобразовать Raw значения в HEX</translation>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Преобразовать Raw значения в HEX</translation>
</message>
<message>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Температура в Фаренгейтах</translation>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Температура в Фаренгейтах</translation>
</message>
<message>
<source>Self Test</source>
<translation>Самотестирование</translation>
<source>Self Test</source>
<translation>Самотестирование</translation>
</message>
<message>
<source>Cyclic &amp;Navigation</source>
<translation>Циклическая &amp;навигация</translation>
<source>Cyclic &amp;Navigation</source>
<translation>Циклическая &amp;навигация</translation>
</message>
<message>
<source>Use &amp;GB instead of TB</source>
<translation>&amp;Использ. ГБ вместо ТБ</translation>
<source>Use &amp;GB instead of TB</source>
<translation>&amp;Использ. ГБ вместо ТБ</translation>
</message>
<message>
<source>About &amp;Qt</source>
<translation>О &amp;Qt</translation>
<source>About &amp;Qt</source>
<translation>О &amp;Qt</translation>
</message>
<message>
<source>Start Self Test</source>
<translation>Начать самотестирование</translation>
<source>Start Self Test</source>
<translation>Начать самотестирование</translation>
</message>
<message>
<source>Self Test Log</source>
<translation>Журнал самотестирования</translation>
<source>Self Test Log</source>
<translation>Журнал самотестирования</translation>
</message>
<message>
<source>Critical Warning</source>
<translation>Критическое предупреждение</translation>
<source>Critical Warning</source>
<translation>Критическое предупреждение</translation>
</message>
<message>
<source>Grown Defect List</source>
<translation>Список наростающих дефектов</translation>
<source>Grown Defect List</source>
<translation>Список наростающих дефектов</translation>
</message>
<message>
<source>Good</source>
<translation>Хорошее</translation>
<source>Good</source>
<translation>Хорошее</translation>
</message>
<message>
<source>Caution</source>
<translation>Предупреждение</translation>
<source>Caution</source>
<translation>Предупреждение</translation>
</message>
<message>
<source>Bad</source>
<translation>Плохое</translation>
<source>Bad</source>
<translation>Плохое</translation>
</message>
<message>
<source>Unknown</source>
<translation>Неизвестно</translation>
<source>Unknown</source>
<translation>Неизвестно</translation>
</message>
<message>
<source>Status</source>
<translation>Статус</translation>
<source>Status</source>
<translation>Статус</translation>
</message>
<message>
<source>count</source>
<translation>раз</translation>
<source>count</source>
<translation>раз</translation>
</message>
<message>
<source>hours</source>
<translation>часов</translation>
<source>hours</source>
<translation>часов</translation>
</message>
<message>
<source>Short</source>
<translation>Коротко</translation>
<source>Short</source>
<translation>Коротко</translation>
</message>
<message>
<source>Conveyance</source>
<translation>Conveyance</translation>
<source>Conveyance</source>
<translation>Conveyance</translation>
</message>
<message>
<source>Extended</source>
<translation>Расширенно</translation>
<source>Extended</source>
<translation>Расширенно</translation>
</message>
<message>
<source>Min.)</source>
<translation>Min.)</translation>
<source>Min.)</source>
<translation>Min.)</translation>
</message>
<message>
<source>Read</source>
<translation>Чтение</translation>
<source>Read</source>
<translation>Чтение</translation>
</message>
<message>
<source>Write</source>
<translation>Запись</translation>
<source>Write</source>
<translation>Запись</translation>
</message>
<message>
<source>Verify</source>
<translation>Проверить</translation>
<source>Verify</source>
<translation>Проверить</translation>
</message>
<message>
<source>ID</source>
<translation>ID</translation>
<source>ID</source>
<translation>ID</translation>
</message>
<message>
<source>Attribute Name</source>
<translation>Название атрибута</translation>
<source>Attribute Name</source>
<translation>Название атрибута</translation>
</message>
<message>
<source>Raw Values</source>
<translation>Raw Значение</translation>
<source>Raw Values</source>
<translation>Raw Значение</translation>
</message>
<message>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Запас емкости упал ниже порогового значения</translation>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Запас емкости упал ниже порогового значения</translation>
</message>
<message>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Ошибка температуры (перегрев или переохлаждение)</translation>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Ошибка температуры (перегрев или переохлаждение)</translation>
</message>
<message>
<source>NVM subsystem reliability has been degraded</source>
<translation>Надежность подсистемы NVM деградировала</translation>
<source>NVM subsystem reliability has been degraded</source>
<translation>Надежность подсистемы NVM деградировала</translation>
</message>
<message>
<source>Media has been placed in Read Only Mode</source>
<translation>Медиа было помещено в режим &quot;Только для чтения&quot;</translation>
<source>Media has been placed in Read Only Mode</source>
<translation>Медиа было помещено в режим &quot;Только для чтения&quot;</translation>
</message>
<message>
<source>Volatile memory backup device has Failed</source>
<translation>Volatile memory backup device has Failed</translation>
<source>Volatile memory backup device has Failed</source>
<translation>Volatile memory backup device has Failed</translation>
</message>
<message>
<source>Persistent memory region has become Read-Only</source>
<translation>Постоянная область памяти стала только для чтения</translation>
<source>Persistent memory region has become Read-Only</source>
<translation>Постоянная область памяти стала только для чтения</translation>
</message>
<message>
<source>Current</source>
<translation>Текущее</translation>
<source>Current</source>
<translation>Текущее</translation>
</message>
<message>
<source>Worst</source>
<translation>Худшее</translation>
<source>Worst</source>
<translation>Худшее</translation>
</message>
<message>
<source>Threshold</source>
<translation>Порог</translation>
<source>Threshold</source>
<translation>Порог</translation>
</message>
<message>
<source>Empty JSON</source>
<translation>Пустой JSON</translation>
<source>Empty JSON</source>
<translation>Пустой JSON</translation>
</message>
<message>
<source>The JSON is empty</source>
<translation>JSON пустой</translation>
<source>The JSON is empty</source>
<translation>JSON пустой</translation>
</message>
<message>
<source>Save JSON</source>
<translation>Сохранить JSON</translation>
<source>Save JSON</source>
<translation>Сохранить JSON</translation>
</message>
<message>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;Все Файлы (*)</translation>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;Все Файлы (*)</translation>
</message>
<message>
<source>Unable to open file for writing</source>
<translation>Не удается открыть файл для записи</translation>
<source>Unable to open file for writing</source>
<translation>Не удается открыть файл для записи</translation>
</message>
<message>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>Просмотрщик данных ATA і NVMe S.M.A.R.T. для Linux</translation>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>Просмотрщик данных ATA і NVMe S.M.A.R.T. для Linux</translation>
</message>
<message>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Лицензия GNU G.P.L. Версия 3</translation>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Лицензия GNU G.P.L. Версия 3</translation>
</message>
<message>
<source>Made by Samantas5855</source>
<translation>Разработано Samantas5855</translation>
<source>Made by Samantas5855</source>
<translation>Разработано Samantas5855</translation>
</message>
<message>
<source>Version</source>
<translation>Версия</translation>
<source>Version</source>
<translation>Версия</translation>
</message>
<message>
<source>About QDiskInfo</source>
<translation>Об QDiskInfo</translation>
<source>About QDiskInfo</source>
<translation>Об QDiskInfo</translation>
</message>
<message>
<source>About Qt</source>
<translation>О Qt</translation>
<source>About Qt</source>
<translation>О Qt</translation>
</message>
<message>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
</message>
<message>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
</message>
<message>
<source>QDiskInfo Error</source>
<translation>Ошибка QDiskInfo</translation>
<source>QDiskInfo Error</source>
<translation>Ошибка QDiskInfo</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo нужен root доступ, чтобы прочитать данные S.M.A.R.T.</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo нужен root доступ, чтобы прочитать данные S.M.A.R.T.</translation>
</message>
<message>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
</message>
<message>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
</message>
<message>
<source>Success</source>
<translation type="unfinished">Success</translation>
<source>Success</source>
<translation type="unfinished">Success</translation>
</message>
<message>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
</message>
<message>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
</message>
<message>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
</message>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
</message>
<message>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
</message>
<message>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
</message>
<message>
<source>&amp;Save JSON</source>
<translation>&amp;Сохранить JSON</translation>
</message>
</context>
<context>
</context>
<context>
<name>QObject</name>
<message>
<source>QDiskInfo Error</source>
<translation>Ошибка QDiskInfo</translation>
<source>QDiskInfo Error</source>
<translation>Ошибка QDiskInfo</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo нужен root доступ, чтобы прочитать данные S.M.A.R.T.</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo нужен root доступ, чтобы прочитать данные S.M.A.R.T.</translation>
</message>
<message>
<source>smartctl was not found, please install it!</source>
<translation>smartctl не найден, пожалуйста, установите его!</translation>
<source>smartctl was not found, please install it!</source>
<translation>smartctl не найден, пожалуйста, установите его!</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo нужен root доступ, чтобы прервать самотестирование!</translation>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo нужен root доступ, чтобы прервать самотестирование!</translation>
</message>
<message>
<source>Test Requested</source>
<translation>Тестирование запрошено</translation>
<source>Test Requested</source>
<translation>Тестирование запрошено</translation>
</message>
<message>
<source>The self-test has been aborted</source>
<translation>Самотестирование прервано</translation>
<source>The self-test has been aborted</source>
<translation>Самотестирование прервано</translation>
</message>
<message>
<source>Error: Something went wrong</source>
<translation>Ошибка что-то пошло не так</translation>
<source>Error: Something went wrong</source>
<translation>Ошибка что-то пошло не так</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo нужен root доступ, чтобы запросить самотестирование!</translation>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo нужен root доступ, чтобы запросить самотестирование!</translation>
</message>
<message>
<source>remaining</source>
<translation>осталось</translation>
<source>remaining</source>
<translation>осталось</translation>
</message>
<message>
<source>completed</source>
<translation>завершено</translation>
<source>completed</source>
<translation>завершено</translation>
</message>
<message>
<source>Test Already Running</source>
<translation>Тест уже запущен</translation>
<source>Test Already Running</source>
<translation>Тест уже запущен</translation>
</message>
<message>
<source>A self-test is already being performed</source>
<translation>Самотестирование уже проводится</translation>
<source>A self-test is already being performed</source>
<translation>Самотестирование уже проводится</translation>
</message>
<message>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>Вы можете нажать кнопку Ок, чтобы прервать тест, который сейчас запущен</translation>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>Вы можете нажать кнопку Ок, чтобы прервать тест, который сейчас запущен</translation>
</message>
<message>
<source>A self-test has been requested successfully</source>
<translation>Самотестирование было запрошено успешно</translation>
<source>A self-test has been requested successfully</source>
<translation>Самотестирование было запрошено успешно</translation>
</message>
<message>
<source>It will be completed after</source>
<translation>Оно будет завершено через</translation>
<source>It will be completed after</source>
<translation>Оно будет завершено через</translation>
</message>
<message>
<source>minutes</source>
<translation>минут</translation>
<source>minutes</source>
<translation>минут</translation>
</message>
<message>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
</message>
<message>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
</message>
</context>
</context>
</TS>

View File

@@ -1,449 +1,445 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="sr_SP" sourcelanguage="en">
<context>
<context>
<name>GridView</name>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
</message>
</context>
<context>
</context>
<context>
<name>MainWindow</name>
<message>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Firmware</source>
<translation>Firmware</translation>
<source>Firmware</source>
<translation>Firmware</translation>
</message>
<message>
<source>Serial Number</source>
<translation>Serial Number</translation>
<source>Serial Number</source>
<translation>Serial Number</translation>
</message>
<message>
<source>Protocol</source>
<translation>Protocol</translation>
<source>Protocol</source>
<translation>Protocol</translation>
</message>
<message>
<source>Device Node</source>
<translation>Device Node</translation>
<source>Device Node</source>
<translation>Device Node</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Type</source>
<translation>Type</translation>
<source>Type</source>
<translation>Type</translation>
</message>
<message>
<source>Total Host Reads</source>
<translation>Total Host Reads</translation>
<source>Total Host Reads</source>
<translation>Total Host Reads</translation>
</message>
<message>
<source>Total Host Writes</source>
<translation>Total Host Writes</translation>
<source>Total Host Writes</source>
<translation>Total Host Writes</translation>
</message>
<message>
<source>Rotation Rate</source>
<translation>Rotation Rate</translation>
<source>Rotation Rate</source>
<translation>Rotation Rate</translation>
</message>
<message>
<source>Power On Count</source>
<translation>Power On Count</translation>
<source>Power On Count</source>
<translation>Power On Count</translation>
</message>
<message>
<source>Power On Hours</source>
<translation>Power On Hours</translation>
<source>Power On Hours</source>
<translation>Power On Hours</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>File</source>
<translation>File</translation>
<source>File</source>
<translation>File</translation>
</message>
<message>
<source>Settings</source>
<translation>Settings</translation>
<source>Settings</source>
<translation>Settings</translation>
</message>
<message>
<source>&amp;Help</source>
<translation>&amp;Help</translation>
<source>&amp;Help</source>
<translation>&amp;Help</translation>
</message>
<message>
<source>De&amp;vice</source>
<translation>De&amp;vice</translation>
<source>De&amp;vice</source>
<translation>De&amp;vice</translation>
</message>
<message>
<source>Disk</source>
<translation>Disk</translation>
<source>Disk</source>
<translation>Disk</translation>
</message>
<message>
<source>&amp;Quit</source>
<translation>&amp;Quit</translation>
<source>&amp;Quit</source>
<translation>&amp;Quit</translation>
</message>
<message>
<source>&amp;Refresh Devices</source>
<translation>&amp;Refresh Devices</translation>
<source>&amp;Refresh Devices</source>
<translation>&amp;Refresh Devices</translation>
</message>
<message>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
</message>
<message>
<source>&amp;About QDiskInfo</source>
<translation>&amp;About QDiskInfo</translation>
<source>&amp;About QDiskInfo</source>
<translation>&amp;About QDiskInfo</translation>
</message>
<message>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ignore C4 (Reallocated Event Count)</translation>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ignore C4 (Reallocated Event Count)</translation>
</message>
<message>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Convert Raw values to HEX</translation>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Convert Raw values to HEX</translation>
</message>
<message>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Use Fahrenheit</translation>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Use Fahrenheit</translation>
</message>
<message>
<source>Self Test</source>
<translation>Self Test</translation>
<source>Self Test</source>
<translation>Self Test</translation>
</message>
<message>
<source>Cyclic &amp;Navigation</source>
<translation>Cyclic &amp;Navigation</translation>
<source>Cyclic &amp;Navigation</source>
<translation>Cyclic &amp;Navigation</translation>
</message>
<message>
<source>Use &amp;GB instead of TB</source>
<translation>Use &amp;GB instead of TB</translation>
<source>Use &amp;GB instead of TB</source>
<translation>Use &amp;GB instead of TB</translation>
</message>
<message>
<source>About &amp;Qt</source>
<translation>About &amp;Qt</translation>
<source>About &amp;Qt</source>
<translation>About &amp;Qt</translation>
</message>
<message>
<source>Start Self Test</source>
<translation>Start Self Test</translation>
<source>Start Self Test</source>
<translation>Start Self Test</translation>
</message>
<message>
<source>Self Test Log</source>
<translation>Self Test Log</translation>
<source>Self Test Log</source>
<translation>Self Test Log</translation>
</message>
<message>
<source>Critical Warning</source>
<translation>Critical Warning</translation>
<source>Critical Warning</source>
<translation>Critical Warning</translation>
</message>
<message>
<source>Grown Defect List</source>
<translation>Grown Defect List</translation>
<source>Grown Defect List</source>
<translation>Grown Defect List</translation>
</message>
<message>
<source>Good</source>
<translation>Good</translation>
<source>Good</source>
<translation>Good</translation>
</message>
<message>
<source>Caution</source>
<translation>Caution</translation>
<source>Caution</source>
<translation>Caution</translation>
</message>
<message>
<source>Bad</source>
<translation>Bad</translation>
<source>Bad</source>
<translation>Bad</translation>
</message>
<message>
<source>Unknown</source>
<translation>Unknown</translation>
<source>Unknown</source>
<translation>Unknown</translation>
</message>
<message>
<source>Status</source>
<translation>Status</translation>
<source>Status</source>
<translation>Status</translation>
</message>
<message>
<source>count</source>
<translation>count</translation>
<source>count</source>
<translation>count</translation>
</message>
<message>
<source>hours</source>
<translation>hours</translation>
<source>hours</source>
<translation>hours</translation>
</message>
<message>
<source>Short</source>
<translation>Short</translation>
<source>Short</source>
<translation>Short</translation>
</message>
<message>
<source>Conveyance</source>
<translation>Conveyance</translation>
<source>Conveyance</source>
<translation>Conveyance</translation>
</message>
<message>
<source>Extended</source>
<translation>Extended</translation>
<source>Extended</source>
<translation>Extended</translation>
</message>
<message>
<source>Min.)</source>
<translation>Min.)</translation>
<source>Min.)</source>
<translation>Min.)</translation>
</message>
<message>
<source>Read</source>
<translation>Read</translation>
<source>Read</source>
<translation>Read</translation>
</message>
<message>
<source>Write</source>
<translation>Write</translation>
<source>Write</source>
<translation>Write</translation>
</message>
<message>
<source>Verify</source>
<translation>Verify</translation>
<source>Verify</source>
<translation>Verify</translation>
</message>
<message>
<source>ID</source>
<translation>ID</translation>
<source>ID</source>
<translation>ID</translation>
</message>
<message>
<source>Attribute Name</source>
<translation>Attribute Name</translation>
<source>Attribute Name</source>
<translation>Attribute Name</translation>
</message>
<message>
<source>Raw Values</source>
<translation>Raw Values</translation>
<source>Raw Values</source>
<translation>Raw Values</translation>
</message>
<message>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Available spare capacity has fallen below the threshold</translation>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Available spare capacity has fallen below the threshold</translation>
</message>
<message>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Temperature error (Overheat or Overcool)</translation>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Temperature error (Overheat or Overcool)</translation>
</message>
<message>
<source>NVM subsystem reliability has been degraded</source>
<translation>NVM subsystem reliability has been degraded</translation>
<source>NVM subsystem reliability has been degraded</source>
<translation>NVM subsystem reliability has been degraded</translation>
</message>
<message>
<source>Media has been placed in Read Only Mode</source>
<translation>Media has been placed in Read Only Mode</translation>
<source>Media has been placed in Read Only Mode</source>
<translation>Media has been placed in Read Only Mode</translation>
</message>
<message>
<source>Volatile memory backup device has Failed</source>
<translation>Volatile memory backup device has Failed</translation>
<source>Volatile memory backup device has Failed</source>
<translation>Volatile memory backup device has Failed</translation>
</message>
<message>
<source>Persistent memory region has become Read-Only</source>
<translation>Persistent memory region has become Read-Only</translation>
<source>Persistent memory region has become Read-Only</source>
<translation>Persistent memory region has become Read-Only</translation>
</message>
<message>
<source>Current</source>
<translation>Current</translation>
<source>Current</source>
<translation>Current</translation>
</message>
<message>
<source>Worst</source>
<translation>Worst</translation>
<source>Worst</source>
<translation>Worst</translation>
</message>
<message>
<source>Threshold</source>
<translation>Threshold</translation>
<source>Threshold</source>
<translation>Threshold</translation>
</message>
<message>
<source>Empty JSON</source>
<translation>Empty JSON</translation>
<source>Empty JSON</source>
<translation>Empty JSON</translation>
</message>
<message>
<source>The JSON is empty</source>
<translation>The JSON is empty</translation>
<source>The JSON is empty</source>
<translation>The JSON is empty</translation>
</message>
<message>
<source>Save JSON</source>
<translation>Save JSON</translation>
<source>Save JSON</source>
<translation>Save JSON</translation>
</message>
<message>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;All Files (*)</translation>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;All Files (*)</translation>
</message>
<message>
<source>Unable to open file for writing</source>
<translation>Unable to open file for writing</translation>
<source>Unable to open file for writing</source>
<translation>Unable to open file for writing</translation>
</message>
<message>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>An ATA and NVMe S.M.A.R.T. data viewer for Linux</translation>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>An ATA and NVMe S.M.A.R.T. data viewer for Linux</translation>
</message>
<message>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Licensed under the GNU G.P.L. Version 3</translation>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Licensed under the GNU G.P.L. Version 3</translation>
</message>
<message>
<source>Made by Samantas5855</source>
<translation>Made by Samantas5855</translation>
<source>Made by Samantas5855</source>
<translation>Made by Samantas5855</translation>
</message>
<message>
<source>Version</source>
<translation>Version</translation>
<source>Version</source>
<translation>Version</translation>
</message>
<message>
<source>About QDiskInfo</source>
<translation>About QDiskInfo</translation>
<source>About QDiskInfo</source>
<translation>About QDiskInfo</translation>
</message>
<message>
<source>About Qt</source>
<translation>About Qt</translation>
<source>About Qt</source>
<translation>About Qt</translation>
</message>
<message>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
</message>
<message>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
</message>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
</message>
<message>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
</message>
<message>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
</message>
<message>
<source>Success</source>
<translation type="unfinished">Success</translation>
<source>Success</source>
<translation type="unfinished">Success</translation>
</message>
<message>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
</message>
<message>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
</message>
<message>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
</message>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
</message>
<message>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
</message>
<message>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
</message>
<message>
<source>&amp;Save JSON</source>
<translation>&amp;Save JSON</translation>
</message>
</context>
<context>
</context>
<context>
<name>QObject</name>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
</message>
<message>
<source>smartctl was not found, please install it!</source>
<translation>smartctl was not found, please install it!</translation>
<source>smartctl was not found, please install it!</source>
<translation>smartctl was not found, please install it!</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo needs root access in order to abort a self-test!</translation>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo needs root access in order to abort a self-test!</translation>
</message>
<message>
<source>Test Requested</source>
<translation>Test Requested</translation>
<source>Test Requested</source>
<translation>Test Requested</translation>
</message>
<message>
<source>The self-test has been aborted</source>
<translation>The self-test has been aborted</translation>
<source>The self-test has been aborted</source>
<translation>The self-test has been aborted</translation>
</message>
<message>
<source>Error: Something went wrong</source>
<translation>Error: Something went wrong</translation>
<source>Error: Something went wrong</source>
<translation>Error: Something went wrong</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo needs root access in order to request a self-test!</translation>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo needs root access in order to request a self-test!</translation>
</message>
<message>
<source>remaining</source>
<translation>remaining</translation>
<source>remaining</source>
<translation>remaining</translation>
</message>
<message>
<source>completed</source>
<translation>completed</translation>
<source>completed</source>
<translation>completed</translation>
</message>
<message>
<source>Test Already Running</source>
<translation>Test Already Running</translation>
<source>Test Already Running</source>
<translation>Test Already Running</translation>
</message>
<message>
<source>A self-test is already being performed</source>
<translation>A self-test is already being performed</translation>
<source>A self-test is already being performed</source>
<translation>A self-test is already being performed</translation>
</message>
<message>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>You can press the Ok button in order to abort the test that is currently running</translation>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>You can press the Ok button in order to abort the test that is currently running</translation>
</message>
<message>
<source>A self-test has been requested successfully</source>
<translation>A self-test has been requested successfully</translation>
<source>A self-test has been requested successfully</source>
<translation>A self-test has been requested successfully</translation>
</message>
<message>
<source>It will be completed after</source>
<translation>It will be completed after</translation>
<source>It will be completed after</source>
<translation>It will be completed after</translation>
</message>
<message>
<source>minutes</source>
<translation>minutes</translation>
<source>minutes</source>
<translation>minutes</translation>
</message>
<message>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
</message>
<message>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
</message>
</context>
</context>
</TS>

View File

@@ -1,449 +1,445 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="sv_SE" sourcelanguage="en">
<context>
<context>
<name>GridView</name>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
</message>
</context>
<context>
</context>
<context>
<name>MainWindow</name>
<message>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Firmware</source>
<translation>Firmware</translation>
<source>Firmware</source>
<translation>Firmware</translation>
</message>
<message>
<source>Serial Number</source>
<translation>Serial Number</translation>
<source>Serial Number</source>
<translation>Serial Number</translation>
</message>
<message>
<source>Protocol</source>
<translation>Protocol</translation>
<source>Protocol</source>
<translation>Protocol</translation>
</message>
<message>
<source>Device Node</source>
<translation>Device Node</translation>
<source>Device Node</source>
<translation>Device Node</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Type</source>
<translation>Type</translation>
<source>Type</source>
<translation>Type</translation>
</message>
<message>
<source>Total Host Reads</source>
<translation>Total Host Reads</translation>
<source>Total Host Reads</source>
<translation>Total Host Reads</translation>
</message>
<message>
<source>Total Host Writes</source>
<translation>Total Host Writes</translation>
<source>Total Host Writes</source>
<translation>Total Host Writes</translation>
</message>
<message>
<source>Rotation Rate</source>
<translation>Rotation Rate</translation>
<source>Rotation Rate</source>
<translation>Rotation Rate</translation>
</message>
<message>
<source>Power On Count</source>
<translation>Power On Count</translation>
<source>Power On Count</source>
<translation>Power On Count</translation>
</message>
<message>
<source>Power On Hours</source>
<translation>Power On Hours</translation>
<source>Power On Hours</source>
<translation>Power On Hours</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>File</source>
<translation>File</translation>
<source>File</source>
<translation>File</translation>
</message>
<message>
<source>Settings</source>
<translation>Settings</translation>
<source>Settings</source>
<translation>Settings</translation>
</message>
<message>
<source>&amp;Help</source>
<translation>&amp;Help</translation>
<source>&amp;Help</source>
<translation>&amp;Help</translation>
</message>
<message>
<source>De&amp;vice</source>
<translation>De&amp;vice</translation>
<source>De&amp;vice</source>
<translation>De&amp;vice</translation>
</message>
<message>
<source>Disk</source>
<translation>Disk</translation>
<source>Disk</source>
<translation>Disk</translation>
</message>
<message>
<source>&amp;Quit</source>
<translation>&amp;Quit</translation>
<source>&amp;Quit</source>
<translation>&amp;Quit</translation>
</message>
<message>
<source>&amp;Refresh Devices</source>
<translation>&amp;Refresh Devices</translation>
<source>&amp;Refresh Devices</source>
<translation>&amp;Refresh Devices</translation>
</message>
<message>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
</message>
<message>
<source>&amp;About QDiskInfo</source>
<translation>&amp;About QDiskInfo</translation>
<source>&amp;About QDiskInfo</source>
<translation>&amp;About QDiskInfo</translation>
</message>
<message>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ignore C4 (Reallocated Event Count)</translation>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ignore C4 (Reallocated Event Count)</translation>
</message>
<message>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Convert Raw values to HEX</translation>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Convert Raw values to HEX</translation>
</message>
<message>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Use Fahrenheit</translation>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Use Fahrenheit</translation>
</message>
<message>
<source>Self Test</source>
<translation>Self Test</translation>
<source>Self Test</source>
<translation>Self Test</translation>
</message>
<message>
<source>Cyclic &amp;Navigation</source>
<translation>Cyclic &amp;Navigation</translation>
<source>Cyclic &amp;Navigation</source>
<translation>Cyclic &amp;Navigation</translation>
</message>
<message>
<source>Use &amp;GB instead of TB</source>
<translation>Use &amp;GB instead of TB</translation>
<source>Use &amp;GB instead of TB</source>
<translation>Use &amp;GB instead of TB</translation>
</message>
<message>
<source>About &amp;Qt</source>
<translation>About &amp;Qt</translation>
<source>About &amp;Qt</source>
<translation>About &amp;Qt</translation>
</message>
<message>
<source>Start Self Test</source>
<translation>Start Self Test</translation>
<source>Start Self Test</source>
<translation>Start Self Test</translation>
</message>
<message>
<source>Self Test Log</source>
<translation>Self Test Log</translation>
<source>Self Test Log</source>
<translation>Self Test Log</translation>
</message>
<message>
<source>Critical Warning</source>
<translation>Critical Warning</translation>
<source>Critical Warning</source>
<translation>Critical Warning</translation>
</message>
<message>
<source>Grown Defect List</source>
<translation>Grown Defect List</translation>
<source>Grown Defect List</source>
<translation>Grown Defect List</translation>
</message>
<message>
<source>Good</source>
<translation>Good</translation>
<source>Good</source>
<translation>Good</translation>
</message>
<message>
<source>Caution</source>
<translation>Caution</translation>
<source>Caution</source>
<translation>Caution</translation>
</message>
<message>
<source>Bad</source>
<translation>Bad</translation>
<source>Bad</source>
<translation>Bad</translation>
</message>
<message>
<source>Unknown</source>
<translation>Unknown</translation>
<source>Unknown</source>
<translation>Unknown</translation>
</message>
<message>
<source>Status</source>
<translation>Status</translation>
<source>Status</source>
<translation>Status</translation>
</message>
<message>
<source>count</source>
<translation>count</translation>
<source>count</source>
<translation>count</translation>
</message>
<message>
<source>hours</source>
<translation>hours</translation>
<source>hours</source>
<translation>hours</translation>
</message>
<message>
<source>Short</source>
<translation>Short</translation>
<source>Short</source>
<translation>Short</translation>
</message>
<message>
<source>Conveyance</source>
<translation>Conveyance</translation>
<source>Conveyance</source>
<translation>Conveyance</translation>
</message>
<message>
<source>Extended</source>
<translation>Extended</translation>
<source>Extended</source>
<translation>Extended</translation>
</message>
<message>
<source>Min.)</source>
<translation>Min.)</translation>
<source>Min.)</source>
<translation>Min.)</translation>
</message>
<message>
<source>Read</source>
<translation>Read</translation>
<source>Read</source>
<translation>Read</translation>
</message>
<message>
<source>Write</source>
<translation>Write</translation>
<source>Write</source>
<translation>Write</translation>
</message>
<message>
<source>Verify</source>
<translation>Verify</translation>
<source>Verify</source>
<translation>Verify</translation>
</message>
<message>
<source>ID</source>
<translation>ID</translation>
<source>ID</source>
<translation>ID</translation>
</message>
<message>
<source>Attribute Name</source>
<translation>Attribute Name</translation>
<source>Attribute Name</source>
<translation>Attribute Name</translation>
</message>
<message>
<source>Raw Values</source>
<translation>Raw Values</translation>
<source>Raw Values</source>
<translation>Raw Values</translation>
</message>
<message>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Available spare capacity has fallen below the threshold</translation>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Available spare capacity has fallen below the threshold</translation>
</message>
<message>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Temperature error (Overheat or Overcool)</translation>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Temperature error (Overheat or Overcool)</translation>
</message>
<message>
<source>NVM subsystem reliability has been degraded</source>
<translation>NVM subsystem reliability has been degraded</translation>
<source>NVM subsystem reliability has been degraded</source>
<translation>NVM subsystem reliability has been degraded</translation>
</message>
<message>
<source>Media has been placed in Read Only Mode</source>
<translation>Media has been placed in Read Only Mode</translation>
<source>Media has been placed in Read Only Mode</source>
<translation>Media has been placed in Read Only Mode</translation>
</message>
<message>
<source>Volatile memory backup device has Failed</source>
<translation>Volatile memory backup device has Failed</translation>
<source>Volatile memory backup device has Failed</source>
<translation>Volatile memory backup device has Failed</translation>
</message>
<message>
<source>Persistent memory region has become Read-Only</source>
<translation>Persistent memory region has become Read-Only</translation>
<source>Persistent memory region has become Read-Only</source>
<translation>Persistent memory region has become Read-Only</translation>
</message>
<message>
<source>Current</source>
<translation>Current</translation>
<source>Current</source>
<translation>Current</translation>
</message>
<message>
<source>Worst</source>
<translation>Worst</translation>
<source>Worst</source>
<translation>Worst</translation>
</message>
<message>
<source>Threshold</source>
<translation>Threshold</translation>
<source>Threshold</source>
<translation>Threshold</translation>
</message>
<message>
<source>Empty JSON</source>
<translation>Empty JSON</translation>
<source>Empty JSON</source>
<translation>Empty JSON</translation>
</message>
<message>
<source>The JSON is empty</source>
<translation>The JSON is empty</translation>
<source>The JSON is empty</source>
<translation>The JSON is empty</translation>
</message>
<message>
<source>Save JSON</source>
<translation>Save JSON</translation>
<source>Save JSON</source>
<translation>Save JSON</translation>
</message>
<message>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;All Files (*)</translation>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;All Files (*)</translation>
</message>
<message>
<source>Unable to open file for writing</source>
<translation>Unable to open file for writing</translation>
<source>Unable to open file for writing</source>
<translation>Unable to open file for writing</translation>
</message>
<message>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>An ATA and NVMe S.M.A.R.T. data viewer for Linux</translation>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>An ATA and NVMe S.M.A.R.T. data viewer for Linux</translation>
</message>
<message>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Licensed under the GNU G.P.L. Version 3</translation>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Licensed under the GNU G.P.L. Version 3</translation>
</message>
<message>
<source>Made by Samantas5855</source>
<translation>Made by Samantas5855</translation>
<source>Made by Samantas5855</source>
<translation>Made by Samantas5855</translation>
</message>
<message>
<source>Version</source>
<translation>Version</translation>
<source>Version</source>
<translation>Version</translation>
</message>
<message>
<source>About QDiskInfo</source>
<translation>About QDiskInfo</translation>
<source>About QDiskInfo</source>
<translation>About QDiskInfo</translation>
</message>
<message>
<source>About Qt</source>
<translation>About Qt</translation>
<source>About Qt</source>
<translation>About Qt</translation>
</message>
<message>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
</message>
<message>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
</message>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
</message>
<message>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
</message>
<message>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
</message>
<message>
<source>Success</source>
<translation type="unfinished">Success</translation>
<source>Success</source>
<translation type="unfinished">Success</translation>
</message>
<message>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
</message>
<message>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
</message>
<message>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
</message>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
</message>
<message>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
</message>
<message>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
</message>
<message>
<source>&amp;Save JSON</source>
<translation>&amp;Save JSON</translation>
</message>
</context>
<context>
</context>
<context>
<name>QObject</name>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
</message>
<message>
<source>smartctl was not found, please install it!</source>
<translation>smartctl was not found, please install it!</translation>
<source>smartctl was not found, please install it!</source>
<translation>smartctl was not found, please install it!</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo needs root access in order to abort a self-test!</translation>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo needs root access in order to abort a self-test!</translation>
</message>
<message>
<source>Test Requested</source>
<translation>Test Requested</translation>
<source>Test Requested</source>
<translation>Test Requested</translation>
</message>
<message>
<source>The self-test has been aborted</source>
<translation>The self-test has been aborted</translation>
<source>The self-test has been aborted</source>
<translation>The self-test has been aborted</translation>
</message>
<message>
<source>Error: Something went wrong</source>
<translation>Error: Something went wrong</translation>
<source>Error: Something went wrong</source>
<translation>Error: Something went wrong</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo needs root access in order to request a self-test!</translation>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo needs root access in order to request a self-test!</translation>
</message>
<message>
<source>remaining</source>
<translation>remaining</translation>
<source>remaining</source>
<translation>remaining</translation>
</message>
<message>
<source>completed</source>
<translation>completed</translation>
<source>completed</source>
<translation>completed</translation>
</message>
<message>
<source>Test Already Running</source>
<translation>Test Already Running</translation>
<source>Test Already Running</source>
<translation>Test Already Running</translation>
</message>
<message>
<source>A self-test is already being performed</source>
<translation>A self-test is already being performed</translation>
<source>A self-test is already being performed</source>
<translation>A self-test is already being performed</translation>
</message>
<message>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>You can press the Ok button in order to abort the test that is currently running</translation>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>You can press the Ok button in order to abort the test that is currently running</translation>
</message>
<message>
<source>A self-test has been requested successfully</source>
<translation>A self-test has been requested successfully</translation>
<source>A self-test has been requested successfully</source>
<translation>A self-test has been requested successfully</translation>
</message>
<message>
<source>It will be completed after</source>
<translation>It will be completed after</translation>
<source>It will be completed after</source>
<translation>It will be completed after</translation>
</message>
<message>
<source>minutes</source>
<translation>minutes</translation>
<source>minutes</source>
<translation>minutes</translation>
</message>
<message>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
</message>
<message>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
</message>
</context>
</context>
</TS>

View File

@@ -1,449 +1,445 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="th_TH" sourcelanguage="en">
<context>
<context>
<name>GridView</name>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
</message>
</context>
<context>
</context>
<context>
<name>MainWindow</name>
<message>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Firmware</source>
<translation>Firmware</translation>
<source>Firmware</source>
<translation>Firmware</translation>
</message>
<message>
<source>Serial Number</source>
<translation>Serial Number</translation>
<source>Serial Number</source>
<translation>Serial Number</translation>
</message>
<message>
<source>Protocol</source>
<translation>Protocol</translation>
<source>Protocol</source>
<translation>Protocol</translation>
</message>
<message>
<source>Device Node</source>
<translation>Device Node</translation>
<source>Device Node</source>
<translation>Device Node</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Type</source>
<translation>Type</translation>
<source>Type</source>
<translation>Type</translation>
</message>
<message>
<source>Total Host Reads</source>
<translation>Total Host Reads</translation>
<source>Total Host Reads</source>
<translation>Total Host Reads</translation>
</message>
<message>
<source>Total Host Writes</source>
<translation>Total Host Writes</translation>
<source>Total Host Writes</source>
<translation>Total Host Writes</translation>
</message>
<message>
<source>Rotation Rate</source>
<translation>Rotation Rate</translation>
<source>Rotation Rate</source>
<translation>Rotation Rate</translation>
</message>
<message>
<source>Power On Count</source>
<translation>Power On Count</translation>
<source>Power On Count</source>
<translation>Power On Count</translation>
</message>
<message>
<source>Power On Hours</source>
<translation>Power On Hours</translation>
<source>Power On Hours</source>
<translation>Power On Hours</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>File</source>
<translation>File</translation>
<source>File</source>
<translation>File</translation>
</message>
<message>
<source>Settings</source>
<translation>Settings</translation>
<source>Settings</source>
<translation>Settings</translation>
</message>
<message>
<source>&amp;Help</source>
<translation>&amp;Help</translation>
<source>&amp;Help</source>
<translation>&amp;Help</translation>
</message>
<message>
<source>De&amp;vice</source>
<translation>De&amp;vice</translation>
<source>De&amp;vice</source>
<translation>De&amp;vice</translation>
</message>
<message>
<source>Disk</source>
<translation>Disk</translation>
<source>Disk</source>
<translation>Disk</translation>
</message>
<message>
<source>&amp;Quit</source>
<translation>&amp;Quit</translation>
<source>&amp;Quit</source>
<translation>&amp;Quit</translation>
</message>
<message>
<source>&amp;Refresh Devices</source>
<translation>&amp;Refresh Devices</translation>
<source>&amp;Refresh Devices</source>
<translation>&amp;Refresh Devices</translation>
</message>
<message>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
</message>
<message>
<source>&amp;About QDiskInfo</source>
<translation>&amp;About QDiskInfo</translation>
<source>&amp;About QDiskInfo</source>
<translation>&amp;About QDiskInfo</translation>
</message>
<message>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ignore C4 (Reallocated Event Count)</translation>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ignore C4 (Reallocated Event Count)</translation>
</message>
<message>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Convert Raw values to HEX</translation>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Convert Raw values to HEX</translation>
</message>
<message>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Use Fahrenheit</translation>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Use Fahrenheit</translation>
</message>
<message>
<source>Self Test</source>
<translation>Self Test</translation>
<source>Self Test</source>
<translation>Self Test</translation>
</message>
<message>
<source>Cyclic &amp;Navigation</source>
<translation>Cyclic &amp;Navigation</translation>
<source>Cyclic &amp;Navigation</source>
<translation>Cyclic &amp;Navigation</translation>
</message>
<message>
<source>Use &amp;GB instead of TB</source>
<translation>Use &amp;GB instead of TB</translation>
<source>Use &amp;GB instead of TB</source>
<translation>Use &amp;GB instead of TB</translation>
</message>
<message>
<source>About &amp;Qt</source>
<translation>About &amp;Qt</translation>
<source>About &amp;Qt</source>
<translation>About &amp;Qt</translation>
</message>
<message>
<source>Start Self Test</source>
<translation>Start Self Test</translation>
<source>Start Self Test</source>
<translation>Start Self Test</translation>
</message>
<message>
<source>Self Test Log</source>
<translation>Self Test Log</translation>
<source>Self Test Log</source>
<translation>Self Test Log</translation>
</message>
<message>
<source>Critical Warning</source>
<translation>Critical Warning</translation>
<source>Critical Warning</source>
<translation>Critical Warning</translation>
</message>
<message>
<source>Grown Defect List</source>
<translation>Grown Defect List</translation>
<source>Grown Defect List</source>
<translation>Grown Defect List</translation>
</message>
<message>
<source>Good</source>
<translation>Good</translation>
<source>Good</source>
<translation>Good</translation>
</message>
<message>
<source>Caution</source>
<translation>Caution</translation>
<source>Caution</source>
<translation>Caution</translation>
</message>
<message>
<source>Bad</source>
<translation>Bad</translation>
<source>Bad</source>
<translation>Bad</translation>
</message>
<message>
<source>Unknown</source>
<translation>Unknown</translation>
<source>Unknown</source>
<translation>Unknown</translation>
</message>
<message>
<source>Status</source>
<translation>Status</translation>
<source>Status</source>
<translation>Status</translation>
</message>
<message>
<source>count</source>
<translation>count</translation>
<source>count</source>
<translation>count</translation>
</message>
<message>
<source>hours</source>
<translation>hours</translation>
<source>hours</source>
<translation>hours</translation>
</message>
<message>
<source>Short</source>
<translation>Short</translation>
<source>Short</source>
<translation>Short</translation>
</message>
<message>
<source>Conveyance</source>
<translation>Conveyance</translation>
<source>Conveyance</source>
<translation>Conveyance</translation>
</message>
<message>
<source>Extended</source>
<translation>Extended</translation>
<source>Extended</source>
<translation>Extended</translation>
</message>
<message>
<source>Min.)</source>
<translation>Min.)</translation>
<source>Min.)</source>
<translation>Min.)</translation>
</message>
<message>
<source>Read</source>
<translation>Read</translation>
<source>Read</source>
<translation>Read</translation>
</message>
<message>
<source>Write</source>
<translation>Write</translation>
<source>Write</source>
<translation>Write</translation>
</message>
<message>
<source>Verify</source>
<translation>Verify</translation>
<source>Verify</source>
<translation>Verify</translation>
</message>
<message>
<source>ID</source>
<translation>ID</translation>
<source>ID</source>
<translation>ID</translation>
</message>
<message>
<source>Attribute Name</source>
<translation>Attribute Name</translation>
<source>Attribute Name</source>
<translation>Attribute Name</translation>
</message>
<message>
<source>Raw Values</source>
<translation>Raw Values</translation>
<source>Raw Values</source>
<translation>Raw Values</translation>
</message>
<message>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Available spare capacity has fallen below the threshold</translation>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Available spare capacity has fallen below the threshold</translation>
</message>
<message>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Temperature error (Overheat or Overcool)</translation>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Temperature error (Overheat or Overcool)</translation>
</message>
<message>
<source>NVM subsystem reliability has been degraded</source>
<translation>NVM subsystem reliability has been degraded</translation>
<source>NVM subsystem reliability has been degraded</source>
<translation>NVM subsystem reliability has been degraded</translation>
</message>
<message>
<source>Media has been placed in Read Only Mode</source>
<translation>Media has been placed in Read Only Mode</translation>
<source>Media has been placed in Read Only Mode</source>
<translation>Media has been placed in Read Only Mode</translation>
</message>
<message>
<source>Volatile memory backup device has Failed</source>
<translation>Volatile memory backup device has Failed</translation>
<source>Volatile memory backup device has Failed</source>
<translation>Volatile memory backup device has Failed</translation>
</message>
<message>
<source>Persistent memory region has become Read-Only</source>
<translation>Persistent memory region has become Read-Only</translation>
<source>Persistent memory region has become Read-Only</source>
<translation>Persistent memory region has become Read-Only</translation>
</message>
<message>
<source>Current</source>
<translation>Current</translation>
<source>Current</source>
<translation>Current</translation>
</message>
<message>
<source>Worst</source>
<translation>Worst</translation>
<source>Worst</source>
<translation>Worst</translation>
</message>
<message>
<source>Threshold</source>
<translation>Threshold</translation>
<source>Threshold</source>
<translation>Threshold</translation>
</message>
<message>
<source>Empty JSON</source>
<translation>Empty JSON</translation>
<source>Empty JSON</source>
<translation>Empty JSON</translation>
</message>
<message>
<source>The JSON is empty</source>
<translation>The JSON is empty</translation>
<source>The JSON is empty</source>
<translation>The JSON is empty</translation>
</message>
<message>
<source>Save JSON</source>
<translation>Save JSON</translation>
<source>Save JSON</source>
<translation>Save JSON</translation>
</message>
<message>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;All Files (*)</translation>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;All Files (*)</translation>
</message>
<message>
<source>Unable to open file for writing</source>
<translation>Unable to open file for writing</translation>
<source>Unable to open file for writing</source>
<translation>Unable to open file for writing</translation>
</message>
<message>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>An ATA and NVMe S.M.A.R.T. data viewer for Linux</translation>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>An ATA and NVMe S.M.A.R.T. data viewer for Linux</translation>
</message>
<message>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Licensed under the GNU G.P.L. Version 3</translation>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Licensed under the GNU G.P.L. Version 3</translation>
</message>
<message>
<source>Made by Samantas5855</source>
<translation>Made by Samantas5855</translation>
<source>Made by Samantas5855</source>
<translation>Made by Samantas5855</translation>
</message>
<message>
<source>Version</source>
<translation>Version</translation>
<source>Version</source>
<translation>Version</translation>
</message>
<message>
<source>About QDiskInfo</source>
<translation>About QDiskInfo</translation>
<source>About QDiskInfo</source>
<translation>About QDiskInfo</translation>
</message>
<message>
<source>About Qt</source>
<translation>About Qt</translation>
<source>About Qt</source>
<translation>About Qt</translation>
</message>
<message>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
</message>
<message>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
</message>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
</message>
<message>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
</message>
<message>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
</message>
<message>
<source>Success</source>
<translation type="unfinished">Success</translation>
<source>Success</source>
<translation type="unfinished">Success</translation>
</message>
<message>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
</message>
<message>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
</message>
<message>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
</message>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
</message>
<message>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
</message>
<message>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
</message>
<message>
<source>&amp;Save JSON</source>
<translation>&amp;Save JSON</translation>
</message>
</context>
<context>
</context>
<context>
<name>QObject</name>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
</message>
<message>
<source>smartctl was not found, please install it!</source>
<translation>smartctl was not found, please install it!</translation>
<source>smartctl was not found, please install it!</source>
<translation>smartctl was not found, please install it!</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo needs root access in order to abort a self-test!</translation>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo needs root access in order to abort a self-test!</translation>
</message>
<message>
<source>Test Requested</source>
<translation>Test Requested</translation>
<source>Test Requested</source>
<translation>Test Requested</translation>
</message>
<message>
<source>The self-test has been aborted</source>
<translation>The self-test has been aborted</translation>
<source>The self-test has been aborted</source>
<translation>The self-test has been aborted</translation>
</message>
<message>
<source>Error: Something went wrong</source>
<translation>Error: Something went wrong</translation>
<source>Error: Something went wrong</source>
<translation>Error: Something went wrong</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo needs root access in order to request a self-test!</translation>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo needs root access in order to request a self-test!</translation>
</message>
<message>
<source>remaining</source>
<translation>remaining</translation>
<source>remaining</source>
<translation>remaining</translation>
</message>
<message>
<source>completed</source>
<translation>completed</translation>
<source>completed</source>
<translation>completed</translation>
</message>
<message>
<source>Test Already Running</source>
<translation>Test Already Running</translation>
<source>Test Already Running</source>
<translation>Test Already Running</translation>
</message>
<message>
<source>A self-test is already being performed</source>
<translation>A self-test is already being performed</translation>
<source>A self-test is already being performed</source>
<translation>A self-test is already being performed</translation>
</message>
<message>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>You can press the Ok button in order to abort the test that is currently running</translation>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>You can press the Ok button in order to abort the test that is currently running</translation>
</message>
<message>
<source>A self-test has been requested successfully</source>
<translation>A self-test has been requested successfully</translation>
<source>A self-test has been requested successfully</source>
<translation>A self-test has been requested successfully</translation>
</message>
<message>
<source>It will be completed after</source>
<translation>It will be completed after</translation>
<source>It will be completed after</source>
<translation>It will be completed after</translation>
</message>
<message>
<source>minutes</source>
<translation>minutes</translation>
<source>minutes</source>
<translation>minutes</translation>
</message>
<message>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
</message>
<message>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
</message>
</context>
</context>
</TS>

View File

@@ -1,449 +1,445 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="tr_TR" sourcelanguage="en">
<context>
<context>
<name>GridView</name>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
</message>
</context>
<context>
</context>
<context>
<name>MainWindow</name>
<message>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Firmware</source>
<translation>Firmware</translation>
<source>Firmware</source>
<translation>Firmware</translation>
</message>
<message>
<source>Serial Number</source>
<translation>Serial Number</translation>
<source>Serial Number</source>
<translation>Serial Number</translation>
</message>
<message>
<source>Protocol</source>
<translation>Protocol</translation>
<source>Protocol</source>
<translation>Protocol</translation>
</message>
<message>
<source>Device Node</source>
<translation>Device Node</translation>
<source>Device Node</source>
<translation>Device Node</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Type</source>
<translation>Type</translation>
<source>Type</source>
<translation>Type</translation>
</message>
<message>
<source>Total Host Reads</source>
<translation>Total Host Reads</translation>
<source>Total Host Reads</source>
<translation>Total Host Reads</translation>
</message>
<message>
<source>Total Host Writes</source>
<translation>Total Host Writes</translation>
<source>Total Host Writes</source>
<translation>Total Host Writes</translation>
</message>
<message>
<source>Rotation Rate</source>
<translation>Rotation Rate</translation>
<source>Rotation Rate</source>
<translation>Rotation Rate</translation>
</message>
<message>
<source>Power On Count</source>
<translation>Power On Count</translation>
<source>Power On Count</source>
<translation>Power On Count</translation>
</message>
<message>
<source>Power On Hours</source>
<translation>Power On Hours</translation>
<source>Power On Hours</source>
<translation>Power On Hours</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>File</source>
<translation>File</translation>
<source>File</source>
<translation>File</translation>
</message>
<message>
<source>Settings</source>
<translation>Settings</translation>
<source>Settings</source>
<translation>Settings</translation>
</message>
<message>
<source>&amp;Help</source>
<translation>&amp;Help</translation>
<source>&amp;Help</source>
<translation>&amp;Help</translation>
</message>
<message>
<source>De&amp;vice</source>
<translation>De&amp;vice</translation>
<source>De&amp;vice</source>
<translation>De&amp;vice</translation>
</message>
<message>
<source>Disk</source>
<translation>Disk</translation>
<source>Disk</source>
<translation>Disk</translation>
</message>
<message>
<source>&amp;Quit</source>
<translation>&amp;Quit</translation>
<source>&amp;Quit</source>
<translation>&amp;Quit</translation>
</message>
<message>
<source>&amp;Refresh Devices</source>
<translation>&amp;Refresh Devices</translation>
<source>&amp;Refresh Devices</source>
<translation>&amp;Refresh Devices</translation>
</message>
<message>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
</message>
<message>
<source>&amp;About QDiskInfo</source>
<translation>&amp;About QDiskInfo</translation>
<source>&amp;About QDiskInfo</source>
<translation>&amp;About QDiskInfo</translation>
</message>
<message>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ignore C4 (Reallocated Event Count)</translation>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ignore C4 (Reallocated Event Count)</translation>
</message>
<message>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Convert Raw values to HEX</translation>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Convert Raw values to HEX</translation>
</message>
<message>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Use Fahrenheit</translation>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Use Fahrenheit</translation>
</message>
<message>
<source>Self Test</source>
<translation>Self Test</translation>
<source>Self Test</source>
<translation>Self Test</translation>
</message>
<message>
<source>Cyclic &amp;Navigation</source>
<translation>Cyclic &amp;Navigation</translation>
<source>Cyclic &amp;Navigation</source>
<translation>Cyclic &amp;Navigation</translation>
</message>
<message>
<source>Use &amp;GB instead of TB</source>
<translation>Use &amp;GB instead of TB</translation>
<source>Use &amp;GB instead of TB</source>
<translation>Use &amp;GB instead of TB</translation>
</message>
<message>
<source>About &amp;Qt</source>
<translation>About &amp;Qt</translation>
<source>About &amp;Qt</source>
<translation>About &amp;Qt</translation>
</message>
<message>
<source>Start Self Test</source>
<translation>Start Self Test</translation>
<source>Start Self Test</source>
<translation>Start Self Test</translation>
</message>
<message>
<source>Self Test Log</source>
<translation>Self Test Log</translation>
<source>Self Test Log</source>
<translation>Self Test Log</translation>
</message>
<message>
<source>Critical Warning</source>
<translation>Critical Warning</translation>
<source>Critical Warning</source>
<translation>Critical Warning</translation>
</message>
<message>
<source>Grown Defect List</source>
<translation>Grown Defect List</translation>
<source>Grown Defect List</source>
<translation>Grown Defect List</translation>
</message>
<message>
<source>Good</source>
<translation>Good</translation>
<source>Good</source>
<translation>Good</translation>
</message>
<message>
<source>Caution</source>
<translation>Caution</translation>
<source>Caution</source>
<translation>Caution</translation>
</message>
<message>
<source>Bad</source>
<translation>Bad</translation>
<source>Bad</source>
<translation>Bad</translation>
</message>
<message>
<source>Unknown</source>
<translation>Unknown</translation>
<source>Unknown</source>
<translation>Unknown</translation>
</message>
<message>
<source>Status</source>
<translation>Status</translation>
<source>Status</source>
<translation>Status</translation>
</message>
<message>
<source>count</source>
<translation>count</translation>
<source>count</source>
<translation>count</translation>
</message>
<message>
<source>hours</source>
<translation>hours</translation>
<source>hours</source>
<translation>hours</translation>
</message>
<message>
<source>Short</source>
<translation>Short</translation>
<source>Short</source>
<translation>Short</translation>
</message>
<message>
<source>Conveyance</source>
<translation>Conveyance</translation>
<source>Conveyance</source>
<translation>Conveyance</translation>
</message>
<message>
<source>Extended</source>
<translation>Extended</translation>
<source>Extended</source>
<translation>Extended</translation>
</message>
<message>
<source>Min.)</source>
<translation>Min.)</translation>
<source>Min.)</source>
<translation>Min.)</translation>
</message>
<message>
<source>Read</source>
<translation>Read</translation>
<source>Read</source>
<translation>Read</translation>
</message>
<message>
<source>Write</source>
<translation>Write</translation>
<source>Write</source>
<translation>Write</translation>
</message>
<message>
<source>Verify</source>
<translation>Verify</translation>
<source>Verify</source>
<translation>Verify</translation>
</message>
<message>
<source>ID</source>
<translation>ID</translation>
<source>ID</source>
<translation>ID</translation>
</message>
<message>
<source>Attribute Name</source>
<translation>Attribute Name</translation>
<source>Attribute Name</source>
<translation>Attribute Name</translation>
</message>
<message>
<source>Raw Values</source>
<translation>Raw Values</translation>
<source>Raw Values</source>
<translation>Raw Values</translation>
</message>
<message>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Available spare capacity has fallen below the threshold</translation>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Available spare capacity has fallen below the threshold</translation>
</message>
<message>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Temperature error (Overheat or Overcool)</translation>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Temperature error (Overheat or Overcool)</translation>
</message>
<message>
<source>NVM subsystem reliability has been degraded</source>
<translation>NVM subsystem reliability has been degraded</translation>
<source>NVM subsystem reliability has been degraded</source>
<translation>NVM subsystem reliability has been degraded</translation>
</message>
<message>
<source>Media has been placed in Read Only Mode</source>
<translation>Media has been placed in Read Only Mode</translation>
<source>Media has been placed in Read Only Mode</source>
<translation>Media has been placed in Read Only Mode</translation>
</message>
<message>
<source>Volatile memory backup device has Failed</source>
<translation>Volatile memory backup device has Failed</translation>
<source>Volatile memory backup device has Failed</source>
<translation>Volatile memory backup device has Failed</translation>
</message>
<message>
<source>Persistent memory region has become Read-Only</source>
<translation>Persistent memory region has become Read-Only</translation>
<source>Persistent memory region has become Read-Only</source>
<translation>Persistent memory region has become Read-Only</translation>
</message>
<message>
<source>Current</source>
<translation>Current</translation>
<source>Current</source>
<translation>Current</translation>
</message>
<message>
<source>Worst</source>
<translation>Worst</translation>
<source>Worst</source>
<translation>Worst</translation>
</message>
<message>
<source>Threshold</source>
<translation>Threshold</translation>
<source>Threshold</source>
<translation>Threshold</translation>
</message>
<message>
<source>Empty JSON</source>
<translation>Empty JSON</translation>
<source>Empty JSON</source>
<translation>Empty JSON</translation>
</message>
<message>
<source>The JSON is empty</source>
<translation>The JSON is empty</translation>
<source>The JSON is empty</source>
<translation>The JSON is empty</translation>
</message>
<message>
<source>Save JSON</source>
<translation>Save JSON</translation>
<source>Save JSON</source>
<translation>Save JSON</translation>
</message>
<message>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;All Files (*)</translation>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;All Files (*)</translation>
</message>
<message>
<source>Unable to open file for writing</source>
<translation>Unable to open file for writing</translation>
<source>Unable to open file for writing</source>
<translation>Unable to open file for writing</translation>
</message>
<message>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>An ATA and NVMe S.M.A.R.T. data viewer for Linux</translation>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>An ATA and NVMe S.M.A.R.T. data viewer for Linux</translation>
</message>
<message>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Licensed under the GNU G.P.L. Version 3</translation>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Licensed under the GNU G.P.L. Version 3</translation>
</message>
<message>
<source>Made by Samantas5855</source>
<translation>Made by Samantas5855</translation>
<source>Made by Samantas5855</source>
<translation>Made by Samantas5855</translation>
</message>
<message>
<source>Version</source>
<translation>Version</translation>
<source>Version</source>
<translation>Version</translation>
</message>
<message>
<source>About QDiskInfo</source>
<translation>About QDiskInfo</translation>
<source>About QDiskInfo</source>
<translation>About QDiskInfo</translation>
</message>
<message>
<source>About Qt</source>
<translation>About Qt</translation>
<source>About Qt</source>
<translation>About Qt</translation>
</message>
<message>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
</message>
<message>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
</message>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
</message>
<message>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
</message>
<message>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
</message>
<message>
<source>Success</source>
<translation type="unfinished">Success</translation>
<source>Success</source>
<translation type="unfinished">Success</translation>
</message>
<message>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
</message>
<message>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
</message>
<message>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
</message>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
</message>
<message>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
</message>
<message>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
</message>
<message>
<source>&amp;Save JSON</source>
<translation>&amp;Save JSON</translation>
</message>
</context>
<context>
</context>
<context>
<name>QObject</name>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
</message>
<message>
<source>smartctl was not found, please install it!</source>
<translation>smartctl was not found, please install it!</translation>
<source>smartctl was not found, please install it!</source>
<translation>smartctl was not found, please install it!</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo needs root access in order to abort a self-test!</translation>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo needs root access in order to abort a self-test!</translation>
</message>
<message>
<source>Test Requested</source>
<translation>Test Requested</translation>
<source>Test Requested</source>
<translation>Test Requested</translation>
</message>
<message>
<source>The self-test has been aborted</source>
<translation>The self-test has been aborted</translation>
<source>The self-test has been aborted</source>
<translation>The self-test has been aborted</translation>
</message>
<message>
<source>Error: Something went wrong</source>
<translation>Error: Something went wrong</translation>
<source>Error: Something went wrong</source>
<translation>Error: Something went wrong</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo needs root access in order to request a self-test!</translation>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo needs root access in order to request a self-test!</translation>
</message>
<message>
<source>remaining</source>
<translation>remaining</translation>
<source>remaining</source>
<translation>remaining</translation>
</message>
<message>
<source>completed</source>
<translation>completed</translation>
<source>completed</source>
<translation>completed</translation>
</message>
<message>
<source>Test Already Running</source>
<translation>Test Already Running</translation>
<source>Test Already Running</source>
<translation>Test Already Running</translation>
</message>
<message>
<source>A self-test is already being performed</source>
<translation>A self-test is already being performed</translation>
<source>A self-test is already being performed</source>
<translation>A self-test is already being performed</translation>
</message>
<message>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>You can press the Ok button in order to abort the test that is currently running</translation>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>You can press the Ok button in order to abort the test that is currently running</translation>
</message>
<message>
<source>A self-test has been requested successfully</source>
<translation>A self-test has been requested successfully</translation>
<source>A self-test has been requested successfully</source>
<translation>A self-test has been requested successfully</translation>
</message>
<message>
<source>It will be completed after</source>
<translation>It will be completed after</translation>
<source>It will be completed after</source>
<translation>It will be completed after</translation>
</message>
<message>
<source>minutes</source>
<translation>minutes</translation>
<source>minutes</source>
<translation>minutes</translation>
</message>
<message>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
</message>
<message>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
</message>
</context>
</context>
</TS>

View File

@@ -1,449 +1,445 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="uk_UA" sourcelanguage="en">
<context>
<context>
<name>GridView</name>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
</message>
</context>
<context>
</context>
<context>
<name>MainWindow</name>
<message>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Стан здоров&apos;я&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Стан здоров&apos;я&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Добрий&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Добрий&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Температура&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Температура&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Firmware</source>
<translation>Прошивка</translation>
<source>Firmware</source>
<translation>Прошивка</translation>
</message>
<message>
<source>Serial Number</source>
<translation>Серійний номер</translation>
<source>Serial Number</source>
<translation>Серійний номер</translation>
</message>
<message>
<source>Protocol</source>
<translation>Протокол</translation>
<source>Protocol</source>
<translation>Протокол</translation>
</message>
<message>
<source>Device Node</source>
<translation>Шлях до пристрою</translation>
<source>Device Node</source>
<translation>Шлях до пристрою</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Добрий 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Добрий 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Type</source>
<translation>Тип</translation>
<source>Type</source>
<translation>Тип</translation>
</message>
<message>
<source>Total Host Reads</source>
<translation>Всього прочитано</translation>
<source>Total Host Reads</source>
<translation>Всього прочитано</translation>
</message>
<message>
<source>Total Host Writes</source>
<translation>Всього записано</translation>
<source>Total Host Writes</source>
<translation>Всього записано</translation>
</message>
<message>
<source>Rotation Rate</source>
<translation>Швидкість обертання</translation>
<source>Rotation Rate</source>
<translation>Швидкість обертання</translation>
</message>
<message>
<source>Power On Count</source>
<translation>Кількість вмикань</translation>
<source>Power On Count</source>
<translation>Кількість вмикань</translation>
</message>
<message>
<source>Power On Hours</source>
<translation>Час роботи</translation>
<source>Power On Hours</source>
<translation>Час роботи</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Назва пристрою&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Назва пристрою&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>File</source>
<translation>Файл</translation>
<source>File</source>
<translation>Файл</translation>
</message>
<message>
<source>Settings</source>
<translation>Налаштування</translation>
<source>Settings</source>
<translation>Налаштування</translation>
</message>
<message>
<source>&amp;Help</source>
<translation>&amp;Допомога</translation>
<source>&amp;Help</source>
<translation>&amp;Допомога</translation>
</message>
<message>
<source>De&amp;vice</source>
<translation>Пр&amp;истрій</translation>
<source>De&amp;vice</source>
<translation>Пр&amp;истрій</translation>
</message>
<message>
<source>Disk</source>
<translation>Диск</translation>
<source>Disk</source>
<translation>Диск</translation>
</message>
<message>
<source>&amp;Quit</source>
<translation>&amp;Вихід</translation>
<source>&amp;Quit</source>
<translation>&amp;Вихід</translation>
</message>
<message>
<source>&amp;Refresh Devices</source>
<translation>&amp;Оновити пристрої</translation>
<source>&amp;Refresh Devices</source>
<translation>&amp;Оновити пристрої</translation>
</message>
<message>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
</message>
<message>
<source>&amp;About QDiskInfo</source>
<translation>&amp;Про QDiskInfo</translation>
<source>&amp;About QDiskInfo</source>
<translation>&amp;Про QDiskInfo</translation>
</message>
<message>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ігнорувати C4 (Reallocated Event Count)</translation>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ігнорувати C4 (Reallocated Event Count)</translation>
</message>
<message>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Перетворення значень Raw в HEX</translation>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Перетворення значень Raw в HEX</translation>
</message>
<message>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Температура в Фаренгейтах</translation>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Температура в Фаренгейтах</translation>
</message>
<message>
<source>Self Test</source>
<translation>Самотестування</translation>
<source>Self Test</source>
<translation>Самотестування</translation>
</message>
<message>
<source>Cyclic &amp;Navigation</source>
<translation>Циклічна &amp;навігація</translation>
<source>Cyclic &amp;Navigation</source>
<translation>Циклічна &amp;навігація</translation>
</message>
<message>
<source>Use &amp;GB instead of TB</source>
<translation>&amp;Викор. ГБ замість ТБ</translation>
<source>Use &amp;GB instead of TB</source>
<translation>&amp;Викор. ГБ замість ТБ</translation>
</message>
<message>
<source>About &amp;Qt</source>
<translation>Про &amp;Qt</translation>
<source>About &amp;Qt</source>
<translation>Про &amp;Qt</translation>
</message>
<message>
<source>Start Self Test</source>
<translation>Почати самотестування</translation>
<source>Start Self Test</source>
<translation>Почати самотестування</translation>
</message>
<message>
<source>Self Test Log</source>
<translation>Журнал самотестування</translation>
<source>Self Test Log</source>
<translation>Журнал самотестування</translation>
</message>
<message>
<source>Critical Warning</source>
<translation>Критичне попередження</translation>
<source>Critical Warning</source>
<translation>Критичне попередження</translation>
</message>
<message>
<source>Grown Defect List</source>
<translation>Список наростаючих дефектів</translation>
<source>Grown Defect List</source>
<translation>Список наростаючих дефектів</translation>
</message>
<message>
<source>Good</source>
<translation>Добрий</translation>
<source>Good</source>
<translation>Добрий</translation>
</message>
<message>
<source>Caution</source>
<translation>Попередження</translation>
<source>Caution</source>
<translation>Попередження</translation>
</message>
<message>
<source>Bad</source>
<translation>Поганий</translation>
<source>Bad</source>
<translation>Поганий</translation>
</message>
<message>
<source>Unknown</source>
<translation>Невідомий</translation>
<source>Unknown</source>
<translation>Невідомий</translation>
</message>
<message>
<source>Status</source>
<translation>Статус</translation>
<source>Status</source>
<translation>Статус</translation>
</message>
<message>
<source>count</source>
<translation>раз</translation>
<source>count</source>
<translation>раз</translation>
</message>
<message>
<source>hours</source>
<translation>годин</translation>
<source>hours</source>
<translation>годин</translation>
</message>
<message>
<source>Short</source>
<translation>Коротко</translation>
<source>Short</source>
<translation>Коротко</translation>
</message>
<message>
<source>Conveyance</source>
<translation>Conveyance</translation>
<source>Conveyance</source>
<translation>Conveyance</translation>
</message>
<message>
<source>Extended</source>
<translation>Розширено</translation>
<source>Extended</source>
<translation>Розширено</translation>
</message>
<message>
<source>Min.)</source>
<translation>Min.)</translation>
<source>Min.)</source>
<translation>Min.)</translation>
</message>
<message>
<source>Read</source>
<translation>Читання</translation>
<source>Read</source>
<translation>Читання</translation>
</message>
<message>
<source>Write</source>
<translation>Запис</translation>
<source>Write</source>
<translation>Запис</translation>
</message>
<message>
<source>Verify</source>
<translation>Перевірити</translation>
<source>Verify</source>
<translation>Перевірити</translation>
</message>
<message>
<source>ID</source>
<translation>ID</translation>
<source>ID</source>
<translation>ID</translation>
</message>
<message>
<source>Attribute Name</source>
<translation>Назва атрибуту</translation>
<source>Attribute Name</source>
<translation>Назва атрибуту</translation>
</message>
<message>
<source>Raw Values</source>
<translation>Raw Значення</translation>
<source>Raw Values</source>
<translation>Raw Значення</translation>
</message>
<message>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Запас ємності впав нижче порогового значення</translation>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Запас ємності впав нижче порогового значення</translation>
</message>
<message>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Помилка температури (перегрів або переохолодження)</translation>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Помилка температури (перегрів або переохолодження)</translation>
</message>
<message>
<source>NVM subsystem reliability has been degraded</source>
<translation>Надійність підсистеми NVM деградувала</translation>
<source>NVM subsystem reliability has been degraded</source>
<translation>Надійність підсистеми NVM деградувала</translation>
</message>
<message>
<source>Media has been placed in Read Only Mode</source>
<translation>Медіа розміщене в режимі тільки для читання</translation>
<source>Media has been placed in Read Only Mode</source>
<translation>Медіа розміщене в режимі тільки для читання</translation>
</message>
<message>
<source>Volatile memory backup device has Failed</source>
<translation>Volatile memory backup device has Failed</translation>
<source>Volatile memory backup device has Failed</source>
<translation>Volatile memory backup device has Failed</translation>
</message>
<message>
<source>Persistent memory region has become Read-Only</source>
<translation>Постійний регіон пам&apos;яті став лише для читання</translation>
<source>Persistent memory region has become Read-Only</source>
<translation>Постійний регіон пам&apos;яті став лише для читання</translation>
</message>
<message>
<source>Current</source>
<translation>Поточне</translation>
<source>Current</source>
<translation>Поточне</translation>
</message>
<message>
<source>Worst</source>
<translation>Найгірше</translation>
<source>Worst</source>
<translation>Найгірше</translation>
</message>
<message>
<source>Threshold</source>
<translation>Поріг</translation>
<source>Threshold</source>
<translation>Поріг</translation>
</message>
<message>
<source>Empty JSON</source>
<translation>Порожній JSON</translation>
<source>Empty JSON</source>
<translation>Порожній JSON</translation>
</message>
<message>
<source>The JSON is empty</source>
<translation>JSON порожній</translation>
<source>The JSON is empty</source>
<translation>JSON порожній</translation>
</message>
<message>
<source>Save JSON</source>
<translation>Зберегти JSON</translation>
<source>Save JSON</source>
<translation>Зберегти JSON</translation>
</message>
<message>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;Всі файли (*)</translation>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;Всі файли (*)</translation>
</message>
<message>
<source>Unable to open file for writing</source>
<translation>Не вдалося відкрити файл для запису</translation>
<source>Unable to open file for writing</source>
<translation>Не вдалося відкрити файл для запису</translation>
</message>
<message>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>Переглядач даних ATA і NVMe S.M.A.R.T. для Linux</translation>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>Переглядач даних ATA і NVMe S.M.A.R.T. для Linux</translation>
</message>
<message>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Ліцензія GNU G.P.L. Версія 3</translation>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Ліцензія GNU G.P.L. Версія 3</translation>
</message>
<message>
<source>Made by Samantas5855</source>
<translation>Розроблено by Samantas5855</translation>
<source>Made by Samantas5855</source>
<translation>Розроблено by Samantas5855</translation>
</message>
<message>
<source>Version</source>
<translation>Версія</translation>
<source>Version</source>
<translation>Версія</translation>
</message>
<message>
<source>About QDiskInfo</source>
<translation>Про QDiskInfo</translation>
<source>About QDiskInfo</source>
<translation>Про QDiskInfo</translation>
</message>
<message>
<source>About Qt</source>
<translation>Про Qt</translation>
<source>About Qt</source>
<translation>Про Qt</translation>
</message>
<message>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
</message>
<message>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
</message>
<message>
<source>QDiskInfo Error</source>
<translation>Помилка QDiskInfo</translation>
<source>QDiskInfo Error</source>
<translation>Помилка QDiskInfo</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo потрібен root-доступ для читання даних S.M.A.R.T.</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo потрібен root-доступ для читання даних S.M.A.R.T.</translation>
</message>
<message>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
</message>
<message>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
</message>
<message>
<source>Success</source>
<translation type="unfinished">Success</translation>
<source>Success</source>
<translation type="unfinished">Success</translation>
</message>
<message>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
</message>
<message>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
</message>
<message>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
</message>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
</message>
<message>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
</message>
<message>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
</message>
<message>
<source>&amp;Save JSON</source>
<translation>&amp;Зберегти JSON</translation>
</message>
</context>
<context>
</context>
<context>
<name>QObject</name>
<message>
<source>QDiskInfo Error</source>
<translation>Помилка QDiskInfo</translation>
<source>QDiskInfo Error</source>
<translation>Помилка QDiskInfo</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo потрібен root-доступ для читання даних S.M.A.R.T.</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo потрібен root-доступ для читання даних S.M.A.R.T.</translation>
</message>
<message>
<source>smartctl was not found, please install it!</source>
<translation>smartctl не знайдено, будь ласка, встановіть його!</translation>
<source>smartctl was not found, please install it!</source>
<translation>smartctl не знайдено, будь ласка, встановіть його!</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo потрібен root-доступ, щоб перервати самотестування!</translation>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo потрібен root-доступ, щоб перервати самотестування!</translation>
</message>
<message>
<source>Test Requested</source>
<translation>Тест відправлено</translation>
<source>Test Requested</source>
<translation>Тест відправлено</translation>
</message>
<message>
<source>The self-test has been aborted</source>
<translation>Самотестування перервано</translation>
<source>The self-test has been aborted</source>
<translation>Самотестування перервано</translation>
</message>
<message>
<source>Error: Something went wrong</source>
<translation>Помилка: щось пішло не так</translation>
<source>Error: Something went wrong</source>
<translation>Помилка: щось пішло не так</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo потрібен root-доступ, щоб розпочати самотестування!</translation>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo потрібен root-доступ, щоб розпочати самотестування!</translation>
</message>
<message>
<source>remaining</source>
<translation>залишилось</translation>
<source>remaining</source>
<translation>залишилось</translation>
</message>
<message>
<source>completed</source>
<translation>завершено</translation>
<source>completed</source>
<translation>завершено</translation>
</message>
<message>
<source>Test Already Running</source>
<translation>Тест вже запущено</translation>
<source>Test Already Running</source>
<translation>Тест вже запущено</translation>
</message>
<message>
<source>A self-test is already being performed</source>
<translation>Самотестування вже виконується</translation>
<source>A self-test is already being performed</source>
<translation>Самотестування вже виконується</translation>
</message>
<message>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>Ви можете натиснути кнопку ОК, щоб перервати тест, який зараз запущено</translation>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>Ви можете натиснути кнопку ОК, щоб перервати тест, який зараз запущено</translation>
</message>
<message>
<source>A self-test has been requested successfully</source>
<translation>Самотестування було запущено успішно</translation>
<source>A self-test has been requested successfully</source>
<translation>Самотестування було запущено успішно</translation>
</message>
<message>
<source>It will be completed after</source>
<translation>Це буде завершено через</translation>
<source>It will be completed after</source>
<translation>Це буде завершено через</translation>
</message>
<message>
<source>minutes</source>
<translation>хвилилин</translation>
<source>minutes</source>
<translation>хвилилин</translation>
</message>
<message>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
</message>
<message>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
</message>
</context>
</context>
</TS>

View File

@@ -1,449 +1,445 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="vi_VN" sourcelanguage="en">
<context>
<context>
<name>GridView</name>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
</message>
</context>
<context>
</context>
<context>
<name>MainWindow</name>
<message>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Firmware</source>
<translation>Firmware</translation>
<source>Firmware</source>
<translation>Firmware</translation>
</message>
<message>
<source>Serial Number</source>
<translation>Serial Number</translation>
<source>Serial Number</source>
<translation>Serial Number</translation>
</message>
<message>
<source>Protocol</source>
<translation>Protocol</translation>
<source>Protocol</source>
<translation>Protocol</translation>
</message>
<message>
<source>Device Node</source>
<translation>Device Node</translation>
<source>Device Node</source>
<translation>Device Node</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Type</source>
<translation>Type</translation>
<source>Type</source>
<translation>Type</translation>
</message>
<message>
<source>Total Host Reads</source>
<translation>Total Host Reads</translation>
<source>Total Host Reads</source>
<translation>Total Host Reads</translation>
</message>
<message>
<source>Total Host Writes</source>
<translation>Total Host Writes</translation>
<source>Total Host Writes</source>
<translation>Total Host Writes</translation>
</message>
<message>
<source>Rotation Rate</source>
<translation>Rotation Rate</translation>
<source>Rotation Rate</source>
<translation>Rotation Rate</translation>
</message>
<message>
<source>Power On Count</source>
<translation>Power On Count</translation>
<source>Power On Count</source>
<translation>Power On Count</translation>
</message>
<message>
<source>Power On Hours</source>
<translation>Power On Hours</translation>
<source>Power On Hours</source>
<translation>Power On Hours</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>File</source>
<translation>File</translation>
<source>File</source>
<translation>File</translation>
</message>
<message>
<source>Settings</source>
<translation>Settings</translation>
<source>Settings</source>
<translation>Settings</translation>
</message>
<message>
<source>&amp;Help</source>
<translation>&amp;Help</translation>
<source>&amp;Help</source>
<translation>&amp;Help</translation>
</message>
<message>
<source>De&amp;vice</source>
<translation>De&amp;vice</translation>
<source>De&amp;vice</source>
<translation>De&amp;vice</translation>
</message>
<message>
<source>Disk</source>
<translation>Disk</translation>
<source>Disk</source>
<translation>Disk</translation>
</message>
<message>
<source>&amp;Quit</source>
<translation>&amp;Quit</translation>
<source>&amp;Quit</source>
<translation>&amp;Quit</translation>
</message>
<message>
<source>&amp;Refresh Devices</source>
<translation>&amp;Refresh Devices</translation>
<source>&amp;Refresh Devices</source>
<translation>&amp;Refresh Devices</translation>
</message>
<message>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
</message>
<message>
<source>&amp;About QDiskInfo</source>
<translation>&amp;About QDiskInfo</translation>
<source>&amp;About QDiskInfo</source>
<translation>&amp;About QDiskInfo</translation>
</message>
<message>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ignore C4 (Reallocated Event Count)</translation>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp;Ignore C4 (Reallocated Event Count)</translation>
</message>
<message>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Convert Raw values to HEX</translation>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;Convert Raw values to HEX</translation>
</message>
<message>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Use Fahrenheit</translation>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;Use Fahrenheit</translation>
</message>
<message>
<source>Self Test</source>
<translation>Self Test</translation>
<source>Self Test</source>
<translation>Self Test</translation>
</message>
<message>
<source>Cyclic &amp;Navigation</source>
<translation>Cyclic &amp;Navigation</translation>
<source>Cyclic &amp;Navigation</source>
<translation>Cyclic &amp;Navigation</translation>
</message>
<message>
<source>Use &amp;GB instead of TB</source>
<translation>Use &amp;GB instead of TB</translation>
<source>Use &amp;GB instead of TB</source>
<translation>Use &amp;GB instead of TB</translation>
</message>
<message>
<source>About &amp;Qt</source>
<translation>About &amp;Qt</translation>
<source>About &amp;Qt</source>
<translation>About &amp;Qt</translation>
</message>
<message>
<source>Start Self Test</source>
<translation>Start Self Test</translation>
<source>Start Self Test</source>
<translation>Start Self Test</translation>
</message>
<message>
<source>Self Test Log</source>
<translation>Self Test Log</translation>
<source>Self Test Log</source>
<translation>Self Test Log</translation>
</message>
<message>
<source>Critical Warning</source>
<translation>Critical Warning</translation>
<source>Critical Warning</source>
<translation>Critical Warning</translation>
</message>
<message>
<source>Grown Defect List</source>
<translation>Grown Defect List</translation>
<source>Grown Defect List</source>
<translation>Grown Defect List</translation>
</message>
<message>
<source>Good</source>
<translation>Good</translation>
<source>Good</source>
<translation>Good</translation>
</message>
<message>
<source>Caution</source>
<translation>Caution</translation>
<source>Caution</source>
<translation>Caution</translation>
</message>
<message>
<source>Bad</source>
<translation>Bad</translation>
<source>Bad</source>
<translation>Bad</translation>
</message>
<message>
<source>Unknown</source>
<translation>Unknown</translation>
<source>Unknown</source>
<translation>Unknown</translation>
</message>
<message>
<source>Status</source>
<translation>Status</translation>
<source>Status</source>
<translation>Status</translation>
</message>
<message>
<source>count</source>
<translation>count</translation>
<source>count</source>
<translation>count</translation>
</message>
<message>
<source>hours</source>
<translation>hours</translation>
<source>hours</source>
<translation>hours</translation>
</message>
<message>
<source>Short</source>
<translation>Short</translation>
<source>Short</source>
<translation>Short</translation>
</message>
<message>
<source>Conveyance</source>
<translation>Conveyance</translation>
<source>Conveyance</source>
<translation>Conveyance</translation>
</message>
<message>
<source>Extended</source>
<translation>Extended</translation>
<source>Extended</source>
<translation>Extended</translation>
</message>
<message>
<source>Min.)</source>
<translation>Min.)</translation>
<source>Min.)</source>
<translation>Min.)</translation>
</message>
<message>
<source>Read</source>
<translation>Read</translation>
<source>Read</source>
<translation>Read</translation>
</message>
<message>
<source>Write</source>
<translation>Write</translation>
<source>Write</source>
<translation>Write</translation>
</message>
<message>
<source>Verify</source>
<translation>Verify</translation>
<source>Verify</source>
<translation>Verify</translation>
</message>
<message>
<source>ID</source>
<translation>ID</translation>
<source>ID</source>
<translation>ID</translation>
</message>
<message>
<source>Attribute Name</source>
<translation>Attribute Name</translation>
<source>Attribute Name</source>
<translation>Attribute Name</translation>
</message>
<message>
<source>Raw Values</source>
<translation>Raw Values</translation>
<source>Raw Values</source>
<translation>Raw Values</translation>
</message>
<message>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Available spare capacity has fallen below the threshold</translation>
<source>Available spare capacity has fallen below the threshold</source>
<translation>Available spare capacity has fallen below the threshold</translation>
</message>
<message>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Temperature error (Overheat or Overcool)</translation>
<source>Temperature error (Overheat or Overcool)</source>
<translation>Temperature error (Overheat or Overcool)</translation>
</message>
<message>
<source>NVM subsystem reliability has been degraded</source>
<translation>NVM subsystem reliability has been degraded</translation>
<source>NVM subsystem reliability has been degraded</source>
<translation>NVM subsystem reliability has been degraded</translation>
</message>
<message>
<source>Media has been placed in Read Only Mode</source>
<translation>Media has been placed in Read Only Mode</translation>
<source>Media has been placed in Read Only Mode</source>
<translation>Media has been placed in Read Only Mode</translation>
</message>
<message>
<source>Volatile memory backup device has Failed</source>
<translation>Volatile memory backup device has Failed</translation>
<source>Volatile memory backup device has Failed</source>
<translation>Volatile memory backup device has Failed</translation>
</message>
<message>
<source>Persistent memory region has become Read-Only</source>
<translation>Persistent memory region has become Read-Only</translation>
<source>Persistent memory region has become Read-Only</source>
<translation>Persistent memory region has become Read-Only</translation>
</message>
<message>
<source>Current</source>
<translation>Current</translation>
<source>Current</source>
<translation>Current</translation>
</message>
<message>
<source>Worst</source>
<translation>Worst</translation>
<source>Worst</source>
<translation>Worst</translation>
</message>
<message>
<source>Threshold</source>
<translation>Threshold</translation>
<source>Threshold</source>
<translation>Threshold</translation>
</message>
<message>
<source>Empty JSON</source>
<translation>Empty JSON</translation>
<source>Empty JSON</source>
<translation>Empty JSON</translation>
</message>
<message>
<source>The JSON is empty</source>
<translation>The JSON is empty</translation>
<source>The JSON is empty</source>
<translation>The JSON is empty</translation>
</message>
<message>
<source>Save JSON</source>
<translation>Save JSON</translation>
<source>Save JSON</source>
<translation>Save JSON</translation>
</message>
<message>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;All Files (*)</translation>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);;All Files (*)</translation>
</message>
<message>
<source>Unable to open file for writing</source>
<translation>Unable to open file for writing</translation>
<source>Unable to open file for writing</source>
<translation>Unable to open file for writing</translation>
</message>
<message>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>An ATA and NVMe S.M.A.R.T. data viewer for Linux</translation>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation>An ATA and NVMe S.M.A.R.T. data viewer for Linux</translation>
</message>
<message>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Licensed under the GNU G.P.L. Version 3</translation>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation>Licensed under the GNU G.P.L. Version 3</translation>
</message>
<message>
<source>Made by Samantas5855</source>
<translation>Made by Samantas5855</translation>
<source>Made by Samantas5855</source>
<translation>Made by Samantas5855</translation>
</message>
<message>
<source>Version</source>
<translation>Version</translation>
<source>Version</source>
<translation>Version</translation>
</message>
<message>
<source>About QDiskInfo</source>
<translation>About QDiskInfo</translation>
<source>About QDiskInfo</source>
<translation>About QDiskInfo</translation>
</message>
<message>
<source>About Qt</source>
<translation>About Qt</translation>
<source>About Qt</source>
<translation>About Qt</translation>
</message>
<message>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
</message>
<message>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
</message>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
</message>
<message>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
</message>
<message>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
</message>
<message>
<source>Success</source>
<translation type="unfinished">Success</translation>
<source>Success</source>
<translation type="unfinished">Success</translation>
</message>
<message>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
</message>
<message>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
</message>
<message>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
</message>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
</message>
<message>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
</message>
<message>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
</message>
<message>
<source>&amp;Save JSON</source>
<translation>&amp;Save JSON</translation>
</message>
</context>
<context>
</context>
<context>
<name>QObject</name>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo Error</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo needs root access in order to read S.M.A.R.T. data!</translation>
</message>
<message>
<source>smartctl was not found, please install it!</source>
<translation>smartctl was not found, please install it!</translation>
<source>smartctl was not found, please install it!</source>
<translation>smartctl was not found, please install it!</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo needs root access in order to abort a self-test!</translation>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo needs root access in order to abort a self-test!</translation>
</message>
<message>
<source>Test Requested</source>
<translation>Test Requested</translation>
<source>Test Requested</source>
<translation>Test Requested</translation>
</message>
<message>
<source>The self-test has been aborted</source>
<translation>The self-test has been aborted</translation>
<source>The self-test has been aborted</source>
<translation>The self-test has been aborted</translation>
</message>
<message>
<source>Error: Something went wrong</source>
<translation>Error: Something went wrong</translation>
<source>Error: Something went wrong</source>
<translation>Error: Something went wrong</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo needs root access in order to request a self-test!</translation>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo needs root access in order to request a self-test!</translation>
</message>
<message>
<source>remaining</source>
<translation>remaining</translation>
<source>remaining</source>
<translation>remaining</translation>
</message>
<message>
<source>completed</source>
<translation>completed</translation>
<source>completed</source>
<translation>completed</translation>
</message>
<message>
<source>Test Already Running</source>
<translation>Test Already Running</translation>
<source>Test Already Running</source>
<translation>Test Already Running</translation>
</message>
<message>
<source>A self-test is already being performed</source>
<translation>A self-test is already being performed</translation>
<source>A self-test is already being performed</source>
<translation>A self-test is already being performed</translation>
</message>
<message>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>You can press the Ok button in order to abort the test that is currently running</translation>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation>You can press the Ok button in order to abort the test that is currently running</translation>
</message>
<message>
<source>A self-test has been requested successfully</source>
<translation>A self-test has been requested successfully</translation>
<source>A self-test has been requested successfully</source>
<translation>A self-test has been requested successfully</translation>
</message>
<message>
<source>It will be completed after</source>
<translation>It will be completed after</translation>
<source>It will be completed after</source>
<translation>It will be completed after</translation>
</message>
<message>
<source>minutes</source>
<translation>minutes</translation>
<source>minutes</source>
<translation>minutes</translation>
</message>
<message>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
</message>
<message>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
</message>
</context>
</context>
</TS>

View File

@@ -1,449 +1,445 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="zh_CN" sourcelanguage="en">
<context>
<context>
<name>GridView</name>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
</message>
</context>
<context>
</context>
<context>
<name>MainWindow</name>
<message>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Firmware</source>
<translation></translation>
<source>Firmware</source>
<translation></translation>
</message>
<message>
<source>Serial Number</source>
<translation></translation>
<source>Serial Number</source>
<translation></translation>
</message>
<message>
<source>Protocol</source>
<translation></translation>
<source>Protocol</source>
<translation></translation>
</message>
<message>
<source>Device Node</source>
<translation></translation>
<source>Device Node</source>
<translation></translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt; 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt; 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Type</source>
<translation></translation>
<source>Type</source>
<translation></translation>
</message>
<message>
<source>Total Host Reads</source>
<translation></translation>
<source>Total Host Reads</source>
<translation></translation>
</message>
<message>
<source>Total Host Writes</source>
<translation></translation>
<source>Total Host Writes</source>
<translation></translation>
</message>
<message>
<source>Rotation Rate</source>
<translation></translation>
<source>Rotation Rate</source>
<translation></translation>
</message>
<message>
<source>Power On Count</source>
<translation></translation>
<source>Power On Count</source>
<translation></translation>
</message>
<message>
<source>Power On Hours</source>
<translation></translation>
<source>Power On Hours</source>
<translation></translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>File</source>
<translation></translation>
<source>File</source>
<translation></translation>
</message>
<message>
<source>Settings</source>
<translation></translation>
<source>Settings</source>
<translation></translation>
</message>
<message>
<source>&amp;Help</source>
<translation> (&amp;H)</translation>
<source>&amp;Help</source>
<translation> (&amp;H)</translation>
</message>
<message>
<source>De&amp;vice</source>
<translation> (&amp;D)</translation>
<source>De&amp;vice</source>
<translation> (&amp;D)</translation>
</message>
<message>
<source>Disk</source>
<translation></translation>
<source>Disk</source>
<translation></translation>
</message>
<message>
<source>&amp;Quit</source>
<translation>退 (&amp;Q)</translation>
<source>&amp;Quit</source>
<translation>退 (&amp;Q)</translation>
</message>
<message>
<source>&amp;Refresh Devices</source>
<translation> (&amp;R)</translation>
<source>&amp;Refresh Devices</source>
<translation> (&amp;R)</translation>
</message>
<message>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
</message>
<message>
<source>&amp;About QDiskInfo</source>
<translation> QDiskInfo (&amp;A)</translation>
<source>&amp;About QDiskInfo</source>
<translation> QDiskInfo (&amp;A)</translation>
</message>
<message>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation> C4 (Reallocated Event Count) (&amp;I)</translation>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation> C4 (Reallocated Event Count) (&amp;I)</translation>
</message>
<message>
<source>&amp;Convert Raw values to HEX</source>
<translation> (HEX) (&amp;C)</translation>
<source>&amp;Convert Raw values to HEX</source>
<translation> (HEX) (&amp;C)</translation>
</message>
<message>
<source>&amp;Use Fahrenheit</source>
<translation>使 (&amp;U)</translation>
<source>&amp;Use Fahrenheit</source>
<translation>使 (&amp;U)</translation>
</message>
<message>
<source>Self Test</source>
<translation></translation>
<source>Self Test</source>
<translation></translation>
</message>
<message>
<source>Cyclic &amp;Navigation</source>
<translation> (&amp;N)</translation>
<source>Cyclic &amp;Navigation</source>
<translation> (&amp;N)</translation>
</message>
<message>
<source>Use &amp;GB instead of TB</source>
<translation>使 &amp;GB TB</translation>
<source>Use &amp;GB instead of TB</source>
<translation>使 &amp;GB TB</translation>
</message>
<message>
<source>About &amp;Qt</source>
<translation> &amp;Qt</translation>
<source>About &amp;Qt</source>
<translation> &amp;Qt</translation>
</message>
<message>
<source>Start Self Test</source>
<translation></translation>
<source>Start Self Test</source>
<translation></translation>
</message>
<message>
<source>Self Test Log</source>
<translation></translation>
<source>Self Test Log</source>
<translation></translation>
</message>
<message>
<source>Critical Warning</source>
<translation></translation>
<source>Critical Warning</source>
<translation></translation>
</message>
<message>
<source>Grown Defect List</source>
<translation></translation>
<source>Grown Defect List</source>
<translation></translation>
</message>
<message>
<source>Good</source>
<translation></translation>
<source>Good</source>
<translation></translation>
</message>
<message>
<source>Caution</source>
<translation></translation>
<source>Caution</source>
<translation></translation>
</message>
<message>
<source>Bad</source>
<translation></translation>
<source>Bad</source>
<translation></translation>
</message>
<message>
<source>Unknown</source>
<translation></translation>
<source>Unknown</source>
<translation></translation>
</message>
<message>
<source>Status</source>
<translation></translation>
<source>Status</source>
<translation></translation>
</message>
<message>
<source>count</source>
<translation></translation>
<source>count</source>
<translation></translation>
</message>
<message>
<source>hours</source>
<translation></translation>
<source>hours</source>
<translation></translation>
</message>
<message>
<source>Short</source>
<translation> (Short)</translation>
<source>Short</source>
<translation> (Short)</translation>
</message>
<message>
<source>Conveyance</source>
<translation> (Conveyance)</translation>
<source>Conveyance</source>
<translation> (Conveyance)</translation>
</message>
<message>
<source>Extended</source>
<translation> (Extended)</translation>
<source>Extended</source>
<translation> (Extended)</translation>
</message>
<message>
<source>Min.)</source>
<translation>)</translation>
<source>Min.)</source>
<translation>)</translation>
</message>
<message>
<source>Read</source>
<translation></translation>
<source>Read</source>
<translation></translation>
</message>
<message>
<source>Write</source>
<translation></translation>
<source>Write</source>
<translation></translation>
</message>
<message>
<source>Verify</source>
<translation></translation>
<source>Verify</source>
<translation></translation>
</message>
<message>
<source>ID</source>
<translation>ID</translation>
<source>ID</source>
<translation>ID</translation>
</message>
<message>
<source>Attribute Name</source>
<translation></translation>
<source>Attribute Name</source>
<translation></translation>
</message>
<message>
<source>Raw Values</source>
<translation></translation>
<source>Raw Values</source>
<translation></translation>
</message>
<message>
<source>Available spare capacity has fallen below the threshold</source>
<translation></translation>
<source>Available spare capacity has fallen below the threshold</source>
<translation></translation>
</message>
<message>
<source>Temperature error (Overheat or Overcool)</source>
<translation> ()</translation>
<source>Temperature error (Overheat or Overcool)</source>
<translation> ()</translation>
</message>
<message>
<source>NVM subsystem reliability has been degraded</source>
<translation>NVM </translation>
<source>NVM subsystem reliability has been degraded</source>
<translation>NVM </translation>
</message>
<message>
<source>Media has been placed in Read Only Mode</source>
<translation></translation>
<source>Media has been placed in Read Only Mode</source>
<translation></translation>
</message>
<message>
<source>Volatile memory backup device has Failed</source>
<translation></translation>
<source>Volatile memory backup device has Failed</source>
<translation></translation>
</message>
<message>
<source>Persistent memory region has become Read-Only</source>
<translation></translation>
<source>Persistent memory region has become Read-Only</source>
<translation></translation>
</message>
<message>
<source>Current</source>
<translation></translation>
<source>Current</source>
<translation></translation>
</message>
<message>
<source>Worst</source>
<translation></translation>
<source>Worst</source>
<translation></translation>
</message>
<message>
<source>Threshold</source>
<translation></translation>
<source>Threshold</source>
<translation></translation>
</message>
<message>
<source>Empty JSON</source>
<translation> JSON</translation>
<source>Empty JSON</source>
<translation> JSON</translation>
</message>
<message>
<source>The JSON is empty</source>
<translation>JSON </translation>
<source>The JSON is empty</source>
<translation>JSON </translation>
</message>
<message>
<source>Save JSON</source>
<translation> JSON</translation>
<source>Save JSON</source>
<translation> JSON</translation>
</message>
<message>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);; (*)</translation>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);; (*)</translation>
</message>
<message>
<source>Unable to open file for writing</source>
<translation></translation>
<source>Unable to open file for writing</source>
<translation></translation>
</message>
<message>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation> Linux ATA NVMe S.M.A.R.T. </translation>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation> Linux ATA NVMe S.M.A.R.T. </translation>
</message>
<message>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation> GNU G.P.L. 3 </translation>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation> GNU G.P.L. 3 </translation>
</message>
<message>
<source>Made by Samantas5855</source>
<translation> Samantas5855 </translation>
<source>Made by Samantas5855</source>
<translation> Samantas5855 </translation>
</message>
<message>
<source>Version</source>
<translation></translation>
<source>Version</source>
<translation></translation>
</message>
<message>
<source>About QDiskInfo</source>
<translation> QDiskInfo</translation>
<source>About QDiskInfo</source>
<translation> QDiskInfo</translation>
</message>
<message>
<source>About Qt</source>
<translation> Qt</translation>
<source>About Qt</source>
<translation> Qt</translation>
</message>
<message>
<source>Clear &amp;Settings</source>
<translation>(&amp;S)</translation>
<source>Clear &amp;Settings</source>
<translation>(&amp;S)</translation>
</message>
<message>
<source>ASCII View</source>
<translation>ASCII </translation>
<source>ASCII View</source>
<translation>ASCII </translation>
</message>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo </translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo </translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo root S.M.A.R.T. </translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo root S.M.A.R.T. </translation>
</message>
<message>
<source>Save Binary Data</source>
<translation></translation>
<source>Save Binary Data</source>
<translation></translation>
</message>
<message>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation> (*.bin);; (*)</translation>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation> (*.bin);; (*)</translation>
</message>
<message>
<source>Success</source>
<translation></translation>
<source>Success</source>
<translation></translation>
</message>
<message>
<source>Binary data saved successfully.</source>
<translation></translation>
<source>Binary data saved successfully.</source>
<translation></translation>
</message>
<message>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
</message>
<message>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
</message>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
</message>
<message>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
</message>
<message>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
</message>
<message>
<source>&amp;Save JSON</source>
<translation> J&amp;SON</translation>
</message>
</context>
<context>
</context>
<context>
<name>QObject</name>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo </translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo </translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo root S.M.A.R.T. </translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo root S.M.A.R.T. </translation>
</message>
<message>
<source>smartctl was not found, please install it!</source>
<translation> smartctl</translation>
<source>smartctl was not found, please install it!</source>
<translation> smartctl</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo root </translation>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo root </translation>
</message>
<message>
<source>Test Requested</source>
<translation></translation>
<source>Test Requested</source>
<translation></translation>
</message>
<message>
<source>The self-test has been aborted</source>
<translation></translation>
<source>The self-test has been aborted</source>
<translation></translation>
</message>
<message>
<source>Error: Something went wrong</source>
<translation></translation>
<source>Error: Something went wrong</source>
<translation></translation>
</message>
<message>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo root </translation>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo root </translation>
</message>
<message>
<source>remaining</source>
<translation></translation>
<source>remaining</source>
<translation></translation>
</message>
<message>
<source>completed</source>
<translation></translation>
<source>completed</source>
<translation></translation>
</message>
<message>
<source>Test Already Running</source>
<translation></translation>
<source>Test Already Running</source>
<translation></translation>
</message>
<message>
<source>A self-test is already being performed</source>
<translation></translation>
<source>A self-test is already being performed</source>
<translation></translation>
</message>
<message>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation> OK </translation>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation> OK </translation>
</message>
<message>
<source>A self-test has been requested successfully</source>
<translation></translation>
<source>A self-test has been requested successfully</source>
<translation></translation>
</message>
<message>
<source>It will be completed after</source>
<translation></translation>
<source>It will be completed after</source>
<translation></translation>
</message>
<message>
<source>minutes</source>
<translation></translation>
<source>minutes</source>
<translation></translation>
</message>
<message>
<source>Clear Settings</source>
<translation></translation>
<source>Clear Settings</source>
<translation></translation>
</message>
<message>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation></translation>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation></translation>
</message>
</context>
</context>
</TS>

View File

@@ -1,449 +1,445 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="zh_TW" sourcelanguage="en">
<context>
<context>
<name>GridView</name>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
<source>Search for a disk...</source>
<translation type="unfinished">Search for a disk...</translation>
</message>
</context>
<context>
</context>
<context>
<name>MainWindow</name>
<message>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
<source>QDiskInfo</source>
<translation>QDiskInfo</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Health Status&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;Temperature&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;23° C&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Firmware</source>
<translation></translation>
<source>Firmware</source>
<translation></translation>
</message>
<message>
<source>Serial Number</source>
<translation></translation>
<source>Serial Number</source>
<translation></translation>
</message>
<message>
<source>Protocol</source>
<translation></translation>
<source>Protocol</source>
<translation></translation>
</message>
<message>
<source>Device Node</source>
<translation></translation>
<source>Device Node</source>
<translation></translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt; 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt;Good 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:700; color:#000000;&quot;&gt; 100 %&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>Type</source>
<translation></translation>
<source>Type</source>
<translation></translation>
</message>
<message>
<source>Total Host Reads</source>
<translation></translation>
<source>Total Host Reads</source>
<translation></translation>
</message>
<message>
<source>Total Host Writes</source>
<translation></translation>
<source>Total Host Writes</source>
<translation></translation>
</message>
<message>
<source>Rotation Rate</source>
<translation></translation>
<source>Rotation Rate</source>
<translation></translation>
</message>
<message>
<source>Power On Count</source>
<translation></translation>
<source>Power On Count</source>
<translation></translation>
</message>
<message>
<source>Power On Hours</source>
<translation></translation>
<source>Power On Hours</source>
<translation></translation>
</message>
<message>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;Hard Drive Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt; font-weight:700;&quot;&gt;&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>File</source>
<translation></translation>
<source>File</source>
<translation></translation>
</message>
<message>
<source>Settings</source>
<translation></translation>
<source>Settings</source>
<translation></translation>
</message>
<message>
<source>&amp;Help</source>
<translation>&amp;</translation>
<source>&amp;Help</source>
<translation>&amp;</translation>
</message>
<message>
<source>De&amp;vice</source>
<translation>&amp;</translation>
<source>De&amp;vice</source>
<translation>&amp;</translation>
</message>
<message>
<source>Disk</source>
<translation></translation>
<source>Disk</source>
<translation></translation>
</message>
<message>
<source>&amp;Quit</source>
<translation>&amp;</translation>
<source>&amp;Quit</source>
<translation>&amp;</translation>
</message>
<message>
<source>&amp;Refresh Devices</source>
<translation>&amp;</translation>
<source>&amp;Refresh Devices</source>
<translation>&amp;</translation>
</message>
<message>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
<source>&amp;GitHub</source>
<translation>&amp;GitHub</translation>
</message>
<message>
<source>&amp;About QDiskInfo</source>
<translation>&amp; QDiskInfo</translation>
<source>&amp;About QDiskInfo</source>
<translation>&amp; QDiskInfo</translation>
</message>
<message>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp; C4 ()</translation>
<source>&amp;Ignore C4 (Reallocated Event Count)</source>
<translation>&amp; C4 ()</translation>
</message>
<message>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;</translation>
<source>&amp;Convert Raw values to HEX</source>
<translation>&amp;</translation>
</message>
<message>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;使 </translation>
<source>&amp;Use Fahrenheit</source>
<translation>&amp;使 </translation>
</message>
<message>
<source>Self Test</source>
<translation></translation>
<source>Self Test</source>
<translation></translation>
</message>
<message>
<source>Cyclic &amp;Navigation</source>
<translation> &amp;</translation>
<source>Cyclic &amp;Navigation</source>
<translation> &amp;</translation>
</message>
<message>
<source>Use &amp;GB instead of TB</source>
<translation>使 &amp;GB TB</translation>
<source>Use &amp;GB instead of TB</source>
<translation>使 &amp;GB TB</translation>
</message>
<message>
<source>About &amp;Qt</source>
<translation> &amp;Qt</translation>
<source>About &amp;Qt</source>
<translation> &amp;Qt</translation>
</message>
<message>
<source>Start Self Test</source>
<translation></translation>
<source>Start Self Test</source>
<translation></translation>
</message>
<message>
<source>Self Test Log</source>
<translation></translation>
<source>Self Test Log</source>
<translation></translation>
</message>
<message>
<source>Critical Warning</source>
<translation></translation>
<source>Critical Warning</source>
<translation></translation>
</message>
<message>
<source>Grown Defect List</source>
<translation></translation>
<source>Grown Defect List</source>
<translation></translation>
</message>
<message>
<source>Good</source>
<translation></translation>
<source>Good</source>
<translation></translation>
</message>
<message>
<source>Caution</source>
<translation></translation>
<source>Caution</source>
<translation></translation>
</message>
<message>
<source>Bad</source>
<translation></translation>
<source>Bad</source>
<translation></translation>
</message>
<message>
<source>Unknown</source>
<translation></translation>
<source>Unknown</source>
<translation></translation>
</message>
<message>
<source>Status</source>
<translation></translation>
<source>Status</source>
<translation></translation>
</message>
<message>
<source>count</source>
<translation></translation>
<source>count</source>
<translation></translation>
</message>
<message>
<source>hours</source>
<translation></translation>
<source>hours</source>
<translation></translation>
</message>
<message>
<source>Short</source>
<translation></translation>
<source>Short</source>
<translation></translation>
</message>
<message>
<source>Conveyance</source>
<translation></translation>
<source>Conveyance</source>
<translation></translation>
</message>
<message>
<source>Extended</source>
<translation></translation>
<source>Extended</source>
<translation></translation>
</message>
<message>
<source>Min.)</source>
<translation>)</translation>
<source>Min.)</source>
<translation>)</translation>
</message>
<message>
<source>Read</source>
<translation></translation>
<source>Read</source>
<translation></translation>
</message>
<message>
<source>Write</source>
<translation></translation>
<source>Write</source>
<translation></translation>
</message>
<message>
<source>Verify</source>
<translation></translation>
<source>Verify</source>
<translation></translation>
</message>
<message>
<source>ID</source>
<translation>ID</translation>
<source>ID</source>
<translation>ID</translation>
</message>
<message>
<source>Attribute Name</source>
<translation></translation>
<source>Attribute Name</source>
<translation></translation>
</message>
<message>
<source>Raw Values</source>
<translation></translation>
<source>Raw Values</source>
<translation></translation>
</message>
<message>
<source>Available spare capacity has fallen below the threshold</source>
<translation></translation>
<source>Available spare capacity has fallen below the threshold</source>
<translation></translation>
</message>
<message>
<source>Temperature error (Overheat or Overcool)</source>
<translation> ()</translation>
<source>Temperature error (Overheat or Overcool)</source>
<translation> ()</translation>
</message>
<message>
<source>NVM subsystem reliability has been degraded</source>
<translation>NVM子系統的可靠度已下降</translation>
<source>NVM subsystem reliability has been degraded</source>
<translation>NVM子系統的可靠度已下降</translation>
</message>
<message>
<source>Media has been placed in Read Only Mode</source>
<translation></translation>
<source>Media has been placed in Read Only Mode</source>
<translation></translation>
</message>
<message>
<source>Volatile memory backup device has Failed</source>
<translation></translation>
<source>Volatile memory backup device has Failed</source>
<translation></translation>
</message>
<message>
<source>Persistent memory region has become Read-Only</source>
<translation></translation>
<source>Persistent memory region has become Read-Only</source>
<translation></translation>
</message>
<message>
<source>Current</source>
<translation></translation>
<source>Current</source>
<translation></translation>
</message>
<message>
<source>Worst</source>
<translation></translation>
<source>Worst</source>
<translation></translation>
</message>
<message>
<source>Threshold</source>
<translation></translation>
<source>Threshold</source>
<translation></translation>
</message>
<message>
<source>Empty JSON</source>
<translation> JSON</translation>
<source>Empty JSON</source>
<translation> JSON</translation>
</message>
<message>
<source>The JSON is empty</source>
<translation>JSON </translation>
<source>The JSON is empty</source>
<translation>JSON </translation>
</message>
<message>
<source>Save JSON</source>
<translation> JSON</translation>
<source>Save JSON</source>
<translation> JSON</translation>
</message>
<message>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);; (*)</translation>
<source>JSON (*.json);;All Files (*)</source>
<translation>JSON (*.json);; (*)</translation>
</message>
<message>
<source>Unable to open file for writing</source>
<translation></translation>
<source>Unable to open file for writing</source>
<translation></translation>
</message>
<message>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation> Linux ATA NVMe S.M.A.R.T. </translation>
<source>An ATA and NVMe S.M.A.R.T. data viewer for Linux</source>
<translation> Linux ATA NVMe S.M.A.R.T. </translation>
</message>
<message>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation> GNU G.P.L. 3 </translation>
<source>Licensed under the GNU G.P.L. Version 3</source>
<translation> GNU G.P.L. 3 </translation>
</message>
<message>
<source>Made by Samantas5855</source>
<translation> Samantas5855 </translation>
<source>Made by Samantas5855</source>
<translation> Samantas5855 </translation>
</message>
<message>
<source>Version</source>
<translation></translation>
<source>Version</source>
<translation></translation>
</message>
<message>
<source>About QDiskInfo</source>
<translation> QDiskInfo</translation>
<source>About QDiskInfo</source>
<translation> QDiskInfo</translation>
</message>
<message>
<source>About Qt</source>
<translation> Qt</translation>
<source>About Qt</source>
<translation> Qt</translation>
</message>
<message>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
<source>Clear &amp;Settings</source>
<translation type="unfinished">Clear &amp;Settings</translation>
</message>
<message>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
<source>ASCII View</source>
<translation type="unfinished">ASCII View</translation>
</message>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo </translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo </translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo root S.M.A.R.T. </translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo root S.M.A.R.T. </translation>
</message>
<message>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
<source>Save Binary Data</source>
<translation type="unfinished">Save Binary Data</translation>
</message>
<message>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
<source>Binary Files (*.bin);;All Files (*)</source>
<translation type="unfinished">Binary Files (*.bin);;All Files (*)</translation>
</message>
<message>
<source>Success</source>
<translation type="unfinished">Success</translation>
<source>Success</source>
<translation type="unfinished">Success</translation>
</message>
<message>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
<source>Binary data saved successfully.</source>
<translation type="unfinished">Binary data saved successfully.</translation>
</message>
<message>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
<source>&amp;Save (JSON)</source>
<translation type="unfinished">&amp;Save (JSON)</translation>
</message>
<message>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
<source>Ctrl+T</source>
<translation type="unfinished">Ctrl+T</translation>
</message>
<message>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
<source>Grid View</source>
<translation type="unfinished">Grid View</translation>
</message>
<message>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
<source>Save (Image)</source>
<translation type="unfinished">Save (Image)</translation>
</message>
<message>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
<source>Save Image</source>
<translation type="unfinished">Save Image</translation>
</message>
<message>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
<source>PNG Files (*.png)</source>
<translation type="unfinished">PNG Files (*.png)</translation>
</message>
<message>
<source>&amp;Save JSON</source>
<translation>&amp; JSON</translation>
</message>
</context>
<context>
</context>
<context>
<name>QObject</name>
<message>
<source>QDiskInfo Error</source>
<translation>QDiskInfo </translation>
<source>QDiskInfo Error</source>
<translation>QDiskInfo </translation>
</message>
<message>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo root S.M.A.R.T. </translation>
<source>QDiskInfo needs root access in order to read S.M.A.R.T. data!</source>
<translation>QDiskInfo root S.M.A.R.T. </translation>
</message>
<message>
<source>smartctl was not found, please install it!</source>
<translation> smartctl</translation>
<source>smartctl was not found, please install it!</source>
<translation> smartctl</translation>
</message>
<message>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo root </translation>
<source>QDiskInfo needs root access in order to abort a self-test!</source>
<translation>QDiskInfo root </translation>
</message>
<message>
<source>Test Requested</source>
<translation></translation>
<source>Test Requested</source>
<translation></translation>
</message>
<message>
<source>The self-test has been aborted</source>
<translation></translation>
<source>The self-test has been aborted</source>
<translation></translation>
</message>
<message>
<source>Error: Something went wrong</source>
<translation></translation>
<source>Error: Something went wrong</source>
<translation></translation>
</message>
<message>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo root </translation>
<source>QDiskInfo needs root access in order to request a self-test!</source>
<translation>QDiskInfo root </translation>
</message>
<message>
<source>remaining</source>
<translation></translation>
<source>remaining</source>
<translation></translation>
</message>
<message>
<source>completed</source>
<translation></translation>
<source>completed</source>
<translation></translation>
</message>
<message>
<source>Test Already Running</source>
<translation></translation>
<source>Test Already Running</source>
<translation></translation>
</message>
<message>
<source>A self-test is already being performed</source>
<translation></translation>
<source>A self-test is already being performed</source>
<translation></translation>
</message>
<message>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation> Ok </translation>
<source>You can press the Ok button in order to abort the test that is currently running</source>
<translation> Ok </translation>
</message>
<message>
<source>A self-test has been requested successfully</source>
<translation></translation>
<source>A self-test has been requested successfully</source>
<translation></translation>
</message>
<message>
<source>It will be completed after</source>
<translation></translation>
<source>It will be completed after</source>
<translation></translation>
</message>
<message>
<source>minutes</source>
<translation></translation>
<source>minutes</source>
<translation></translation>
</message>
<message>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
<source>Clear Settings</source>
<translation type="unfinished">Clear Settings</translation>
</message>
<message>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
<source>Are you sure you want to clear the settings saved on disk?</source>
<translation type="unfinished">Are you sure you want to clear the settings saved on disk?</translation>
</message>
</context>
</context>
</TS>