diff options
author | Amith Yamasani <yamasani@google.com> | 2009-06-17 11:57:42 -0700 |
---|---|---|
committer | Amith Yamasani <yamasani@google.com> | 2009-06-17 12:12:51 -0700 |
commit | 2fb22c03bd587b373519f605feece1f846867cf6 (patch) | |
tree | 2e038949d928c0df52c4e5cce59f418723110e19 /res | |
parent | f11d7458ea2f52b3c4afad495274167b862e7a4c (diff) | |
download | packages_apps_Settings-2fb22c03bd587b373519f605feece1f846867cf6.zip packages_apps_Settings-2fb22c03bd587b373519f605feece1f846867cf6.tar.gz packages_apps_Settings-2fb22c03bd587b373519f605feece1f846867cf6.tar.bz2 |
Fixed auto-uncap of Wifi status messages.
Fixes #1852765. Change strings to lowercase and capitalize on demand.
Diffstat (limited to 'res')
-rw-r--r-- | res/values/strings.xml | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/res/values/strings.xml b/res/values/strings.xml index 492ffe5..2fedceb 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -625,18 +625,18 @@ <!-- Value for the wifi security when it is unknown --> <string name="wifi_security_unknown">Unknown</string> - <!-- Verbose security type of a wifi network. Open means no security. --> - <string name="wifi_security_verbose_open">Open network</string> - <!-- Verbose security type of a wifi network. --> - <string name="wifi_security_verbose_wep">Secured with WEP</string> - <!-- Verbose security type of a wifi network. --> - <string name="wifi_security_verbose_wpa">Secured with WPA</string> - <!-- Verbose security type of a wifi network. --> - <string name="wifi_security_verbose_wpa2">Secured with WPA2</string> - <!-- Verbose security type of a wifi network. --> - <string name="wifi_security_verbose_wpa_eap">Secured with WPA-EAP</string> - <!-- Verbose security type of a wifi network. --> - <string name="wifi_security_verbose_ieee8021x">Secured with IEEE 802.1x</string> + <!-- Verbose security type of a wifi network. Open means no security. Capitalized by app. --> + <string name="wifi_security_verbose_open">open network</string> + <!-- Verbose security type of a wifi network. Capitalized by app. --> + <string name="wifi_security_verbose_wep">secured with WEP</string> + <!-- Verbose security type of a wifi network. Capitalized by app. --> + <string name="wifi_security_verbose_wpa">secured with WPA</string> + <!-- Verbose security type of a wifi network. Capitalized by app. --> + <string name="wifi_security_verbose_wpa2">secured with WPA2</string> + <!-- Verbose security type of a wifi network. Capitalized by app. --> + <string name="wifi_security_verbose_wpa_eap">secured with WPA-EAP</string> + <!-- Verbose security type of a wifi network. Capitalized by app. --> + <string name="wifi_security_verbose_ieee8021x">secured with IEEE 802.1x</string> <!-- Wi-Fi IP addrress label --> <string name="ip_address">IP address</string> <!-- Label for the signal strength --> @@ -683,10 +683,10 @@ <string name="wifi_show_password">Show password.</string> <!--Wi-Fi settings screen menu option --> <string name="scan_wifi">Scan</string> - <!-- Wifi network summary when not in nearby --> + <!-- Wifi network summary when not in nearby. --> <string name="summary_not_in_range">Not in range</string> - <!-- Wifi network summary when the network is configured previously --> - <string name="summary_remembered">Remembered</string> + <!-- Wifi network summary when the network is configured previously, capitalized by app --> + <string name="summary_remembered">remembered</string> <!-- Wifi network summary when there was an error connecting --> <string name="summary_connection_failed">Connection unsuccessful, select to try again</string> <!-- Header for the list of wifi networks--> |