1 |
efrain |
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 |
* english strings for report_training
|
|
|
19 |
*
|
|
|
20 |
*/
|
|
|
21 |
|
|
|
22 |
defined('MOODLE_INTERNAL') || die();
|
|
|
23 |
|
|
|
24 |
$string['pluginname'] = '[Cesa] Training Analytics';
|
|
|
25 |
$string['dashboard_name'] = 'Estadísticas generales';
|
|
|
26 |
$string['dashboard_no_data_error'] = 'No analytics data exists';
|
|
|
27 |
$string['dashboard_nojs_error_message'] = 'Dashboard Charts only works if Javascript is enabled';
|
|
|
28 |
$string['dashboard_title'] = $string['pluginname'].' Dashboard';
|
|
|
29 |
$string['dashboard_chart_device_types'] = 'Device Types';
|
|
|
30 |
$string['dashboard_chart_device_types_title'] = 'device type distributions';
|
|
|
31 |
$string['dashboard_chart_device_systems'] = 'Operating Systems';
|
|
|
32 |
$string['dashboard_chart_device_systems_title'] = 'device os';
|
|
|
33 |
$string['dashboard_chart_device_browser'] = 'Browser';
|
|
|
34 |
$string['dashboard_chart_device_browser_title'] = 'device browsers';
|
|
|
35 |
$string['dashboard_chart_device_browser_version'] = 'browser version';
|
|
|
36 |
$string['dashboard_chart_screen_sizes'] = 'Screen Sizes';
|
|
|
37 |
$string['dashboard_chart_screen_sizes_title'] = 'most common user screen solutions';
|
|
|
38 |
$string['dashboard_chart_screen_sizes_subtitle'] = 'seperated by devices';
|
|
|
39 |
$string['dashboard_chart_window_sizes'] = 'Window Sizes';
|
|
|
40 |
$string['dashboard_chart_window_sizes_title'] = 'most common user window solutions';
|
|
|
41 |
$string['dashboard_chart_window_sizes_subtitle'] = 'seperated by devices';
|
|
|
42 |
$string['dashboard_chart_pointing_method'] = 'Device Pointing Methode';
|
|
|
43 |
$string['dashboard_chart_pointing_method_title'] = 'device interactive input methode';
|
|
|
44 |
$string['dashboard_time_title'] = 'Timerange';
|
|
|
45 |
$string['table_type'] = "Type";
|
|
|
46 |
$string['table_os'] = "Operating System";
|
|
|
47 |
$string['table_browser'] = "Browser";
|
|
|
48 |
$string['table_pointing'] = "Pointing Methode";
|
|
|
49 |
$string['table_count'] = "Count";
|
|
|
50 |
$string['table_percent'] = "Percent";
|
|
|
51 |
$string['table_version'] = "Version";
|
|
|
52 |
$string['settings_name'] = 'Settings';
|
|
|
53 |
$string['settings_title'] = $string['pluginname'].' Settings';
|
|
|
54 |
$string['settings_starttime'] = 'Starttime';
|
|
|
55 |
$string['settings_status'] = 'Active';
|
|
|
56 |
$string['settings_anonymous'] = 'Anonymize';
|
|
|
57 |
$string['settings_anonymous_description'] = 'If the user data will be stored anonymously';
|
|
|
58 |
$string['settings_admin_log'] = 'Admin Log';
|
|
|
59 |
$string['settings_cancelled'] = 'Nothing was changed!';
|
|
|
60 |
$string['settings_updated'] = 'Settings was updated successfully!';
|
|
|
61 |
$string['userdata_name'] = "User's log";
|
|
|
62 |
$string['userdata_select'] = 'Choose user';
|
|
|
63 |
$string['userdata_button'] = 'Search';
|
|
|
64 |
$string['userdata_table_connection_title'] = 'User connections list';
|
|
|
65 |
$string['userdata_table_records_title'] = 'User activity list';
|
|
|
66 |
$string['userdata_table_ip'] = 'Ip';
|
|
|
67 |
$string['userdata_table_viewed_date'] = 'Viewed Date';
|
|
|
68 |
$string['userdata_table_course_name'] = 'Course name';
|
|
|
69 |
$string['userdata_table_module_name'] = 'Course module';
|
|
|
70 |
$string['userdata_table_module_link'] = 'Link';
|
|
|
71 |
$string['userdata_table_module_click'] = 'Click here.';
|
|
|
72 |
$string['userdata_table_connection_empty'] = 'This user has not connected yet.';
|
|
|
73 |
$string['userdata_table_activity_empty'] = 'This user has no activities.';
|