home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 April / CMCD0404.ISO / Software / Freeware / Programare / dotproject / locales / core.php next >
PHP Script  |  2003-02-06  |  517b  |  15 lines

  1. <?php
  2. ob_start();
  3.     @readfile( "{$AppUI->cfg['root_dir']}/locales/$AppUI->user_locale/common.inc" );
  4.     @readfile( "{$AppUI->cfg['root_dir']}/locales/$AppUI->user_locale/$m.inc" );
  5.     switch ($m) {
  6.     case 'departments':
  7.         @readfile( "{$AppUI->cfg['root_dir']}/locales/$AppUI->user_locale/companies.inc" );
  8.         break;
  9.     case 'system':
  10.         @readfile( "{$AppUI->cfg['root_dir']}/locales/{$AppUI->cfg['host_locale']}/styles.inc" );
  11.         break;
  12.     }
  13.     eval( "\$GLOBALS['translate']=array(".ob_get_contents()."\n'0');" );
  14. ob_end_clean();
  15. ?>