Update currency label on donation screens

"Set currency" is now just "Currency".
This commit is contained in:
Evan Hahn 2022-10-25 17:09:05 -05:00 committed by Evan Hahn
parent f180185dd1
commit cd7635cda4
2 changed files with 6 additions and 3 deletions

View File

@ -67,8 +67,11 @@ public class DonationCurrencyPickerButton: UIStackView {
let label = UILabel()
label.font = .ows_dynamicTypeBodyClamped
label.textColor = Theme.primaryTextColor
label.text = NSLocalizedString("DONATIONS_CURRENCY_PICKER_LABEL",
comment: "Label for the currency picker button in donation views")
label.text = NSLocalizedString(
"DONATIONS_CURRENCY_PICKER_LABEL",
value: "Currency",
comment: "Label for the currency picker button in donation views"
)
self.addArrangedSubview(label)
let picker = OWSButton(block: block)

View File

@ -1928,7 +1928,7 @@
"DONATION_VIEW_TITLE" = "Donate to Signal";
/* Label for the currency picker button in donation views */
"DONATIONS_CURRENCY_PICKER_LABEL" = "Set currency";
"DONATIONS_CURRENCY_PICKER_LABEL" = "Currency";
/* Alert body for when the user has just tried to edit a contacts after declining to give Signal contacts permissions */
"EDIT_CONTACT_WITHOUT_CONTACTS_PERMISSION_ALERT_BODY" = "You can enable access in the iOS Settings app.";