From cd7635cda4db24eaeaf4f8f7258c4100c1556f07 Mon Sep 17 00:00:00 2001 From: Evan Hahn Date: Tue, 25 Oct 2022 17:09:05 -0500 Subject: [PATCH] Update currency label on donation screens "Set currency" is now just "Currency". --- .../src/ViewControllers/Donations/DonationViewsUtil.swift | 7 +++++-- Signal/translations/en.lproj/Localizable.strings | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Signal/src/ViewControllers/Donations/DonationViewsUtil.swift b/Signal/src/ViewControllers/Donations/DonationViewsUtil.swift index b2ff8c1c1a..9b66b97e0b 100644 --- a/Signal/src/ViewControllers/Donations/DonationViewsUtil.swift +++ b/Signal/src/ViewControllers/Donations/DonationViewsUtil.swift @@ -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) diff --git a/Signal/translations/en.lproj/Localizable.strings b/Signal/translations/en.lproj/Localizable.strings index 37ebfa422c..f958759a0c 100644 --- a/Signal/translations/en.lproj/Localizable.strings +++ b/Signal/translations/en.lproj/Localizable.strings @@ -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.";