MDL-10181, user management improvements fixes

This commit is contained in:
toyomoyo 2007-07-13 08:26:47 +00:00
parent 0a5a42ed76
commit c55dee3fa9
12 changed files with 127 additions and 109 deletions

30
lang/en_utf8/help/notes.php Executable file
View file

@ -0,0 +1,30 @@
<?php // $Id$
// note.php
$string['note'] = 'Note';
$string['notes'] = 'Notes';
$string['sitenotes'] = 'Site notes';
$string['coursenotes'] = 'Course notes';
$string['personalnotes'] = 'Personal notes';
$string['created'] = 'created';
$string['nonotes'] = 'There are no notes.';
$string['notesnotvisible'] = 'You are not allowed to view the notes.';
$string['addnewnote'] = 'Add a new note';
$string['editnote'] = 'Edit note';
$string['groupaddnewnote'] = 'Add a new note for all';
$string['deleteconfirm'] = 'Delete this note?';
$string['content'] = 'Content';
$string['nocontent'] = 'Note content can not be empty';
$string['nouser'] = 'You must select a user';
$string['rating'] = 'Rating';
$string['low'] = 'low';
$string['belownormal'] = 'below normal';
$string['normal'] = 'normal';
$string['abovenormal'] = 'above normal';
$string['high'] = 'high';
$string['unknown'] = 'unknown';
$string['bynameondate'] = 'by $a->name - $a->date';
$string['publishstate'] = 'Status';
$string['personal'] = 'personal';
$string['course'] = 'course';
$string['site'] = 'site';

View file

@ -0,0 +1,8 @@
<h1>Status</h1>
<p>There are 3 possible settings here</p>
<ul>
<li><strong>Personal</strong> - The note will be visible only to you</li>
<li><strong>Course</strong> - The note will be visible to teachers in this course</li>
<li><strong>Site</strong> - The note will be visible to teachers in all courses</li>
</ul>