mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-07-08 09:13:12 +02:00
Merge pull request #3369 from pejuaxel/master
Add missing localizations
This commit is contained in:
@@ -1,4 +1,7 @@
|
||||
{
|
||||
"category": "Category",
|
||||
"subcategories": "Subcategories",
|
||||
|
||||
"new_topic_button": "New Topic",
|
||||
"guest-login-post": "Log in to post",
|
||||
"no_topics": "<strong>There are no topics in this category.</strong><br />Why don't you try posting one?",
|
||||
|
||||
@@ -52,5 +52,7 @@
|
||||
"membership.invitation-pending": "Invitation Pending",
|
||||
"membership.join-group": "Join Group",
|
||||
"membership.leave-group": "Leave Group",
|
||||
"membership.reject": "Reject"
|
||||
"membership.reject": "Reject",
|
||||
|
||||
"new-group.group_name": "Group Name:"
|
||||
}
|
||||
@@ -17,7 +17,7 @@ define('forum/groups/list', ['forum/infinitescroll'], function(infinitescroll) {
|
||||
|
||||
// Group creation
|
||||
$('button[data-action="new"]').on('click', function() {
|
||||
bootbox.prompt('Group Name:', function(name) {
|
||||
bootbox.prompt('[[group:new-group.group_name]]', function(name) {
|
||||
if (name && name.length) {
|
||||
socket.emit('groups.create', {
|
||||
name: name
|
||||
|
||||
Reference in New Issue
Block a user