xref: /dokuwiki/lib/plugins/authpdo/lang/en/settings.php (revision 397d62a278d0a2daaaaff6ea0e065fa968c706db)
1f64dbc90SAndreas Gohr<?php
2f64dbc90SAndreas Gohr/**
3f64dbc90SAndreas Gohr * english language file for authpdo plugin
4f64dbc90SAndreas Gohr *
5f64dbc90SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
6f64dbc90SAndreas Gohr */
7f64dbc90SAndreas Gohr
8c27579a6SAndreas Gohr$lang['debug']              = 'Print out detailed error messages. Should be disabled after setup.';
9c27579a6SAndreas Gohr$lang['dsn']                = 'The DSN to connect to the database.';
10c27579a6SAndreas Gohr$lang['user']               = 'The user for the above database connection (empty for sqlite)';
11c27579a6SAndreas Gohr$lang['pass']               = 'The password for the above database connection (empty for sqlite)';
12c27579a6SAndreas Gohr$lang['select-user']        = 'SQL Statement to select the data of a single user';
13c27579a6SAndreas Gohr$lang['select-user-groups'] = 'SQL Statement to select all groups of a single user';
14c27579a6SAndreas Gohr$lang['select-groups']      = 'SQL Statement to select all available groups';
15c27579a6SAndreas Gohr$lang['insert-user']        = 'SQL Statement to insert a new user into the database';
16c27579a6SAndreas Gohr$lang['delete-user']        = 'SQL Statement to remove a single user from the database';
17c27579a6SAndreas Gohr$lang['list-users']         = 'SQL Statement to list users matching a filter';
18c27579a6SAndreas Gohr$lang['count-users']        = 'SQL Statement to count users matching a filter';
19c27579a6SAndreas Gohr$lang['update-user-info']   = 'SQL Statement to update the full name and email address of a single user';
20c27579a6SAndreas Gohr$lang['update-user-login']  = 'SQL Statement to update the login name of a single user';
21c27579a6SAndreas Gohr$lang['update-user-pass']   = 'SQL Statement to update the password of a single user';
22c27579a6SAndreas Gohr$lang['insert-group']       = 'SQL Statement to insert a new group into the database';
23*397d62a2SAndreas Gohr$lang['join-group']         = 'SQL Statement to add a user to an existing group';
24c27579a6SAndreas Gohr$lang['leave-group']        = 'SQL Statement to remove a user from a group';
25*397d62a2SAndreas Gohr$lang['check-pass']         = 'SQL Statement to check the password for a user. Can be left empty if password info is fetched in select-user.';
26