mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 05:50:14 +08:00
Merge pull request #4600 from jsilvanus/master
FEATURE: Split Reply-button into 'Reply Post' and 'Reply Topic'
This commit is contained in:
commit
f46f8ffe06
|
@ -68,8 +68,8 @@
|
|||
{{d-button class="btn-primary create"
|
||||
icon="reply"
|
||||
action=replyToPost
|
||||
label="topic.reply.title"
|
||||
title="topic.reply.help"}}
|
||||
label="topic.reply.topic.title"
|
||||
title="topic.reply.topic.help"}}
|
||||
{{/if}}
|
||||
|
||||
{{plugin-outlet name="after-topic-footer-main-buttons"
|
||||
|
|
|
@ -135,7 +135,7 @@ registerButton('reply', attrs => {
|
|||
if (!attrs.canCreatePost) { return; }
|
||||
|
||||
if (!attrs.mobileView) {
|
||||
args.label = 'topic.reply.title';
|
||||
args.label = 'topic.reply.post.title';
|
||||
}
|
||||
|
||||
return args;
|
||||
|
|
|
@ -1554,8 +1554,12 @@ en:
|
|||
remove_banner: "Remove Banner Topic"
|
||||
|
||||
reply:
|
||||
title: 'Reply'
|
||||
help: 'begin composing a reply to this topic'
|
||||
post:
|
||||
title: 'Reply'
|
||||
# help i.e. tooltop is at controls.reply
|
||||
topic:
|
||||
title: 'Reply'
|
||||
help: 'begin composing a reply to this topic'
|
||||
|
||||
clear_pin:
|
||||
title: "Clear pin"
|
||||
|
|
Loading…
Reference in New Issue
Block a user