diff options
author | Android (Google) Code Review <android-gerrit@google.com> | 2009-08-28 10:48:29 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2009-08-28 10:48:29 -0700 |
commit | 62e592a61b3262602845f0eac1f1ad3e4d1f4c50 (patch) | |
tree | 1e970797a71f55c42dd3b5b306921e45475ac63d /packages/VpnServices | |
parent | 0d430593ee07b78894eff8b78f559d2591a94287 (diff) | |
parent | cfce0aa58bd5b8ccdd29a6d78b04786eed75c374 (diff) | |
download | frameworks_base-62e592a61b3262602845f0eac1f1ad3e4d1f4c50.zip frameworks_base-62e592a61b3262602845f0eac1f1ad3e4d1f4c50.tar.gz frameworks_base-62e592a61b3262602845f0eac1f1ad3e4d1f4c50.tar.bz2 |
Merge change 23023 into eclair
* changes:
Armor string format tokens with translation placeholders.
Diffstat (limited to 'packages/VpnServices')
-rwxr-xr-x | packages/VpnServices/res/values/strings.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/VpnServices/res/values/strings.xml b/packages/VpnServices/res/values/strings.xml index 074655e..d82f52a 100755 --- a/packages/VpnServices/res/values/strings.xml +++ b/packages/VpnServices/res/values/strings.xml @@ -1,10 +1,10 @@ <?xml version="1.0" encoding="utf-8"?> -<resources> +<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <!-- Title for the VPN Services activity. --> <string name="app_label">VPN Services</string> - <string name="vpn_notification_title_connected">%s VPN connected</string> - <string name="vpn_notification_title_disconnected">%s VPN disconnected</string> + <string name="vpn_notification_title_connected"><xliff:g id="profilename">%s</xliff:g> VPN connected</string> + <string name="vpn_notification_title_disconnected"><xliff:g id="profilename">%s</xliff:g> VPN disconnected</string> <string name="vpn_notification_hint_disconnected">Touch to reconnect to a VPN.</string> </resources> |