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.

Differences Between: [Versions 39 and 310] [Versions 39 and 311] [Versions 39 and 400] [Versions 39 and 401] [Versions 39 and 402] [Versions 39 and 403]

   1  <?php
   2  
   3  // This file is part of Moodle - http://moodle.org/
   4  //
   5  // Moodle is free software: you can redistribute it and/or modify
   6  // it under the terms of the GNU General Public License as published by
   7  // the Free Software Foundation, either version 3 of the License, or
   8  // (at your option) any later version.
   9  //
  10  // Moodle is distributed in the hope that it will be useful,
  11  // but WITHOUT ANY WARRANTY; without even the implied warranty of
  12  // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13  // GNU General Public License for more details.
  14  //
  15  // You should have received a copy of the GNU General Public License
  16  // along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
  17  
  18  /**
  19   * Strings for Language customisation admin tool
  20   *
  21   * @package    tool
  22   * @subpackage customlang
  23   * @copyright  2010 David Mudrak <david@moodle.com>
  24   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  25   */
  26  
  27  defined('MOODLE_INTERNAL') || die();
  28  
  29  $string['checkin'] = 'Save strings to language pack';
  30  $string['checkout'] = 'Open language pack for editing';
  31  $string['checkoutdone'] = 'Language pack loaded';
  32  $string['checkoutinprogress'] = 'Loading language pack';
  33  $string['confirmcheckin'] = 'You are about to save modifications to your local language pack. This will export the customised strings from the translator into your site data directory and your site will start using the modified strings. Press \'Continue\' to proceed with saving.';
  34  $string['customlang:edit'] = 'Edit local translation';
  35  $string['customlang:view'] = 'View local translation';
  36  $string['filter'] = 'Filter strings';
  37  $string['filtercomponent'] = 'Show strings of these components';
  38  $string['filtercustomized'] = 'Customised only';
  39  $string['filtermodified'] = 'Modified in this session only';
  40  $string['filteronlyhelps'] = 'Help only';
  41  $string['filtershowstrings'] = 'Show strings';
  42  $string['filterstringid'] = 'String identifier';
  43  $string['filtersubstring'] = 'Only strings containing';
  44  $string['headingcomponent'] = 'Component';
  45  $string['headinglocal'] = 'Local customisation';
  46  $string['headingstandard'] = 'Standard text';
  47  $string['headingstringid'] = 'String';
  48  $string['markinguptodate'] = 'Marking the customisation as up-to-date';
  49  $string['markinguptodate_help'] = 'The customised translation may get outdated if either the English original or the master translation has modified since the string was customised on your site. Review the customised translation. If you find it up-to-date, click the checkbox. Edit it otherwise.';
  50  $string['markuptodate'] = 'mark as up-to-date';
  51  $string['modifiedno'] = 'There are no modified strings to save.';
  52  $string['modifiednum'] = 'There are {$a} modified strings. Do you wish to save these changes to your local language pack?';
  53  $string['nostringsfound'] = 'No strings found, please modify the filter settings';
  54  $string['placeholder'] = 'Placeholders';
  55  $string['placeholder_help'] = 'Placeholders are special statements like `{$a}` or `{$a->something}` within the string. They are replaced with a value when the string is actually printed.
  56  
  57  It is important to copy them exactly as they are in the original string. Do not translate them nor change their left-to-right orientation.';
  58  $string['placeholderwarning'] = 'string contains a placeholder';
  59  $string['pluginname'] = 'Language customisation';
  60  $string['savecheckin'] = 'Save changes to the language pack';
  61  $string['savecontinue'] = 'Apply changes and continue editing';
  62  $string['privacy:metadata'] = 'The Language customisation plugin does not store any personal data.';