Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.11.x will end 14 Nov 2022 (12 months plus 6 months extension).
  • Bug fixes for security issues in 3.11.x will end 13 Nov 2023 (18 months plus 12 months extension).
  • PHP version: minimum PHP 7.3.0 Note: minimum PHP version has increased since Moodle 3.10. PHP 7.4.x is supported too.

Differences Between: [Versions 311 and 400] [Versions 311 and 401] [Versions 311 and 402] [Versions 311 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 'payment', language 'en'
  19   *
  20   * @package   core_payment
  21   * @copyright 2019 Shamim Rezaie <shamim@moodle.com>
  22   * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  23   */
  24  
  25  $string['accountarchived'] = 'Archived';
  26  $string['accountdeleteconfirm'] = 'If this account has previous payments, it will be archived, otherwise its configuration data will be permanently deleted. Are you sure you want to continue?';
  27  $string['accountconfignote'] = 'Payment gateways for this account will be configured separately';
  28  $string['accountidnumber'] = 'ID number';
  29  $string['accountidnumber_help'] = 'The ID number is only used when matching the account against external systems and is not displayed anywhere on the site. If the account has an official code name it may be entered, otherwise the field can be left blank.';
  30  $string['accountname'] = 'Account name';
  31  $string['accountname_help'] = 'How this account will be identified for teachers or managers who set up payments (for example in the course enrolment plugin).';
  32  $string['accountnotavailable'] = 'Not available';
  33  $string['paymentaccountsexplained'] = 'Create one or multiple payment accounts for this site. Each account includes configuration for available payment gateways. The person who configures payments on the site (for example, payment for the course enrolment) will be able to choose from the available accounts.';
  34  $string['createaccount'] = 'Create payment account';
  35  $string['deleteorarchive'] = 'Delete or archive';
  36  $string['eventaccountcreated'] = 'Payment account created';
  37  $string['eventaccountdeleted'] = 'Payment account deleted';
  38  $string['eventaccountupdated'] = 'Payment account updated';
  39  $string['feeincludesurcharge'] = '{$a->fee} (includes {$a->surcharge}% surcharge for using this payment type)';
  40  $string['gatewaycannotbeenabled'] = 'The payment gateway cannot be enabled because the configuration is incomplete.';
  41  $string['gatewaydisabled'] = 'Disabled';
  42  $string['gatewayenabled'] = 'Enabled';
  43  $string['gatewaynotfound'] = 'Gateway not found';
  44  $string['gotomanageplugins'] = 'Enable and disable payment gateways and set surcharges via {$a}.';
  45  $string['gotopaymentaccounts'] = 'You can create multiple payment accounts using any of these gateways on the {$a} page';
  46  $string['hidearchived'] = 'Hide archived';
  47  $string['noaccountsavilable'] = 'No payment accounts are available.';
  48  $string['nocurrencysupported'] = 'No payment in any currency is supported. Please make sure that at least one payment gateway is enabled.';
  49  $string['nogateway'] = 'There is no payment gateway that can be used.';
  50  $string['nogatewayselected'] = 'You first need to select a payment gateway.';
  51  $string['payments'] = 'Payments';
  52  $string['paymentaccount'] = 'Payment account';
  53  $string['paymentaccounts'] = 'Payment accounts';
  54  $string['privacy:metadata:database:payments'] = 'Information about the payments.';
  55  $string['privacy:metadata:database:payments:amount'] = 'The amount for the payment.';
  56  $string['privacy:metadata:database:payments:currency'] = 'The currency of the payment.';
  57  $string['privacy:metadata:database:payments:gateway'] = 'The payment gateway that is used for the payment.';
  58  $string['privacy:metadata:database:payments:timecreated'] = 'The time when the payment was made.';
  59  $string['privacy:metadata:database:payments:timemodified'] = 'The time when the payment record was last updated.';
  60  $string['privacy:metadata:database:payments:userid'] = 'The user who made the payment.';
  61  $string['restoreaccount'] = 'Restore';
  62  $string['selectpaymenttype'] = 'Select payment type';
  63  $string['showarchived'] = 'Show archived';
  64  $string['supportedcurrencies'] = 'Supported currencies';
  65  $string['surcharge'] = 'Surcharge (percentage)';
  66  $string['surcharge_desc'] = 'The surcharge is an additional percentage charged to users who choose to pay using this payment gateway.';