1<?php
2
3$lang['database']         = 'SQLite Database file';
4$lang['debug']            = 'Display additional debug information';
5$lang['forwardClearPass'] = 'Pass user passwords as cleartext to the SQL statements below, instead of using the passcrypt option';
6$lang['checkPass']        = 'SQL statement for checking passwords';
7$lang['getUserInfo']      = 'SQL statement for retrieving user information';
8$lang['getGroups']        = 'SQL statement for retrieving a user\'s group memberships';
9$lang['getUsers']         = 'SQL statement to list all users';
10$lang['FilterLogin']      = 'SQL clause for filtering users by login name';
11$lang['FilterName']       = 'SQL clause for filtering users by full name';
12$lang['FilterEmail']      = 'SQL clause for filtering users by email address';
13$lang['FilterGroup']      = 'SQL clause for filtering users by group membership';
14$lang['SortOrder']        = 'SQL clause to sort users';
15$lang['addUser']          = 'SQL statement to add a new user';
16$lang['addGroup']         = 'SQL statement to add a new group';
17$lang['addUserGroup']     = 'SQL statement to add a user to an existing group';
18$lang['delGroup']         = 'SQL statement to remove a group';
19$lang['getUserID']        = 'SQL statement to get the primary key of a user';
20$lang['delUser']          = 'SQL statement to delete a user';
21$lang['delUserRefs']      = 'SQL statement to remove a user from all groups';
22$lang['updateUser']       = 'SQL statement to update a user profile';
23$lang['UpdateLogin']      = 'Update clause for updating the user\'s login name';
24$lang['UpdatePass']       = 'Update clause for updating the user\'s password';
25$lang['UpdateEmail']      = 'Update clause for updating the user\'s email address';
26$lang['UpdateName']       = 'Update clause for updating the user\'s full name';
27$lang['UpdateTarget']     = 'Limit clause to identify the user when updating';
28$lang['delUserGroup']     = 'SQL statement to remove a user from a given group';
29$lang['getGroupID']       = 'SQL statement to get the primary key of a given group';
30