1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 ~ Copyright (C) 2021 The Android Open Source Project 4 ~ 5 ~ Licensed under the Apache License, Version 2.0 (the "License"); 6 ~ you may not use this file except in compliance with the License. 7 ~ You may obtain a copy of the License at 8 ~ 9 ~ http://www.apache.org/licenses/LICENSE-2.0 10 ~ 11 ~ Unless required by applicable law or agreed to in writing, software 12 ~ distributed under the License is distributed on an "AS IS" BASIS, 13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 ~ See the License for the specific language governing permissions and 15 ~ limitations under the License. 16 --> 17<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> 18 <!-- The System Connectivity Resources package is an internal system package that provides 19 configuration values for system networking that were pre-configured in the device. This 20 is the name of the package to display in the list of system apps. [CHAR LIMIT=40] --> 21 <string name="connectivityResourcesAppLabel">System Connectivity Resources</string> 22 23 <!-- A notification is shown when a wifi captive portal network is detected. This is the notification's title. --> 24 <string name="wifi_available_sign_in">Sign in to Wi-Fi network</string> 25 26 <!-- A notification is shown when a captive portal network is detected. This is the notification's title. --> 27 <string name="network_available_sign_in">Sign in to network</string> 28 29 <!-- A notification is shown when a captive portal network is detected. This is the notification's message. --> 30 <string name="network_available_sign_in_detailed"><xliff:g id="network_ssid">%1$s</xliff:g></string> 31 32 <!-- A notification is shown when the user connects to a Wi-Fi network and the system detects that that network has no Internet access. This is the notification's title. --> 33 <string name="wifi_no_internet"><xliff:g id="network_ssid" example="GoogleGuest">%1$s</xliff:g> has no internet access</string> 34 35 <!-- A notification is shown when the user connects to a Wi-Fi network and the system detects that that network has no Internet access. This is the notification's message. --> 36 <string name="wifi_no_internet_detailed">Tap for options</string> 37 38 <!-- A notification is shown when the user connects to a mobile network without internet access. This is the notification's title. --> 39 <string name="mobile_no_internet">Mobile network has no internet access</string> 40 41 <!-- A notification is shown when the user connects to a non-mobile and non-wifi network without internet access. This is the notification's title. --> 42 <string name="other_networks_no_internet">Network has no internet access</string> 43 44 <!-- A notification is shown when connected network without internet due to private dns validation failed. This is the notification's message. [CHAR LIMIT=NONE] --> 45 <string name="private_dns_broken_detailed">Private DNS server cannot be accessed</string> 46 47 <!-- A notification is shown when the user connects to a network that doesn't have access to some services (e.g. Push notifications may not work). This is the notification's title. [CHAR LIMIT=50] --> 48 <string name="network_partial_connectivity"><xliff:g id="network_ssid" example="GoogleGuest">%1$s</xliff:g> has limited connectivity</string> 49 50 <!-- A notification is shown when the user connects to a network that doesn't have access to some services (e.g. Push notifications may not work). This is the notification's message. [CHAR LIMIT=50] --> 51 <string name="network_partial_connectivity_detailed">Tap to connect anyway</string> 52 53 <!-- A notification might be shown if the device switches to another network type (e.g., mobile data) because it detects that the network it was using (e.g., Wi-Fi) has lost Internet connectivity. This is the notification's title. %1$s is the network type that the device switched to, e.g., cellular data. It is one of the strings in the network_switch_type_name array. --> 54 <string name="network_switch_metered">Switched to <xliff:g id="network_type">%1$s</xliff:g></string> 55 56 <!-- A notification might be shown if the device switches to another network type (e.g., mobile data) because it detects that the network it was using (e.g., Wi-Fi) has lost Internet connectivity. This is the notification's message. %1$s is the network that the device switched to, e.g., cellular data. %2$s is the network type the device switched from, e.g., Wi-Fi. Both are strings in the network_switch_type_name array. --> 57 <string name="network_switch_metered_detail">Device uses <xliff:g id="new_network">%1$s</xliff:g> when <xliff:g id="previous_network">%2$s</xliff:g> has no internet access. Charges may apply.</string> 58 59 <!-- A toast might be shown if the device switches to another network type (e.g., mobile data) because it detects that the network it was using (e.g., Wi-Fi) has lost Internet connectivity. This is the text of the toast. %1$s is the network that the device switched from, e.g., Wi-Fi. %2$s is the network type the device switched from, e.g., cellular data. Both are strings in the network_switch_type_name array. --> 60 <string name="network_switch_metered_toast">Switched from <xliff:g id="previous_network">%1$s</xliff:g> to <xliff:g id="new_network">%2$s</xliff:g></string> 61 62 <!-- Network type names used in the network_switch_metered and network_switch_metered_detail strings. These must be kept in the sync with the values NetworkCapabilities.TRANSPORT_xxx values, and in the same order. --> 63 <string-array name="network_switch_type_name"> 64 <item>mobile data</item> 65 <item>Wi-Fi</item> 66 <item>Bluetooth</item> 67 <item>Ethernet</item> 68 <item>VPN</item> 69 </string-array> 70 71 <!-- Network type name displayed if one of the types is not found in network_switch_type_name. --> 72 <string name="network_switch_type_name_unknown">an unknown network type</string> 73 74</resources> 75