Search moodle.org's
Developer Documentation

See Release Notes
Long Term Support Release

  • Bug fixes for general core bugs in 4.1.x will end 13 November 2023 (12 months).
  • Bug fixes for security issues in 4.1.x will end 10 November 2025 (36 months).
  • PHP version: minimum PHP 7.4.0 Note: minimum PHP version has increased since Moodle 4.0. PHP 8.0.x is 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 'tiny_recordrtc', language 'en'.
  19   *
  20   * @package    tiny_recordrtc
  21   * @copyright  2022 Stevani Andolo <stevani@hotmail.com.au>
  22   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  23   */
  24  
  25  $string['allowedtypes'] = 'Recording type';
  26  $string['allowedtypes_desc'] = 'Which types of recording can be made in the TinyMCE editor? In addition to this setting, there are two capabilities which control access to recording options.';
  27  $string['attachrecording'] = 'Attach recording';
  28  $string['audioandvideo'] = 'Audio and video';
  29  $string['audiobitrate'] = 'Audio bitrate';
  30  $string['audiobitrate_desc'] = 'Quality of audio recording (larger number means higher quality).';
  31  $string['audiobuttontitle'] = 'Record audio';
  32  $string['audiotimelimit'] = 'Audio time limit';
  33  $string['audiotimelimit_desc'] = 'Maximum recording length for audio clips.';
  34  $string['audiotitle'] = 'Record audio';
  35  $string['confirm_yes'] = 'Yes';
  36  $string['discard_desc'] = 'There is a recording in progress. Do you want to stop the recording?';
  37  $string['discard_title'] = 'Close confirmation';
  38  $string['gumabort'] = 'Something happened which prevented the webcam/microphone from being used.';
  39  $string['gumabort_title'] = 'Something happened';
  40  $string['gumnotallowed'] = 'You must allow the browser access to the webcam/microphone.';
  41  $string['gumnotallowed_title'] = 'Wrong permissions';
  42  $string['gumnotfound'] = 'No input device detected.';
  43  $string['gumnotfound_title'] = 'Device missing';
  44  $string['gumnotreadable'] = 'Something is preventing the browser from accessing the webcam/microphone.';
  45  $string['gumnotreadable_title'] = 'Hardware error';
  46  $string['gumnotsupported'] = 'Your browser doesn\'t support recording over an insecure connection.';
  47  $string['gumnotsupported_title'] = 'No support for insecure connection';
  48  $string['gumoverconstrained'] = 'The current webcam/microphone can\'t produce a stream with the required constraints.';
  49  $string['gumoverconstrained_title'] = 'Problem with constraints';
  50  $string['gumsecurity'] = 'Your browser doesn\'t support recording over an insecure connection.';
  51  $string['gumsecurity_title'] = 'No support for insecure connection';
  52  $string['gumtype'] = 'Tried to get stream from the webcam/microphone, but no constraints were specified.';
  53  $string['gumtype_title'] = 'No constraints specified';
  54  $string['insecurealert'] = 'Your browser might not allow this plugin to work unless it is used either over HTTPS or from localhost.';
  55  $string['insecurealert_title'] = 'Insecure connection!';
  56  $string['maxfilesizehit'] = 'You have reached the maximum size limit for file uploads.';
  57  $string['maxfilesizehit_title'] = 'Recording stopped';
  58  $string['norecordingfound'] = 'Something has gone wrong. Nothing has been recorded.';
  59  $string['norecordingfound_title'] = 'No recording found';
  60  $string['nowebrtc'] = 'Your browser offers limited or no support for WebRTC technologies yet, and can\'t be used with this plugin. Please switch or upgrade your browser.';
  61  $string['nowebrtc_title'] = 'WebRTC not supported';
  62  $string['onlyaudio'] = 'Audio only';
  63  $string['onlyvideo'] = 'Video only';
  64  $string['pluginname'] = 'Tiny RecordRTC';
  65  $string['privacy:metadata'] = 'The RecordRTC plugin does not store any personal data.';
  66  $string['recordagain'] = 'Record again';
  67  $string['recordagain_desc'] = 'You have already recorded some content. Recording again will remove this content. Are you sure you want to reset the recording?';
  68  $string['recordagain_title'] = 'Record again confirmation';
  69  $string['recordingfailed'] = 'Recording failed. Try again.';
  70  $string['recordinguploaded'] = 'Recording uploaded';
  71  $string['recordrtc:recordaudio'] = 'Record audio in the text editor';
  72  $string['recordrtc:recordvideo'] = 'Record video in the text editor';
  73  $string['startrecording'] = 'Start recording';
  74  $string['stoprecording'] = 'Stop recording';
  75  $string['timelimitwarning'] = 'You must enter a number that is greater than 0.';
  76  $string['uploadaborted'] = 'Upload aborted:';
  77  $string['uploadfailed'] = 'Upload failed with error: {$a->error}';
  78  $string['uploadfailed404'] = 'Upload failed: file too large';
  79  $string['uploading'] = 'Uploading - {$a->progress}%';
  80  $string['uploadprogress'] = 'completed';
  81  $string['videobitrate'] = 'Video bitrate';
  82  $string['videobitrate_desc'] = 'Quality of video recording (larger number means higher quality).';
  83  $string['videobuttontitle'] = 'Record video';
  84  $string['videotimelimit'] = 'Video time limit';
  85  $string['videotimelimit_desc'] = 'Maximum recording length for video clips.';
  86  $string['videotitle'] = 'Record video';
  87  $string['helplinktext'] = 'RecordRTC';