| // +----------------------------------------------------------------------+ // // $Id$ /** * I18Nv2::Currency * * @package I18Nv2 * @category Internationalization */ require_once 'I18Nv2/CommonList.php'; /** * I18Nv2_Currency * * @author Michael Wallner * @version $Revision: 1.1 $ * @access public * @package I18Nv2 */ class I18Nv2_Currency extends I18Nv2_CommonList { /** * Load language file * * @access protected * @return bool * @param string $language */ function loadLanguage($language) { return @include 'I18Nv2/Currency/' . $language . '.php'; } /** * Change case of code key * * @access protected * @return string * @param string $code */ function changeKeyCase($code) { return strToUpper($code); } } ?>