Merge "Update button string to "Start"" into qt-dev

This commit is contained in:
Kevin Chyn
2019-05-14 05:49:05 +00:00
committed by Android (Google) Code Review
2 changed files with 3 additions and 1 deletions

View File

@@ -894,6 +894,8 @@
<string name="security_settings_face_enroll_education_title_unlock_disabled">Use your face to authenticate</string> <string name="security_settings_face_enroll_education_title_unlock_disabled">Use your face to authenticate</string>
<!-- Introduction detail message shown in face education [CHAR LIMIT=NONE] --> <!-- Introduction detail message shown in face education [CHAR LIMIT=NONE] -->
<string name="security_settings_face_enroll_education_message"></string> <string name="security_settings_face_enroll_education_message"></string>
<!-- Button that takes the user to the enrollment activity [CHAR LIMIT=20] -->
<string name="security_settings_face_enroll_education_start">Start</string>
<!-- Button shown which shows accessibility toggles for face enrollment when clicked. [CHAR LIMIT=32] --> <!-- Button shown which shows accessibility toggles for face enrollment when clicked. [CHAR LIMIT=32] -->
<string name="security_settings_face_enroll_introduction_accessibility">Use accessibility setup</string> <string name="security_settings_face_enroll_introduction_accessibility">Use accessibility setup</string>
<!-- Additional details shown when the accessibility toggle is expanded. [CHAR LIMIT=NONE]--> <!-- Additional details shown when the accessibility toggle is expanded. [CHAR LIMIT=NONE]-->

View File

@@ -99,7 +99,7 @@ public class FaceEnrollEducation extends BiometricEnrollBase {
); );
final FooterButton footerButton = new FooterButton.Builder(this) final FooterButton footerButton = new FooterButton.Builder(this)
.setText(R.string.wizard_next) .setText(R.string.security_settings_face_enroll_education_start)
.setListener(this::onNextButtonClick) .setListener(this::onNextButtonClick)
.setButtonType(FooterButton.ButtonType.NEXT) .setButtonType(FooterButton.ButtonType.NEXT)
.setTheme(R.style.SudGlifButton_Primary) .setTheme(R.style.SudGlifButton_Primary)