Merge pull request #4219 from pichalite/groups

add missing translation in groups
This commit is contained in:
Julian Lam
2016-02-22 13:59:47 -05:00

View File

@@ -17,7 +17,7 @@ define('forum/groups/list', ['forum/infinitescroll'], function(infinitescroll) {
// Group creation
$('button[data-action="new"]').on('click', function() {
bootbox.prompt('[[group:new-group.group_name]]', function(name) {
bootbox.prompt('[[groups:new-group.group_name]]', function(name) {
if (name && name.length) {
socket.emit('groups.create', {
name: name
@@ -96,4 +96,4 @@ define('forum/groups/list', ['forum/infinitescroll'], function(infinitescroll) {
};
return Groups;
});
});