xref: /dokuwiki/lib/plugins/authpdo/lang/en/settings.php (revision c27579a6570174d16e356f8f3a3225a96ead8496)
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
8*c27579a6SAndreas Gohr$lang['debug']              = 'Print out detailed error messages. Should be disabled after setup.';
9*c27579a6SAndreas Gohr$lang['dsn']                = 'The DSN to connect to the database.';
10*c27579a6SAndreas Gohr$lang['user']               = 'The user for the above database connection (empty for sqlite)';
11*c27579a6SAndreas Gohr$lang['pass']               = 'The password for the above database connection (empty for sqlite)';
12*c27579a6SAndreas Gohr$lang['select-user']        = 'SQL Statement to select the data of a single user';
13*c27579a6SAndreas Gohr$lang['select-user-groups'] = 'SQL Statement to select all groups of a single user';
14*c27579a6SAndreas Gohr$lang['select-groups']      = 'SQL Statement to select all available groups';
15*c27579a6SAndreas Gohr$lang['insert-user']        = 'SQL Statement to insert a new user into the database';
16*c27579a6SAndreas Gohr$lang['delete-user']        = 'SQL Statement to remove a single user from the database';
17*c27579a6SAndreas Gohr$lang['list-users']         = 'SQL Statement to list users matching a filter';
18*c27579a6SAndreas Gohr$lang['count-users']        = 'SQL Statement to count users matching a filter';
19*c27579a6SAndreas Gohr$lang['update-user-info']   = 'SQL Statement to update the full name and email address of a single user';
20*c27579a6SAndreas Gohr$lang['update-user-login']  = 'SQL Statement to update the login name of a single user';
21*c27579a6SAndreas Gohr$lang['update-user-pass']   = 'SQL Statement to update the password of a single user';
22*c27579a6SAndreas Gohr$lang['insert-group']       = 'SQL Statement to insert a new group into the database';
23*c27579a6SAndreas Gohr$lang['join-group']         = 'SQL Statement to add a user to an exisitng group';
24*c27579a6SAndreas Gohr$lang['leave-group']        = 'SQL Statement to remove a user from a group';
25