Rename buttons in lock screen setup

- "Continue" in choose lock flows are renamed to "Next"
- "Done" in fingerprint enroll finish screen is renamed to "Next"
  during setup flow.

Test: Manual
Bug: 62839648
Change-Id: I3ea77b759b654d7c1da1f7b545781c9dfd74caa3
This commit is contained in:
Maurice Lam
2017-06-23 19:15:06 -07:00
parent e28599049e
commit c57b19d80c
4 changed files with 8 additions and 7 deletions

View File

@@ -305,8 +305,8 @@ public class ChooseLockPattern extends SettingsActivity {
* The states of the right button.
*/
enum RightButtonMode {
Continue(R.string.lockpattern_continue_button_text, true),
ContinueDisabled(R.string.lockpattern_continue_button_text, false),
Continue(R.string.next_label, true),
ContinueDisabled(R.string.next_label, false),
Confirm(R.string.lockpattern_confirm_button_text, true),
ConfirmDisabled(R.string.lockpattern_confirm_button_text, false),
Ok(android.R.string.ok, true);