diff options
Diffstat (limited to 'h-source/Application/Include/languages.php')
-rw-r--r-- | h-source/Application/Include/languages.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/h-source/Application/Include/languages.php b/h-source/Application/Include/languages.php index a315339..00fbeec 100644 --- a/h-source/Application/Include/languages.php +++ b/h-source/Application/Include/languages.php @@ -153,6 +153,7 @@ class Lang "write here the output of lspci -vmmnn" => "scrivi qui l'output del comando lspci -vmmnn", "The following devices has been found in the database" => "I seguenti device sono stati trovati nel database", "yes" => "sì", + "no" => "no", "The following devices has not been found in the database" => "I seguenti device non sono stati trovati nel database", "can you please insert them?" => "puoi gentilmente inserirli?", ), @@ -356,7 +357,11 @@ class Go { return "http://".DOMAIN_NAME."/".Hardware::getControllerFromType($type)."/catalogue/".Lang::$current; } - + + public static function toHardwareInsert($type) + { + return "http://".DOMAIN_NAME."/".Hardware::getControllerFromType($type)."/insert/".Lang::$current; + } } class MyStrings |