Autoría | Ultima modificación | Ver Log |
<?php// This file is part of Moodle - http://moodle.org///// Moodle is free software: you can redistribute it and/or modify// it under the terms of the GNU General Public License as published by// the Free Software Foundation, either version 3 of the License, or// (at your option) any later version.//// Moodle is distributed in the hope that it will be useful,// but WITHOUT ANY WARRANTY; without even the implied warranty of// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the// GNU General Public License for more details.//// You should have received a copy of the GNU General Public License// along with Moodle. If not, see <http://www.gnu.org/licenses/>./*** english strings for report_training**/defined('MOODLE_INTERNAL') || die();$string['pluginname'] = '[Cesa] Training Analytics';$string['dashboard_name'] = 'Estadísticas generales';$string['dashboard_no_data_error'] = 'No analytics data exists';$string['dashboard_nojs_error_message'] = 'Dashboard Charts only works if Javascript is enabled';$string['dashboard_title'] = $string['pluginname'].' Dashboard';$string['dashboard_chart_device_types'] = 'Device Types';$string['dashboard_chart_device_types_title'] = 'device type distributions';$string['dashboard_chart_device_systems'] = 'Operating Systems';$string['dashboard_chart_device_systems_title'] = 'device os';$string['dashboard_chart_device_browser'] = 'Browser';$string['dashboard_chart_device_browser_title'] = 'device browsers';$string['dashboard_chart_device_browser_version'] = 'browser version';$string['dashboard_chart_screen_sizes'] = 'Screen Sizes';$string['dashboard_chart_screen_sizes_title'] = 'most common user screen solutions';$string['dashboard_chart_screen_sizes_subtitle'] = 'seperated by devices';$string['dashboard_chart_window_sizes'] = 'Window Sizes';$string['dashboard_chart_window_sizes_title'] = 'most common user window solutions';$string['dashboard_chart_window_sizes_subtitle'] = 'seperated by devices';$string['dashboard_chart_pointing_method'] = 'Device Pointing Methode';$string['dashboard_chart_pointing_method_title'] = 'device interactive input methode';$string['dashboard_time_title'] = 'Timerange';$string['table_type'] = "Type";$string['table_os'] = "Operating System";$string['table_browser'] = "Browser";$string['table_pointing'] = "Pointing Methode";$string['table_count'] = "Count";$string['table_percent'] = "Percent";$string['table_version'] = "Version";$string['settings_name'] = 'Settings';$string['settings_title'] = $string['pluginname'].' Settings';$string['settings_starttime'] = 'Starttime';$string['settings_status'] = 'Active';$string['settings_anonymous'] = 'Anonymize';$string['settings_anonymous_description'] = 'If the user data will be stored anonymously';$string['settings_admin_log'] = 'Admin Log';$string['settings_cancelled'] = 'Nothing was changed!';$string['settings_updated'] = 'Settings was updated successfully!';$string['userdata_name'] = "User's log";$string['userdata_select'] = 'Choose user';$string['userdata_button'] = 'Search';$string['userdata_table_connection_title'] = 'User connections list';$string['userdata_table_records_title'] = 'User activity list';$string['userdata_table_ip'] = 'Ip';$string['userdata_table_viewed_date'] = 'Viewed Date';$string['userdata_table_course_name'] = 'Course name';$string['userdata_table_module_name'] = 'Course module';$string['userdata_table_module_link'] = 'Link';$string['userdata_table_module_click'] = 'Click here.';$string['userdata_table_connection_empty'] = 'This user has not connected yet.';$string['userdata_table_activity_empty'] = 'This user has no activities.';