From 2dfe9420c48529dc840e68bf37fb41c59f7a0092 Mon Sep 17 00:00:00 2001 From: Antonio Gallo Date: Fri, 2 Sep 2011 13:07:26 +0000 Subject: now x84-64/amd64 label is printed --- h-source/Application/Include/hardware.php | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'h-source/Application/Include') diff --git a/h-source/Application/Include/hardware.php b/h-source/Application/Include/hardware.php index 04db6ca..2e5cb0e 100644 --- a/h-source/Application/Include/hardware.php +++ b/h-source/Application/Include/hardware.php @@ -21,8 +21,26 @@ if (!defined('EG')) die('Direct access not allowed!'); +function translate($string) +{ + return Hardware::translate($string); +} + class Hardware { + + public static $translations = array( + "amd64" => 'x86-64/amd64', + ); + + public static function translate($string) + { + if (array_key_exists($string,self::$translations)) + { + return self::$translations[$string]; + } + return $string; + } public static $controllers = array('notebooks','wifi','videocards','printers','scanners','threegcards','soundcards','webcams','bluetooth','acquisitioncards','fingerprintreaders','ethernetcards'); //used by UsersController::login() -- cgit v1.2.3