diff options
author | Jeff Sharkey <jsharkey@android.com> | 2012-09-23 17:40:47 -0700 |
---|---|---|
committer | Jeff Sharkey <jsharkey@android.com> | 2012-09-23 17:49:31 -0700 |
commit | 0e9cf8a723c3e03207e905e8e03303ec4b5526dc (patch) | |
tree | 73ffff23675c1e134c1b8f04ce5b2aa5e9fee754 /res/values | |
parent | b105531116148d5d29e113e611ac180aa9691c6e (diff) | |
download | packages_apps_Settings-0e9cf8a723c3e03207e905e8e03303ec4b5526dc.zip packages_apps_Settings-0e9cf8a723c3e03207e905e8e03303ec4b5526dc.tar.gz packages_apps_Settings-0e9cf8a723c3e03207e905e8e03303ec4b5526dc.tar.bz2 |
Storage item to represent cached data.
When touched, offers to clear all cached data.
Bug: 7216370
Change-Id: I86afe66b819fb7deeba909bef507925fc5a590f3
Diffstat (limited to 'res/values')
-rw-r--r-- | res/values/colors.xml | 1 | ||||
-rw-r--r-- | res/values/strings.xml | 7 |
2 files changed, 8 insertions, 0 deletions
diff --git a/res/values/colors.xml b/res/values/colors.xml index d6e9150..e7a00c3 100644 --- a/res/values/colors.xml +++ b/res/values/colors.xml @@ -24,6 +24,7 @@ <color name="memory_downloads">#476093</color> <color name="memory_dcim">#793A7F</color> <color name="memory_music">#8E562A</color> + <color name="memory_cache">#479392</color> <color name="memory_misc">#7C3030</color> <color name="memory_user_light">#479392</color> <color name="memory_user_dark">#316665</color> diff --git a/res/values/strings.xml b/res/values/strings.xml index a6f40d3..d57d322 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -1937,6 +1937,8 @@ <string name="memory_music_usage">Audio (music, ringtones, podcasts, etc.)</string> <!-- SD card & phone storage settings title. Displayed as a title when showing the total usage of misc files on the device. Below it will be a number like "123.4 MB" indicating used storage. [CHAR LIMIT=50] --> <string name="memory_media_misc_usage">Misc.</string> + <!-- Storage item representing all cached data on device. [CHAR LIMIT=48] --> + <string name="memory_media_cache_usage">Cached data</string> <!-- SD card & phone storage settings item title that will result in the phone unmounting the SD card. This will be done before the user phyiscally removes the SD card from the phone. Kind of like the "Safely remove" on some operating systems. [CHAR LIMIT=25] --> <string name="sd_eject" product="nosdcard">Unmount shared storage</string> <!-- SD card & phone storage settings item title that will result in the phone unmounting the SD card. This will be done before the user phyiscally removes the SD card from the phone. Kind of like the "Safely remove" on some operating systems. --> @@ -1971,6 +1973,11 @@ <string name="sd_format_summary" product="default">Erases all data on the SD card, such as music and photos</string> <!-- SD card status when it is mounted as read only. Will be appended to size, starts with an unbreakable space --> + <!-- Title of dialog asking user to confirm before clearing all caches. [CHAR LIMIT=48] --> + <string name="memory_clear_cache_title">Clear cached data?</string> + <!-- Message of dialog asking user to confirm before clearing all caches. [CHAR LIMIT=48] --> + <string name="memory_clear_cache_message">This will clear cached data for all apps.</string> + <!-- SD card & phone storage settings item summary that will result in the phone connected to PC and MTP/PTP enabled. [CHAR LIMIT=80] --> <string name="mtp_ptp_mode_summary">MTP or PTP function is active</string> |