diff --git a/mod/wiki/lang/en/wiki.php b/mod/wiki/lang/en/wiki.php index 9781d7b0b268d..1c929d911dd9d 100644 --- a/mod/wiki/lang/en/wiki.php +++ b/mod/wiki/lang/en/wiki.php @@ -169,6 +169,7 @@ $string['pageislocked'] = 'Someone is editing this page right now. Try to edit it in a few minutes.'; $string['pagelist'] = 'Page list'; $string['pagelist_help'] = 'Page list categorized by alphabetical order'; +$string['pagename'] = 'Page name'; $string['peerreview'] = 'Peer review'; $string['pluginadministration'] = 'Wiki administration'; $string['pluginname'] = 'Wiki'; diff --git a/mod/wiki/pagelib.php b/mod/wiki/pagelib.php index 22f708a1db77b..ca00a5bc592e9 100644 --- a/mod/wiki/pagelib.php +++ b/mod/wiki/pagelib.php @@ -2483,7 +2483,7 @@ protected function create_navbar() { protected function print_delete_content($showorphan = true) { $contents = array(); $table = new html_table(); - $table->head = array('','Page name'); + $table->head = array('', get_string('pagename','wiki')); $table->attributes['class'] = 'generaltable mdl-align'; $swid = $this->subwiki->id; if ($showorphan) {