aboutsummaryrefslogtreecommitdiff
path: root/h-source/Application/Include
diff options
context:
space:
mode:
Diffstat (limited to 'h-source/Application/Include')
-rw-r--r--h-source/Application/Include/hardware.php21
-rw-r--r--h-source/Application/Include/languages.php3
2 files changed, 24 insertions, 0 deletions
diff --git a/h-source/Application/Include/hardware.php b/h-source/Application/Include/hardware.php
index 291f639..f363d72 100644
--- a/h-source/Application/Include/hardware.php
+++ b/h-source/Application/Include/hardware.php
@@ -193,6 +193,8 @@ class Notebooks extends Hardware
public static $subtypeSelect = 'notebook,netbook,not-specified';
+ public static $biosSelect = 'not-specified,no,yes';
+
public static $videoSelect = array(
"not specified" => 'not-specified',
"yes, with 3D acceleration" => "yes_with_3D",
@@ -223,6 +225,20 @@ class Notebooks extends Hardware
"" => ""
);
+ public static $webcamSelect = array(
+ 'not specified' => 'not-specified',
+ 'it works' => 'yes',
+ 'it does not work' => 'no',
+ 'there is no webcam' => 'there-is-no-webcam',
+ );
+
+ public static $webcamReverse = array(
+ "yes" => "it works",
+ "no" => "it does not work",
+ 'not-specified' => "not specified how it works",
+ 'there-is-no-webcam' => 'there is no webcam',
+ );
+
public static function videoList()
{
return implode(',',array_values(self::$videoSelect));
@@ -233,6 +249,11 @@ class Notebooks extends Hardware
return implode(',',array_values(self::$wifiSelect));
}
+ public static function webcamList()
+ {
+ return implode(',',array_values(self::$webcamSelect));
+ }
+
public static function vendorsList()
{
return implode(',',array_values(self::$vendors));
diff --git a/h-source/Application/Include/languages.php b/h-source/Application/Include/languages.php
index 69871fb..69dcdd4 100644
--- a/h-source/Application/Include/languages.php
+++ b/h-source/Application/Include/languages.php
@@ -98,6 +98,9 @@ class Lang
"differences in the entry" => "differenze nel campo",
"No 3G cards found" => "Non รจ stata trovata alcuna scheda 3G",
"Please specify in the below description entry the Internet Service Provider (ISP) and the country where the service is provided" => "Per favore specifica nel sottostante campo descrizione l'Internet Service Provider (ISP) e il Paese dove il servizio viene fornito",
+ "webcam model" => "modello di webcam",
+ "does it have a free bios?" => "ha il bios libero?",
+ "does the webcam work?" => "funziona la webcam?",
),
'es' => array
(