325 |
richard |
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: sr.php,v 1.8 2007/02/18 19:11:31 bigmichi1 Exp $
|
|
|
21 |
|
|
|
22 |
$charset = 'utf-8';
|
|
|
23 |
|
|
|
24 |
$text['title'] = 'Спецификација Система ';
|
|
|
25 |
|
|
|
26 |
$text['vitals'] = 'Систем';
|
|
|
27 |
$text['hostname'] = 'Име домаћина';
|
|
|
28 |
$text['ip'] = 'ИП адреса';
|
|
|
29 |
$text['kversion'] = 'Верзија кернела';
|
|
|
30 |
$text['dversion'] = 'Дицтрибуција';
|
|
|
31 |
$text['uptime'] = 'Радно време';
|
|
|
32 |
$text['users'] = 'Број корисника';
|
|
|
33 |
$text['loadavg'] = 'Просечно оптерећење';
|
|
|
34 |
|
|
|
35 |
$text['hardware'] = 'Хардверске компоненте';
|
|
|
36 |
$text['numcpu'] = 'Процесор';
|
|
|
37 |
$text['cpumodel'] = 'Moдел';
|
|
|
38 |
$text['cpuspeed'] = 'CPU Speed';
|
|
|
39 |
$text['busspeed'] = 'BUS Speed';
|
|
|
40 |
$text['cache'] = 'Величина предмеморије';
|
|
|
41 |
$text['bogomips'] = 'Богомипс';
|
|
|
42 |
$text['usb'] = 'УСБ уређаји';
|
|
|
43 |
$text['pci'] = 'ПЦИ уређаји';
|
|
|
44 |
$text['ide'] = 'ИДЕ уређаји';
|
|
|
45 |
$text['scsi'] = 'СЦСИ уређаји';
|
|
|
46 |
|
|
|
47 |
$text['netusage'] = 'Мрежна Употреба';
|
|
|
48 |
$text['device'] = 'Уређај';
|
|
|
49 |
$text['received'] = 'Примљено';
|
|
|
50 |
$text['sent'] = 'Послато';
|
|
|
51 |
$text['errors'] = 'Грешке';
|
|
|
52 |
|
|
|
53 |
$text['connections'] = 'Успостављене конекције';
|
|
|
54 |
|
|
|
55 |
$text['memusage'] = 'Употреба меморије';
|
|
|
56 |
$text['phymem'] = 'Тврда memorija';
|
|
|
57 |
$text['swap'] = 'СВАП меморија';
|
|
|
58 |
|
|
|
59 |
$text['fs'] = 'Монтирани фајл системи';
|
|
|
60 |
$text['mount'] = 'Монтирани';
|
|
|
61 |
$text['partition'] = 'Партиција';
|
|
|
62 |
|
|
|
63 |
$text['percent'] = 'Проценти';
|
|
|
64 |
$text['type'] = 'Врста';
|
|
|
65 |
$text['free'] = 'Слободно';
|
|
|
66 |
$text['used'] = 'Искоришћено';
|
|
|
67 |
$text['size'] = 'Величина';
|
|
|
68 |
$text['totals'] = 'Укупно';
|
|
|
69 |
|
|
|
70 |
$text['kb'] = 'KB';
|
|
|
71 |
$text['mb'] = 'MB';
|
|
|
72 |
$text['gb'] = 'GB';
|
|
|
73 |
|
|
|
74 |
$text['none'] = 'ezer ez';
|
|
|
75 |
|
|
|
76 |
$text['capacity'] = 'Капацитет';
|
|
|
77 |
|
|
|
78 |
$text['template'] = 'Tемплат';
|
|
|
79 |
$text['language'] = 'Језик';
|
|
|
80 |
$text['submit'] = 'Пошаљи';
|
|
|
81 |
$text['created'] = 'Креирано: ';
|
|
|
82 |
$text['locale'] = 'ср';
|
|
|
83 |
$text['gen_time'] = 'on %b %d, %Y at %I:%M %p';
|
|
|
84 |
|
|
|
85 |
$text['days'] = 'Дани';
|
|
|
86 |
$text['hours'] = 'Сати';
|
|
|
87 |
$text['minutes'] = 'Минути';
|
|
|
88 |
|
|
|
89 |
$text['temperature'] = 'Температура';
|
|
|
90 |
$text['voltage'] = 'Напајање';
|
|
|
91 |
$text['fans'] = 'Вентилатори';
|
|
|
92 |
$text['s_value'] = 'Снага';
|
|
|
93 |
$text['s_min'] = 'Мин';
|
|
|
94 |
$text['s_max'] = 'Mах';
|
|
|
95 |
$text['hysteresis'] = 'Аларм';
|
|
|
96 |
$text['s_limit'] = 'Лимит';
|
|
|
97 |
$text['s_label'] = 'Име';
|
|
|
98 |
$text['degreeC'] = '°C';
|
|
|
99 |
$text['degreeF'] = '°F';
|
|
|
100 |
$text['voltage_mark'] = 'V';
|
|
|
101 |
$text['rpm_mark'] = 'RPM';
|
|
|
102 |
|
|
|
103 |
$text['app'] = 'Kernel + applications';
|
|
|
104 |
$text['buffers'] = 'Buffers';
|
|
|
105 |
$text['cached'] = 'Cached';
|
|
|
106 |
|
|
|
107 |
?>
|