1 |
root |
1 |
<?php
|
|
|
2 |
//
|
|
|
3 |
// phpSysInfo - A PHP System Information Script
|
|
|
4 |
// http://phpsysinfo.sourceforge.net/
|
|
|
5 |
//
|
|
|
6 |
// This program is free software; you can redistribute it and/or
|
|
|
7 |
// modify it under the terms of the GNU General Public License
|
|
|
8 |
// as published by the Free Software Foundation; either version 2
|
|
|
9 |
// of the License, or (at your option) any later version.
|
|
|
10 |
//
|
|
|
11 |
// This program is distributed in the hope that it will be useful,
|
|
|
12 |
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
13 |
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
14 |
// GNU General Public License for more details.
|
|
|
15 |
//
|
|
|
16 |
// You should have received a copy of the GNU General Public License
|
|
|
17 |
// along with this program; if not, write to the Free Software
|
|
|
18 |
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
19 |
//
|
|
|
20 |
// $Id: et.php,v 1.21 2007/02/18 19:11:31 bigmichi1 Exp $
|
|
|
21 |
|
|
|
22 |
$text['title'] = 'Süsteemi informatsioon';
|
|
|
23 |
|
|
|
24 |
$text['vitals'] = 'System Vital';
|
|
|
25 |
$text['hostname'] = 'Kanooniline masinanimi';
|
|
|
26 |
$text['ip'] = 'Vastav IP';
|
|
|
27 |
$text['kversion'] = 'Kerneli versioon';
|
|
|
28 |
$text['dversion'] = 'Distro nimi';
|
|
|
29 |
$text['uptime'] = 'Masin elus juba';
|
|
|
30 |
$text['users'] = 'Hetkel kasutajaid';
|
|
|
31 |
$text['loadavg'] = 'Koormuse keskmised';
|
|
|
32 |
|
|
|
33 |
$text['hardware'] = 'Riistvara informatsioon';
|
|
|
34 |
$text['numcpu'] = 'Protsessoreid';
|
|
|
35 |
$text['cpumodel'] = 'Mudel';
|
|
|
36 |
$text['cpuspeed'] = 'Taktsagedus MHz';
|
|
|
37 |
$text['busspeed'] = 'Siinikiirus';
|
|
|
38 |
$text['cache'] = 'Vahemälu suurus';
|
|
|
39 |
$text['bogomips'] = 'Süsteemi BogoMIPS';
|
|
|
40 |
|
|
|
41 |
$text['pci'] = 'PCI-seadmed';
|
|
|
42 |
$text['ide'] = 'IDE-seadmed';
|
|
|
43 |
$text['scsi'] = 'SCSI-seadmed';
|
|
|
44 |
$text['usb'] = 'USB-seadmed';
|
|
|
45 |
|
|
|
46 |
$text['netusage'] = 'Võrguteenuse kasutamine';
|
|
|
47 |
$text['device'] = 'Seade';
|
|
|
48 |
$text['received'] = 'Saadud';
|
|
|
49 |
$text['sent'] = 'Saadetud';
|
|
|
50 |
$text['errors'] = 'Vigu/Hüljatud';
|
|
|
51 |
|
|
|
52 |
$text['memusage'] = 'Mälu kasutamine';
|
|
|
53 |
$text['phymem'] = 'Füüsiline mälu';
|
|
|
54 |
$text['swap'] = 'Saalemälu kettal';
|
|
|
55 |
|
|
|
56 |
$text['fs'] = 'Ühendatud failisüsteemid';
|
|
|
57 |
$text['mount'] = 'Ühendus';
|
|
|
58 |
$text['partition'] = 'Partitsioon';
|
|
|
59 |
|
|
|
60 |
$text['percent'] = 'Protsendiline hõivatus';
|
|
|
61 |
$text['type'] = 'Tüüp';
|
|
|
62 |
$text['free'] = 'Vaba';
|
|
|
63 |
$text['used'] = 'Kasutusel';
|
|
|
64 |
$text['size'] = 'Suurus';
|
|
|
65 |
$text['totals'] = 'Kokku';
|
|
|
66 |
|
|
|
67 |
$text['kb'] = 'KB';
|
|
|
68 |
$text['mb'] = 'MB';
|
|
|
69 |
$text['gb'] = 'GB';
|
|
|
70 |
|
|
|
71 |
$text['none'] = 'puudub';
|
|
|
72 |
|
|
|
73 |
$text['capacity'] = 'Hõivatus';
|
|
|
74 |
|
|
|
75 |
$text['template'] = 'Mall';
|
|
|
76 |
$text['language'] = 'Keel';
|
|
|
77 |
$text['submit'] = 'Kehtesta';
|
|
|
78 |
$text['created'] = 'Looja:';
|
|
|
79 |
$text['locale'] = 'en_US';
|
|
|
80 |
$text['gen_time'] = 'on %b %d, %Y at %I:%M %p';
|
|
|
81 |
|
|
|
82 |
$text['days'] = 'päeva';
|
|
|
83 |
$text['hours'] = 'tundi';
|
|
|
84 |
$text['minutes'] = 'minutit';
|
|
|
85 |
|
|
|
86 |
$text['temperature'] = 'Temperatuur';
|
|
|
87 |
$text['voltage'] = 'Pinge';
|
|
|
88 |
$text['fans'] = 'Ventilaatorid';
|
|
|
89 |
$text['s_value'] = 'Väärtus';
|
|
|
90 |
$text['s_min'] = 'Min';
|
|
|
91 |
$text['s_max'] = 'Max';
|
|
|
92 |
$text['hysteresis'] = 'Hüsterees';
|
|
|
93 |
$text['s_limit'] = 'Limiit';
|
|
|
94 |
$text['s_label'] = 'Label';
|
|
|
95 |
$text['degreeC'] = '°C';
|
|
|
96 |
$text['degreeF'] = '°F';
|
|
|
97 |
$text['voltage_mark'] = 'V';
|
|
|
98 |
$text['rpm_mark'] = 'RPM';
|
|
|
99 |
|
|
|
100 |
$text['app'] = 'Kernel + rakendused';
|
|
|
101 |
$text['buffers'] = 'Puhvrid';
|
|
|
102 |
$text['cached'] = 'Vahemälus';
|
|
|
103 |
|
|
|
104 |
$text['connections'] = 'Established Network Connections';
|
|
|
105 |
?>
|