mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-06 22:15:48 +01:00
closes #1046
This commit is contained in:
@@ -11,6 +11,9 @@
|
|||||||
|
|
||||||
"register": "Register",
|
"register": "Register",
|
||||||
"login": "Login",
|
"login": "Login",
|
||||||
|
"please_log_in": "Please Log In",
|
||||||
|
|
||||||
|
"posting_restriction_info": "Posting is currently restricted to registered members only, click here to log in.",
|
||||||
|
|
||||||
"welcome_back": "Welcome Back ",
|
"welcome_back": "Welcome Back ",
|
||||||
"you_have_successfully_logged_in": "You have successfully logged in",
|
"you_have_successfully_logged_in": "You have successfully logged in",
|
||||||
|
|||||||
@@ -24,6 +24,13 @@
|
|||||||
"flag_title": "Flag this post for moderation",
|
"flag_title": "Flag this post for moderation",
|
||||||
"deleted_message": "This thread has been deleted. Only users with thread management privileges can see it.",
|
"deleted_message": "This thread has been deleted. Only users with thread management privileges can see it.",
|
||||||
|
|
||||||
|
"following_topic.title": "Following Topic",
|
||||||
|
"following_topic.message": "You will now be receiving notifications when somebody posts to this topic.",
|
||||||
|
"not_following_topic.title": "Not Following Topic",
|
||||||
|
"not_following_topic.message": "You will no longer receive notifications from this topic.",
|
||||||
|
|
||||||
|
"login_to_subscribe": "Please register or log in in order to subscribe to this topic",
|
||||||
|
|
||||||
"watch": "Watch",
|
"watch": "Watch",
|
||||||
"share_this_post": "Share this Post",
|
"share_this_post": "Share this Post",
|
||||||
|
|
||||||
@@ -72,5 +79,8 @@
|
|||||||
"composer.discard": "Discard",
|
"composer.discard": "Discard",
|
||||||
"composer.submit": "Submit",
|
"composer.submit": "Submit",
|
||||||
"composer.replying_to": "Replying to",
|
"composer.replying_to": "Replying to",
|
||||||
"composer.new_topic": "New Topic"
|
"composer.new_topic": "New Topic",
|
||||||
|
"composer.drag_and_drop_images": "Drag and Drop Images Here",
|
||||||
|
"composer.content_is_parsed_with": "Content is parsed with",
|
||||||
|
"composer.upload_instructions": "Upload images by dragging & dropping them."
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -290,8 +290,8 @@ define(['composer', 'forum/pagination'], function(composer, pagination) {
|
|||||||
app.alert({
|
app.alert({
|
||||||
alert_id: 'topic_follow',
|
alert_id: 'topic_follow',
|
||||||
timeout: 2500,
|
timeout: 2500,
|
||||||
title: 'Following Topic',
|
title: '[[topic:following_topic.title]]',
|
||||||
message: 'You will now be receiving notifications when somebody posts to this topic.',
|
message: '[[topic:following_topic.message]]',
|
||||||
type: 'success'
|
type: 'success'
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@@ -302,8 +302,8 @@ define(['composer', 'forum/pagination'], function(composer, pagination) {
|
|||||||
app.alert({
|
app.alert({
|
||||||
alert_id: 'topic_follow',
|
alert_id: 'topic_follow',
|
||||||
timeout: 2500,
|
timeout: 2500,
|
||||||
title: 'Not Following Topic',
|
title: '[[topic:not_following_topic.title]]',
|
||||||
message: 'You will no longer receive notifications from this topic.',
|
message: '[[topic:not_following_topic.message]]',
|
||||||
type: 'success'
|
type: 'success'
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@@ -320,8 +320,8 @@ define(['composer', 'forum/pagination'], function(composer, pagination) {
|
|||||||
return app.alert({
|
return app.alert({
|
||||||
type: 'danger',
|
type: 'danger',
|
||||||
alert_id: 'topic_follow',
|
alert_id: 'topic_follow',
|
||||||
title: 'Please Log In',
|
title: '[[global:please_log_in]]',
|
||||||
message: 'Please register or log in in order to subscribe to this topic',
|
message: '[[topic:login_to_subscribe]]',
|
||||||
timeout: 5000
|
timeout: 5000
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,8 +10,8 @@ define(['taskbar'], function(taskbar) {
|
|||||||
type: 'danger',
|
type: 'danger',
|
||||||
timeout: 5000,
|
timeout: 5000,
|
||||||
alert_id: 'post_error',
|
alert_id: 'post_error',
|
||||||
title: 'Please Log In to Post',
|
title: '[[global:please_log_in]]',
|
||||||
message: 'Posting is currently restricted to registered members only, click here to log in',
|
message: '[[global:posting_restriction_info]]',
|
||||||
clickfn: function() {
|
clickfn: function() {
|
||||||
ajaxify.go('login');
|
ajaxify.go('login');
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user