diff --git a/admin/tool/replace/index.php b/admin/tool/replace/index.php
index 6f3c89fcb0e..11e1068576b 100644
--- a/admin/tool/replace/index.php
+++ b/admin/tool/replace/index.php
@@ -38,25 +38,29 @@ $sure = optional_param('sure', 0, PARAM_BOOL);
###################################################################
echo $OUTPUT->header();
-echo $OUTPUT->heading('Search and replace text throughout the whole database');
+echo $OUTPUT->heading(get_string('pageheader', 'tool_replace'));
if ($DB->get_dbfamily() !== 'mysql' and $DB->get_dbfamily() !== 'postgres') {
//TODO: add $DB->text_replace() to DML drivers
- echo $OUTPUT->notification('Sorry, this feature is implemented only for MySQL and PostgreSQL databases.');
+ echo $OUTPUT->notification(get_string('notimplemented', 'tool_replace'));
echo $OUTPUT->footer();
die;
}
if (!data_submitted() or !$search or !$replace or !confirm_sesskey() or !$sure) { /// Print a form
- echo $OUTPUT->notification('This script is not supported, always make complete backup before proceeding!
This operation can not be reverted!');
+ echo $OUTPUT->notification(get_string('notsupported', 'tool_replace'));
echo $OUTPUT->box_start();
echo '