mirror of
https://github.com/moodle/moodle.git
synced 2025-08-06 01:16:44 +02:00
29 lines
1.9 KiB
PHP
29 lines
1.9 KiB
PHP
<?php
|
|
/*
|
|
* debug information for developer only
|
|
*/
|
|
$string['cannotupgradecapabilities'] = 'Had trouble upgrading the core capabilities for the Roles System';
|
|
$string['cannotupdateversion'] = 'Upgrade failed! (Could not update version in config table)';
|
|
$string['cannotupdaterelease'] = 'ERROR: Could not update release version in database!!';
|
|
$string['cannotsetupsite'] = 'Serious Error! Could not set up the site!';
|
|
$string['cannotfindadmin'] = 'Could not find an admin user!';
|
|
$string['configmoodle'] = 'Moodle has not been configured yet. You need to edit config.php first.';
|
|
$string['dbnotinsert'] = 'Database error - Cannot insert ($a)';
|
|
$string['dbnotupdate'] = 'Database error - Cannot update ($a)';
|
|
$string['dbnotsupport'] = 'Error: Your database ($a) is not yet fully supported by Moodle or install.xml is not present. See the lib/db directory.';
|
|
$string['dbnotsetup'] = 'Error: Main databases NOT set up successfully';
|
|
$string['doesnotworkwitholdversion'] = 'This script does not work with this old version of Moodle';
|
|
$string['erroroccur'] = 'An error has occurred during this process';
|
|
$string['fixsetting'] = 'Please fix your settings in config.php: <p>You have:</p> <p>\$CFG->dirroot = \"$a[0]\";</p> <p>but it should be:</p> <p>\$CFG->dirroot = \"$a[1]\"</p>';
|
|
$string['notables'] = 'No Tables!';
|
|
$string['noreports'] = 'No reports accessible';
|
|
$string['nomodules'] = 'No modules found!!';
|
|
$string['phpvaroff'] = 'The PHP server variable \'$a[0]\' should be Off - $a[1]';
|
|
$string['phpvaron'] = 'The PHP server variable \'$a[0]\' is not turned On - $a[1]';
|
|
$string['prefixcannotbeempty'] = 'Table prefix \"$a[0]\" cannot be empty for your target DB ($a[1])';
|
|
$string['prefixlimit'] = 'Table prefix \"$a\" maximum allowed length for Oracle DBs is 2cc.';
|
|
$string['withoutversion'] = 'Main version.php was not readable or specified';
|
|
$string['sessionmissing'] = '$a object missing from session';
|
|
$string['siteisnotdefined'] = 'Site is not defined!';
|
|
|
|
?>
|