1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-08-07 23:03:00 +03:00

#47 - Added translations for other language files using Google translate.

This commit is contained in:
Abijeet
2017-06-10 15:21:28 +05:30
parent 218376a41c
commit 4efe3b41da
15 changed files with 184 additions and 7 deletions

View File

@@ -936,12 +936,12 @@ module.exports = function (ngApp, events) {
element.on('click', function(e) {
e.preventDefault();
var resp = $window.confirm(trans('entities.comment_delete_confirm'));
if (!resp) {
return;
}
var resp = $window.confirm(trans('entities.comment_delete_confirm'));
if (!resp) {
return;
}
ctrl.delete(scope.comment);
ctrl.delete(scope.comment);
});
}
};