aboutsummaryrefslogtreecommitdiff
path: root/h-source/Application/Include/hardware.php
diff options
context:
space:
mode:
Diffstat (limited to 'h-source/Application/Include/hardware.php')
-rw-r--r--h-source/Application/Include/hardware.php18
1 files changed, 18 insertions, 0 deletions
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()