Search moodle.org's
Developer Documentation

See Release Notes
Long Term Support Release

  • Bug fixes for general core bugs in 3.9.x will end* 10 May 2021 (12 months).
  • Bug fixes for security issues in 3.9.x will end* 8 May 2023 (36 months).
  • PHP version: minimum PHP 7.2.0 Note: minimum PHP version has increased since Moodle 3.8. PHP 7.3.x and 7.4.x are supported too.
/lang/en/ -> notes.php (source)

Differences Between: [Versions 39 and 401] [Versions 39 and 402] [Versions 39 and 403]

   1  <?php
   2  // This file is part of Moodle - http://moodle.org/
   3  //
   4  // Moodle is free software: you can redistribute it and/or modify
   5  // it under the terms of the GNU General Public License as published by
   6  // the Free Software Foundation, either version 3 of the License, or
   7  // (at your option) any later version.
   8  //
   9  // Moodle is distributed in the hope that it will be useful,
  10  // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11  // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12  // GNU General Public License for more details.
  13  //
  14  // You should have received a copy of the GNU General Public License
  15  // along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
  16  
  17  /**
  18   * Strings for component 'notes', language 'en', branch 'MOODLE_20_STABLE'
  19   *
  20   * @package    core_notes
  21   * @subpackage notes
  22   * @copyright  1999 onwards Martin Dougiamas  {@link http://moodle.com}
  23   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  24   */
  25  
  26  $string['addnewnote'] = 'Add a new note';
  27  $string['addbulknote'] = 'Add a new note to {$a} people';
  28  $string['addbulknotesingle'] = 'Add a new note to 1 person';
  29  $string['addbulknotedone'] = 'Note added to {$a} people';
  30  $string['addbulknotedonesingle'] = 'Note added to 1 person';
  31  $string['addnewnoteselect'] = 'Select users to write notes about';
  32  $string['bynameondate'] = 'by {$a->name} - {$a->date}';
  33  $string['configenablenotes'] = 'Enable storing of notes about individual users.';
  34  $string['content'] = 'Content';
  35  $string['course'] = 'course';
  36  $string['coursenotes'] = 'Course notes';
  37  $string['created'] = 'created';
  38  $string['deleteconfirm'] = 'Delete this note?';
  39  $string['deletenotes'] = 'Delete all notes';
  40  $string['editnote'] = 'Edit note';
  41  $string['enablenotes'] = 'Enable notes';
  42  $string['eventnotecreated'] = 'Note created';
  43  $string['eventnoteupdated'] = 'Note updated';
  44  $string['eventnotedeleted'] = 'Note deleted';
  45  $string['eventnotesviewed'] = 'Notes viewed';
  46  $string['invalidid'] = 'Invalid note ID specified';
  47  $string['invaliduserid'] = 'Invalid user id: {$a}';
  48  $string['myprofileownnotes'] = 'My notes';
  49  $string['nocontent'] = 'Note content can not be empty';
  50  $string['nonotes'] = 'There are no notes of this type yet';
  51  $string['nopermissiontodelete'] = 'You may not delete this note';
  52  $string['note'] = 'Note';
  53  $string['notes'] = 'Notes';
  54  $string['notesdisabled'] = 'Notes are disabled, sorry.';
  55  $string['notesnotvisible'] = 'You are not allowed to view the notes.';
  56  $string['nouser'] = 'You must select a user';
  57  $string['page-notes-x'] = 'Any note pages';
  58  $string['page-notes-index'] = 'Notes main page';
  59  $string['personal'] = 'personal';
  60  $string['personalnotes'] = 'Personal notes';
  61  $string['privacy:metadata:core_notes'] = 'The Notes component stores user notes within the core subsystem.';
  62  $string['privacy:metadata:core_notes:content'] = 'The content of the note.';
  63  $string['privacy:metadata:core_notes:courseid'] = 'The ID of the course associated with the note';
  64  $string['privacy:metadata:core_notes:created'] = 'The creation date/time for the note.';
  65  $string['privacy:metadata:core_notes:lastmodified'] = 'The last modified date/time for the note.';
  66  $string['privacy:metadata:core_notes:publishstate'] = 'The publish state of the note.';
  67  $string['privacy:metadata:core_notes:userid'] = 'The ID of the user associated with the note';
  68  $string['publishstate'] = 'Context';
  69  $string['publishstate_help'] = 'A note\'s context determines who can see the note in everyday use. Users should be aware that all notes, including personal ones, may be disclosed under the laws of their jurisdictions.
  70  
  71  * Personal - The note will be visible only to you
  72  * Course - The note will be visible to teachers in this course
  73  * Site - The note will be visible to teachers in all courses';
  74  $string['site'] = 'site';
  75  $string['sitenotes'] = 'Site notes';
  76  $string['unknown'] = 'unknown';