function admin_language_help in Administration Language 6
Same name and namespace in other branches
- 7 admin_language.module \admin_language_help()
Implementation of hook_help().
File
- ./
admin_language.module, line 17 - Makes sure all admin pages are displayed in the preferred language of the administrator.
Code
function admin_language_help($path, $arg) {
switch ($path) {
case 'admin/settings/language':
return '<p>' . t('Use the <em>admin</em> column to select the default language for all administration pages. The language you select must be enabled. You can configure the !settings-url to control where the administration language is used.', array(
'!settings-url' => l(t('administration language settings'), 'admin/settings/language/admin_language'),
)) . '</p>';
break;
}
}