diff options
author | Jeff Sharkey <jsharkey@android.com> | 2011-07-25 15:21:22 -0700 |
---|---|---|
committer | Jeff Sharkey <jsharkey@android.com> | 2011-07-27 09:31:39 -0700 |
commit | 41ff7ec82422a5b6d00892afdb3232bc0e53d851 (patch) | |
tree | 9085ebb6bcc39a20f98eeb71860f2dad01f604ed /packages/SystemUI/res | |
parent | a94b9ad23ac1f281c9d2dac02d01aa07ca5e1682 (diff) | |
download | frameworks_base-41ff7ec82422a5b6d00892afdb3232bc0e53d851.zip frameworks_base-41ff7ec82422a5b6d00892afdb3232bc0e53d851.tar.gz frameworks_base-41ff7ec82422a5b6d00892afdb3232bc0e53d851.tar.bz2 |
Revise data limit notifs, watch kernel alerts.
Teach NetworkPolicy limits to "snooze" when requested by user, and
notify with both dialog and notification. Register for network alerts
through NMS to trigger updates immediately instead of waiting for
next stats update.
Enforce that all NetworkPolicy are unique on a template basis, and
move SCREEN_ON/OFF broadcasts to background thread. Launch SystemUI
and Settings directly instead of using actions, and include full
NetworkTemplate in extras.
Tests to verify notification and snooze behavior.
Bug: 5057979, 5023579, 4723336, 5045721
Change-Id: I03724beff94a7c0547cb5220431ba8d4cd44d077
Diffstat (limited to 'packages/SystemUI/res')
-rw-r--r-- | packages/SystemUI/res/values/strings.xml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/packages/SystemUI/res/values/strings.xml b/packages/SystemUI/res/values/strings.xml index 1b60b16..5ca77fc 100644 --- a/packages/SystemUI/res/values/strings.xml +++ b/packages/SystemUI/res/values/strings.xml @@ -300,6 +300,19 @@ <!-- Content description of the ringer silent icon in the notification panel for accessibility (not shown on the screen). [CHAR LIMIT=NONE] --> <string name="accessibility_ringer_silent">Ringer silent.</string> + <!-- Title of dialog shown when 2G-3G data usage has exceeded limit and has been disabled. [CHAR LIMIT=48] --> + <string name="data_usage_disabled_dialog_3g_title">2G-3G data disabled</string> + <!-- Title of dialog shown when 4G data usage has exceeded limit and has been disabled. [CHAR LIMIT=48] --> + <string name="data_usage_disabled_dialog_4g_title">4G data disabled</string> + <!-- Title of dialog shown when mobile data usage has exceeded limit and has been disabled. [CHAR LIMIT=48] --> + <string name="data_usage_disabled_dialog_mobile_title">Mobile data disabled</string> + <!-- Title of dialog shown when data usage has exceeded limit and has been disabled. [CHAR LIMIT=48] --> + <string name="data_usage_disabled_dialog_title">Data disabled</string> + <!-- Body of dialog shown when data usage has exceeded limit and has been disabled. [CHAR LIMIT=NONE] --> + <string name="data_usage_disabled_dialog">The specified data usage limit has been reached.\n\nAdditional data use may incur carrier charges.</string> + <!-- Dialog button indicating that data connection should be re-enabled. [CHAR LIMIT=28] --> + <string name="data_usage_disabled_dialog_enable">Re-enable data</string> + <!-- Text to display underneath the graphical signal strength meter when no connection is available. [CHAR LIMIT=20] --> <string name="status_bar_settings_signal_meter_disconnected"> |