feat: Add new strings for enhanced user grade report

Introduces additional localization strings to improve the
clarity and functionality of the user grade report, including
labels for quizzes, attempts, and questions. This enhances
the report's interpretability for users.

Increments plugin version to reflect string additions.
This commit is contained in:
Kumi 2024-11-21 20:40:54 +01:00
parent d983f550bf
commit 7321ed9c1d
Signed by: kumi
GPG key ID: ECBCC9082395383F
2 changed files with 7 additions and 2 deletions

View file

@ -6,4 +6,9 @@ $string['nouserselected'] = 'No user selected. Please select a user to view thei
$string['showgrades'] = 'Show Grades'; $string['showgrades'] = 'Show Grades';
$string['user'] = 'User'; $string['user'] = 'User';
$string['selectuser'] = 'Select User'; $string['selectuser'] = 'Select User';
$string['grade'] = 'Grade'; $string['grade'] = 'Grade';
$string['quizzes'] = 'Quizzes';
$string['attempt'] = 'Attempt';
$string['question'] = 'Question';
$string['response'] = 'Response';
$string['totalgrade'] = 'Total Grade';

View file

@ -2,7 +2,7 @@
defined('MOODLE_INTERNAL') || die(); defined('MOODLE_INTERNAL') || die();
$plugin->component = 'report_usergrades'; $plugin->component = 'report_usergrades';
$plugin->version = 2024112001; $plugin->version = 2024112100;
$plugin->requires = 2022041900; $plugin->requires = 2022041900;
$plugin->maturity = MATURITY_ALPHA; $plugin->maturity = MATURITY_ALPHA;
$plugin->release = 'v1.0'; $plugin->release = 'v1.0';