1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- Copyright (C) 2011 The Android Open Source Project 3 4 Licensed under the Apache License, Version 2.0 (the "License"); 5 you may not use this file except in compliance with the License. 6 You may obtain a copy of the License at 7 8 http://www.apache.org/licenses/LICENSE-2.0 9 10 Unless required by applicable law or agreed to in writing, software 11 distributed under the License is distributed on an "AS IS" BASIS, 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 See the License for the specific language governing permissions and 14 limitations under the License. 15 --> 16 17 <resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> 18 19 <!-- Dialog title to identify the request from a VPN application. [CHAR LIMIT=60] --> 20 <string name="prompt"><xliff:g id="app">%s</xliff:g> 21 attempts to create a VPN connection. 22 </string> 23 24 <!-- Dialog message to warn about the risk of using a VPN application. [CHAR LIMIT=NONE] --> 25 <string name="warning">By proceeding, you are giving the application 26 permission to intercept all network traffic. 27 <b>Do NOT accept unless you trust the application.</b> Otherwise, 28 you run the risk of having your data compromised by a malicious 29 software. 30 </string> 31 32 <!-- Checkbox label to accept the request from a VPN application. [CHAR LIMIT=60] --> 33 <string name="accept">I trust this application.</string> 34 35 <!-- Dialog title for built-in VPN. [CHAR LIMIT=40] --> 36 <string name="legacy_title">VPN is connected</string> 37 <!-- Button label to configure the current VPN session. [CHAR LIMIT=20] --> 38 <string name="configure">Configure</string> 39 <!-- Button label to disconnect the current VPN session. [CHAR LIMIT=20] --> 40 <string name="disconnect">Disconnect</string> 41 42 <!-- Label for the name of the current VPN session. [CHAR LIMIT=20] --> 43 <string name="session">Session:</string> 44 <!-- Label for the duration of the current VPN session. [CHAR LIMIT=20] --> 45 <string name="duration">Duration:</string> 46 <!-- Label for the network usage of data transmitted over VPN. [CHAR LIMIT=20] --> 47 <string name="data_transmitted">Sent:</string> 48 <!-- Label for the network usage of data received over VPN. [CHAR LIMIT=20] --> 49 <string name="data_received">Received:</string> 50 51 <!-- Formatted string for the network usage over VPN. [CHAR LIMIT=40] --> 52 <string name="data_value_format"> 53 <xliff:g id="number">%1$s</xliff:g> bytes / 54 <xliff:g id="number">%2$s</xliff:g> packets 55 </string> 56 </resources> 57