Subversion Repositories ALCASAR

Rev

Go to most recent revision | Details | Last modification | View Log

Rev Author Line No. Line
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: ca.php,v 1.17 2007/02/18 19:11:31 bigmichi1 Exp $
21
//
22
// Traductor: Miquel Guillamet Montalat
23
// E-mail: mikelet15@netscape.com Web: http://gitx.dhs.org
24
//
25
$text['title']       = 'Informació del Sistema';
26
 
27
$text['vitals']      = 'Vital';
28
$text['hostname']    = 'Nom del Sistema';
29
$text['ip']          = 'Direcció IP';
30
$text['kversion']    = 'Versió del Kernel';
31
$text['dversion']       = 'Distro Name';
32
$text['uptime']      = 'Uptime';
33
$text['users']       = 'Usuaris actuals';
34
$text['loadavg']     = 'Carrega del Servidor';
35
 
36
$text['hardware']    = 'Informació del Hardware';
37
$text['numcpu']      = 'Processadors';
38
$text['cpumodel']    = 'Model';
39
$text['cpuspeed']    = 'Frequència en MHz';
40
$text['busspeed']    = 'BUS Speed';
41
$text['cache']       = 'RAM';
42
$text['bogomips']    = 'Bogomips';
43
 
44
$text['pci']         = 'Dispositius PCI';
45
$text['ide']         = 'Dispositius IDE';
46
$text['scsi']        = 'Dispositius SCSI';
47
$text['usb']         = 'Dispisitius USB';
48
 
49
$text['netusage']    = 'Utilització de la XARXA';
50
$text['device']      = 'Dispositiu';
51
$text['received']    = 'Rebut';
52
$text['sent']        = 'Enviat';
53
$text['errors']      = 'Errors/Perduts';
54
 
55
$text['memusage']    = 'Utilització de la RAM';
56
$text['phymem']      = 'Memoria Fisica';
57
$text['swap']        = 'Swap';
58
 
59
$text['fs']          = 'Particions Montades';
60
$text['mount']       = 'Montat a';
61
$text['partition']   = 'Partició';
62
 
63
$text['percent']     = 'Capacitat';
64
$text['type']        = 'Tipus';
65
$text['free']        = 'Lliure';
66
$text['used']        = 'Usat';
67
$text['size']        = 'Tamany';
68
$text['totals']      = 'Totals';
69
 
70
$text['kb']          = 'KB';
71
$text['mb']          = 'MB';
72
$text['gb']          = 'GB';
73
 
74
$text['none']        = 'ningun';
75
 
76
$text['capacity']    = 'Capacitat';
77
 
78
$text['template']    = 'Themes';
79
$text['language']    = 'Llenguatge';
80
$text['submit']      = 'Enviar';
81
$text['created']     = 'Creat per';
82
$text['locale']         = 'en_US';
83
$text['gen_time']       = 'on %b %d, %Y at %I:%M %p';
84
 
85
$text['days']        = 'dies';
86
$text['hours']       = 'hores';
87
$text['minutes']     = 'minuts';
88
 
89
$text['temperature']    = 'Temperature';
90
$text['voltage']        = 'Voltage';
91
$text['fans']           = 'Fans';
92
$text['s_value']        = 'Value';
93
$text['s_min']          = 'Min';
94
$text['s_max']          = 'Max';
95
$text['hysteresis']     = 'Hysteresis';
96
$text['s_limit']        = 'Limit';
97
$text['s_label']        = 'Label';
98
$text['degreeC']        = '&deg;C';
99
$text['degreeF']        = '&deg;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
$text['connections']	= 'Established Network Connections';
108
?>