103 lines
3.6 KiB
PHP
103 lines
3.6 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: fr.php,v 1.21 2006/02/11 11:20:51 bigmichi1 Exp $
|
||
|
|
||
|
$text['title'] = 'Informations Système ';
|
||
|
|
||
|
$text['vitals'] = 'Système';
|
||
|
$text['hostname'] = 'Nom d\'hôte cannonique';
|
||
|
$text['ip'] = 'IP';
|
||
|
$text['kversion'] = 'Version du noyau';
|
||
|
$text['dversion'] = 'Distribution';
|
||
|
$text['uptime'] = 'Uptime';
|
||
|
$text['users'] = 'Utilisateurs';
|
||
|
$text['loadavg'] = 'Charge système';
|
||
|
|
||
|
$text['hardware'] = 'Informations Matériel';
|
||
|
$text['numcpu'] = 'Processeurs';
|
||
|
$text['cpumodel'] = 'Modèle';
|
||
|
$text['mhz'] = 'Fréquence';
|
||
|
$text['cache'] = 'Taille Cache';
|
||
|
$text['bogomips'] = 'Bogomips';
|
||
|
$text['usb'] = 'Périph. USB';
|
||
|
$text['pci'] = 'Périph. PCI';
|
||
|
$text['ide'] = 'Périph. IDE';
|
||
|
$text['scsi'] = 'Périph. SCSI';
|
||
|
|
||
|
$text['netusage'] = 'Réseau';
|
||
|
$text['device'] = 'Périphérique';
|
||
|
$text['received'] = 'Réception';
|
||
|
$text['sent'] = 'Envoi';
|
||
|
$text['errors'] = 'Err/Drop';
|
||
|
|
||
|
$text['memusage'] = 'Utilisation mémoire';
|
||
|
$text['phymem'] = 'Mémoire Physique';
|
||
|
$text['swap'] = 'Swap disque';
|
||
|
|
||
|
$text['fs'] = 'Systèmes de fichiers montés';
|
||
|
$text['mount'] = 'Point';
|
||
|
$text['partition'] = 'Partition';
|
||
|
|
||
|
$text['percent'] = 'Utilisation';
|
||
|
$text['type'] = 'Type';
|
||
|
$text['free'] = 'Libre';
|
||
|
$text['used'] = 'Occupé';
|
||
|
$text['size'] = 'Taille';
|
||
|
$text['totals'] = 'Totaux';
|
||
|
|
||
|
$text['kb'] = 'Ko';
|
||
|
$text['mb'] = 'Mo';
|
||
|
$text['gb'] = 'Go';
|
||
|
|
||
|
$text['none'] = 'aucun';
|
||
|
|
||
|
$text['capacity'] = 'Capacité';
|
||
|
|
||
|
$text['template'] = 'Modèle ';
|
||
|
$text['language'] = 'Langue ';
|
||
|
$text['submit'] = 'Valider';
|
||
|
$text['created'] = 'Créé par';
|
||
|
$text['locale'] = 'fr_FR';
|
||
|
$text['gen_time'] = 'on %b %d, %Y at %I:%M %p';
|
||
|
|
||
|
$text['days'] = 'jours';
|
||
|
$text['hours'] = 'heures';
|
||
|
$text['minutes'] = 'minutes';
|
||
|
|
||
|
$text['temperature'] = 'Température';
|
||
|
$text['voltage'] = 'Voltage';
|
||
|
$text['fans'] = 'Ventilateurs';
|
||
|
$text['s_value'] = 'valeur';
|
||
|
$text['s_min'] = 'Min';
|
||
|
$text['s_max'] = 'Max';
|
||
|
$text['s_div'] = 'Div';
|
||
|
$text['hysteresis'] = 'Hystérésis';
|
||
|
$text['s_limit'] = 'Limite';
|
||
|
$text['s_label'] = 'Label';
|
||
|
$text['degree_mark'] = 'ºC';
|
||
|
$text['voltage_mark'] = 'V';
|
||
|
$text['rpm_mark'] = 'RPM';
|
||
|
|
||
|
$text['app'] = '- Kernel + applications';
|
||
|
$text['buffers'] = '- Buffers';
|
||
|
$text['cached'] = '- Cached';
|
||
|
|
||
|
?>
|