1
0
mirror of https://github.com/mastodon/mastodon-ios.git synced 2024-12-22 14:24:16 +01:00

Update reply button labelling to match the others

This commit is contained in:
Jed Fox 2022-10-31 15:07:27 -04:00
parent 98b87a0b20
commit 211ff344fb
No known key found for this signature in database
GPG Key ID: 0B61D18EA54B47E1

View File

@ -218,7 +218,8 @@ extension ActionToolbarContainer {
public func configureReply(count: Int, isEnabled: Bool) {
let title = ActionToolbarContainer.title(from: count)
replyButton.setTitle(title, for: .normal)
replyButton.accessibilityLabel = L10n.Plural.Count.reply(count)
replyButton.accessibilityLabel = L10n.Common.Controls.Actions.reply
replyButton.accessibilityValue = L10n.Plural.Count.reply(count)
}
public func configureReblog(count: Int, isEnabled: Bool, isHighlighted: Bool) {