diff options
author | Eric Fischer <enf@google.com> | 2009-08-27 17:22:26 -0700 |
---|---|---|
committer | Eric Fischer <enf@google.com> | 2009-08-28 10:40:03 -0700 |
commit | cfce0aa58bd5b8ccdd29a6d78b04786eed75c374 (patch) | |
tree | 098baffbb1cf89e935cd43730ae68ca044c201b0 /packages/VpnServices/res | |
parent | b2795f46bf4c2354493e05ef00a16e350af11ae8 (diff) | |
download | frameworks_base-cfce0aa58bd5b8ccdd29a6d78b04786eed75c374.zip frameworks_base-cfce0aa58bd5b8ccdd29a6d78b04786eed75c374.tar.gz frameworks_base-cfce0aa58bd5b8ccdd29a6d78b04786eed75c374.tar.bz2 |
Armor string format tokens with translation placeholders.
Change-Id: I2f1b1f0e9b028a9f66c4543afe5c7bdce486db15
Diffstat (limited to 'packages/VpnServices/res')
-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> |