1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 ~ Copyright (c) 2018 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 18<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> 19 <!-- Format for HVAC temperature in fahrenheit (No decimal place and the degree symbol) --> 20 <string name="hvac_temperature_format_fahrenheit" translatable="false">%.0f\u00B0</string> 21 <!-- Format for HVAC temperature in celsius (One decimal place and the degree symbol) --> 22 <string name="hvac_temperature_format_celsius" translatable="false">%.1f\u00B0</string> 23 <!-- Tag to use to identify the icon view within the quick controls entry point button --> 24 <string name="qc_icon_tag" translatable="false">TAG_QC_ICON</string> 25 <!-- String to represent lowest setting of an HVAC system [CHAR LIMIT=10]--> 26 <string name="hvac_min_text">Min</string> 27 <!-- String to represent the highest setting of an HVAC system [CHAR LIMIT=10]--> 28 <string name="hvac_max_text">Max</string> 29 <!-- String to represent the highest setting of fan speed [CHAR LIMIT=10]--> 30 <string name="fan_speed_max">MAX</string> 31 <!-- String to represent fan being turned off [CHAR LIMIT=10]--> 32 <string name="fan_speed_off">OFF</string> 33 <!-- String to display when no HVAC temperature is available --> 34 <string name="hvac_null_temp_text" translatable="false">--</string> 35 <!-- String to display when the HVAC temperature control is turned off [CHAR LIMIT=10]--> 36 <string name="hvac_temperature_off">OFF</string> 37 <!-- Text for voice recognition toast. [CHAR LIMIT=60] --> 38 <string name="voice_recognition_toast">Voice recognition now handled by connected Bluetooth device</string> 39 <!-- Name of Guest Profile. [CHAR LIMIT=35] --> 40 <string name="car_guest">Guest</string> 41 <!-- Title for button that starts a guest session. [CHAR LIMIT=35] --> 42 <string name="start_guest_session">Guest</string> 43 <!-- Title for button that adds a new profile. [CHAR LIMIT=30] --> 44 <string name="car_add_user">Add a profile</string> 45 <!-- Default name of the new profile created. [CHAR LIMIT=30] --> 46 <string name="car_new_user">New Profile</string> 47 <!-- Title of the alert dialog to ask user to confirm creation of new profile. [CHAR LIMIT=30] --> 48 <string name="user_add_profile_title">"Add new profile?"</string> 49 <!-- Message to inform the profile creator that the user it's intended for should customize it for themselves. [CHAR LIMIT=100] --> 50 <string name="user_add_user_message_setup">After you create a new profile, that person should customize it for themselves.</string> 51 <!-- Message to inform user that the newly created profile will have permissions to update apps for all other profiles. [CHAR LIMIT=100] --> 52 <string name="user_add_user_message_update">Apps can be updated from any profile for use by all other profiles.</string> 53 <!-- Title for the dialog that lets users know that the maximum allowed number of profiles on the device has been reached. [CHAR LIMIT=35]--> 54 <string name="profile_limit_reached_title">Profile limit reached</string> 55 <!-- Message that tells people what's the maximum number of profiles allowed on the device. [CHAR_LIMIT=NONE]--> 56 <plurals name="profile_limit_reached_message"> 57 <item quantity="one">Only one profile can be created.</item> 58 <item quantity="other">You can add up to <xliff:g id="count" example="3">%d</xliff:g> profiles.</item> 59 </plurals> 60 <!-- Message to inform user that the new user profile is loading. [CHAR LIMIT=20] --> 61 <string name="car_loading_profile">Loading</string> 62 <!-- Message to inform user that the new user profile is loading with additional information on the previous and the next user. [CHAR LIMIT=100] --> 63 <string name="car_loading_profile_developer_message">Loading user (from <xliff:g id="from_user" example="10">%1$d</xliff:g> to <xliff:g id="to_user" example="12">%2$d</xliff:g>)</string> 64 <!-- Accessibility content description for microphone off state of microphone privacy chip. [CHAR LIMIT=40]--> 65 <string name="mic_privacy_chip_off_content">Microphone is off.</string> 66 <!-- Message displayed near microphone toggle [CHAR LIMIT=50]--> 67 <string name="mic_privacy_chip_use_microphone">Use microphone</string> 68 <!-- Message Subtext displayed near microphone toggle [CHAR LIMIT=60]--> 69 <string name="mic_privacy_chip_use_microphone_subtext">For apps that have permission</string> 70 <!-- Microphone settings button text. [CHAR LIMIT=45]--> 71 <string name="mic_privacy_chip_microphone_settings">Microphone settings</string> 72 <!-- App is using microphone suffix [CHAR LIMIT=32]--> 73 <string name="mic_privacy_chip_app_using_mic_suffix"><xliff:g id="app" example="Assistant">%s</xliff:g> is using the mic</string> 74 <!-- Apps are using microphone suffix [CHAR LIMIT=32]--> 75 <string name="mic_privacy_chip_apps_using_mic_suffix"><xliff:g id="app_list" example="Assistant & Phone">%s</xliff:g> are using the mic</string> 76 <!-- App was using microphone suffix [CHAR LIMIT=50]--> 77 <string name="mic_privacy_chip_app_recently_used_mic_suffix"><xliff:g id="app" example="Assistant">%s</xliff:g> used the mic recently</string> 78 <!-- Apps were using microphone suffix [CHAR LIMIT=60]--> 79 <string name="mic_privacy_chip_apps_recently_used_mic_suffix"><xliff:g id="app" example="Assistant">%1$s</xliff:g> and <xliff:g id="additional_app_count" example="2">%2$d</xliff:g> more used the mic recently</string> 80 <!-- Microphone turned on toast text [CHAR LIMIT=40]--> 81 <string name="mic_privacy_chip_on_toast">Microphone turned on</string> 82 <!-- Microphone turned off toast text [CHAR LIMIT=42]--> 83 <string name="mic_privacy_chip_off_toast">Microphone turned off</string> 84 <!-- Ok button for dialog that shows which apps have recently used microphone [CHAR LIMIT=10]--> 85 <string name="mic_privacy_chip_dialog_ok">OK</string> 86 <!--- Title of dialog triggered if the microphone is disabled but an app tried to access it. [CHAR LIMIT=75] --> 87 <string name="sensor_privacy_start_use_mic_dialog_title">Turn on vehicle microphone?</string> 88 <!--- Content of dialog triggered if the microphone is disabled but an app tried to access it. [CHAR LIMIT=NONE] --> 89 <string name="sensor_privacy_start_use_mic_dialog_content">To continue, turn on the infotainment system microphone. This will turn on the microphone for all apps that have permission.</string> 90 91 <!-- Quick Controls: Message to be displayed as the footer button to launch the settings application [CHAR LIMIT=45] --> 92 <string name="qc_footer_settings">Settings</string> 93 <!-- Quick Controls: Message to be displayed as the footer button to launch bluetooth settings [CHAR LIMIT=45] --> 94 <string name="qc_footer_bluetooth_settings">Bluetooth settings</string> 95 <!-- Quick Controls: Message to be displayed as the footer button to launch network and internet settings [CHAR LIMIT=45] --> 96 <string name="qc_footer_network_internet_settings">Network & internet settings</string> 97 <!-- Quick Controls: Message to be displayed as the footer button to launch display settings [CHAR LIMIT=45] --> 98 <string name="qc_footer_display_settings">Display settings</string> 99 <!-- Quick Controls: Message to be displayed as the footer button to launch sound settings [CHAR LIMIT=45] --> 100 <string name="qc_footer_network_sound_settings">Sound settings</string> 101 <!-- Quick Controls: Message to be displayed as the footer button to launch profiles and accounts settings [CHAR LIMIT=45] --> 102 <string name="qc_footer_profiles_accounts_settings">Profiles & accounts settings</string> 103 104 <!-- Message shown when the lock pattern is focused. [CHAR LIMIT=40] --> 105 <string name="lockpattern_does_not_support_rotary">Pattern does not support rotary; please use touch</string> 106</resources> 107