Recommend this page to a friend! | Stumble It! | Bookmark in del.icio.us |
Classes of Bhavin Choksi | > | Internationalization | > | Localization.php | > | Download | ||
|
Download |
<? class Localization { var $country; var $language; function Localization($language,$country) { $this->country=$country; $this->language=$language; } function Translate($str) { include ($this->language)."_".($this->country).".inc"; return $$str; } } ?> |