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: nl.php,v 1.23 2007/02/18 19:11:31 bigmichi1 Exp $
21
 
22
if (PHP_OS == 'WINNT') {
23
  $text['locale']         = 'dutch'; // (windows) 
24
}
25
else {	
26
  $text['locale']         = 'nl-NL'; // (Linux and friends(?))
27
}
28
 
29
$text['title']          = 'Systeem Informatie';
30
 
31
$text['vitals']         = 'Systeem overzicht';
32
$text['hostname']       = 'Toegewezen naam';
33
$text['ip']             = 'IP-adres';
34
$text['kversion']       = 'Kernelversie';
35
$text['dversion']       = 'Distributie';
36
$text['uptime']         = 'Uptime';
37
$text['users']          = 'Huidige gebruikers';
38
$text['loadavg']        = 'Gemiddelde belasting';
39
 
40
$text['hardware']       = 'Hardware overzicht';
41
$text['numcpu']         = 'Processors';
42
$text['cpumodel']       = 'Model';
43
$text['cpuspeed']       = 'CPU snelheid';
44
$text['busspeed']       = 'BUS snelheid';
45
$text['cache']          = 'Cache grootte';
46
$text['bogomips']       = 'Systeem Bogomips';
47
 
48
$text['pci']            = 'PCI Apparaten';
49
$text['ide']            = 'IDE Apparaten';
50
$text['scsi']           = 'SCSI Apparaten';
51
$text['usb']            = 'USB Apparaten';
52
 
53
$text['netusage']       = 'Netwerkgebruik';
54
$text['device']         = 'Apparaat';
55
$text['received']       = 'Ontvangen';
56
$text['sent']           = 'Verzonden';
57
$text['errors']         = 'Err/Drop';
58
 
59
$text['memusage']       = 'Geheugengebruik';
60
$text['phymem']         = 'Fysiek geheugen';
61
$text['swap']           = 'Swap geheugen';
62
 
63
$text['fs']             = 'Aangesloten bestandssystemen';
64
$text['mount']          = 'Mount';
65
$text['partition']      = 'Partitie';
66
 
67
$text['percent']        = 'Percentage gebruikt';
68
$text['type']           = 'Type';
69
$text['free']           = 'Vrij';
70
$text['used']           = 'Gebruikt';
71
$text['size']           = 'Grootte';
72
$text['totals']         = 'Totaal';
73
 
74
$text['kb']             = 'KB';
75
$text['mb']             = 'MB';
76
$text['gb']             = 'GB';
77
 
78
$text['none']           = 'geen';
79
 
80
$text['capacity']       = 'Capaciteit';
81
 
82
$text['template']       = 'Opmaak-model';
83
$text['language']       = 'Taal';
84
$text['submit']         = 'Toepassen';
85
$text['created']        = 'Gegenereerd door';
86
$text['gen_time']       = 'op %d %B %Y, om %H:%M';
87
 
88
$text['days']           = 'dagen';
89
$text['hours']          = 'uren';
90
$text['minutes']        = 'minuten';
91
 
92
$text['temperature']    = 'Temperatuur';
93
$text['voltage']        = 'Voltage';
94
$text['fans']           = 'Fans';
95
$text['s_value']        = 'Waarde';
96
$text['s_min']          = 'Min';
97
$text['s_max']          = 'Max';
98
$text['hysteresis']     = 'Hysterie';
99
$text['s_limit']        = 'Limiet';
100
$text['s_label']        = 'Omschrijving';
101
$text['degreeC']        = '&deg;C';
102
$text['degreeF']        = '&deg;F';
103
$text['voltage_mark']   = 'V';
104
$text['rpm_mark']       = 'RPM';
105
 
106
$text['app']		= 'Kernel + applications';
107
$text['buffers']	= 'Buffers';
108
$text['cached']		= 'Cached';
109
 
110
$text['connections']    = 'Established Network Connections';
111
?>