]> git.mjollnir.org Git - moodle.git/commitdiff
Whoops. missed a string.
authorthepurpleblob <thepurpleblob>
Thu, 15 May 2008 15:24:03 +0000 (15:24 +0000)
committerthepurpleblob <thepurpleblob>
Thu, 15 May 2008 15:24:03 +0000 (15:24 +0000)
admin/xmldb/actions/check_defaults/check_defaults.class.php
lang/en_utf8/xmldb.php

index 2c7a90209a718e8aa300e87c9dacf462c685a07b..0b9fa3fa964ade1775c04c7e8dbcb02638be8648 100644 (file)
@@ -254,7 +254,7 @@ class check_defaults extends XMLDBAction {
             /// Add the SQL statements (all together)
                 $r.= '<hr />' . $s;
             } else {
-                $r.= '    <p class="centerpara">' . $this->str['nowrongintsfound'] . '</p>';
+                $r.= '    <p class="centerpara">' . $this->str['nowrongdefaultsfound'] . '</p>';
             }
             $r.= '  </td></tr>';
             $r.= '  <tr><td class="generalboxcontent">';
index f42df8078dbc260746fa0d28b4447af1b4ae6b45..01dc84912ca69d58d7ef9a684b306d47b1cf0224 100644 (file)
@@ -96,6 +96,7 @@ $string['newstatement'] = 'New Statement';
 $string['newtable'] = 'New Table';
 $string['newtablefrommysql'] = 'New Table From MySQL';
 $string['nomissingindexesfound'] = 'No missing indexes have been found, your DB doesn\'t need further actions.';
+$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.';
 $string['numberincorrectdecimals'] = 'Incorrect number of decimals for number field';
 $string['numberincorrectlength'] = 'Incorrect length for number field';
@@ -138,7 +139,7 @@ $string['wrongints'] = 'Wrong Integers Found';
 $string['wronglengthforenum'] = 'Incorrect length for enum field';
 $string['wrongnumberoffieldsorvalues'] = 'Incorrect number of fields or values in sentence';
 $string['wrongreservedwords'] = 'Currently Used Reserved Words<br />(note that table names aren\'t important if using $CFG->prefix)';
-$string['yeswrongdefaultsfound'] = 'Some inconsistent defaults have been found in your DB. Here there are their details and the needed SQL statements to be executed with your favourite SQL interface to fix them all (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 iconsistent defaults are found.';
-$string['yesmissingindexesfound'] = 'Some missing indexes have been found in your DB. Here there 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.';
-$string['yeswrongintsfound'] = 'Some wrong integers have been found in your DB. Here there 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 wrong integers are found.';
+$string['yeswrongdefaultsfound'] = 'Some inconsistent defaults have been found in your DB. Here are their details and the needed SQL statements to be executed with your favourite SQL interface to fix them all (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 iconsistent defaults are 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.';
+$string['yeswrongintsfound'] = 'Some wrong integers 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 wrong integers are found.';
 ?>