1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3/* 4** 5** Copyright 2020 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="wifitrackerlib_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</resources> 54