1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3/* 4** 5** Copyright 2015 The Android Open Source Project 6** 7** Licensed under the Apache License, Version 2.0 (the "License"); 8** you may not use this file except in compliance with the License. 9** You may obtain a copy of the License at 10** 11** http://www.apache.org/licenses/LICENSE-2.0 12** 13** Unless required by applicable law or agreed to in writing, software 14** distributed under the License is distributed on an "AS IS" BASIS, 15** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16** See the License for the specific language governing permissions and 17** limitations under the License. 18*/ 19--> 20<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> 21 22 <!-- Wi-Fi settings --> 23 24 <!-- Match this with the order of NetworkInfo.DetailedState. --> <skip /> 25 <!-- Wi-Fi settings. The status messages when the network is unknown. --> 26 <string-array name="wifi_status"> 27 <!-- Status message of Wi-Fi when it is idle. --> 28 <item></item> 29 <!-- Status message of Wi-Fi when it is scanning. --> 30 <item>Scanning\u2026</item> 31 <!-- Status message of Wi-Fi when it is connecting. --> 32 <item>Connecting\u2026</item> 33 <!-- Status message of Wi-Fi when it is authenticating. --> 34 <item>Authenticating\u2026</item> 35 <!-- Status message of Wi-Fi when it is obtaining IP address. --> 36 <item>Obtaining IP address\u2026</item> 37 <!-- Status message of Wi-Fi when it is connected. --> 38 <item>Connected</item> 39 <!-- Status message of Wi-Fi when it is suspended. --> 40 <item>Suspended</item> 41 <!-- Status message of Wi-Fi when it is disconnecting. --> 42 <item>Disconnecting\u2026</item> 43 <!-- Status message of Wi-Fi when it is disconnected. --> 44 <item>Disconnected</item> 45 <!-- Status message of Wi-Fi when it is a failure. --> 46 <item>Unsuccessful</item> 47 <!-- Status message of Wi-Fi when it is blocked. --> 48 <item>Blocked</item> 49 <!-- Status message of Wi-Fi when connectiong is being verified. --> 50 <item>Temporarily avoiding poor connection</item> 51 </string-array> 52 53 <!-- Match this with the order of NetworkInfo.DetailedState. --> <skip /> 54 <!-- Wi-Fi settings. The status messages when the network is known. --> 55 <string-array name="wifi_status_with_ssid"> 56 <!-- Status message of Wi-Fi when it is idle. --> 57 <item></item> 58 <!-- Status message of Wi-Fi when it is scanning. --> 59 <item>Scanning\u2026</item> 60 <!-- Status message of Wi-Fi when it is connecting to a network. --> 61 <item>Connecting to <xliff:g id="network_name">%1$s</xliff:g>\u2026</item> 62 <!-- Status message of Wi-Fi when it is authenticating with a network. --> 63 <item>Authenticating with <xliff:g id="network_name">%1$s</xliff:g>\u2026</item> 64 <!-- Status message of Wi-Fi when it is obtaining IP address from a network. --> 65 <item>Obtaining IP address from <xliff:g id="network_name">%1$s</xliff:g>\u2026</item> 66 <!-- Status message of Wi-Fi when it is connected to a network. --> 67 <item>Connected to <xliff:g id="network_name">%1$s</xliff:g></item> 68 <!-- Status message of Wi-Fi when it is suspended. --> 69 <item>Suspended</item> 70 <!-- Status message of Wi-Fi when it is disconnecting from a network. --> 71 <item>Disconnecting from <xliff:g id="network_name">%1$s</xliff:g>\u2026</item> 72 <!-- Status message of Wi-Fi when it is disconnected. --> 73 <item>Disconnected</item> 74 <!-- Status message of Wi-Fi when it is a failure. --> 75 <item>Unsuccessful</item> 76 <!-- Status message of Wi-Fi when it is blocked. --> 77 <item>Blocked</item> 78 <!-- Status message of Wi-Fi when connectiong is being verified. --> 79 <item>Temporarily avoiding poor connection</item> 80 </string-array> 81</resources> 82