Skip to content

Commit 02be89e

Browse files
committed
Some small changes to what should be translated and to some strings
provided for translation.
1 parent 1b4c0ac commit 02be89e

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

lib/WeBWorK/ContentGenerator/Instructor/SendMail.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -696,8 +696,8 @@ sub print_form {
696696
name => 'send_to',
697697
values => [ 'all_students', 'studentID' ],
698698
labels => {
699-
all_students => $r->maketext('all'),
700-
studentID => $r->maketext('selected')
699+
all_students => $r->maketext('all students'),
700+
studentID => $r->maketext('selected students')
701701
},
702702
default => $r->param('send_to') // 'studentID',
703703
linebreak => 0,

lib/WeBWorK/ContentGenerator/Instructor/StudentProgress.pm

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -513,13 +513,13 @@ sub displaySets {
513513
last_name => $studentRecord->last_name(),
514514
first_name => $studentRecord->first_name(),
515515
score => 0,
516-
total => $r->maketext('n/a'),
516+
total => 'n/a',
517517
section => $studentRecord->section(),
518518
recitation => $studentRecord->recitation(),
519519
problemsRow => [$r->maketext('no attempt recorded')],
520520
email_address => $studentRecord->email_address(),
521-
date => $r->maketext('none'),
522-
testtime => $r->maketext('none'),
521+
date => 'n/a',
522+
testtime => 'n/a',
523523
};
524524
}
525525

@@ -534,13 +534,13 @@ sub displaySets {
534534
last_name => $studentRecord->last_name(),
535535
first_name => $studentRecord->first_name(),
536536
score => 0,
537-
total => $r->maketext('n/a'),
537+
total => 'n/a',
538538
section => $studentRecord->section(),
539539
recitation => $studentRecord->recitation(),
540540
problemsRow => [' '],
541541
email_address => $studentRecord->email_address(),
542-
date => $r->maketext('none'),
543-
testtime => $r->maketext('none'),
542+
date => 'n/a',
543+
testtime => 'n/a',
544544
};
545545
push(@score_list, 0);
546546
push(@augmentedUserRecords, $dataH);

0 commit comments

Comments
 (0)