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.
   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 component 'portfolio_boxnet', language 'en', branch 'MOODLE_20_STABLE'
  20   *
  21   * @package   portfolio_boxnet
  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['clientid'] = 'Client ID';
  27  $string['clientsecret'] = 'Client secret';
  28  $string['existingfolder'] = 'Existing folder to put file(s) into';
  29  $string['folderclash'] = 'The folder you asked to create already exists!';
  30  $string['foldercreatefailed'] = 'Failed to create your target folder on Box';
  31  $string['folderlistfailed'] = 'Failed to retrieve a folder listing from Box';
  32  $string['missinghttps'] = 'HTTPS required';
  33  $string['missinghttps_help'] = 'Box will only work with an HTTPS enabled website.';
  34  $string['missingoauthkeys'] = 'Missing client ID and secret';
  35  $string['missingoauthkeys_help'] = 'There is no client ID or secret configured for this plugin. You can get one of these from Box development page.';
  36  $string['newfolder'] = 'New folder to put file(s) into';
  37  $string['noauthtoken'] = 'Could not retrieve an authentication token for use in this session';
  38  $string['notarget'] = 'You must specify either an existing folder or a new folder to upload into';
  39  $string['noticket'] = 'Could not retrieve a ticket from Box to begin the authentication session';
  40  $string['password'] = 'Your Box password (will not be stored)';
  41  $string['pluginname'] = 'Box';
  42  $string['privacy:metadata'] = 'This plugin sends data externally to a linked Box account. It does not store data locally.';
  43  $string['privacy:metadata:data'] = 'Personal data passed through from the portfolio subsystem.';
  44  $string['sendfailed'] = 'Failed to send content to Box: {$a}';
  45  $string['setupinfo'] = 'Setup instructions';
  46  $string['setupinfodetails'] = 'To obtain a client ID and secret, log in to Box and visit the <a href="{$a->servicesurl}">Box developers page</a>. Follow \'Create new application\' and create a new application for your Moodle site. The client ID and secret are displayed in the \'OAuth2 parameters\' section of the application edit form. Optionally, you can also provide other information about your Moodle site.';
  47  $string['sharedfolder'] = 'Shared';
  48  $string['sharefile'] = 'Share this file?';
  49  $string['sharefolder'] = 'Share this new folder?';
  50  $string['targetfolder'] = 'Target folder';
  51  $string['tobecreated'] = 'To be created';
  52  $string['username'] = 'Your Box username (will not be stored)';
  53  $string['warninghttps'] = 'Box requires your website to be using HTTPS in order for the portfolio to work.';