home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Servidores / xampp-win32-1.6.7-installer.exe / phpMyAdmin / libraries / language.lib.php < prev    next >
Encoding:
PHP Script  |  2008-06-23  |  405 b   |  21 lines

  1. <?php
  2. /* vim: set expandtab sw=4 ts=4 sts=4: */
  3. /**
  4.  * phpMyAdmin Language Loading File
  5.  *
  6.  * @version $Id: language.lib.php 11326 2008-06-17 21:32:48Z lem9 $
  7.  */
  8. if (! defined('PHPMYADMIN')) {
  9.     exit;
  10. }
  11.  
  12. /**
  13.  * lang detection is done here
  14.  */
  15. require_once './libraries/select_lang.lib.php';
  16.  
  17. // Load the translation
  18. require_once $lang_path . $available_languages[$GLOBALS['lang']][1] . '.inc.php';
  19.  
  20. ?>
  21.