Rev 141 | Rev 152 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 141 | Rev 151 | ||
|---|---|---|---|
| Line 24... | Line 24... | ||
| 24 | $languages = array(  | 
            24 | $languages = array(  | 
          
| 25 | 'en' => 'English',  | 
            25 | 'en' => 'English',  | 
          
| 26 | 'de' => 'Deutsch'  | 
            26 | 'de' => 'Deutsch'  | 
          
| 27 | );  | 
            27 | );  | 
          
| 28 | 28 | ||
| - | 29 | /* TODO: Use Autoloader */
 | 
          |
| - | 30 | require_once 'Zend/Stdlib/ErrorHandler.php';  | 
          |
| - | 31 | require_once 'Zend/I18n/Translator/TextDomain.php';  | 
          |
| - | 32 | require_once 'Zend/I18n/Translator/Loader/FileLoaderInterface.php';  | 
          |
| - | 33 | require_once 'Zend/I18n/Translator/Loader/Gettext.php';  | 
          |
| - | 34 | require_once 'Zend/ServiceManager/ServiceLocatorAwareInterface.php';  | 
          |
| - | 35 | require_once 'Zend/ServiceManager/ServiceLocatorInterface.php';  | 
          |
| - | 36 | require_once 'Zend/ServiceManager/ServiceManager.php';  | 
          |
| - | 37 | require_once 'Zend/ServiceManager/AbstractPluginManager.php';  | 
          |
| - | 38 | require_once 'Zend/I18n/Translator/LoaderPluginManager.php';  | 
          |
| - | 39 | require_once 'Zend/I18n/Translator/Translator.php';  | 
          |
| - | 40 | ||
| 29 | /* Specify location of translation tables */
 | 
            41 | $translator = new Zend\I18n\Translator\Translator();  | 
          
| 30 | $textDomain = 'de.pointedears';  | 
            42 | $type = 'gettext';  | 
          
| 31 | $baseDir = './LocaleData';  | 
            43 | $baseDir = './LocaleData';  | 
          
| - | 44 | $pattern = '%s/LC_MESSAGES/%1$s.pointedears.mo';  | 
          |
| - | 45 | $textDomain = 'de.pointedears';  | 
          |
| - | 46 | $translator->addTranslationFilePattern($type, $baseDir, $pattern, $textDomain);  | 
          |
| 32 | 47 | ||
| - | 48 | /**
 | 
          |
| - | 49 |  * Returns the translation of the parameter, if any,
 | 
          |
| - | 50 |  * using Zend Framework 2.1 Translate
 | 
          |
| - | 51 |  * @param string $s
 | 
          |
| - | 52 |  * @return string
 | 
          |
| - | 53 |  */
 | 
          |
| 33 | if (function_exists('_'))  | 
            54 | function tr ($s)  | 
          
| 34 | {
 | 
            55 | {
 | 
          
| 35 | bindtextdomain($textDomain, $baseDir);  | 
            - | |
| 36 | - | ||
| 37 |   /* Choose domain */
 | 
            56 | global $translator;  | 
          
| 38 |   /* Translation is looking for in ./LocaleData/de/LC_MESSAGES/de.pointedears.mo now */
 | 
            - | |
| 39 | textdomain($textDomain);  | 
            57 | global $textDomain;  | 
          
| 40 | }
 | 
            - | |
| 41 | else
 | 
            - | |
| 42 | {
 | 
            - | |
| 43 |   /* TODO: Use Autoloader */
 | 
            - | |
| 44 | require_once 'Zend\Stdlib\ErrorHandler.php';  | 
            - | |
| 45 | require_once 'Zend\I18n\Translator\TextDomain.php';  | 
            - | |
| 46 | require_once 'Zend\I18n\Translator\Loader\FileLoaderInterface.php';  | 
            - | |
| 47 | require_once 'Zend\I18n\Translator\Loader\Gettext.php';  | 
            - | |
| 48 | require_once 'Zend\ServiceManager\ServiceLocatorAwareInterface.php';  | 
            - | |
| 49 | require_once 'Zend\ServiceManager\ServiceLocatorInterface.php';  | 
            - | |
| 50 | require_once 'Zend\ServiceManager\ServiceManager.php';  | 
            - | |
| 51 | require_once 'Zend\ServiceManager\AbstractPluginManager.php';  | 
            - | |
| 52 | require_once 'Zend\I18n\Translator\LoaderPluginManager.php';  | 
            - | |
| 53 | require_once 'Zend\I18n\Translator\Translator.php';  | 
            - | |
| 54 | - | ||
| 55 | $translator = new Zend\I18n\Translator\Translator();  | 
            - | |
| 56 | $type = 'gettext';  | 
            58 | global $language;  | 
          
| 57 | $pattern = '%s/LC_MESSAGES/%1$s.pointedears.mo';  | 
            - | |
| 58 | $translator->addTranslationFilePattern($type, $baseDir, $pattern, $textDomain);  | 
            - | |
| 59 | 59 | ||
| 60 | function _($s)  | 
            60 | if ($translator)  | 
          
| 61 |   {
 | 
            61 |   {
 | 
          
| 62 | global $translator;  | 
            - | |
| 63 | global $textDomain;  | 
            - | |
| 64 | global $language;  | 
            - | |
| 65 | - | ||
| 66 | if ($translator)  | 
            - | |
| 67 |     {
 | 
            - | |
| 68 | return $translator->translate($s, $textDomain, $language);  | 
            62 | return $translator->translate($s, $textDomain, $language);  | 
          
| 69 |     }
 | 
            - | |
| 70 | - | ||
| 71 | return $s;  | 
            - | |
| 72 |   }
 | 
            63 |   }
 | 
          
| - | 64 | ||
| - | 65 | return $s;  | 
          |
| 73 | }
 | 
            66 | }
 | 
          
| 74 | 67 | ||
| 75 | $menu = array(  | 
            68 | $menu = array(  | 
          
| 76 | 'scripts' => array('path' => 'scripts/', 'text' => 'Scripting'),  | 
            69 | 'scripts' => array('path' => 'scripts/', 'text' => 'Scripting'),  | 
          
| 77 | 'es-matrix' => array(  | 
            70 | 'es-matrix' => array(  | 
          
| 78 | 'path' => 'es-matrix',  | 
            71 | 'path' => 'es-matrix',  | 
          
| 79 | 'text' => 'ES Matrix',  | 
            72 | 'text' => 'ES Matrix',  | 
          
| 80 | 'title' => 'ECMAScript Support Matrix: ' . _("A comparison of features of ECMAScript implementations")  | 
            73 | 'title' => 'ECMAScript Support Matrix: ' . tr("A comparison of features of ECMAScript implementations")  | 
          
| 81 | ),  | 
            74 | ),  | 
          
| 82 | 'devel' => array('path' => 'devel/', 'text' => _('Other software')),  | 
            75 | 'devel' => array('path' => 'devel/', 'text' => tr('Other software')),  | 
          
| 83 | 'series' => array('path' => "media/video/series/", 'text' => 'Seri-o-meter'),  | 
            76 | 'series' => array('path' => "media/video/series/", 'text' => 'Seri-o-meter'),  | 
          
| 84 | 'ufpdb' => array(  | 
            77 | 'ufpdb' => array(  | 
          
| 85 | 'path' => "ufpdb/index.$language",  | 
            78 | 'path' => "ufpdb/index.$language",  | 
          
| 86 | 'text' => 'UFPDB',  | 
            79 | 'text' => 'UFPDB',  | 
          
| 87 | 'title' => _('United Federation of Planets DataBase')  | 
            80 | 'title' => tr('United Federation of Planets DataBase')  | 
          
| 88 |   )
 | 
            81 |   )
 | 
          
| 89 | );  | 
            82 | );  |