CC-1960: Internationalize Airtime / Support translations

-added language option in preferences
This commit is contained in:
denise 2012-11-21 12:44:50 -05:00
parent c344282e4d
commit 25ddd083bc
5 changed files with 45 additions and 1 deletions

View file

@ -428,6 +428,16 @@ class Application_Model_Preference
{
return self::getValue("timezone");
}
public static function SetLocale($locale)
{
self::setValue("locale", $locale);
}
public static function GetLocale()
{
return self::getValue("locale");
}
public static function SetStationLogo($imagePath)
{