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) --> 20 <string name="hvac_temperature_format_fahrenheit" translatable="false">%.0f</string> 21 <!-- Format for HVAC temperature in celsius (One decimal place) --> 22 <string name="hvac_temperature_format_celsius" translatable="false">%.1f</string> 23 <!-- String to represent lowest setting of an HVAC system [CHAR LIMIT=10]--> 24 <string name="hvac_min_text">Min</string> 25 <!-- String to represent the highest setting of an HVAC system [CHAR LIMIT=10]--> 26 <string name="hvac_max_text">Max</string> 27 <!-- String to represent the highest setting of fan speed [CHAR LIMIT=10]--> 28 <string name="fan_speed_max">MAX</string> 29 <!-- String to represent fan being turned off [CHAR LIMIT=10]--> 30 <string name="fan_speed_off">OFF</string> 31 <!-- String to display when no HVAC temperature is available --> 32 <string name="hvac_null_temp_text" translatable="false">--</string> 33 <!-- String to display when the HVAC temperature control is turned off [CHAR LIMIT=10]--> 34 <string name="hvac_temperature_off">OFF</string> 35 <!-- Text for voice recognition toast. [CHAR LIMIT=60] --> 36 <string name="voice_recognition_toast">Voice recognition now handled by connected Bluetooth device</string> 37 <!-- Title for button that adds a new profile. [CHAR LIMIT=30] --> 38 <string name="car_add_user">Add a profile</string> 39 <!-- Title for button that ends current user session. [CHAR LIMIT=30] --> 40 <string name="end_session">End session</string> 41 <!-- Default name of the new profile created. [CHAR LIMIT=30] --> 42 <string name="car_new_user">New Profile</string> 43 <!-- Title of the alert dialog to ask user to confirm creation of new profile. [CHAR LIMIT=30] --> 44 <string name="user_add_profile_title">"Add new profile?"</string> 45 <!-- Message to inform the profile creator that the user it's intended for should customize it for themselves. [CHAR LIMIT=100] --> 46 <string name="user_add_user_message_setup">After you add a new profile, the account holder can customize it.</string> 47 <!-- Message to inform user that the newly created profile will have permissions to update apps for all other profiles. [CHAR LIMIT=100] --> 48 <string name="user_add_user_message_update">Any profile can install an app update, which will then be available to all profiles. </string> 49 <!-- Title for the dialog that lets users know that the maximum allowed number of profiles on the device has been reached. [CHAR LIMIT=35]--> 50 <string name="profile_limit_reached_title">Profile limit reached</string> 51 <!-- Message that tells people what's the maximum number of profiles allowed on the device. (ICU syntax) [CHAR_LIMIT=NONE]--> 52 <string name="profile_limit_reached_message"> 53 {count, plural, 54 =1 {Only one profile can be created.} 55 other {You can add up to # profiles.} 56 } 57 </string> 58 <!-- Message to inform user that the new user profile is loading. [CHAR LIMIT=20] --> 59 <string name="car_loading_profile">Loading</string> 60 <!-- Message to inform user that the new user profile is loading with additional information on the previous and the next user. [CHAR LIMIT=100] --> 61 <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> 62 <!-- Subtitle for current profile in profile switch panel [CHAR LIMIT=20]--> 63 <string name="current_profile_subtitle">Current profile</string> 64 65 <!-- Accessibility content description for microphone/camera off state of privacy chip. [CHAR LIMIT=40]--> 66 <string name="privacy_chip_off_content"><xliff:g id="sensor" example="Microphone">%1$s</xliff:g> is off.</string> 67 <!-- Message displayed near microphone/camera toggle [CHAR LIMIT=50]--> 68 <string name="privacy_chip_use_sensor">Use <xliff:g id="sensor" example="microphone">%1$s</xliff:g></string> 69 <!-- Message Subtext displayed near microphone/camera toggle [CHAR LIMIT=60]--> 70 <string name="privacy_chip_use_sensor_subtext">For apps that have permission</string> 71 72 <!-- Microphone settings button text. [CHAR LIMIT=45]--> 73 <string name="privacy_chip_settings">Privacy settings</string> 74 <!-- App is using microphone suffix [CHAR LIMIT=32]--> 75 <string name="privacy_chip_app_using_sensor_suffix"><xliff:g id="app" example="Assistant">%1$s</xliff:g> is using the <xliff:g id="sensor" example="microphone">%2$s</xliff:g></string> 76 <!-- Apps are using microphone suffix [CHAR LIMIT=32]--> 77 <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> 78 <!-- App was using microphone suffix [CHAR LIMIT=50]--> 79 <string name="privacy_chip_app_recently_used_sensor_suffix"><xliff:g id="app" example="Assistant">%1$s</xliff:g> used the <xliff:g id="sensor" example="microphone">%2$s</xliff:g> recently</string> 80 <!-- Apps were using microphone suffix [CHAR LIMIT=60]--> 81 <string name="privacy_chip_apps_recently_used_sensor_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 <xliff:g id="sensor" example="microphone">%3$s</xliff:g> recently</string> 82 <!-- Microphone turned on toast text [CHAR LIMIT=40]--> 83 <string name="mic_privacy_chip_on_toast">Microphone turned on</string> 84 <!-- Microphone turned off toast text [CHAR LIMIT=42]--> 85 <string name="mic_privacy_chip_off_toast">Microphone turned off</string> 86 <!-- Ok button for dialog that shows which apps have recently used microphone [CHAR LIMIT=10]--> 87 <string name="mic_privacy_chip_dialog_ok">OK</string> 88 <!--- Title of dialog triggered if the microphone is disabled but an app tried to access it. [CHAR LIMIT=75] --> 89 <string name="sensor_privacy_start_use_mic_dialog_title">Turn on vehicle microphone?</string> 90 <!--- Content of dialog triggered if the microphone is disabled but an app tried to access it. [CHAR LIMIT=NONE] --> 91 <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> 92 93 <!-- App is using camera suffix [CHAR LIMIT=32]--> 94 <string name="camera_privacy_chip_app_using_camera_suffix"><xliff:g id="app" example="Assistant">%s</xliff:g> is using the camera</string> 95 <!-- Apps are using camera suffix [CHAR LIMIT=32]--> 96 <string name="camera_privacy_chip_apps_using_camera_suffix"><xliff:g id="app_list" example="Assistant & Phone">%s</xliff:g> are using the camera</string> 97 <!-- App was using camera suffix [CHAR LIMIT=50]--> 98 <string name="camera_privacy_chip_app_recently_used_camera_suffix"><xliff:g id="app" example="Assistant">%s</xliff:g> used the camera recently</string> 99 <!-- Apps were using camera suffix [CHAR LIMIT=60]--> 100 <string name="camera_privacy_chip_apps_recently_used_camera_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 camera recently</string> 101 <!-- Camera turned on toast text [CHAR LIMIT=40]--> 102 <string name="camera_privacy_chip_on_toast">Camera turned on</string> 103 <!-- Camera turned off toast text [CHAR LIMIT=42]--> 104 <string name="camera_privacy_chip_off_toast">Camera turned off</string> 105 <!-- Ok button for dialog that shows which apps have recently used camera [CHAR LIMIT=10]--> 106 <string name="camera_privacy_chip_dialog_ok">OK</string> 107 <!--- Title of dialog triggered if the camera is disabled but an app tried to access it. [CHAR LIMIT=75] --> 108 <string name="sensor_privacy_start_use_camera_dialog_title">Turn on vehicle camera?</string> 109 <!--- Content of dialog triggered if the camera is disabled but an app tried to access it. [CHAR LIMIT=NONE] --> 110 <string name="sensor_privacy_start_use_camera_dialog_content">To continue, turn on the infotainment system camera. This will turn on the camera for all apps that have permission.</string> 111 112 <!-- System bar contentDescription for home menu--> 113 <string name="system_bar_home_label">Home Screen</string> 114 <!-- System bar contentDescription for Dialer--> 115 <string name="system_bar_phone_label">Phone</string> 116 <!-- System bar contentDescription for Launcher--> 117 <string name="system_bar_applications_label">Applications</string> 118 <!-- System bar contentDescription for HVAC--> 119 <string name="system_bar_climate_control_label">Climate Control</string> 120 <!-- System bar contentDescription for Notifications--> 121 <string name="system_bar_notifications_label">Notifications</string> 122 <!-- System bar contentDescription for Maps--> 123 <string name="system_bar_maps_label">Maps</string> 124 <!-- System bar contentDescription for Media--> 125 <string name="system_bar_media_label">Media</string> 126 <!-- System bar contentDescription for Control Center--> 127 <string name="system_bar_control_center_label">Control Center</string> 128 <!-- System bar contentDescription for Assistant--> 129 <string name="system_bar_assistant_label">Assistant</string> 130 <string name="system_bar_mic_privacy_chip">Mic Privacy Chip</string> 131 <string name="system_bar_user_avatar">User Avatar</string> 132 <string name="system_bar_user_name_text">User Name Text</string> 133 134 <!-- Adjust temperature view lower temperature label--> 135 <string name="hvac_decrease_button_label">Lower temperature</string> 136 <!-- Adjust temperature view raise temperature label--> 137 <string name="hvac_increase_button_label">Raise temperature</string> 138 139 <!-- Status icon for bluetooth settings in status bar--> 140 <string name="status_icon_bluetooth_disconnected">Bluetooth Setting: Disconnected</string> 141 <string name="status_icon_bluetooth_connected">Bluetooth Setting: Connected</string> 142 <string name="status_icon_bluetooth_off">Bluetooth Setting: Bluetooth off</string> 143 <!-- Status icon for signal settings in status bar--> 144 <string name="status_icon_signal_mobile">Signal Settings: Using Mobile Data</string> 145 <string name="status_icon_signal_wifi">Signal Settings: Wifi On</string> 146 <string name="status_icon_signal_hotspot">Signal Settings: Hotspot On</string> 147 <!-- Status icon for display settings in status bar--> 148 <string name="status_icon_display_status">Display Settings</string> 149 <!-- Status icon for debug settings in status bar--> 150 <string name="status_icon_debug_status">Debug Settings</string> 151 <string name="status_icon_sound_status">Sound Settings</string> 152 <!-- Status icon for drive mode settings in status bar --> 153 <string name="status_icon_drive_mode">Drive Mode</string> 154 155 <!-- Blocking activity: Message to show to user when a feature of current application is not allowed. [CHAR LIMIT=120] --> 156 <string name="activity_blocked_text">You can\u2019t use this feature while driving</string> 157 <!-- Blocking activity: Text for button that closes current blocked application. [CHAR LIMIT=20] --> 158 <string name="exit_button_close_application">Close app</string> 159 <!-- Blocking activity: Text for button that closes current blocked application. [CHAR LIMIT=15] --> 160 <string name="exit_button_go_back">Back</string> 161 <!-- Blocking activity: Text for button that shows debug info in non-user build. --> 162 <string name="debug_button_text" translatable="false">Debug Info</string> 163 164 <!-- Drive modes --> 165 <string name="drive_mode_modes_comfort">Comfort</string> 166 <string name="drive_mode_modes_eco">Eco</string> 167 <string name="drive_mode_modes_sport">Sport</string> 168 <string name="qc_drive_mode_active_subtitle">Active</string> 169 170 <!-- Quick Controls: Message to be displayed as the footer button to launch the settings application [CHAR LIMIT=45] --> 171 <string name="qc_footer_settings">Settings</string> 172 <!-- Quick Controls: Message to be displayed as the footer button to launch bluetooth settings [CHAR LIMIT=45] --> 173 <string name="qc_footer_bluetooth_settings">Bluetooth settings</string> 174 <!-- Quick Controls: Message to be displayed as the footer button to launch network and internet settings [CHAR LIMIT=45] --> 175 <string name="qc_footer_network_internet_settings">Network & internet settings</string> 176 <!-- Quick Controls: Message to be displayed as the footer button to launch display settings [CHAR LIMIT=45] --> 177 <string name="qc_footer_display_settings">Display settings</string> 178 <!-- Quick Controls: Message to be displayed as the footer button to launch sound settings [CHAR LIMIT=45] --> 179 <string name="qc_footer_network_sound_settings">Sound settings</string> 180 <!-- Quick Controls: Message to be displayed as the footer button to launch profiles and accounts settings [CHAR LIMIT=45] --> 181 <string name="qc_footer_profiles_accounts_settings">Profiles & accounts settings</string> 182 <!-- Quick Controls: Message to be displayed as the footer button to launch developer options settings [CHAR LIMIT=45] --> 183 <string name="qc_footer_debug_settings">Developer options</string> 184 185 <!-- Message shown when the lock pattern is focused. [CHAR LIMIT=40] --> 186 <string name="lockpattern_does_not_support_rotary">Pattern does not support rotary; please use touch</string> 187 188 <!-- Display Input Lock string --> 189 <string name="display_input_lock_text">Your screen is locked</string> 190 <string name="display_input_lock_started_text">Your screen has been locked</string> 191 <string name="display_input_lock_stopped_text">Your screen is now unlocked</string> 192 193 <!-- Title of the alert dialog to ask user to confirm logout. --> 194 <string name="user_logout_title">Are you sure you want to log out?</string> 195 <!-- Message to inform user that all open applications will be closed. --> 196 <string name="user_logout_message">This will close all open applications</string> 197 <!-- Text for button that logs out current user. --> 198 <string name="user_logout">Log out</string> 199 200 <!-- User Picker: guest name --> 201 <string name="car_guest">Guest</string> 202 <!-- User Picker: user switching message --> 203 <string name="user_switching_message">Switching profile\u2026</string> 204 <!-- User Picker: user adding message --> 205 <string name="user_adding_message">Adding new profile\u2026</string> 206 <!-- User Picker: max user limit reached title --> 207 <string name="max_user_limit_reached_title"></string> 208 <!-- User Picker: max user limit reached message --> 209 <string name="max_user_limit_reached_message">You can add up to <xliff:g id="user_limit" example="10">%d</xliff:g> profiles</string> 210 <!-- User Picker: confirm add user title --> 211 <string name="confirm_add_user_title">Add new profile?</string> 212 <!-- User Picker: the message when user is already logged-in state --> 213 <string name="already_logged_in_message">To continue, <xliff:g id="user_name" example="Peter">%1$s</xliff:g> should sign out of the <xliff:g id="seat_location" example="Driver">%2$s</xliff:g> screen</string> 214 <!-- User Picker: header bar text in logged-out state --> 215 <string name="header_bar_text_in_logged_out_state">Select profile to start</string> 216 <!-- User Picker: text for logged-in state --> 217 <string name="logged_in_text">Signed in</string> 218 <!-- User Picker: prefix text for logged-in state of other seat --> 219 <string name="prefix_logged_in_info_for_other_seat">Signed in on <xliff:g id="seat_location" example="Driver">%s</xliff:g> screen</string> 220 <!-- User Picker: snack bar message when adding user is requested concurrently 221 from another display--> 222 <string name="create_user_failed_message">Can’t add new profile. Try again later.</string> 223 <!-- User Picker: snack bar message when creating guest user is requested concurrently 224 with user addition request --> 225 <string name="guest_creation_failed_message">Can’t start Guest profile. Try again later.</string> 226 <!-- User Picker: text when user is stopping --> 227 <string name="stopping_user_text">Signing out…</string> 228 <!-- User Picker: snack bar message when clicking stopping user --> 229 <string name="wait_for_until_stopped_message"><xliff:g id="user_name" example="Peter">%s</xliff:g> is being signed out. Try again later.</string> 230 <!-- User Picker: text when user is unavailable because they're secure --> 231 <string name="unavailable_secure_user_text">User currently unavailable</string> 232 <!-- User Picker: snack bar message when clicking unavailable secure user --> 233 <string name="unavailable_secure_user_message">Unable to start secure user on passenger display</string> 234 235 <!-- Passenger Keyguard --> 236 <!-- Passenger keyguard error message when the user-entered pattern doesn't match what is stored --> 237 <string name="passenger_keyguard_wrong_pattern">Wrong pattern</string> 238 <!-- Passenger keyguard error message when the user-entered PIN doesn't match what is stored --> 239 <string name="passenger_keyguard_wrong_pin">Wrong PIN</string> 240 <!-- Passenger keyguard error message when the user-entered password doesn't match what is stored --> 241 <string name="passenger_keyguard_wrong_password">Wrong password</string> 242 <!-- Message shown after too many incorrect attempts to unlock passenger keyguard --> 243 <string name="passenger_keyguard_too_many_failed_attempts"> 244 {count, plural, 245 =1 {Too many incorrect attempts. Try again in # second.} 246 other {Too many incorrect attempts. Try again in # seconds.} 247 } 248 </string> 249 250 <!-- User Picker: seat string --> 251 <string name="seat_driver">driver</string> 252 <string name="seat_front">front</string> 253 <string name="seat_rear">rear</string> 254 <string name="seat_left_side">left</string> 255 <string name="seat_center_side">center</string> 256 <string name="seat_right_side">right</string> 257 258 <!-- Car keyguard: OVERRIDE - bouncer area initial message. Intentionally set blank --> 259 <string name="keyguard_enter_your_pin"></string> 260 <string name="keyguard_enter_your_pattern"></string> 261 <string name="keyguard_enter_your_password"></string> 262 <!-- Car keyguard: prompt message --> 263 <!-- Instructions telling the user to enter their PIN password to unlock the keyguard [CHAR LIMIT=30] --> 264 <string name="car_keyguard_enter_your_pin">Enter your PIN</string> 265 <!-- Instructions telling the user to enter their pattern to unlock the keyguard [CHAR LIMIT=30] --> 266 <string name="car_keyguard_enter_your_pattern">Enter your pattern</string> 267 <!-- Instructions telling the user to enter their text password to unlock the keyguard [CHAR LIMIT=30] --> 268 <string name="car_keyguard_enter_your_password">Enter your password</string> 269 270 <!-- Accessibility description for the backspace key in the PIN pad [CHAR LIMIT=NONE] --> 271 <string name="backspace_key">Backspace key</string> 272 <!-- Accessibility description for the enter key in the PIN pad [CHAR LIMIT=NONE] --> 273 <string name="enter_key">Enter key</string> 274 275 <!-- These are the digits on the PIN pad --> 276 <string name="one" translatable="false">1</string> 277 <string name="two" translatable="false">2</string> 278 <string name="three" translatable="false">3</string> 279 <string name="four" translatable="false">4</string> 280 <string name="five" translatable="false">5</string> 281 <string name="six" translatable="false">6</string> 282 <string name="seven" translatable="false">7</string> 283 <string name="eight" translatable="false">8</string> 284 <string name="nine" translatable="false">9</string> 285 <string name="zero" translatable="false">0</string> 286 287 <!-- Intent action meant to invoke user TOS flow. 288 The intent URI has to be formatted according to Intent.URI_INTENT_SCHEME 289 URI, for example should contain the intent action and any extras if necessary: 290 "intent:#Intent;action=com.android.car.SHOW_USER_TOS_ACTIVITY;B.show_value_prop=true;end" 291 --> 292 <string name="user_tos_activity_intent">intent:#Intent;action=com.android.car.SHOW_USER_TOS_ACTIVITY;B.show_value_prop=false;end</string> 293 294 <!-- DisplayCompat back button [CHAR LIMIT=30] --> 295 <string name="back_btn">Back</string> 296 <!-- DisplayCompat fullscreen button [CHAR LIMIT=30] --> 297 <string name="fullscreen">Full Screen</string> 298 299 <!-- Intent binding to long press action of user profile icon in car top system bar. --> 300 <string name="user_profile_long_press_intent" translatable="false"></string> 301 302 <!-- Data subscription button text [CHAR LIMIT=30]--> 303 <string name="data_subscription_button_text">See plans</string> 304 <!-- Data subscription proactive message prompt--> 305 <string name="data_subscription_proactive_msg_prompt">Your internet plan expired</string> 306 <string name="data_subscription_reactive_msg_prompt">%s needs an internet connection</string> 307 <string name="data_subscription_reactive_generic_app_label">This app</string> 308 309</resources> 310