aboutsummaryrefslogtreecommitdiff
path: root/h-source/Application/Include/languages.php
diff options
context:
space:
mode:
authorAntonio Gallo <tonicucoz@gmail.com>2012-02-01 07:42:34 +0000
committerAntonio Gallo <tonicucoz@gmail.com>2012-02-01 07:42:34 +0000
commit1aa63970841fbf8e584f322304db1ffc581f38ee (patch)
tree04af829a0ec619da351b2d0ef8b91a795131fc47 /h-source/Application/Include/languages.php
parent63eeb056575c3773b0e5932f8d2b83919267fbd2 (diff)
added support for Greek
Diffstat (limited to 'h-source/Application/Include/languages.php')
-rw-r--r--h-source/Application/Include/languages.php39
1 files changed, 38 insertions, 1 deletions
diff --git a/h-source/Application/Include/languages.php b/h-source/Application/Include/languages.php
index 9e9f98a..aedbdae 100644
--- a/h-source/Application/Include/languages.php
+++ b/h-source/Application/Include/languages.php
@@ -22,7 +22,7 @@ if (!defined('EG')) die('Direct access not allowed!');
class Lang
{
- public static $allowed = array('en','es','fr','it','de');
+ public static $allowed = array('en','es','fr','it','de','gr');
public static $current = 'en';
public static $complete = array(
@@ -31,6 +31,7 @@ class Lang
'fr' => 'fr.png,Français',
'it' => 'it.png,Italiano',
'de' => 'de.png,Deutsch',
+ 'gr' => 'gr.png,Ελληνικά',
);
//$pos=0: icon, $pos=1:lang name
@@ -1202,6 +1203,10 @@ class Lang
/*0188*/"Write here the model name obtained by the lspci or lsusb command." => "Geben Sie hier die vom Befehl &#8222;lspci&#8220; oder &#8222;lsusb&#8220; ermittelte Modellbezeichnung ein.",
/*0189*/"This is the name of the chipset of your device." => "Dies ist der Name des Chipsatzes Ihres Gerätes.",
/*0190*/"possible other names of the device" => "Andere mögliche Gerätenamen",
+ ),
+ 'gr' => array
+ (
+
)
);
@@ -1286,6 +1291,22 @@ class Lang
'sdcardreaders' => 'sd card reader',
'modems' => 'modem',
),
+ 'gr' => array(
+ /*01*/'notebooks' => 'notebook',
+ /*02*/'wifi' => 'wifi card',
+ /*03*/'videocards' => 'video card',
+ /*04*/'printers' => 'printer',
+ /*05*/'scanners' => 'scanner',
+ /*06*/'threegcards' => '3G-card',
+ /*07*/'soundcards' => 'soundcard',
+ /*08*/'webcams' => 'webcam',
+ /*09*/'bluetooth' => 'bluetooth device',
+ /*10*/'acquisitioncards' => 'acquisition card',
+ /*11*/'fingerprintreaders' => 'fingerprint reader',
+ /*12*/'ethernetcards' => 'ethernet card',
+ /*13*/'sdcardreaders' => 'sd card reader',
+ /*14*/'modems' => 'modem',
+ ),
);
public static $plural = array(
@@ -1369,6 +1390,22 @@ class Lang
'sdcardreaders' => 'sd card readers',
'modems' => 'modems',
),
+ 'gr' => array(
+ /*01*/'notebooks' => 'notebooks',
+ /*02*/'wifi' => 'wifi cards',
+ /*03*/'videocards' => 'video cards',
+ /*04*/'printers' => 'printers',
+ /*05*/'scanners' => 'scanners',
+ /*06*/'threegcards' => '3G-cards',
+ /*07*/'soundcards' => 'soundcards',
+ /*08*/'webcams' => 'webcams',
+ /*09*/'bluetooth' => 'bluetooth devices',
+ /*10*/'acquisitioncards' => 'acquisition cards',
+ /*11*/'fingerprintreaders' => 'fingerprint readers',
+ /*12*/'ethernetcards' => 'ethernet cards',
+ /*13*/'sdcardreaders' => 'sd card readers',
+ /*14*/'modems' => 'modems',
+ ),
);
public static function sanitize($lang = 'en')