Merge "Import translations. DO NOT MERGE" into qt-qpr1-dev
diff --git a/res/values/strings.xml b/res/values/strings.xml
index f1b592a..2524782 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -914,6 +914,8 @@
     <string name="security_settings_face_enroll_introduction_no_thanks">No thanks</string>
     <!-- Button text to start enrollment [CHAR LIMIT=30] -->
     <string name="security_settings_face_enroll_introduction_agree">Agree</string>
+    <!-- Button text to scroll to the end of a scrollview. [CHAR LIMIT=30] -->
+    <string name="security_settings_face_enroll_introduction_more">More</string>
     <!-- Introduction title shown in face enrollment to introduce the face unlock feature [CHAR LIMIT=40] -->
     <string name="security_settings_face_enroll_introduction_title">Unlock with your face</string>
     <!-- Introduction title shown in face enrollment to introduce the face unlock feature, when face unlock is disabled by device admin [CHAR LIMIT=60] -->
diff --git a/src/com/android/settings/biometrics/face/FaceEnrollIntroduction.java b/src/com/android/settings/biometrics/face/FaceEnrollIntroduction.java
index f4433f0..5f164d6 100644
--- a/src/com/android/settings/biometrics/face/FaceEnrollIntroduction.java
+++ b/src/com/android/settings/biometrics/face/FaceEnrollIntroduction.java
@@ -81,7 +81,7 @@
             final RequireScrollMixin requireScrollMixin = getLayout().getMixin(
                     RequireScrollMixin.class);
             requireScrollMixin.requireScrollWithButton(this, agreeButton,
-                    R.string.wifi_more,
+                    R.string.security_settings_face_enroll_introduction_more,
                     button -> {
                         onNextButtonClick(button);
                     });