summaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorRicardo Cerqueira <cyanogenmod@cerqueira.org>2013-03-04 10:34:16 -0800
committerGerrit Code Review <gerrit@cyanogenmod.org>2013-03-04 10:34:17 -0800
commit4d899a677aa5c59ce7defb88c97b76680b92def6 (patch)
tree265f79af395e90f0abd11a3a3acda3e8f458d7ca /res
parentbc1eadf5eb715c7f7747201667530eb6829e6b25 (diff)
parentc98a1803c3195e29f9e70c9595a0e5887e915be8 (diff)
downloadpackages_apps_settings-4d899a677aa5c59ce7defb88c97b76680b92def6.zip
packages_apps_settings-4d899a677aa5c59ce7defb88c97b76680b92def6.tar.gz
packages_apps_settings-4d899a677aa5c59ce7defb88c97b76680b92def6.tar.bz2
Merge "LockscreenPattern : Toggle dots/error pattern visibility (2/2)" into cm-10.1
Diffstat (limited to 'res')
-rw-r--r--res/values/strings.xml4
-rw-r--r--res/xml/security_settings_pattern.xml11
2 files changed, 15 insertions, 0 deletions
diff --git a/res/values/strings.xml b/res/values/strings.xml
index 9d848fc..9972b13 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -2450,6 +2450,10 @@
<string name="lockpattern_settings_enable_summary">Must draw pattern to unlock screen</string>
<!-- Security & location settings screen, setting check box title. This setting controls whether a visible green line is drawn as the user moves his finger around while drawing the unlock pattern. If checked, this line is drawn. If unchecked, there is nothing drawn so the user does not reveal his pattern while he unlocks the phone.-->
<string name="lockpattern_settings_enable_visible_pattern_title">Make pattern visible</string>
+ <!-- Security & location settings screen, setting check box title. This setting controls whether a visible red line will be drawn after the user has drawn the unlock pattern incorrectly. If checked, this line is drawn. If unchecked, there is nothing drawn so the user does not reveal his pattern while he unlocks the phone.-->
+ <string name="lockpattern_settings_enable_error_path_title">Show pattern error</string>
+ <!-- Security & location settings screen, setting check box title. This setting controls whether the dots will be drawn when using the lockscreen pattern.-->
+ <string name="lockpattern_settings_enable_dots_title">Show pattern dots</string>
<!-- Security & location settings screen, setting check box title. This setting controls whether tactile feedback will be produced when the user draws the pattern.-->
<string name="lockpattern_settings_enable_tactile_feedback_title">Vibrate on touch</string>
<!-- Security & location settings screen, setting check box title. This controls whether the device locks immediately when the power button is pressed. [CHAR LIMIT=28]-->
diff --git a/res/xml/security_settings_pattern.xml b/res/xml/security_settings_pattern.xml
index d47a99d..6151bc6 100644
--- a/res/xml/security_settings_pattern.xml
+++ b/res/xml/security_settings_pattern.xml
@@ -28,8 +28,19 @@
<CheckBoxPreference
android:key="visiblepattern"
+ android:persistent="false"
android:title="@string/lockpattern_settings_enable_visible_pattern_title"/>
+ <CheckBoxPreference
+ android:key="visible_error_pattern"
+ android:persistent="false"
+ android:title="@string/lockpattern_settings_enable_error_path_title"/>
+
+ <CheckBoxPreference
+ android:key="visibledots"
+ android:persistent="false"
+ android:title="@string/lockpattern_settings_enable_dots_title"/>
+
<ListPreference
android:key="lock_after_timeout"
android:title="@string/lock_after_timeout"