FIX: adds a title to composer actions header
This commit is contained in:
parent
6e54af1091
commit
3fc82bf200
|
@ -61,12 +61,15 @@ export default DropdownSelectBoxComponent.extend({
|
|||
case CREATE_TOPIC:
|
||||
case REPLY:
|
||||
content.icon = "mail-forward";
|
||||
content.title = I18n.t("composer.composer_actions.reply");
|
||||
break;
|
||||
case EDIT:
|
||||
content.icon = "pencil";
|
||||
content.title = I18n.t("composer.composer_actions.edit");
|
||||
break;
|
||||
case CREATE_SHARED_DRAFT:
|
||||
content.icon = "clipboard";
|
||||
content.title = I18n.t("composer.composer_actions.draft");
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
|
@ -1373,6 +1373,9 @@ en:
|
|||
admin_options_title: "Optional staff settings for this topic"
|
||||
|
||||
composer_actions:
|
||||
reply: Reply
|
||||
draft: Draft
|
||||
edit: Edit
|
||||
reply_to_post:
|
||||
label: Reply to post %{postNumber} by %{postUsername}
|
||||
desc: Reply to a specific post
|
||||
|
|
Loading…
Reference in New Issue