mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 22:08:20 +01:00
Merge branch 'MDL-33090-missing-xmldb-strings' of git://github.com/rlorenzo/moodle
This commit is contained in:
commit
5dc4db1ef2
@ -69,6 +69,7 @@ $string['documentationintro'] = 'This documentation is generated automatically f
|
||||
$string['down'] = 'Down';
|
||||
$string['duplicate'] = 'Duplicate';
|
||||
$string['duplicatefieldname'] = 'Another field with that name exists';
|
||||
$string['duplicatefieldsused'] = 'Duplicate fields used';
|
||||
$string['duplicatekeyname'] = 'Another key with that name exists';
|
||||
$string['duplicatetablename'] = 'Another table with that name exists';
|
||||
$string['edit'] = 'Edit';
|
||||
@ -88,6 +89,7 @@ $string['field'] = 'Field';
|
||||
$string['fieldnameempty'] = 'Name field empty';
|
||||
$string['fields'] = 'Fields';
|
||||
$string['fieldsnotintable'] = 'Field doesn\'t exist in table';
|
||||
$string['fieldsusedinindex'] = 'This field is used as index';
|
||||
$string['fieldsusedinkey'] = 'This field is used as key.';
|
||||
$string['filenotwriteable'] = 'File not writeable';
|
||||
$string['fkviolationdetails'] = 'Foreign key {$a->keyname} on table {$a->tablename} is violated by {$a->numviolations} out of {$a->numrows} rows.';
|
||||
@ -113,8 +115,10 @@ $string['incorrectfieldname'] = 'Incorrect name';
|
||||
$string['index'] = 'Index';
|
||||
$string['indexes'] = 'Indexes';
|
||||
$string['integerincorrectlength'] = 'Incorrect length for integer field';
|
||||
$string['incorrectkeyname'] = 'Incorrect key name';
|
||||
$string['incorrecttablename'] = 'Incorrect table name';
|
||||
$string['key'] = 'Key';
|
||||
$string['keynameempty'] = 'The key name cannot be empty';
|
||||
$string['keys'] = 'Keys';
|
||||
$string['listreservedwords'] = 'List of Reserved Words<br />(used to keep <a href="http://docs.moodle.org/en/XMLDB_reserved_words" target="_blank">XMLDB_reserved_words</a> updated)';
|
||||
$string['load'] = 'Load';
|
||||
@ -131,8 +135,11 @@ $string['newkey'] = 'New key';
|
||||
$string['newtable'] = 'New table';
|
||||
$string['newtablefrommysql'] = 'New table from MySQL';
|
||||
$string['new_table_from_mysql'] = 'New table from MySQL';
|
||||
$string['nofieldsspecified'] = 'No fields specified';
|
||||
$string['nomasterprimaryuniquefound'] = 'The column(s) that you foreign key references must be included in a primary or unique KEY in the referenced table. Note, the column being in a UNIQUE INDEX is not good enough.';
|
||||
$string['nomissingindexesfound'] = 'No missing indexes have been found, your DB doesn\'t need further actions.';
|
||||
$string['noreffieldsspecified'] = 'No reference fields specified';
|
||||
$string['noreftablespecified'] = 'Specified reference table not found';
|
||||
$string['noviolatedforeignkeysfound'] = 'No violated foreign keys found';
|
||||
$string['nowrongdefaultsfound'] = 'No inconsistent default values have been found, your DB does not need further actions.';
|
||||
$string['nowrongintsfound'] = 'No wrong integers have been found, your DB doesn\'t need further actions.';
|
||||
@ -143,6 +150,7 @@ $string['pendingchanges'] = 'Note: You have performed changes to this file. They
|
||||
$string['pendingchangescannotbesaved'] = 'There are changes in this file but they cannot be saved! Please verify that both the directory and the "install.xml" within it have write permissions for the web server.';
|
||||
$string['pendingchangescannotbesavedreload'] = 'There are changes in this file but they cannot be saved! Please verify that both the directory and the "install.xml" within it have write permissions for the web server. Then reload this page and you should be able to save those changes.';
|
||||
$string['pluginname'] = 'XMLDB editor';
|
||||
$string['primarykeyonlyallownotnullfields'] = 'Primary keys cannot be null';
|
||||
$string['reserved'] = 'Reserved';
|
||||
$string['reservedwords'] = 'Reserved words';
|
||||
$string['revert'] = 'Revert';
|
||||
@ -178,6 +186,7 @@ $string['wrong'] = 'Wrong';
|
||||
$string['wrongdefaults'] = 'Wrong defaults found';
|
||||
$string['wrongints'] = 'Wrong integers found';
|
||||
$string['wronglengthforenum'] = 'Incorrect length for enum field';
|
||||
$string['wrongnumberofreffields'] = 'Wrong number of reference fields';
|
||||
$string['wrongreservedwords'] = 'Currently used reserved words<br />(note that table names aren\'t important if using $CFG->prefix)';
|
||||
$string['wrongoraclesemantics'] = 'Wrong Oracle BYTE semantics found';
|
||||
$string['yesmissingindexesfound'] = 'Some missing indexes have been found in your DB. Here are their details and the needed SQL statements to be executed with your favourite SQL interface to create all them (don\'t forget to backup your data before doing that).<br /><br />After doing that, it\'s highly recommended to execute this utility again to check that no more missing indexes are found.';
|
||||
|
Loading…
x
Reference in New Issue
Block a user