Skip to content
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

fix(authenticator): TOTP Setup typo #3758

Merged
merged 2 commits into from
Sep 19, 2023
Merged
Show file tree
Hide file tree
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 @@ -99,37 +99,37 @@ abstract class AuthenticatorInstructionsLocalizations {
Locale('en'),
];

/// The header for the first step of TOTP setup
/// The title for the first step of TOTP setup
///
/// In en, this message translates to:
/// **'Step 1: Download an Authenticator app'**
String get totpStep1Title;

/// The header for the second step of TOTP setup
/// The title for the second step of TOTP setup
///
/// In en, this message translates to:
/// **'Step 2: Enter the QR code'**
/// **'Step 2: Scan the QR code'**
String get totpStep2Title;

/// The header for the third step of TOTP setup
/// The title for the third step of TOTP setup
///
/// In en, this message translates to:
/// **'Step 3: Verify your code'**
String get totpStep3Title;

/// The instructional text for step one of TOTP setup
/// The body text for step one of TOTP setup
///
/// In en, this message translates to:
/// **'Authenticator apps generate one-time codes that can be used to verify your identity'**
String get totpStep1Body;

/// The instructional text for step two of TOTP setup
/// The body text for step two of TOTP setup
///
/// In en, this message translates to:
/// **'Open then Authenticator app and scan the QR code or enter the key to get your verification code'**
String get totpStep2Body;

/// The instructional text for step three of TOTP setup
/// The body text for step three of TOTP setup
///
/// In en, this message translates to:
/// **'Enter the 6 digit code from your Authenticator app'**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class AuthenticatorInstructionsLocalizationsEn
String get totpStep1Title => 'Step 1: Download an Authenticator app';

@override
String get totpStep2Title => 'Step 2: Enter the QR code';
String get totpStep2Title => 'Step 2: Scan the QR code';

@override
String get totpStep3Title => 'Step 3: Verify your code';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"@totpStep1Title": {
"description": "The title for the first step of TOTP setup"
},
"totpStep2Title": "Step 2: Enter the QR code",
"totpStep2Title": "Step 2: Scan the QR code",
"@totpStep2Title": {
"description": "The title for the second step of TOTP setup"
},
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.