summaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorDaniel Micay <danielmicay@gmail.com>2015-06-15 10:06:33 -0400
committerWolfgang Wiedmeyer <wolfgit@wiedmeyer.de>2016-12-16 02:09:53 +0100
commitda369854affb579124f6f258e1cb7068b3ee7892 (patch)
tree72fc0fdf61e7d079e6f72460ad7b1cdaf47a7a39 /res
parent50dff0f4370cdf4ccde2ec3b12ecd1f7b44c9b99 (diff)
downloadpackages_apps_Settings-da369854affb579124f6f258e1cb7068b3ee7892.zip
packages_apps_Settings-da369854affb579124f6f258e1cb7068b3ee7892.tar.gz
packages_apps_Settings-da369854affb579124f6f258e1cb7068b3ee7892.tar.bz2
support setting a separate encryption password
Diffstat (limited to 'res')
-rw-r--r--res/values/strings.xml9
-rw-r--r--res/xml/security_settings_encrypted.xml10
2 files changed, 19 insertions, 0 deletions
diff --git a/res/values/strings.xml b/res/values/strings.xml
index 6a5d5d8..68e1456 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -937,6 +937,15 @@
<!-- Image button description to switch input method -->
<string name="crypt_keeper_switch_input_method">Switch input method</string>
+ <!-- Title for PreferenceScreen to change encryption password [CHAR LIMIT=22] -->
+ <string name="crypt_keeper_change_password_title">Change encryption password</string>
+
+ <!-- Summary for PreferenceScreen to change encryption password [CHAR LIMIT=45] -->
+ <string name="crypt_keeper_change_password_summary">Change the password used for device encryption</string>
+
+ <!-- Header on first screen of choose encryption password [CHAR LIMIT=30] -->
+ <string name="crypt_keeper_choose_your_password_header">Set encryption password</string>
+
<!-- Unlock Picker Settings --><skip />
<!-- Security Picker --><skip />
diff --git a/res/xml/security_settings_encrypted.xml b/res/xml/security_settings_encrypted.xml
index 2399243..f05bad5 100644
--- a/res/xml/security_settings_encrypted.xml
+++ b/res/xml/security_settings_encrypted.xml
@@ -27,6 +27,16 @@
android:title="@string/crypt_keeper_encrypt_title"
android:summary="@string/crypt_keeper_encrypted_summary"/>
+ <Preference
+ android:key="crypt_keeper_change_password"
+ android:title="@string/crypt_keeper_change_password_title"
+ android:summary="@string/crypt_keeper_change_password_summary">
+
+ <intent android:action="android.intent.action.MAIN"
+ android:targetPackage="com.android.settings"
+ android:targetClass="com.android.settings.ChooseEncryptionPassword" />
+ </Preference>
+
</PreferenceCategory>