Jump to content

Nacho Muñoz Fernandez

Members
  • Posts

    8
  • Joined

  • Last visited

Everything posted by Nacho Muñoz Fernandez

  1. I'd better save it for the future when you have more time to implement. Greetings and thanks!
  2. Ok no problem about that, Will there be changes in revision 906 to the stable version on the .tpl files? I say this because i am working on moving all template strings to lang.php files. If you tell me an approximate date of release of the stable version(2.1), could have finished ready for use this addon and merge all files for that date. What you think?
  3. Ok, try this: class Lang { public static $language; public static $trans_table; public static function load_language() { $language_selected = $_COOKIE['phpvms_lang']; if(!$language_selected) { self::set_language(Config::Get('SITE_DEFAULT_LANGUAGE')); } else { if(in_array($language_selected,Config::Get('SITE_AVAILABLE_LANGUAGE'))) // This prevents cookie hack { self::set_language($language_selected); } else { self::set_language(Config::Get('SITE_DEFAULT_LANGUAGE')); } } } public static function set_language($lang='en') { self::$language = $lang; $path = CORE_PATH.DS.'lang'.DS.$lang; $trans_temp = array(); if (is_dir($path)) { $fh = opendir($path); while (($file = readdir($fh)) !== false) { if ($file == '.' || $file == '..' || $file == '.svn') continue; $filepath = $path . DS . $file; $file_parts = explode('.',$file); if(!is_dir($filepath) && $file_parts[1] == 'lang' && $file_parts[2] == 'php') // for loading only *.lang.php files { include $filepath; $trans_temp = array_merge($trans_temp,$trans); unset($trans); } } closedir($fh); } $trans = $trans_temp; /* Load up the translation table from the /lang/[lang]/lang.php file */ self::$trans_table = $trans; unset($trans); } public static function gs($string) { return self::$trans_table[$string]; } /* Alias */ public static function get($string) { return self::gs($string); } } this its a helper, in bootstrap.inc.php function lang($string) { echo Lang::gs($string); } function langstr($string) { return Lang::gs($string); } check it if its right. Nabeel can you give me your SkypeID? for talk more faster about that S!
  4. Glob its more easier for the user to add new translation files o new modules, make language unnattended. but you are right the fn: GetAvailableSkins() its more faster than glob. About the cookie yes, using the cookie for the no authenticated user and for registered pilots when they loads settings from their profile db and the next reload use the cookie for use less db querys. Using the XML, yes, best using other php file like: config.lang.php for admin panel see the autor, license etc etc... I am testing this, and i will try to integrate the function that you have said instead of Glob(). Tomorrow i send you... if you need a help with other questions i can help you, or colaborate with the project. Greetings
  5. yes i see, i am working on move al string from templates to a separate language files and making multifile system. This is the modificated Lang.class.php for load all separated files in lang/$lang_iso/ class Lang { public static $language; public static $trans_table; public static function load_language() { $language_selected = $_COOKIE['phpvms_lang']; if(!$_COOKIE['phpvms_lang']) { self::set_language(Config::Get('SITE_DEFAULT_LANGUAGE')); } else { if(in_array($language_selected,Config::Get('SITE_AVALIBLE_LANGUAGE'))) { self::set_language($language_selected); } else { self::set_language(Config::Get('SITE_DEFAULT_LANGUAGE')); } } } public static function set_language($lang='en') { self::$language = $lang; $path = CORE_PATH.DS.'lang'.DS.$lang.DS; $lang_options = CORE_PATH.DS.'lang'.DS.$lang.DS.'.language.xml'; // TODO: language information if(!file_exists($lang_options)) { return false; } $lang_files = glob($path.'{*.php}',GLOB_BRACE);// Loads al language files from the selected lang $trans_temp = array(); foreach($lang_files as $file) { include $file; $trans_temp = array_merge($trans_temp,$trans); unset($trans); } $trans_temp = $trans; /* Load up the translation table from the /lang/[lang]/lang.php file */ self::$trans_table = $trans; unset($trans); } public static function gs($string) { return self::$trans_table[$string]; } /* Alias */ public static function get($string) { return self::gs($string); } } i have also others files for using this. When everything is finished can i send if you like for the next version of PHPVMS or Codon Framework EDIT: i am using the last version of phpvms of Git repository. (revision 906). Greetings
  6. Yes this its right, but if you needs 2 o more language at same time for a multilanguage airline, i think this its not posible right now. for make that all language strings from template files needs to be ubicated in other files and use the lang.class.php to load all strings for the user selected language. or the lang.class.php can be used for that?
  7. For example, in the templates files all strings get from other file using this class, using a constant or string.
  8. Hello everyone, I have a question about Codon Framework ... Is this considered or is developing a i18n class? greetings (sorry for english google translator dont help me too much )
×
×
  • Create New...