locale_group($data->{$this->name_alias}); } /** * Override the behavior of title(). Get the user friendly version * of the language. */ function title() { return $this->locale_group($this->argument); } function locale_group($group) { $groups = module_invoke_all('locale', 'groups'); // Sort the list. asort($groups); return isset($groups[$group]) ? $groups[$group] : t('Unknown group'); } }