Commit | Line | Data |
---|---|---|
7eaca5a8 PŠ |
1 | <?php |
2 | // This file is part of Moodle - http://moodle.org/ | |
3 | // | |
4 | // Moodle is free software: you can redistribute it and/or modify | |
5 | // it under the terms of the GNU General Public License as published by | |
6 | // the Free Software Foundation, either version 3 of the License, or | |
7 | // (at your option) any later version. | |
8 | // | |
9 | // Moodle is distributed in the hope that it will be useful, | |
10 | // but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 | // GNU General Public License for more details. | |
13 | // | |
14 | // You should have received a copy of the GNU General Public License | |
15 | // along with Moodle. If not, see <http://www.gnu.org/licenses/>. | |
16 | ||
17 | /** | |
18 | * Log store lang strings. | |
19 | * | |
20 | * @package logstore_database | |
21 | * @copyright 2013 Petr Skoda {@link http://skodak.org} | |
22 | * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | |
23 | */ | |
24 | ||
ed8f7c30 | 25 | $string['buffersize'] = 'Buffer size'; |
ff2990ab MR |
26 | $string['buffersize_help'] = 'Number of log entries inserted in one batch database operation, which improves performance.'; |
27 | $string['conectexception'] = 'Cannot connect to the database.'; | |
ed8f7c30 AA |
28 | $string['create'] = 'Create'; |
29 | $string['databasesettings'] = 'Database settings'; | |
ff2990ab MR |
30 | $string['databasesettings_help'] = 'Connection details for the external log database: {$a}'; |
31 | $string['databasepersist'] = 'Persistent database connections'; | |
ed8f7c30 AA |
32 | $string['databaseschema'] = 'Database schema'; |
33 | $string['databasecollation'] = 'Database collation'; | |
34 | $string['databasetable'] = 'Database table'; | |
ff2990ab MR |
35 | $string['databasetable_help'] = 'Name of the table where logs will be stored. This table should have a structure identical to the one used by logstore_standard (mdl_logstore_standard_log).'; |
36 | $string['excludeactions'] = 'Exclude actions of these types'; | |
37 | $string['excludelevels'] = 'Exclude actions with these educational levels'; | |
ed8f7c30 | 38 | $string['filters'] = 'Filter logs'; |
ff2990ab | 39 | $string['filters_help'] = 'Enable filters that exclude some actions from being logged.'; |
ed8f7c30 AA |
40 | $string['logguests'] = 'Log guest actions'; |
41 | $string['other'] = 'Other'; | |
42 | $string['participating'] = 'Participating'; | |
7eaca5a8 | 43 | $string['pluginname'] = 'External database log'; |
ff2990ab | 44 | $string['pluginname_desc'] = 'A log plugin that stores log entries in an external database table.'; |
ed8f7c30 AA |
45 | $string['read'] = 'Read'; |
46 | $string['tablenotfound'] = 'Specified table was not found'; | |
47 | $string['teaching'] = 'Teaching'; | |
48 | $string['testsettings'] = 'Test connection'; | |
49 | $string['testingsettings'] = 'Testing database settings...'; | |
50 | $string['update'] = 'Update'; | |
51 |