home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 February (DVD) / PCWorld_2008-02_DVD.iso / v cisle / PHP / PHP.exe / xampp-win32-1.6.5-installer.exe / phpMyAdmin / libraries / language.lib.php < prev    next >
Encoding:
PHP Script  |  2007-12-20  |  366 b   |  18 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 10239 2007-04-01 09:51:41Z cybot_tm $
  7.  */
  8.  
  9. /**
  10.  * lang detection is done here
  11.  */
  12. require_once './libraries/select_lang.lib.php';
  13.  
  14. // Load the translation
  15. require_once $lang_path . $available_languages[$GLOBALS['lang']][1] . '.inc.php';
  16.  
  17. ?>
  18.