Skip to content

Add FXIOS-12147 Change ToS card's button string from Agree and continue to just Continue Firefox and Focus #26564

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,10 @@ class TermsOfServiceViewController: UIViewController, Themeable {
}

private lazy var confirmationButton: PrimaryRoundedButton = .build { button in
// Using .LoginsOnboardingContinueButtonTite until
// we have a new translation for .Onboarding.TermsOfService.AgreementButtonTitleV3
let viewModel = PrimaryRoundedButtonViewModel(
title: .Onboarding.TermsOfService.AgreementButtonTitleV3,
title: .LoginsOnboardingContinueButtonTitle,
a11yIdentifier: AccessibilityIdentifiers.TermsOfService.agreeAndContinueButton)
button.configure(viewModel: viewModel)
button.addTarget(self, action: #selector(self.acceptTermsOfService), for: .touchUpInside)
Expand Down