Skip to content

Commit

Permalink
Making the use prreference more consistent with the rest
Browse files Browse the repository at this point in the history
  • Loading branch information
moodler committed Apr 25, 2005
1 parent c246882 commit d1889a5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion lang/en/moodle.php
Original file line number Diff line number Diff line change
Expand Up @@ -1031,7 +1031,9 @@
$string['topicoutline'] = 'Topic outline';
$string['topicshow'] = 'Show this topic to $a';
$string['total'] = 'Total';
$string['trackforums'] = 'Track read/unread posts';
$string['trackforums'] = 'Forum tracking';
$string['trackforumsno'] = 'No: don\'t keep track of posts I have seen';
$string['trackforumsyes'] = 'Yes: highlight new posts for me';
$string['trysearching'] = 'Try searching instead.';
$string['turneditingoff'] = 'Turn editing off';
$string['turneditingon'] = 'Turn editing on';
Expand Down
4 changes: 2 additions & 2 deletions user/edit.html
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,8 @@
<th><?php print_string("trackforums") ?>:</th>
<td><?php
unset($choices);
$choices["1"] = get_string("yes");
$choices["0"] = get_string("no");
$choices["1"] = get_string("trackforumsyes");
$choices["0"] = get_string("trackforumsno");
choose_from_menu ($choices, "trackforums", $user->trackforums, "") ?>
</td>
</tr>
Expand Down

0 comments on commit d1889a5

Please sign in to comment.