MDL-40759 fontawesome: lang strings comments

This commit is contained in:
Damyon Wiese 2017-03-21 11:13:43 +08:00
parent 7e8940b544
commit dc633a24b9
2 changed files with 12 additions and 9 deletions

View file

@ -332,14 +332,15 @@ M.core_comment = {
} }
}, '13,32'); }, '13,32');
// 13 and 32 are the keycodes for space and enter. // 13 and 32 are the keycodes for space and enter.
require(['core/templates', 'core/notification'], function(Templates, Notification) {
var title = node.getAttribute('title');
Templates.renderPix('t/delete', 'core', title).then(function(html) {
node.set('innerHTML', html);
}).catch(Notification.exception);
});
} }
); );
require(['core/templates', 'core/notification'], function(Templates, Notification) {
Templates.renderPix('t/delete', 'core', M.util.get_string('deletecomment', 'moodle')).then(function(html) {
Y.all('div.comment-delete a').set('innerHTML', html);
}).catch(Notification.exception);
});
}, },
register_pagination: function() { register_pagination: function() {
var scope = this; var scope = this;

View file

@ -263,8 +263,7 @@ class comment {
'comments', 'comments',
'commentscount', 'commentscount',
'commentsrequirelogin', 'commentsrequirelogin',
'deletecommentbyon', 'deletecommentbyon'
'deletecomment',
), ),
'moodle' 'moodle'
); );
@ -916,8 +915,11 @@ class comment {
$replacements = array(); $replacements = array();
if (!empty($cmt->delete) && empty($nonjs)) { if (!empty($cmt->delete) && empty($nonjs)) {
$strdelete = get_string('deletecommentbyon', 'moodle', (object)['user' => $cmt->fullname, 'time' => $cmt->time]);
$deletelink = html_writer::start_tag('div', array('class'=>'comment-delete')); $deletelink = html_writer::start_tag('div', array('class'=>'comment-delete'));
$deletelink .= html_writer::start_tag('a', array('href' => '#', 'id' => 'comment-delete-'.$this->cid.'-'.$cmt->id)); $deletelink .= html_writer::start_tag('a', array('href' => '#', 'id' => 'comment-delete-'.$this->cid.'-'.$cmt->id,
'title' => $strdelete));
$deletelink .= $OUTPUT->pix_icon('t/delete', get_string('delete')); $deletelink .= $OUTPUT->pix_icon('t/delete', get_string('delete'));
$deletelink .= html_writer::end_tag('a'); $deletelink .= html_writer::end_tag('a');
$deletelink .= html_writer::end_tag('div'); $deletelink .= html_writer::end_tag('div');