105 lines
3.4 KiB
PHP
105 lines
3.4 KiB
PHP
<?php
|
|
//
|
|
// 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: is.php,v 1.14 2005/12/31 17:25:02 bigmichi1 Exp $
|
|
|
|
$text['title'] = 'Kerfisupplýsingar';
|
|
|
|
$text['vitals'] = 'Helstu upplýsingar';
|
|
$text['hostname'] = 'Vélarnafn';
|
|
$text['ip'] = 'IP-tala';
|
|
$text['kversion'] = 'Útgáfa kjarna';
|
|
$text['dversion'] = 'Nafn dreifingar';
|
|
$text['uptime'] = 'Uppitími';
|
|
$text['users'] = 'Notendur';
|
|
$text['loadavg'] = 'Meðalálag';
|
|
|
|
$text['hardware'] = 'Upplýsingar um vélbúnað';
|
|
$text['numcpu'] = 'Fjöldi örgjörva';
|
|
$text['cpumodel'] = 'Tegund';
|
|
$text['cpuspeed'] = 'Hraði';
|
|
$text['busspeed'] = 'BUS Speed';
|
|
$text['cache'] = 'Stærð flýtiminnis';
|
|
$text['bogomips'] = 'Bogomips';
|
|
|
|
$text['pci'] = 'PCI jaðartæki';
|
|
$text['ide'] = 'IDE jaðartæki';
|
|
$text['scsi'] = 'SCSI jaðartæki';
|
|
$text['usb'] = 'USB jaðartæki';
|
|
|
|
$text['netusage'] = 'Netnotkun';
|
|
$text['device'] = 'Jaðartæki';
|
|
$text['received'] = 'Móttekið';
|
|
$text['sent'] = 'Sent';
|
|
$text['errors'] = 'Villur/Hent';
|
|
|
|
$text['memusage'] = 'Minnisnotkun';
|
|
$text['phymem'] = 'Vinnsluminni';
|
|
$text['swap'] = 'Sýndarminni';
|
|
|
|
$text['fs'] = 'Tengd skráarkerfi';
|
|
$text['mount'] = 'Tengipunktur';
|
|
$text['partition'] = 'Disksneið';
|
|
|
|
$text['percent'] = 'Hlutfall af heildarstærð';
|
|
$text['type'] = 'Tegund';
|
|
$text['free'] = 'Laust';
|
|
$text['used'] = 'Notað';
|
|
$text['size'] = 'Stærð';
|
|
$text['totals'] = 'Samtals';
|
|
|
|
$text['kb'] = 'KB';
|
|
$text['mb'] = 'MB';
|
|
$text['gb'] = 'GB';
|
|
|
|
$text['none'] = 'ekkert';
|
|
|
|
$text['capacity'] = 'Heildarstærð';
|
|
|
|
$text['template'] = 'Sniðmát';
|
|
$text['language'] = 'Tungumál';
|
|
$text['submit'] = 'Senda';
|
|
$text['created'] = 'Búið til af';
|
|
$text['locale'] = 'is_IS';
|
|
$text['gen_time'] = 'þann %d.%m.%Y kl. %H:%M';
|
|
|
|
$text['days'] = 'dagar';
|
|
$text['hours'] = 'klukkustundir';
|
|
$text['minutes'] = 'mínútur';
|
|
|
|
$text['temperature'] = 'Hitastig';
|
|
$text['voltage'] = 'Volt';
|
|
$text['fans'] = 'Viftur';
|
|
$text['s_value'] = 'Gildi';
|
|
$text['s_min'] = 'Lægst';
|
|
$text['s_max'] = 'Hæst';
|
|
$text['s_div'] = 'Deilir';
|
|
$text['hysteresis'] = 'Aðvörun lýkur';
|
|
$text['s_limit'] = 'Aðvörun byrjar';
|
|
$text['s_label'] = 'Nafn mælis';
|
|
$text['degree_mark'] = 'ºC';
|
|
$text['voltage_mark'] = 'V';
|
|
$text['rpm_mark'] = 'RPM';
|
|
|
|
$text['app'] = 'Kernel + applications';
|
|
$text['buffers'] = 'Buffers';
|
|
$text['cached'] = 'Cached';
|
|
|
|
?>
|