You are here

function admin_language_help in Administration Language 7

Same name and namespace in other branches
  1. 6 admin_language.module \admin_language_help()

Implements hook_help().

File

./admin_language.module, line 17
Makes admin pages be displayed in the administrator's preferred language.

Code

function admin_language_help($path, $arg) {
  switch ($path) {
    case 'admin/config/regional/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/config/regional/language/admin_language'),
      )) . '</p>';
  }
}