diff options
author | Antonio Gallo <tonicucoz@gmail.com> | 2010-12-23 23:14:42 +0000 |
---|---|---|
committer | Antonio Gallo <tonicucoz@gmail.com> | 2010-12-23 23:14:42 +0000 |
commit | bd2f4275434bb99880e6659a1a528bd8eec380f4 (patch) | |
tree | 7394de7942ef4791b066a03ab412c674fdbf4ba5 /h-source/Application/Include/languages.php | |
parent | 58214267999e01688b9d885dbf5fe02f14b3be8e (diff) |
added sound cards - part 1
Diffstat (limited to 'h-source/Application/Include/languages.php')
-rw-r--r-- | h-source/Application/Include/languages.php | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/h-source/Application/Include/languages.php b/h-source/Application/Include/languages.php index 2d1514b..44c9020 100644 --- a/h-source/Application/Include/languages.php +++ b/h-source/Application/Include/languages.php @@ -139,6 +139,7 @@ class Lang "My description" => "La mia descrizione", "contributions" => "contributi", "contributions of" => "contributi di", + "No sound cards found" => "Non รจ stata trovata alcuna scheda audio", ), 'es' => array ( @@ -318,6 +319,10 @@ class MyStrings 'threegcards' => array( 'element' => '3G-card', ), + + 'soundcards' => array( + 'element' => 'sound card', + ), ), 'fr' => array( @@ -345,6 +350,10 @@ class MyStrings 'threegcards' => array( 'element' => '3G-card', ), + + 'soundcards' => array( + 'element' => 'sound card', + ), ), 'it' => array( @@ -372,6 +381,10 @@ class MyStrings 'threegcards' => array( 'element' => '3G-card', ), + + 'soundcards' => array( + 'element' => 'sound card', + ), ), 'es' => array( @@ -399,6 +412,10 @@ class MyStrings 'threegcards' => array( 'element' => '3G-card', ), + + 'soundcards' => array( + 'element' => 'sound card', + ), ), ); @@ -409,7 +426,8 @@ class MyStrings 'videocard' => 'videocards', 'printer' => 'printers', 'scanner' => 'scanners', - '3G-card' => 'threegcards' + '3G-card' => 'threegcards', + 'soundcard' => 'soundcards', ); public static function getTypes() |