diff options
| author | 2017-06-07 15:49:13 -0700 | |
|---|---|---|
| committer | 2017-06-22 15:40:42 -0700 | |
| commit | 2e8351b308a08a40241292d00c859d425b33546c (patch) | |
| tree | 36d8d9d0612b8563075d9b04f24d2fed53ef201d | |
| parent | 20fad610b90f7746e98543663cbc522cb3fc1daf (diff) | |
Add strings for revamped Wi-Fi ONA notification.
Bug: 37357441
Test: n/a
Change-Id: Ib32581f044db9827a700be8af1864af15f6dbb3e
| -rw-r--r-- | core/res/res/values/strings.xml | 15 | ||||
| -rw-r--r-- | core/res/res/values/symbols.xml | 7 |
2 files changed, 22 insertions, 0 deletions
diff --git a/core/res/res/values/strings.xml b/core/res/res/values/strings.xml index 97b6940a1d39..e6c95c069d85 100644 --- a/core/res/res/values/strings.xml +++ b/core/res/res/values/strings.xml @@ -3003,6 +3003,21 @@ <item quantity="other">Open Wi-Fi networks available</item> </plurals> + <!-- Notification title for a nearby open wireless network.--> + <string name="wifi_available_title">Connect to open Wi\u2011Fi network</string> + <!-- Notification title when the system is connecting to the specified open network. The network name is specified in the notification content. --> + <string name="wifi_available_title_connecting">Connecting to open Wi\u2011Fi network</string> + <!-- Notification title when the system has connected to the open network. The network name is specified in the notification content. --> + <string name="wifi_available_title_connected">Connected to Wi\u2011Fi network</string> + <!-- Notification title when the system failed to connect to the specified open network. --> + <string name="wifi_available_title_failed_to_connect">Could not connect to Wi\u2011Fi network</string> + <!-- Notification content when the system failed to connect to the specified open network. This informs the user that tapping on this notification will open the wifi picker. --> + <string name="wifi_available_content_failed_to_connect">Tap to see all networks</string> + <!-- Notification action name for connecting to the network specified in the notification body. --> + <string name="wifi_available_action_connect">Connect</string> + <!-- Notification action name for opening the wifi picker, showing the user all the nearby networks. --> + <string name="wifi_available_action_all_networks">All Networks</string> + <!-- A notification is shown when a wifi captive portal network is detected. This is the notification's title. --> <string name="wifi_available_sign_in">Sign in to Wi-Fi network</string> diff --git a/core/res/res/values/symbols.xml b/core/res/res/values/symbols.xml index 733890232c37..3b3879f00d4e 100644 --- a/core/res/res/values/symbols.xml +++ b/core/res/res/values/symbols.xml @@ -1868,6 +1868,13 @@ <java-symbol type="layout" name="app_error_dialog" /> <java-symbol type="plurals" name="wifi_available" /> <java-symbol type="plurals" name="wifi_available_detailed" /> + <java-symbol type="string" name="wifi_available_title" /> + <java-symbol type="string" name="wifi_available_title_connecting" /> + <java-symbol type="string" name="wifi_available_title_connected" /> + <java-symbol type="string" name="wifi_available_title_failed_to_connect" /> + <java-symbol type="string" name="wifi_available_content_failed_to_connect" /> + <java-symbol type="string" name="wifi_available_action_connect" /> + <java-symbol type="string" name="wifi_available_action_all_networks" /> <java-symbol type="string" name="accessibility_binding_label" /> <java-symbol type="string" name="adb_active_notification_message" /> <java-symbol type="string" name="adb_active_notification_title" /> |