X-Git-Url: https://git.p6c8.net/jirafeau_project.git/blobdiff_plain/dd3bb52ddcfed99d4c8e6e3736ae58e1c6ed4ece..3f6ddb03cc19c454e4dedb3fcafa9d2934735e9c:/lib/lang.php?ds=sidebyside

diff --git a/lib/lang.php b/lib/lang.php
index d636b8d..bf63659 100644
--- a/lib/lang.php
+++ b/lib/lang.php
@@ -21,12 +21,15 @@ global $languages_list;
 $languages_list = array ('auto' => 'Automatic',
                          'de'   => 'Deutsch',
                          'en'   => 'English',
+                         'el'   => 'Ελληνικά',
+                         'es'   => 'Español',
                          'hu'   => 'Magyar',
                          'fi'   => 'Suomi',
                          'fr'   => 'Français',
                          'it'   => 'Italiano',
                          'nl'   => 'Nederlands',
                          'ro'   => 'Limba română',
+                         'ru'   => 'ру́сский',
                          'sk'   => 'Slovenčina',
                          'zh'   => '汉语');
 
@@ -102,7 +105,7 @@ function json_lang_generator ()
 
     /* Open translation file. */
     $trans_j = file_get_contents (JIRAFEAU_ROOT . "lib/locales/$l.json");
-    return $trans_j; 
+    return $trans_j;
 }
 
 ?>