1<?php
2/**
3 * english language file for authdrupal7 plugin
4 *
5 * @author Matthias Jung <matzekuh@web.de>
6 */
7
8// keys need to match the config setting name
9$lang['server'] = 'MySQL server';
10$lang['user'] = 'MySQL username';
11$lang['password'] = 'Password for user above';
12$lang['database'] = 'Name of database containing Drupal 7 tables';
13$lang['charset'] = 'Charset of database above';
14$lang['debug'] = 'Debug level: \'0\' off, \'1\' debug messages, \'2\' all SQL statements';
15$lang['drupalPrefix'] = 'Prefix of Drupal 7 tables, ending with underscore';
16$lang['drupalRoot'] = 'Drupal 7 root directory, ending with slash';
17$lang['TablesToLock'] = 'Drupal 7 tables that should be locked during access';
18$lang['checkPass'] = 'SQL statement for retrieving password hash for given username';
19$lang['getUserInfo'] = 'SQL statement for retrieving name and mail for given username';
20$lang['getGroups'] = 'SQL statement for retrieving role names a given user is member of';
21$lang['getUserCount'] = 'SQL statement for getting number of non-deactivated users, return in field num';
22
23
24
25//Setup VIM: ex: et ts=4 :
26