Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.10.x will end 8 November 2021 (12 months).
  • Bug fixes for security issues in 3.10.x will end 9 May 2022 (18 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.
   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 'assignfeedback_editpdf', language 'en'
  19   *
  20   * @package   assignfeedback_editpdf
  21   * @copyright 2012 Davo Smith
  22   * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  23   */
  24  
  25  defined('MOODLE_INTERNAL') || die();
  26  
  27  $string['addtoquicklist'] = 'Add to quicklist';
  28  $string['annotationcolour'] = 'Annotation colour';
  29  $string['black'] = 'Black';
  30  $string['blue'] = 'Blue';
  31  $string['cannotopenpdf'] = 'Cannot open the PDF. The file may be corrupt, or in an unsupported format.';
  32  $string['clear'] = 'Clear';
  33  $string['colourpicker'] = 'Colour picker';
  34  $string['commentcolour'] = 'Comment colour';
  35  $string['comment'] = 'Comments';
  36  $string['commentindex'] = 'Index of comments';
  37  $string['commentlabel'] = '{$a->pnum}.{$a->cnum}';
  38  $string['command'] = 'Command:';
  39  $string['commentcontextmenu'] = 'Comment context menu';
  40  $string['couldnotsavepage'] = 'Could not save page {$a}';
  41  $string['currentstamp'] = 'Stamp';
  42  $string['default'] = 'Enabled by default';
  43  $string['default_help'] = 'If set, this feedback method will be enabled by default for all new assignments.';
  44  $string['deleteannotation'] = 'Delete annotation';
  45  $string['deletecomment'] = 'Delete comment';
  46  $string['deletefeedback'] = 'Delete feedback PDF';
  47  $string['downloadablefilename'] = 'feedback.pdf';
  48  $string['downloadfeedback'] = 'Download feedback PDF';
  49  $string['drag'] = 'Drag';
  50  $string['errorgenerateimage'] = 'Error generating image with ghostscript, debugging info: {$a}';
  51  $string['errorpdfpage'] = 'There was an error while generating this page.';
  52  $string['editpdf'] = 'Annotate PDF';
  53  $string['editpdf_help'] = 'Annotate student submissions directly in the browser and produce an edited downloadable PDF.';
  54  $string['enabled'] = 'Annotate PDF';
  55  $string['enabled_help'] = 'If enabled, the teacher will be able to create annotated PDF files when marking assignment submissions. This allows the teacher to add comments, drawing and stamps directly on top of the student\'s work. The annotating is done in the browser and no extra software is required.';
  56  $string['expcolcomments'] = 'Expand/collapse all comments';
  57  $string['filter'] = 'Filter comments...';
  58  $string['generatefeedback'] = 'Generate feedback PDF';
  59  $string['gotopage'] = 'Go to page';
  60  $string['green'] = 'Green';
  61  $string['gsimage'] = 'Ghostscript test image';
  62  $string['pathtogspathdesc'] = 'Please note that annotate PDF requires the path to ghostscript to be set in {$a}.';
  63  $string['highlight'] = 'Highlight';
  64  $string['jsrequired'] = 'JavaScript is required to annotate a PDF. Please enable JavaScript in your browser to use this feature.';
  65  $string['launcheditor'] = 'Launch PDF editor...';
  66  $string['line'] = 'Line';
  67  $string['loadingeditor'] = 'Loading PDF editor';
  68  $string['navigatenext'] = 'Next page (Alt/Shift-Alt/Ctrl-Option + {$a})';
  69  $string['navigateprevious'] = 'Previous page (Alt/Shift-Alt/Ctrl-Option + {$a})';
  70  $string['oval'] = 'Oval';
  71  $string['output'] = 'Output:';
  72  $string['pagenumber'] = 'Page {$a}';
  73  $string['pagexofy'] = 'Page {$a->page} of {$a->total}';
  74  $string['pen'] = 'Pen';
  75  $string['partialwarning'] = 'Some of the files in this submission can only be accessed by direct download.';
  76  $string['pluginname'] = 'Annotate PDF';
  77  $string['privacy:metadata:colourpurpose'] = 'Colour of the comment or annotation';
  78  $string['privacy:metadata:conversionpurpose'] = 'Files are converted to PDFs to allow for annotations.';
  79  $string['privacy:metadata:filepurpose'] = 'Stores an annotated PDF with feedback for the user.';
  80  $string['privacy:metadata:rawtextpurpose'] = 'Stores raw text for the quick data.';
  81  $string['privacy:metadata:tablepurpose'] = 'Stores teacher specified quicklist comments';
  82  $string['privacy:metadata:userid'] = 'The user ID';
  83  $string['privacy:path'] = 'PDF Feedback';
  84  $string['generatingpdf'] = 'Generating the PDF...';
  85  $string['rectangle'] = 'Rectangle';
  86  $string['red'] = 'Red';
  87  $string['result'] = 'Result:';
  88  $string['searchcomments'] = 'Search comments';
  89  $string['select'] = 'Select';
  90  $string['stamppicker'] = 'Stamp picker';
  91  $string['stampsdesc'] = 'Stamps must be image files (recommended size: 40x40). These images can be used with the stamp tool to annotate the PDF.';
  92  $string['stamps'] = 'Stamps';
  93  $string['stamp'] = 'Stamp';
  94  $string['test_doesnotexist'] = 'The ghostscript path points to a non-existent file';
  95  $string['test_empty'] = 'The ghostscript path is empty - please enter the correct path';
  96  $string['testgs'] = 'Test ghostscript path';
  97  $string['test_isdir'] = 'The ghostscript path points to a folder, please include the ghostscript program in the path you specify';
  98  $string['test_notestfile'] = 'The test PDF is missing';
  99  $string['test_notexecutable'] = 'The ghostscript points to a file that is not executable';
 100  $string['test_ok'] = 'The ghostscript path appears to be OK - please check you can see the message in the image below';
 101  $string['test_doesnotexist'] = 'The ghostscript path points to a non-existent file';
 102  $string['test_empty'] = 'The ghostscript path is empty - please enter the correct path';
 103  $string['toolbarbutton'] = '{$a->tool} {$a->shortcut}';
 104  $string['tool'] = 'Tool';
 105  $string['viewfeedbackonline'] = 'View annotated PDF...';
 106  $string['white'] = 'White';
 107  $string['yellow'] = 'Yellow';
 108  $string['draftchangessaved'] = 'Draft annotations saved';
 109  $string['preparesubmissionsforannotation'] = 'Prepare submissions for annotation';
 110  $string['rotateleft'] = 'Rotate 90 degrees to the left';
 111  $string['rotateright'] = 'Rotate 90 degrees to the right';