1<?php
2/**
3 * english language file for authsplit plugin
4 *
5 * @author Pieter Hollants <pieter@hollants.com>
6 */
7
8$lang['plugin_settings_name']                   = 'Split authentication plugin';
9
10$lang['primary_authplugin']                     = 'Primary auth plugin that checks login names/passwords.';
11$lang['secondary_authplugin']                   = 'Secondary auth plugin that provides additional user data (real name, email address, groups). This will usually be "authplain".';
12$lang['autocreate_users']                       = 'Create users automatically? This will tell the secondary auth plugin to create accounts with info from the primary auth plugin, if necessary.';
13$lang['username_caseconversion']                = 'Convert usernames to upper- or lowercase? This might be necessary if one of the auth plugins is case-sensitive.';
14$lang['username_caseconversion_o_None']         = 'No changes';
15$lang['username_caseconversion_o_To uppercase'] = 'To uppercase';
16$lang['username_caseconversion_o_To lowercase'] = 'To lowercase';
17$lang['debug']                                  = 'Display debug information? Use this for troubleshooting purposes only.';
18
19//Setup VIM: ex: et ts=4 :
20