Subversion Repositories ALCASAR

Compare Revisions

Ignore whitespace Rev 2780 → Rev 2781

/web/acc/phpsysinfo/plugins/smart/css/smart.css
0,0 → 1,10
/*
$Id: smart.css 661 2012-08-27 11:26:39Z namiltd $
*/
#Plugin_SMARTTable tbody tr td {
text-align: right;
}
 
#Plugin_SMARTTable thead tr th {
cursor: pointer;
}
/web/acc/phpsysinfo/plugins/smart/js/smart.js
0,0 → 1,148
/***************************************************************************
* Copyright (C) 2008 by phpSysInfo - A PHP System Information Script *
* http://phpsysinfo.sourceforge.net/ *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
 
//$Id: smart.js 707 2012-11-28 10:20:49Z namiltd $
 
 
/*global $, jQuery, genlang, formatTemp, plugin_translate, buildBlock, datetime */
 
"use strict";
 
var smart_show = false, smart_table;
 
//appendcss("./plugins/SMART/css/SMART.css");
 
/**
* fill the plugin block with table structure
*/
function smart_buildTable(xml) {
var html = "";
 
html += "<div style=\"overflow-x:auto;\">\n";
html += " <table id=\"Plugin_SMARTTable\" style=\"border-collapse:collapse;\">\n";
html += " <thead>\n";
html += " <tr>\n";
html += " <th class=\"right\">" + genlang(2, "SMART") + "</th>\n";
$("Plugins Plugin_SMART columns column", xml).each(function smart_table_header() {
html += " <th class=\"right\">" + genlang(100 + parseInt($(this).attr("id"), 10), "SMART") + "</th>\n";
});
html += " </tr>\n";
html += " </thead>\n";
html += " <tbody>\n";
html += " </tbody>\n";
html += " </table>\n";
html += "</div>\n";
 
$("#Plugin_SMART").append(html);
 
smart_table = $("#Plugin_SMARTTable").dataTable({
"bPaginate": false,
"bLengthChange": false,
"bFilter": false,
"bSort": true,
"bInfo": false,
"bProcessing": true,
"bAutoWidth": false,
"bStateSave": true
});
}
 
/**
* insert content into table
* @param {jQuery} xml plugin-XML
*/
function smart_populate(xml) {
var name = "", columns = [];
smart_table.fnClearTable();
 
// Get datas that the user want to be displayed
$("Plugins Plugin_SMART columns column", xml).each(function smart_find_columns() {
columns[parseInt($(this).attr("id"), 10)] = $(this).attr("name");
smart_show = true;
});
 
// Now we add selected datas in the table
$("Plugins Plugin_SMART disks disk", xml).each(function smart_fill_table() {
var values = [], display = [], i;
name = $(this).attr("name").replace(/\)/g, ")<wbr>");
$(this).find("attribute").each(function smart_fill_data() {
if (columns[parseInt($(this).attr("id"), 10)] && columns[parseInt($(this).attr("id"), 10)] !== "") {
values[parseInt($(this).attr("id"), 10)] = $(this).attr(columns[parseInt($(this).attr("id"), 10)]);
}
});
 
display.push("<span style=\"display:none;\">" + name + "</span>" + name);
 
// On "columns" so we get the right order
// fixed for Firefox (fix wrong order)
$("Plugins Plugin_SMART columns column", xml).each(function smart_find_columns() {
i = parseInt($(this).attr("id"), 10);
if (typeof(values[i])==='undefined') {
display.push("<span style=\"display:none;\"></span>");
}
else if (i === 194) {
display.push("<span style=\"display:none;\">" + values[i] + "</span>" + formatTemp(values[i], xml));
}
else {
display.push("<span style=\"display:none;\">" + values[i] + "</span>" + values[i]);
}
});
smart_table.fnAddData(display);
});
}
 
/**
* load the xml via ajax
*/
function smart_request() {
$("#Reload_SMARTTable").attr("title", "reload");
$.ajax({
url: "xml.php?plugin=SMART",
dataType: "xml",
error: function smart_error() {
$.jGrowl("Error loading XML document for Plugin SMART");
},
success: function smart_buildBlock(xml) {
populateErrors(xml);
if ((smart_table === undefined) || (typeof(smart_table) !== "object")) {
smart_buildTable(xml);
}
smart_populate(xml);
if (smart_show) {
plugin_translate("SMART");
$("#Plugin_SMART").show();
}
}
});
}
 
$(document).ready(function smart_buildpage() {
var html = "";
 
$("#footer").before(buildBlock("SMART", 1, true));
$("#Plugin_SMART").css("width", "915px");
 
smart_request();
 
$("#Reload_SMARTTable").click(function smart_reload(id) {
smart_request();
$(this).attr("title", datetime());
});
});
/web/acc/phpsysinfo/plugins/smart/js/smart_bootstrap.js
0,0 → 1,85
function renderPlugin_smart(data) {
 
if ((data.Plugins.Plugin_SMART !== undefined) && (data.Plugins.Plugin_SMART.columns !== undefined) && (items(data.Plugins.Plugin_SMART.columns.column).length > 0) && (data.Plugins.Plugin_SMART.disks !== undefined) && (items(data.Plugins.Plugin_SMART.disks.disk).length > 0)) {
var smartitems = items(data.Plugins.Plugin_SMART.columns.column);
var smartnames = {
1:"plugin_smart_101", // "Raw Read Error Rate",
2:"plugin_smart_102", // "Throughput Performance",
3:"plugin_smart_103", // "Spin Up Time",
4:"plugin_smart_104", // "Start Stop Count",
5:"plugin_smart_105", // "Reallocated Sector Ct",
7:"plugin_smart_106", // "Seek Error Rate",
8:"plugin_smart_108", // "Seek Time Performance",
9:"plugin_smart_109", // "Power On Hours",
10:"plugin_smart_110", // "Spin Retry Count",
11:"plugin_smart_111", // "Calibration Retry Count",
12:"plugin_smart_112", // "Power Cycle Count",
190:"plugin_smart_290", // "Airflow Temperature",
191:"plugin_smart_291", // "G-sense Error Rate",
192:"plugin_smart_292", // "Power-Off Retract Count",
193:"plugin_smart_293", // "Load Cycle Count",
194:"plugin_smart_294", // "Temperature",
195:"plugin_smart_295", // "Hardware ECC Recovered",
196:"plugin_smart_296", // "Reallocated Event Count",
197:"plugin_smart_297", // "Current Pending Sector",
198:"plugin_smart_298", // "Offline Uncorr.",
199:"plugin_smart_299", // "UDMA CRC Error Count",
200:"plugin_smart_300", // "Multi Zone Error Rate",
201:"plugin_smart_301", // "Soft Read Error Rate",
202:"plugin_smart_302", // "Data Address Mark Errors",
223:"plugin_smart_323", // "Load Retry Count",
225:"plugin_smart_325", }; // "Load Cycle Count"
var html = '';
var i,j;
var smartid;
 
html+="<thead>";
html+="<tr>";
html+="<th id=\"smart_name\" class=\"rightCell\">"+genlang(2, 'smart')+"</th>"; // Name
for (i = 0; i < smartitems.length ; i++) {
smartid = smartitems[i]["@attributes"].id;
if (smartnames[smartid] !== undefined) {
html+="<th class=\"sorttable_numeric rightCell\">"+ genlang(100+parseInt(smartid), 'smart') + "</th>";
} else {
html+="<th class=\"sorttable_numeric rightCell\">"+ smartid + "</th>";
}
}
html+="</tr>";
html+="</thead>";
 
var diskitems = items(data.Plugins.Plugin_SMART.disks.disk);
html += '<tbody>';
for (i = 0; i < diskitems.length; i++) {
html += '<tr>';
html += '<th class="rightCell">'+ diskitems[i]["@attributes"].name + '</th>';
attribitems = items(diskitems[i].attribute);
var valarray = [];
for (j = 0;j < attribitems.length; j++) {
valarray[attribitems[j]["@attributes"].id] = attribitems[j]["@attributes"].raw_value;
}
for (j = 0; j < smartitems.length; j++) {
smartid = smartitems[j]["@attributes"].id;
var itemvalue = valarray[smartid];
if ((itemvalue !== undefined) && (itemvalue !== '' )) {
if (smartid === "194") {
html += '<td class="rightCell">' + formatTemp(itemvalue, data.Options["@attributes"].tempFormat) + '</td>';
} else {
html += '<td class="rightCell">' + itemvalue + '</td>';
}
} else {
html += '<td></td>';
}
}
html += '</tr>';
}
html += '</tbody>';
$('#smart').empty().append(html);
$('#smart').addClass("sortable");
sorttable.makeSortable($('#smart')[0]);
sorttable.innerSortFunction.apply($('#smart_name')[0], []);
$('#block_smart').show();
} else {
$('#block_smart').hide();
}
}
/web/acc/phpsysinfo/plugins/smart/lang/cz.xml
0,0 → 1,94
<?xml version="1.0" encoding="utf-8"?>
<!-- $Id: cz.xml 661 2012-08-27 11:26:39Z namiltd $ -->
<!--
phpSysInfo language file Language: Czech Created by: Tomáš Růžička
-->
<tns:translationPlugin language="czech" charset="utf-8"
xmlns:tns="http://phpsysinfo.sourceforge.net/translation-plugin"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://phpsysinfo.sourceforge.net/translation-plugin ../../../language/translation-plugin.xsd">
<expression id="plugin_smart_001" name="smart_title">
<exp>S.M.A.R.T Informace</exp>
</expression>
<expression id="plugin_smart_002" name="smart_name">
<exp>Název</exp>
</expression>
<expression id="plugin_smart_101" name="smart_raw_read_error_rate">
<exp>Raw Read Error Rate</exp>
</expression>
<expression id="plugin_smart_102" name="smart_throughput_performance">
<exp>Throughput Performance</exp>
</expression>
<expression id="plugin_smart_103" name="smart_spin_up_time">
<exp>Spin Up Time</exp>
</expression>
<expression id="plugin_smart_104" name="smart_start_stop_count">
<exp>Start Stop Count</exp>
</expression>
<expression id="plugin_smart_105" name="smart_reallocated_sector_ct">
<exp>Reallocated Sector Ct</exp>
</expression>
<expression id="plugin_smart_107" name="smart_seek_error_rate">
<exp>Seek Error Rate</exp>
</expression>
<expression id="plugin_smart_108" name="smart_seek_time_performance">
<exp>Seek Time Performance</exp>
</expression>
<expression id="plugin_smart_109" name="smart_power_on_hours">
<exp>Power On Hours</exp>
</expression>
<expression id="plugin_smart_110" name="smart_spin_retry_count">
<exp>Spin Retry Count</exp>
</expression>
<expression id="plugin_smart_111" name="smart_calibration_retry_count">
<exp>Calibration Retry Count</exp>
</expression>
<expression id="plugin_smart_112" name="smart_power_cycle_count">
<exp>Power Cycle Count</exp>
</expression>
<expression id="plugin_smart_290" name="smart_airflow_temperature_cel">
<exp>Airflow Temperature</exp>
</expression>
<expression id="plugin_smart_291" name="smart_g_sense_error_rate">
<exp>G-sense Error Rate</exp>
</expression>
<expression id="plugin_smart_292" name="smart_power_off_retry_count">
<exp>Power-Off Retract Count</exp>
</expression>
<expression id="plugin_smart_293" name="smart_load_cycle_count">
<exp>Load Cycle Count</exp>
</expression>
<expression id="plugin_smart_294" name="smart_temperature">
<exp>Temperature</exp>
</expression>
<expression id="plugin_smart_295" name="smart_hardware_ecc_recovered">
<exp>Hardware ECC Recovered</exp>
</expression>
<expression id="plugin_smart_296" name="smart_reallocated_event_count">
<exp>Reallocated Event Count</exp>
</expression>
<expression id="plugin_smart_297" name="smart_current_pending_sector">
<exp>Current Pending Sector</exp>
</expression>
<expression id="plugin_smart_298" name="smart_offline_uncorrectable">
<exp>Offline Uncorr.</exp>
</expression>
<expression id="plugin_smart_299" name="smart_udma_crc_error_count">
<exp>UDMA CRC Error Count</exp>
</expression>
<expression id="plugin_smart_300" name="smart_multi_zone_error_rate">
<exp>Multi Zone Error Rate</exp>
</expression>
<expression id="plugin_smart_301" name="smart_soft_read_error_rate">
<exp>Soft Read Error Rate</exp>
</expression>
<expression id="plugin_smart_302" name="smart_data_address_mark_errs">
<exp>Data Address Mark Errors</exp>
</expression>
<expression id="plugin_smart_323" name="smart_load_retry_count">
<exp>Load Retry Count</exp>
</expression>
<expression id="plugin_smart_325" name="smart_load_cycle_count_alt">
<exp>Load Cycle Count</exp>
</expression>
</tns:translationPlugin>
/web/acc/phpsysinfo/plugins/smart/lang/en.xml
0,0 → 1,94
<?xml version="1.0" encoding="utf-8"?>
<!-- $Id: en.xml 661 2012-08-27 11:26:39Z namiltd $ -->
<!--
phpSysInfo language file Language: English Created by: Antoine Bertin
-->
<tns:translationPlugin language="english" charset="utf-8"
xmlns:tns="http://phpsysinfo.sourceforge.net/translation-plugin"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://phpsysinfo.sourceforge.net/translation-plugin ../../../language/translation-plugin.xsd">
<expression id="plugin_smart_001" name="smart_title">
<exp>S.M.A.R.T Informations</exp>
</expression>
<expression id="plugin_smart_002" name="smart_name">
<exp>Name</exp>
</expression>
<expression id="plugin_smart_101" name="smart_raw_read_error_rate">
<exp>Raw Read Error Rate</exp>
</expression>
<expression id="plugin_smart_102" name="smart_throughput_performance">
<exp>Throughput Performance</exp>
</expression>
<expression id="plugin_smart_103" name="smart_spin_up_time">
<exp>Spin Up Time</exp>
</expression>
<expression id="plugin_smart_104" name="smart_start_stop_count">
<exp>Start Stop Count</exp>
</expression>
<expression id="plugin_smart_105" name="smart_reallocated_sector_ct">
<exp>Reallocated Sector Ct</exp>
</expression>
<expression id="plugin_smart_107" name="smart_seek_error_rate">
<exp>Seek Error Rate</exp>
</expression>
<expression id="plugin_smart_108" name="smart_seek_time_performance">
<exp>Seek Time Performance</exp>
</expression>
<expression id="plugin_smart_109" name="smart_power_on_hours">
<exp>Power On Hours</exp>
</expression>
<expression id="plugin_smart_110" name="smart_spin_retry_count">
<exp>Spin Retry Count</exp>
</expression>
<expression id="plugin_smart_111" name="smart_calibration_retry_count">
<exp>Calibration Retry Count</exp>
</expression>
<expression id="plugin_smart_112" name="smart_power_cycle_count">
<exp>Power Cycle Count</exp>
</expression>
<expression id="plugin_smart_290" name="smart_airflow_temperature_cel">
<exp>Airflow Temperature</exp>
</expression>
<expression id="plugin_smart_291" name="smart_g_sense_error_rate">
<exp>G-sense Error Rate</exp>
</expression>
<expression id="plugin_smart_292" name="smart_power_off_retry_count">
<exp>Power-Off Retract Count</exp>
</expression>
<expression id="plugin_smart_293" name="smart_load_cycle_count">
<exp>Load Cycle Count</exp>
</expression>
<expression id="plugin_smart_294" name="smart_temperature">
<exp>Temperature</exp>
</expression>
<expression id="plugin_smart_295" name="smart_hardware_ecc_recovered">
<exp>Hardware ECC Recovered</exp>
</expression>
<expression id="plugin_smart_296" name="smart_reallocated_event_count">
<exp>Reallocated Event Count</exp>
</expression>
<expression id="plugin_smart_297" name="smart_current_pending_sector">
<exp>Current Pending Sector</exp>
</expression>
<expression id="plugin_smart_298" name="smart_offline_uncorrectable">
<exp>Offline Uncorr.</exp>
</expression>
<expression id="plugin_smart_299" name="smart_udma_crc_error_count">
<exp>UDMA CRC Error Count</exp>
</expression>
<expression id="plugin_smart_300" name="smart_multi_zone_error_rate">
<exp>Multi Zone Error Rate</exp>
</expression>
<expression id="plugin_smart_301" name="smart_soft_read_error_rate">
<exp>Soft Read Error Rate</exp>
</expression>
<expression id="plugin_smart_302" name="smart_data_address_mark_errs">
<exp>Data Address Mark Errors</exp>
</expression>
<expression id="plugin_smart_323" name="smart_load_retry_count">
<exp>Load Retry Count</exp>
</expression>
<expression id="plugin_smart_325" name="smart_load_cycle_count_alt">
<exp>Load Cycle Count</exp>
</expression>
</tns:translationPlugin>
/web/acc/phpsysinfo/plugins/smart/lang/fr.xml
0,0 → 1,94
<?xml version="1.0" encoding="utf-8"?>
<!-- $Id: fr.xml 661 2012-08-27 11:26:39Z namiltd $ -->
<!--
phpSysInfo language file Language: French Created by: Antoine Bertin
-->
<tns:translationPlugin language="french" charset="utf-8"
xmlns:tns="http://phpsysinfo.sourceforge.net/translation-plugin"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://phpsysinfo.sourceforge.net/translation-plugin ../../../language/translation-plugin.xsd">
<expression id="plugin_smart_001" name="smart_title">
<exp>Informations S.M.A.R.T</exp>
</expression>
<expression id="plugin_smart_002" name="smart_name">
<exp>Nom</exp>
</expression>
<expression id="plugin_smart_101" name="smart_raw_read_error_rate">
<exp>Raw Read Error Rate</exp>
</expression>
<expression id="plugin_smart_102" name="smart_throughput_performance">
<exp>Throughput Performance</exp>
</expression>
<expression id="plugin_smart_103" name="smart_spin_up_time">
<exp>Spin Up Time</exp>
</expression>
<expression id="plugin_smart_104" name="smart_start_stop_count">
<exp>Start Stop Count</exp>
</expression>
<expression id="plugin_smart_105" name="smart_reallocated_sector_ct">
<exp>Reallocated Sector Ct</exp>
</expression>
<expression id="plugin_smart_107" name="smart_seek_error_rate">
<exp>Seek Error Rate</exp>
</expression>
<expression id="plugin_smart_108" name="smart_seek_time_performance">
<exp>Seek Time Performance</exp>
</expression>
<expression id="plugin_smart_109" name="smart_power_on_hours">
<exp>Power On Hours</exp>
</expression>
<expression id="plugin_smart_110" name="smart_spin_retry_count">
<exp>Spin Retry Count</exp>
</expression>
<expression id="plugin_smart_111" name="smart_calibration_retry_count">
<exp>Calibration Retry Count</exp>
</expression>
<expression id="plugin_smart_112" name="smart_power_cycle_count">
<exp>Power Cycle Count</exp>
</expression>
<expression id="plugin_smart_290" name="smart_airflow_temperature_cel">
<exp>Airflow Temperature</exp>
</expression>
<expression id="plugin_smart_291" name="smart_g_sense_error_rate">
<exp>G-sense Error Rate</exp>
</expression>
<expression id="plugin_smart_292" name="smart_power_off_retry_count">
<exp>Power-Off Retract Count</exp>
</expression>
<expression id="plugin_smart_293" name="smart_load_cycle_count">
<exp>Load Cycle Count</exp>
</expression>
<expression id="plugin_smart_294" name="smart_temperature">
<exp>Temperature</exp>
</expression>
<expression id="plugin_smart_295" name="smart_hardware_ecc_recovered">
<exp>Hardware ECC Recovered</exp>
</expression>
<expression id="plugin_smart_296" name="smart_reallocated_event_count">
<exp>Reallocated Event Count</exp>
</expression>
<expression id="plugin_smart_297" name="smart_current_pending_sector">
<exp>Current Pending Sector</exp>
</expression>
<expression id="plugin_smart_298" name="smart_offline_uncorrectable">
<exp>Offline Uncorr.</exp>
</expression>
<expression id="plugin_smart_299" name="smart_udma_crc_error_count">
<exp>UDMA CRC Error Count</exp>
</expression>
<expression id="plugin_smart_300" name="smart_multi_zone_error_rate">
<exp>Multi Zone Error Rate</exp>
</expression>
<expression id="plugin_smart_301" name="smart_soft_read_error_rate">
<exp>Soft Read Error Rate</exp>
</expression>
<expression id="plugin_smart_302" name="smart_data_address_mark_errs">
<exp>Data Address Mark Errors</exp>
</expression>
<expression id="plugin_smart_323" name="smart_load_retry_count">
<exp>Load Retry Count</exp>
</expression>
<expression id="plugin_smart_325" name="smart_load_cycle_count_alt">
<exp>Load Cycle Count</exp>
</expression>
</tns:translationPlugin>
/web/acc/phpsysinfo/plugins/smart/lang/gr.xml
0,0 → 1,94
<?xml version="1.0" encoding="utf-8"?>
<!-- $Id: gr.xml 661 2012-08-27 11:26:39Z namiltd $ -->
<!--
phpSysInfo language file Language: Greek Created by: mojiro
-->
<tns:translationPlugin language="greek" charset="utf-8"
xmlns:tns="http://phpsysinfo.sourceforge.net/translation-plugin"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://phpsysinfo.sourceforge.net/translation-plugin ../../../language/translation-plugin.xsd">
<expression id="plugin_smart_001" name="smart_title">
<exp>Πληροφορίες S.M.A.R.T</exp>
</expression>
<expression id="plugin_smart_002" name="smart_name">
<exp>Συσκευή</exp>
</expression>
<expression id="plugin_smart_101" name="smart_raw_read_error_rate">
<exp>Raw Read Error Rate</exp>
</expression>
<expression id="plugin_smart_102" name="smart_throughput_performance">
<exp>Throughput Performance</exp>
</expression>
<expression id="plugin_smart_103" name="smart_spin_up_time">
<exp>Spin Up Time</exp>
</expression>
<expression id="plugin_smart_104" name="smart_start_stop_count">
<exp>Start Stop Count</exp>
</expression>
<expression id="plugin_smart_105" name="smart_reallocated_sector_ct">
<exp>Ανακτημένοι Τομείς</exp>
</expression>
<expression id="plugin_smart_107" name="smart_seek_error_rate">
<exp>Seek Error Rate</exp>
</expression>
<expression id="plugin_smart_108" name="smart_seek_time_performance">
<exp>Seek Time Performance</exp>
</expression>
<expression id="plugin_smart_109" name="smart_power_on_hours">
<exp>Ώρες λειτουργίας</exp>
</expression>
<expression id="plugin_smart_110" name="smart_spin_retry_count">
<exp>Spin Retry Count</exp>
</expression>
<expression id="plugin_smart_111" name="smart_calibration_retry_count">
<exp>Calibration Retry Count</exp>
</expression>
<expression id="plugin_smart_112" name="smart_power_cycle_count">
<exp>Power Cycle Count</exp>
</expression>
<expression id="plugin_smart_290" name="smart_airflow_temperature_cel">
<exp>Θερμοκρασία Αέρος</exp>
</expression>
<expression id="plugin_smart_291" name="smart_g_sense_error_rate">
<exp>G-sense Error Rate</exp>
</expression>
<expression id="plugin_smart_292" name="smart_power_off_retry_count">
<exp>Power-Off Retract Count</exp>
</expression>
<expression id="plugin_smart_293" name="smart_load_cycle_count">
<exp>Load Cycle Count</exp>
</expression>
<expression id="plugin_smart_294" name="smart_temperature">
<exp>Θερμοκρασία</exp>
</expression>
<expression id="plugin_smart_295" name="smart_hardware_ecc_recovered">
<exp>Hardware ECC Recovered</exp>
</expression>
<expression id="plugin_smart_296" name="smart_reallocated_event_count">
<exp>Reallocated Event Count</exp>
</expression>
<expression id="plugin_smart_297" name="smart_current_pending_sector">
<exp>Current Pending Sector</exp>
</expression>
<expression id="plugin_smart_298" name="smart_offline_uncorrectable">
<exp>Offline Uncorr.</exp>
</expression>
<expression id="plugin_smart_299" name="smart_udma_crc_error_count">
<exp>UDMA CRC Error Count</exp>
</expression>
<expression id="plugin_smart_300" name="smart_multi_zone_error_rate">
<exp>Multi Zone Error Rate</exp>
</expression>
<expression id="plugin_smart_301" name="smart_soft_read_error_rate">
<exp>Soft Read Error Rate</exp>
</expression>
<expression id="plugin_smart_302" name="smart_data_address_mark_errs">
<exp>Data Address Mark Errors</exp>
</expression>
<expression id="plugin_smart_323" name="smart_load_retry_count">
<exp>Load Retry Count</exp>
</expression>
<expression id="plugin_smart_325" name="smart_load_cycle_count_alt">
<exp>Load Cycle Count</exp>
</expression>
</tns:translationPlugin>
/web/acc/phpsysinfo/plugins/smart/lang/pl.xml
0,0 → 1,94
<?xml version="1.0" encoding="utf-8"?>
<!-- $Id: pl.xml 661 2012-08-27 11:26:39Z namiltd $ -->
<!--
phpSysInfo language file Language: Polish Created by: Mieczyslaw Nalewaj
-->
<tns:translationPlugin language="polish" charset="utf-8"
xmlns:tns="http://phpsysinfo.sourceforge.net/translation-plugin"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://phpsysinfo.sourceforge.net/translation-plugin ../../../language/translation-plugin.xsd">
<expression id="plugin_smart_001" name="smart_title">
<exp>Informacje S.M.A.R.T</exp>
</expression>
<expression id="plugin_smart_002" name="smart_name">
<exp>Nazwa</exp>
</expression>
<expression id="plugin_smart_101" name="smart_raw_read_error_rate">
<exp>Raw Read Error Rate</exp>
</expression>
<expression id="plugin_smart_102" name="smart_throughput_performance">
<exp>Throughput Performance</exp>
</expression>
<expression id="plugin_smart_103" name="smart_spin_up_time">
<exp>Spin Up Time</exp>
</expression>
<expression id="plugin_smart_104" name="smart_start_stop_count">
<exp>Start Stop Count</exp>
</expression>
<expression id="plugin_smart_105" name="smart_reallocated_sector_ct">
<exp>Reallocated Sector Ct</exp>
</expression>
<expression id="plugin_smart_107" name="smart_seek_error_rate">
<exp>Seek Error Rate</exp>
</expression>
<expression id="plugin_smart_108" name="smart_seek_time_performance">
<exp>Seek Time Performance</exp>
</expression>
<expression id="plugin_smart_109" name="smart_power_on_hours">
<exp>Power On Hours</exp>
</expression>
<expression id="plugin_smart_110" name="smart_spin_retry_count">
<exp>Spin Retry Count</exp>
</expression>
<expression id="plugin_smart_111" name="smart_calibration_retry_count">
<exp>Calibration Retry Count</exp>
</expression>
<expression id="plugin_smart_112" name="smart_power_cycle_count">
<exp>Power Cycle Count</exp>
</expression>
<expression id="plugin_smart_290" name="smart_airflow_temperature_cel">
<exp>Airflow Temperature</exp>
</expression>
<expression id="plugin_smart_291" name="smart_g_sense_error_rate">
<exp>G-sense Error Rate</exp>
</expression>
<expression id="plugin_smart_292" name="smart_power_off_retry_count">
<exp>Power-Off Retract Count</exp>
</expression>
<expression id="plugin_smart_293" name="smart_load_cycle_count">
<exp>Load Cycle Count</exp>
</expression>
<expression id="plugin_smart_294" name="smart_temperature">
<exp>Temperature</exp>
</expression>
<expression id="plugin_smart_295" name="smart_hardware_ecc_recovered">
<exp>Hardware ECC Recovered</exp>
</expression>
<expression id="plugin_smart_296" name="smart_reallocated_event_count">
<exp>Reallocated Event Count</exp>
</expression>
<expression id="plugin_smart_297" name="smart_current_pending_sector">
<exp>Current Pending Sector</exp>
</expression>
<expression id="plugin_smart_298" name="smart_offline_uncorrectable">
<exp>Offline Uncorr.</exp>
</expression>
<expression id="plugin_smart_299" name="smart_udma_crc_error_count">
<exp>UDMA CRC Error Count</exp>
</expression>
<expression id="plugin_smart_300" name="smart_multi_zone_error_rate">
<exp>Multi Zone Error Rate</exp>
</expression>
<expression id="plugin_smart_301" name="smart_soft_read_error_rate">
<exp>Soft Read Error Rate</exp>
</expression>
<expression id="plugin_smart_302" name="smart_data_address_mark_errs">
<exp>Data Address Mark Errors</exp>
</expression>
<expression id="plugin_smart_323" name="smart_load_retry_count">
<exp>Load Retry Count</exp>
</expression>
<expression id="plugin_smart_325" name="smart_load_cycle_count_alt">
<exp>Load Cycle Count</exp>
</expression>
</tns:translationPlugin>
/web/acc/phpsysinfo/plugins/smart/lang/ro.xml
0,0 → 1,94
<?xml version="1.0" encoding="utf-8"?>
<!-- $Id: ro.xml 661 2014-05-02 11:26:39Z namiltd $ -->
<!--
phpSysInfo language file Language: Romană Created by: Iulian Alexe
-->
<tns:translationPlugin language="romana" charset="utf-8"
xmlns:tns="http://phpsysinfo.sourceforge.net/translation-plugin"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://phpsysinfo.sourceforge.net/translation-plugin ../../../language/translation-plugin.xsd">
<expression id="plugin_smart_001" name="smart_title">
<exp>Informații S.M.A.R.T</exp>
</expression>
<expression id="plugin_smart_002" name="smart_name">
<exp>Nume</exp>
</expression>
<expression id="plugin_smart_101" name="smart_raw_read_error_rate">
<exp>Raw Read Error Rate</exp>
</expression>
<expression id="plugin_smart_102" name="smart_throughput_performance">
<exp>Throughput Performance</exp>
</expression>
<expression id="plugin_smart_103" name="smart_spin_up_time">
<exp>Spin Up Time</exp>
</expression>
<expression id="plugin_smart_104" name="smart_start_stop_count">
<exp>Start Stop Count</exp>
</expression>
<expression id="plugin_smart_105" name="smart_reallocated_sector_ct">
<exp>Reallocated Sector Ct</exp>
</expression>
<expression id="plugin_smart_107" name="smart_seek_error_rate">
<exp>Seek Error Rate</exp>
</expression>
<expression id="plugin_smart_108" name="smart_seek_time_performance">
<exp>Seek Time Performance</exp>
</expression>
<expression id="plugin_smart_109" name="smart_power_on_hours">
<exp>Power On Hours</exp>
</expression>
<expression id="plugin_smart_110" name="smart_spin_retry_count">
<exp>Spin Retry Count</exp>
</expression>
<expression id="plugin_smart_111" name="smart_calibration_retry_count">
<exp>Calibration Retry Count</exp>
</expression>
<expression id="plugin_smart_112" name="smart_power_cycle_count">
<exp>Power Cycle Count</exp>
</expression>
<expression id="plugin_smart_290" name="smart_airflow_temperature_cel">
<exp>Airflow Temperature</exp>
</expression>
<expression id="plugin_smart_291" name="smart_g_sense_error_rate">
<exp>G-sense Error Rate</exp>
</expression>
<expression id="plugin_smart_292" name="smart_power_off_retry_count">
<exp>Power-Off Retract Count</exp>
</expression>
<expression id="plugin_smart_293" name="smart_load_cycle_count">
<exp>Load Cycle Count</exp>
</expression>
<expression id="plugin_smart_294" name="smart_temperature">
<exp>Temperature</exp>
</expression>
<expression id="plugin_smart_295" name="smart_hardware_ecc_recovered">
<exp>Hardware ECC Recovered</exp>
</expression>
<expression id="plugin_smart_296" name="smart_reallocated_event_count">
<exp>Reallocated Event Count</exp>
</expression>
<expression id="plugin_smart_297" name="smart_current_pending_sector">
<exp>Current Pending Sector</exp>
</expression>
<expression id="plugin_smart_298" name="smart_offline_uncorrectable">
<exp>Offline Uncorr.</exp>
</expression>
<expression id="plugin_smart_299" name="smart_udma_crc_error_count">
<exp>UDMA CRC Error Count</exp>
</expression>
<expression id="plugin_smart_300" name="smart_multi_zone_error_rate">
<exp>Multi Zone Error Rate</exp>
</expression>
<expression id="plugin_smart_301" name="smart_soft_read_error_rate">
<exp>Soft Read Error Rate</exp>
</expression>
<expression id="plugin_smart_302" name="smart_data_address_mark_errs">
<exp>Data Address Mark Errors</exp>
</expression>
<expression id="plugin_smart_323" name="smart_load_retry_count">
<exp>Load Retry Count</exp>
</expression>
<expression id="plugin_smart_325" name="smart_load_cycle_count_alt">
<exp>Load Cycle Count</exp>
</expression>
</tns:translationPlugin>