diff options
author | Makoto Onuki <omakoto@google.com> | 2015-06-05 14:32:10 -0700 |
---|---|---|
committer | Makoto Onuki <omakoto@google.com> | 2015-06-08 17:48:46 -0700 |
commit | 375c3a080ebc7651a16cf09c12841a6f4d6b8c73 (patch) | |
tree | 2d36bd47064ca648cccadd00ff4566d6d621f101 /res/values | |
parent | 7e38eea8170249ca13c54748d6ba4c615528cad6 (diff) | |
download | packages_apps_Settings-375c3a080ebc7651a16cf09c12841a6f4d6b8c73.zip packages_apps_Settings-375c3a080ebc7651a16cf09c12841a6f4d6b8c73.tar.gz packages_apps_Settings-375c3a080ebc7651a16cf09c12841a6f4d6b8c73.tar.bz2 |
Show list of permissions instead of just numbers
Bug 21615746
Change-Id: I23439b3571f10d6d396174025a19b5ebb585dee9
Diffstat (limited to 'res/values')
-rw-r--r-- | res/values/strings.xml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/res/values/strings.xml b/res/values/strings.xml index 4978d57..4c2a416 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -6475,6 +6475,18 @@ <item quantity="other"><xliff:g id="count" example="10">%d</xliff:g> of <xliff:g id="count" example="10">%d</xliff:g> permissions granted</item> </plurals> + <!-- Runtime permissions preference summary. Number of additional permissions granted. [CHAR LIMIT=40] --> + <plurals name="runtime_permissions_additional_count"> + <item quantity="one"><xliff:g id="count" example="1">%d</xliff:g> additional permission</item> + <item quantity="other"><xliff:g id="count" example="10">%d</xliff:g> additional permissions</item> + </plurals> + + <!-- Runtime permissions preference summary, shown when the app has no permissions granted. [CHAR LIMIT=40] --> + <string name="runtime_permissions_summary_no_permissions_granted">No permissions granted</string> + + <!-- Runtime permissions preference summary, shown when the app requests no permissions. [CHAR LIMIT=40] --> + <string name="runtime_permissions_summary_no_permissions_requested">No permissions requested</string> + <!-- Launch defaults preference summary with some set [CHAR LIMIT=40] --> <string name="launch_defaults_some">Some defaults set</string> <!-- Launch defaults preference summary with none set [CHAR LIMIT=40] --> |