diff options
author | Lars Greiss <kufikugel@googlemail.com> | 2013-07-02 01:46:10 +0200 |
---|---|---|
committer | Danny Baumann <dannybaumann@web.de> | 2013-07-03 13:04:57 +0200 |
commit | deff1bd108333b3c997751a5dfb2f7731d7f6bda (patch) | |
tree | d7ff6a96504a0bfed19591deccdf5a9f6d512035 /res/values | |
parent | 5aacfcbbe55f638d1f69933acb0821492c354b48 (diff) | |
download | packages_apps_settings-deff1bd108333b3c997751a5dfb2f7731d7f6bda.zip packages_apps_settings-deff1bd108333b3c997751a5dfb2f7731d7f6bda.tar.gz packages_apps_settings-deff1bd108333b3c997751a5dfb2f7731d7f6bda.tar.bz2 |
Settings: Introduce Privacy Guard Manager
Due that on the one hand a lot user are not familiar
with permissions and how to read them and on the
other user want to have a faster easy access to
setup privacy guard for several apps this small
manager assist the user to setup.
Privacy Guard Manager shows a list off all installed apps
Per default it shows only user apps which have critical
permissions privacy guard can protect.
The user can optional show in the list as well all system apps
or turn off the filter to show all apps undependent of the
permission the app has. To activate privacy guard for an
app a simple click on the entry activates it so that the user
can go fast trough the list. Longpress opens app detail page.
Initial help dialog tells the user how to use it.
Due the filter user who are unfimiliar with permissions can
fast see which apps are effected without deeper knowledge
cheers
SlimRoms
PatchSet3:
- go inline with AOSP style
- move PrivacyGuard by default into manager
- change behaviour off active icons
PatchSet4:
- change app icon size to 36dip
PatchSet5:
- string change
PatchSet6:
- add reset option to disable privacy guard for
all shown apps in the list
PatchSet7:
- Cleaned up the intro dialog a bit.
PatchSet8+9:
- cleanup
- fix alignment of top checkbox
PatchSet10:
- fix permission filter
PatchSet11:
- improve icon loading
Change-Id: I6bc886393bf90f8daed92b66d5fee1ce9e1accd0
Diffstat (limited to 'res/values')
-rw-r--r-- | res/values/cm_strings.xml | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/res/values/cm_strings.xml b/res/values/cm_strings.xml index 745e2c8..6e1f4b8 100644 --- a/res/values/cm_strings.xml +++ b/res/values/cm_strings.xml @@ -974,8 +974,17 @@ two in order to insert additional control points. \'Remove\' deletes the selecte <!-- Privacy Guard --> <string name="privacy_guard_switch_label">Enable Privacy Guard</string> <string name="privacy_guard_dlg_title">Enable Privacy Guard?</string> - <string name="privacy_guard_dlg_text">When Privacy Guard is enabled, the app will not be able to access personal data such as contacts, messages, or call logs.</string> - <string name="privacy_guard_default_title">Privacy Guard</string> - <string name="privacy_guard_default_summary">Enable Privacy Guard by default for newly-installed apps</string> + <string name="privacy_guard_dlg_text">When Privacy Guard is enabled, the app will not be able to access personal data such as contacts, messages or call logs.</string> + <string name="privacy_guard_default_title">Enabled by default</string> + <string name="privacy_guard_default_summary">Enable by default for newly-installed apps</string> + <string name="privacy_guard_manager_title">Privacy Guard</string> + <string name="privacy_guard_manager_summary">Manage which apps have access to your personal data</string> + <string name="privacy_guard_no_user_apps">No apps are installed</string> + <string name="privacy_guard_filter_does_not_match">No apps with relevant permissions are installed</string> + <string name="privacy_guard_help_title">Help</string> + <string name="privacy_guard_reset_title">Reset</string> + <string name="privacy_guard_help_text">In this screen you can choose for which apps Privacy Guard should be active by simply tapping on them. Selected apps will not be able to access your personal data, such as contacts, messages or call logs. Long pressing on an entry opens the app details screen for that app.\n\nBy default system apps are not shown. If you want to show them or filter apps to show only the ones requesting access to personal data by their permissions, select the respective options in the menu.</string> + <string name="privacy_guard_manager_show_system_apps">Show system apps</string> + <string name="privacy_guard_manager_filter_permissions">Permission filter</string> </resources> |