UX: Remove the post number from a composer label
It didn't provide much value to users as it often didn't match the number visible in the topic timeline. That's because `postNumber` is an implementation detail, while the timeline counts only full visible posts (no whispers, topic action notices, etc.)
This commit is contained in:
parent
b2adbead59
commit
1db8315a8b
|
@ -137,7 +137,6 @@ export default DropdownSelectBoxComponent.extend({
|
|||
) {
|
||||
items.push({
|
||||
name: I18n.t("composer.composer_actions.reply_to_post.label", {
|
||||
postNumber: _postSnapshot.post_number,
|
||||
postUsername: _postSnapshot.username,
|
||||
}),
|
||||
description: I18n.t("composer.composer_actions.reply_to_post.desc"),
|
||||
|
|
|
@ -1936,7 +1936,7 @@ en:
|
|||
draft: Draft
|
||||
edit: Edit
|
||||
reply_to_post:
|
||||
label: Reply to post %{postNumber} by %{postUsername}
|
||||
label: Reply to a post by %{postUsername}
|
||||
desc: Reply to a specific post
|
||||
reply_as_new_topic:
|
||||
label: Reply as linked topic
|
||||
|
|
Loading…
Reference in New Issue