blob: 5767e63a0cfd53c7be200e271d030a20d1b1f457 [file] [log] [blame]
Joe Onorato2314aab2010-04-08 16:41:23 -05001<?xml version="1.0" encoding="utf-8"?>
2<!--
3/**
4 * Copyright (c) 2009, The Android Open Source Project
5 *
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 */
18-->
Joe Onorato798ac4c2010-05-27 16:39:00 -040019<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
Joe Onoratoe8934a62010-11-09 08:01:20 -080020 <!-- Name of the status bar as seen in the applications info settings page. [CHAR LIMIT=12] -->
Joe Onoratofd52b182010-11-10 18:00:52 -080021 <string name="app_label">System UI</string>
Joe Onorato503007d2010-04-16 09:20:55 -070022
23 <!-- The text for the button in the notification window-shade that clears
Joe Onoratoe8934a62010-11-09 08:01:20 -080024 all of the currently visible notifications. [CHAR LIMIT=10]-->
Joe Onorato503007d2010-04-16 09:20:55 -070025 <string name="status_bar_clear_all_button">Clear</string>
26
Joe Onorato55d2d762010-09-26 13:02:01 -070027 <!-- The text for the button in the notification window-shade that turns
28 on do not disturb mode, where notifications no longer show their ticker,
29 no sound plays, and no icons are visible. The windowshade continues to show
Joe Onoratoe8934a62010-11-09 08:01:20 -080030 the notifications. [CHAR LIMIT=25]-->
Joe Onorato55d2d762010-09-26 13:02:01 -070031 <string name="status_bar_do_not_disturb_button">Do not disturb</string>
32
33 <!-- The text for the button in the notification window-shade that turns
34 off do not disturb mode. After clicking this, notifications will be
Joe Onoratoe8934a62010-11-09 08:01:20 -080035 shown again. [CHAR LIMIT=25] -->
Joe Onorato55d2d762010-09-26 13:02:01 -070036 <string name="status_bar_please_disturb_button">Show notifications</string>
37
Jim Millerc0d27312011-07-14 18:54:01 -070038 <!-- Title shown in recents popup for removing an application from the list -->
Michael Jurka8b098662011-09-01 17:00:53 -070039 <string name="status_bar_recent_remove_item_title">Remove from list</string>
Jim Millerc0d27312011-07-14 18:54:01 -070040
41 <!-- Title shown in recents popup for inspecting an application's properties -->
Michael Jurka8b098662011-09-01 17:00:53 -070042 <string name="status_bar_recent_inspect_item_title">App info</string>
Jim Millerc0d27312011-07-14 18:54:01 -070043
Michael Jurka6d667082011-09-16 17:04:40 -070044 <!-- Message shown in the middle of the screen after clicking on the recent apps button
Michael Jurka7daf95d2011-09-30 11:07:30 -070045 when there are no recent apps to show. Also used for accessibility. [CHAR LIMIT=45]-->
Michael Jurka6d667082011-09-16 17:04:40 -070046 <string name="status_bar_no_recent_apps">No recent apps</string>
47
Michael Jurka7daf95d2011-09-30 11:07:30 -070048 <!-- Content description for the button to dismiss Recent Apps (only present on large
49 devices) -->
50 <string name="status_bar_accessibility_dismiss_recents">Dismiss recent apps</string>
51
52 <!-- Message that is read when you enter recent apps in TalkBack -->
53 <plurals name="status_bar_accessibility_recent_apps">
54 <item quantity="one">1 recent app</item>
55 <item quantity="other">%d recent apps</item>
56 </plurals>
57
Joe Onorato503007d2010-04-16 09:20:55 -070058 <!-- The label in the bar at the top of the status bar when there are no notifications
Joe Onoratoe8934a62010-11-09 08:01:20 -080059 showing. [CHAR LIMIT=40]-->
Joe Onorato503007d2010-04-16 09:20:55 -070060 <string name="status_bar_no_notifications_title">No notifications</string>
61
62 <!-- The label for the group of notifications for ongoing events in the opened version of
63 the status bar. An ongoing call is the prime example of this. The MP3 music player
Joe Onoratoe8934a62010-11-09 08:01:20 -080064 might be another example. [CHAR LIMIT=40] -->
Joe Onorato503007d2010-04-16 09:20:55 -070065 <string name="status_bar_ongoing_events_title">Ongoing</string>
66
67 <!-- The label for the group of notifications for recent events in the opened version of
Joe Onoratoe8934a62010-11-09 08:01:20 -080068 the status bar. Recently received text messsages (SMS), emails, calendar alerts, etc.
69 [CHAR LIMIT=40] -->
Joe Onorato503007d2010-04-16 09:20:55 -070070 <string name="status_bar_latest_events_title">Notifications</string>
71
Joe Onoratoe8934a62010-11-09 08:01:20 -080072 <!-- When the battery is low, this is displayed to the user in a dialog. The title of the low battery alert. [CHAR LIMIT=NONE]-->
Claudia de Veauxb837c7a2011-10-17 13:36:00 -070073 <string name="battery_low_title">Connect charger</string>
Joe Onorato798ac4c2010-05-27 16:39:00 -040074
Joe Onoratoe8934a62010-11-09 08:01:20 -080075 <!-- When the battery is low, this is displayed to the user in a dialog. The subtitle of the low battery alert. [CHAR LIMIT=NONE] -->
Joe Onorato4ca7f1e2010-10-27 15:32:23 -070076 <string name="battery_low_subtitle">The battery is getting low.</string>
Joe Onorato798ac4c2010-05-27 16:39:00 -040077
Joe Onorato4ca7f1e2010-10-27 15:32:23 -070078 <!-- A message that appears when the battery level is getting low in a dialog. This is
Joe Onoratoe8934a62010-11-09 08:01:20 -080079 appened to the subtitle of the low battery alert. "number" is the percentage of battery
80 remaining [CHAR LIMIT=none]-->
Joe Onorato4ca7f1e2010-10-27 15:32:23 -070081 <string name="battery_low_percent_format"><xliff:g id="number">%d%%</xliff:g> remaining</string>
82
83 <!-- A message that appears when a USB charger is plugged in and the device does not
84 support charging on it. That is, a charger that fits into the USB port and goes into
85 a wall socket, not into a computer. (This happens because some devices require more
Joe Onoratoe8934a62010-11-09 08:01:20 -080086 current than the USB spec allows. [CHAR LIMIT=NONE] -->
Joe Onorato4ca7f1e2010-10-27 15:32:23 -070087 <string name="invalid_charger">USB charging not supported.\nUse only the supplied charger.</string>
Joe Onorato798ac4c2010-05-27 16:39:00 -040088
89 <!-- When the battery is low, this is the label of the button to go to the
Joe Onoratoe8934a62010-11-09 08:01:20 -080090 power usage activity to find out what drained the battery. [CHAR LIMIT=30] -->
Joe Onorato798ac4c2010-05-27 16:39:00 -040091 <string name="battery_low_why">Battery use</string>
92
Joe Onoratoe8934a62010-11-09 08:01:20 -080093 <!-- Name of the button that links to the Settings app. [CHAR LIMIT=NONE] -->
Joe Onoratodff2e9a2010-11-27 16:13:36 -080094 <string name="status_bar_settings_settings_button">Settings</string>
Daniel Sandler6425ef92010-08-11 16:10:19 -040095
Joe Onorato64eb5d22010-12-08 15:46:59 -080096 <!-- Name of the button that links to the Wifi settings screen. [CHAR LIMIT=NONE] -->
97 <string name="status_bar_settings_wifi_button">Wi-Fi</string>
98
Joe Onoratoa8e34182010-11-26 13:19:58 -080099 <!-- Label in the system panel for airplane mode (all radios are turned off)[CHAR LIMIT=30] -->
Joe Onoratodff2e9a2010-11-27 16:13:36 -0800100 <string name="status_bar_settings_airplane">Airplane mode</string>
Joe Onoratoa8e34182010-11-26 13:19:58 -0800101
102 <!-- Label in system panel saying the device will use the orientation sensor to rotate [CHAR LIMIT=30] -->
Daniel Sandler5920f152011-03-02 15:19:54 -0500103 <string name="status_bar_settings_auto_rotation">Auto-rotate screen</string>
Joe Onoratoa8e34182010-11-26 13:19:58 -0800104
Joe Onorato75362102010-12-02 16:46:12 -0800105 <!-- Abbreviation / label for mute brightness mode button. Should be all caps. [CHAR LIMIT=6] -->
106 <string name="status_bar_settings_mute_label">MUTE</string>
107
108 <!-- Abbreviation / label for automatic brightness mode button. Should be all caps. [CHAR LIMIT=6] -->
109 <string name="status_bar_settings_auto_brightness_label">AUTO</string>
110
Joe Onoratoa8e34182010-11-26 13:19:58 -0800111 <!-- Label in system panel saying the device will show notifications [CHAR LIMIT=30] -->
Joe Onoratodff2e9a2010-11-27 16:13:36 -0800112 <string name="status_bar_settings_notifications">Notifications</string>
Joe Onoratoa8e34182010-11-26 13:19:58 -0800113
Joe Onoratofd52b182010-11-10 18:00:52 -0800114 <!-- Text to display next to the graphical battery meter. [CHAR LIMIT=3] -->
Joe Onoratodff2e9a2010-11-27 16:13:36 -0800115 <string name="status_bar_settings_battery_meter_format" translatable="false">
Joe Onoratofd52b182010-11-10 18:00:52 -0800116 <xliff:g id="number">%d</xliff:g><xliff:g id="percent">%%</xliff:g>
117 </string>
Joe Onorato013cfc12010-09-08 15:23:18 -0400118
Joe Onorato355ebc02010-12-01 17:37:00 -0800119 <!-- Separator for PLMN and SPN in network name. -->
Daniel Sandler8b96a662012-06-14 23:54:55 -0400120 <string name="status_bar_network_name_separator" translatable="false">|</string>
Joe Onorato355ebc02010-12-01 17:37:00 -0800121
Jaikumar Ganeshfde7f0e2011-01-10 10:05:58 -0800122 <!-- Network connection string for Bluetooth Reverse Tethering -->
satok82beadf2010-12-27 19:03:06 +0900123 <string name="bluetooth_tethered">Bluetooth tethered</string>
124 <!-- Title of a button to open the settings for input methods [CHAR LIMIT=30] -->
Claudia de Veauxb837c7a2011-10-17 13:36:00 -0700125 <string name="status_bar_input_method_settings_configure_input_methods">Set up input methods</string>
Jeff Brown2992ea72011-01-28 22:04:14 -0800126
127 <!-- Label of a toggle switch to disable use of the physical keyboard in favor of the IME. [CHAR LIMIT=25] -->
satok01038492012-04-09 21:08:27 +0900128 <string name="status_bar_use_physical_keyboard">Physical keyboard</string>
Mike Lockwood3a68b832011-03-08 10:08:59 -0500129
130 <!-- Prompt for the USB device permission dialog [CHAR LIMIT=80] -->
Claudia de Veauxb837c7a2011-10-17 13:36:00 -0700131 <string name="usb_device_permission_prompt">Allow the app <xliff:g id="application">%1$s</xliff:g> to access the USB device?</string>
Mike Lockwood3a68b832011-03-08 10:08:59 -0500132
133 <!-- Prompt for the USB accessory permission dialog [CHAR LIMIT=80] -->
Claudia de Veauxb837c7a2011-10-17 13:36:00 -0700134 <string name="usb_accessory_permission_prompt">Allow the app <xliff:g id="application">%1$s</xliff:g> to access the USB accessory?</string>
Mike Lockwood3a68b832011-03-08 10:08:59 -0500135
Mike Lockwoodbce6f8f2011-03-13 17:26:52 -0400136 <!-- Prompt for the USB device confirm dialog [CHAR LIMIT=80] -->
Mike Lockwood33590012011-03-15 22:24:51 -0400137 <string name="usb_device_confirm_prompt">Open <xliff:g id="activity">%1$s</xliff:g> when this USB device is connected?</string>
Mike Lockwoodbce6f8f2011-03-13 17:26:52 -0400138
139 <!-- Prompt for the USB accessory confirm dialog [CHAR LIMIT=80] -->
Mike Lockwood33590012011-03-15 22:24:51 -0400140 <string name="usb_accessory_confirm_prompt">Open <xliff:g id="activity">%1$s</xliff:g> when this USB accessory is connected?</string>
Mike Lockwoodbce6f8f2011-03-13 17:26:52 -0400141
Mike Lockwood024b4f12011-03-10 12:12:31 -0500142 <!-- Prompt for the USB accessory URI dialog [CHAR LIMIT=80] -->
Claudia de Veauxb837c7a2011-10-17 13:36:00 -0700143 <string name="usb_accessory_uri_prompt">No installed apps work with this USB accessory. Learn more about this accessory at <xliff:g id="url">%1$s</xliff:g></string>
Mike Lockwood024b4f12011-03-10 12:12:31 -0500144
145 <!-- Title for USB accessory dialog. Used when the name of the accessory cannot be determined. [CHAR LIMIT=50] -->
146 <string name="title_usb_accessory">USB accessory</string>
147
148 <!-- View button label for USB dialogs. [CHAR LIMIT=15] -->
149 <string name="label_view">View</string>
150
Mike Lockwoodad5f83e2011-03-15 16:04:12 -0400151 <!-- Checkbox label for USB device dialogs. [CHAR LIMIT=50] -->
152 <string name="always_use_device">Use by default for this USB device</string>
153
154 <!-- Checkbox label for USB accessory dialogs. [CHAR LIMIT=50] -->
155 <string name="always_use_accessory">Use by default for this USB accessory</string>
Mike Lockwood024b4f12011-03-10 12:12:31 -0500156
Benoit Goby4e68bd42012-04-25 18:06:00 -0700157 <!-- Title of confirmation dialog for USB debugging -->
Benoit Goby45f6aaa2012-08-29 12:10:18 -0700158 <string name="usb_debugging_title">Allow USB debugging?</string>
Benoit Goby4e68bd42012-04-25 18:06:00 -0700159
160 <!-- Message of confirmation dialog for USB debugging -->
Benoit Goby45f6aaa2012-08-29 12:10:18 -0700161 <string name="usb_debugging_message">The computer\'s RSA key fingerprint is:\n<xliff:g id="fingerprint">%1$s</xliff:g></string>
Benoit Goby4e68bd42012-04-25 18:06:00 -0700162
163 <!-- Option to always allow USB debugging from the attached computer -->
Benoit Goby45f6aaa2012-08-29 12:10:18 -0700164 <string name="usb_debugging_always">Always allow from this computer</string>
Benoit Goby4e68bd42012-04-25 18:06:00 -0700165
Daniel Sandler3b0543a2011-06-14 11:30:28 -0400166 <!-- Checkbox label for application compatibility mode ON (zooming app to look like it's running
167 on a phone). [CHAR LIMIT=25] -->
168 <string name="compat_mode_on">Zoom to fill screen</string>
169
170 <!-- Checkbox label for application compatibility mode OFF (normal mode on tablets).
171 [CHAR LIMIT=25] -->
172 <string name="compat_mode_off">Stretch to fill screen</string>
Winson Chungd859fa32011-07-22 12:19:52 -0700173
Daniel Sandler552b1f02011-06-15 01:03:02 -0400174 <!-- Compatibility mode help screen: header text. [CHAR LIMIT=50] -->
Claudia de Veauxb837c7a2011-10-17 13:36:00 -0700175 <string name="compat_mode_help_header">Compatibility zoom</string>
Daniel Sandler552b1f02011-06-15 01:03:02 -0400176
177 <!-- Compatibility mode help screen: body text. [CHAR LIMIT=150] -->
178 <string name="compat_mode_help_body">When an app was designed for a smaller screen, a zoom control will appear by the clock.</string>
Mike Lockwood5787a2d2011-06-17 12:21:39 -0400179
Winson Chungc57ccf02011-10-13 15:04:59 -0700180 <!-- Notification ticker displayed when a screenshot is being saved to the Gallery. [CHAR LIMIT=30] -->
Winson Chungb5968c72011-10-19 11:03:54 -0700181 <string name="screenshot_saving_ticker">Saving screenshot\u2026</string>
Winson Chungc57ccf02011-10-13 15:04:59 -0700182 <!-- Notification title displayed when a screenshot is being saved to the Gallery. [CHAR LIMIT=50] -->
Claudia de Veauxb837c7a2011-10-17 13:36:00 -0700183 <string name="screenshot_saving_title">Saving screenshot\u2026</string>
Winson Chungc57ccf02011-10-13 15:04:59 -0700184 <!-- Notification text displayed when a screenshot is being saved to the Gallery. [CHAR LIMIT=100] -->
Claudia de Veauxb837c7a2011-10-17 13:36:00 -0700185 <string name="screenshot_saving_text">Screenshot is being saved.</string>
Winson Chungc57ccf02011-10-13 15:04:59 -0700186 <!-- Notification title displayed when a screenshot is saved to the Gallery. [CHAR LIMIT=50] -->
Claudia de Veauxb837c7a2011-10-17 13:36:00 -0700187 <string name="screenshot_saved_title">Screenshot captured.</string>
Winson Chungc57ccf02011-10-13 15:04:59 -0700188 <!-- Notification text displayed when a screenshot is saved to the Gallery. [CHAR LIMIT=100] -->
Claudia de Veauxb837c7a2011-10-17 13:36:00 -0700189 <string name="screenshot_saved_text">Touch to view your screenshot.</string>
Winson Chungc57ccf02011-10-13 15:04:59 -0700190 <!-- Notification title displayed when we fail to take a screenshot. [CHAR LIMIT=50] -->
Claudia de Veauxb837c7a2011-10-17 13:36:00 -0700191 <string name="screenshot_failed_title">Couldn\'t capture screenshot.</string>
Winson Chungc57ccf02011-10-13 15:04:59 -0700192 <!-- Notification text displayed when we fail to take a screenshot. [CHAR LIMIT=100] -->
Winson Chungb5968c72011-10-19 11:03:54 -0700193 <string name="screenshot_failed_text">Couldn\'t save screenshot. Storage may be in use.</string>
Svetoslav Ganov6179ea32011-06-28 01:12:41 -0700194
195 <!-- Title for the USB function chooser in UsbPreferenceActivity. [CHAR LIMIT=30] -->
196 <string name="usb_preference_title">USB file transfer options</string>
197 <!-- Label for the MTP USB function in UsbPreferenceActivity. [CHAR LIMIT=50] -->
198 <string name="use_mtp_button_title">Mount as a media player (MTP)</string>
199 <!-- Label for the PTP USB function in UsbPreferenceActivity. [CHAR LIMIT=50] -->
200 <string name="use_ptp_button_title">Mount as a camera (PTP)</string>
201 <!-- Label for the installer CD image option in UsbPreferenceActivity. [CHAR LIMIT=50] -->
Claudia de Veauxb837c7a2011-10-17 13:36:00 -0700202 <string name="installer_cd_button_title">Install Android File Transfer app for Mac</string>
Svetoslav Ganov6179ea32011-06-28 01:12:41 -0700203
204 <!-- Content description of the back button for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
205 <string name="accessibility_back">Back</string>
206 <!-- Content description of the home button for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
207 <string name="accessibility_home">Home</string>
208 <!-- Content description of the menu button for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
209 <string name="accessibility_menu">Menu</string>
Daniel Sandler52985822011-07-29 08:42:15 -0400210 <!-- Content description of the recents button for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
Michael Jurka7daf95d2011-09-30 11:07:30 -0700211 <string name="accessibility_recent">Recent apps</string>
Svetoslav Ganov6179ea32011-06-28 01:12:41 -0700212
213 <!-- Content description of the switch input method button for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
214 <string name="accessibility_ime_switch_button">Switch input method button.</string>
215 <!-- Content description of the compatibility zoom button for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
216 <string name="accessibility_compatibility_zoom_button">Compatibility zoom button.</string>
217
218 <!-- Content description of picture of the compatibility zoom example for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
219 <string name="accessibility_compatibility_zoom_example">Zoom smaller to larger screen.</string>
220
221 <!-- Content description of the bluetooth icon when connected for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
222 <string name="accessibility_bluetooth_connected">Bluetooth connected.</string>
223 <!-- Content description of the bluetooth icon when connecting for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
224 <string name="accessibility_bluetooth_disconnected">Bluetooth disconnected.</string>
225
226 <!-- Content description of the battery when no battery for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
227 <string name="accessibility_no_battery">No battery.</string>
228 <!-- Content description of the battery when it is one bar for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
229 <string name="accessibility_battery_one_bar">Battery one bar.</string>
230 <!-- Content description of the battery when it is two bars for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
231 <string name="accessibility_battery_two_bars">Battery two bars.</string>
232 <!-- Content description of the battery when it is three bars for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
233 <string name="accessibility_battery_three_bars">Battery three bars.</string>
234 <!-- Content description of the battery when it is full for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
235 <string name="accessibility_battery_full">Battery full.</string>
236
237 <!-- Content description of the phone signal when no signal for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
238 <string name="accessibility_no_phone">No phone.</string>
239 <!-- Content description of the phone signal when it is one bar for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
240 <string name="accessibility_phone_one_bar">Phone one bar.</string>
241 <!-- Content description of the phone signal when it is two bars for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
242 <string name="accessibility_phone_two_bars">Phone two bars.</string>
243 <!-- Content description of the phone signal when it is three bars for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
244 <string name="accessibility_phone_three_bars">Phone three bars.</string>
245 <!-- Content description of the phone signal when it is full for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
246 <string name="accessibility_phone_signal_full">Phone signal full.</string>
247
248 <!-- Content description of the data signal when no signal for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
249 <string name="accessibility_no_data">No data.</string>
250 <!-- Content description of the data signal when it is one bar for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
251 <string name="accessibility_data_one_bar">Data one bar.</string>
252 <!-- Content description of the data signal when it is two bars for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
253 <string name="accessibility_data_two_bars">Data two bars.</string>
254 <!-- Content description of the data signal when it is three bars for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
255 <string name="accessibility_data_three_bars">Data three bars.</string>
256 <!-- Content description of the data signal when it is full for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
257 <string name="accessibility_data_signal_full">Data signal full.</string>
258
Casey Burkhardtbac221f2012-10-03 18:13:58 -0700259 <!-- Content description of the WIFI signal when WIFI is disabled for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
260 <string name="accessibility_wifi_off">Wifi off.</string>
Svetoslav Ganov6179ea32011-06-28 01:12:41 -0700261 <!-- Content description of the WIFI signal when no signal for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
Casey Burkhardtbac221f2012-10-03 18:13:58 -0700262 <string name="accessibility_no_wifi">Wifi disconnected.</string>
Svetoslav Ganov6179ea32011-06-28 01:12:41 -0700263 <!-- Content description of the WIFI signal when it is one bar for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
Casey Burkhardtbac221f2012-10-03 18:13:58 -0700264 <string name="accessibility_wifi_one_bar">Wifi one bar.</string>
Svetoslav Ganov6179ea32011-06-28 01:12:41 -0700265 <!-- Content description of the WIFI signal when it is two bars for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
Casey Burkhardtbac221f2012-10-03 18:13:58 -0700266 <string name="accessibility_wifi_two_bars">Wifi two bars.</string>
Svetoslav Ganov6179ea32011-06-28 01:12:41 -0700267 <!-- Content description of the WIFI signal when it is three bars for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
Casey Burkhardtbac221f2012-10-03 18:13:58 -0700268 <string name="accessibility_wifi_three_bars">Wifi three bars.</string>
Svetoslav Ganov6179ea32011-06-28 01:12:41 -0700269 <!-- Content description of the WIFI signal when it is full for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
Casey Burkhardtbac221f2012-10-03 18:13:58 -0700270 <string name="accessibility_wifi_signal_full">Wifi signal full.</string>
Daniel Sandler0fee2172011-11-10 00:15:38 -0500271
272 <!-- Content description of the WiMAX signal when no signal for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
tk.mun148c7d02011-10-13 22:51:57 +0900273 <string name="accessibility_no_wimax">No WiMAX.</string>
Daniel Sandler0fee2172011-11-10 00:15:38 -0500274 <!-- Content description of the WiMAX signal when it is one bar for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
tk.mun148c7d02011-10-13 22:51:57 +0900275 <string name="accessibility_wimax_one_bar">WiMAX one bar.</string>
Daniel Sandler0fee2172011-11-10 00:15:38 -0500276 <!-- Content description of the WiMAX signal when it is two bars for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
tk.mun148c7d02011-10-13 22:51:57 +0900277 <string name="accessibility_wimax_two_bars">WiMAX two bars.</string>
Daniel Sandler0fee2172011-11-10 00:15:38 -0500278 <!-- Content description of the WiMAX signal when it is three bars for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
tk.mun148c7d02011-10-13 22:51:57 +0900279 <string name="accessibility_wimax_three_bars">WiMAX three bars.</string>
Daniel Sandler0fee2172011-11-10 00:15:38 -0500280 <!-- Content description of the WiMAX signal when it is full for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
tk.mun148c7d02011-10-13 22:51:57 +0900281 <string name="accessibility_wimax_signal_full">WiMAX signal full.</string>
Svetoslav Ganov6179ea32011-06-28 01:12:41 -0700282
Casey Burkhardtbac221f2012-10-03 18:13:58 -0700283 <!-- Content description of an item with no signal for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
284 <string name="accessibility_no_signal">No signal.</string>
285 <!-- Content description of an item with no signal and no connection for accessibility (not shown on the screen) [CHAR LIMIT=NONE] -->
286 <string name="accessibility_not_connected">Not connected.</string>
287 <!-- Content description of an item with zero signal bars for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
288 <string name="accessibility_zero_bars">Zero bars.</string>
289 <!-- Content description of an item with one signal bar for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
290 <string name="accessibility_one_bar">One bar.</string>
291 <!-- Content description of an item with two signal bars for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
292 <string name="accessibility_two_bars">Two bars.</string>
293 <!-- Content description of an item with three signal bars for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
294 <string name="accessibility_three_bars">Three bars.</string>
295 <!-- Content description of an item with full signal for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
296 <string name="accessibility_signal_full">Signal full.</string>
297
298 <!-- Content description of an item that is turned on for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
299 <string name="accessibility_desc_on">On.</string>
300 <!-- Content description of an item that is turned off for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
301 <string name="accessibility_desc_off">Off.</string>
302 <!-- Content description of an item that is connected for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
303 <string name="accessibility_desc_connected">Connected.</string>
304
Svetoslav Ganov6179ea32011-06-28 01:12:41 -0700305 <!-- Content description of the data connection type GPRS for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
306 <string name="accessibility_data_connection_gprs">GPRS</string>
307
Casey Burkhardtbac221f2012-10-03 18:13:58 -0700308 <!-- Content description of the data connection type 1x for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
309 <string name="accessibility_data_connection_1x">1 X</string>
310
311 <!-- Content description of the data connection type HSPA and its variants for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
312 <string name="accessibility_data_connection_hspa">HSPA</string>
313
Svetoslav Ganov6179ea32011-06-28 01:12:41 -0700314 <!-- Content description of the data connection type 3G for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
315 <string name="accessibility_data_connection_3g">3G</string>
316
317 <!-- Content description of the data connection type 3.5G for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
318 <string name="accessibility_data_connection_3.5g">3.5G</string>
319
320 <!-- Content description of the data connection type 4G for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
321 <string name="accessibility_data_connection_4g">4G</string>
322
Daniel Sandler2fe71d02013-06-06 16:15:43 -0400323 <!-- Content description of the data connection type LTE for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
324 <string name="accessibility_data_connection_lte">LTE</string>
325
Svetoslav Ganov6179ea32011-06-28 01:12:41 -0700326 <!-- Content description of the data connection type CDMA for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
327 <string name="accessibility_data_connection_cdma">CDMA</string>
328
Casey Burkhardtbac221f2012-10-03 18:13:58 -0700329 <!-- Content description of the roaming data connection type for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
330 <string name="accessibility_data_connection_roaming">Roaming</string>
331
Svetoslav Ganov6179ea32011-06-28 01:12:41 -0700332 <!-- Content description of the data connection type Edge for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
333 <string name="accessibility_data_connection_edge">Edge</string>
334
335 <!-- Content description of the data connection type WiFi for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
Claudia de Veauxb837c7a2011-10-17 13:36:00 -0700336 <string name="accessibility_data_connection_wifi">Wi-Fi</string>
Svetoslav Ganov6179ea32011-06-28 01:12:41 -0700337
338 <!-- Content description of the data connection with no SIM for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
339 <string name="accessibility_no_sim">No SIM.</string>
340
341 <!-- Content description of the bluetooth tethering icon for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
342 <string name="accessibility_bluetooth_tether">Bluetooth tethering.</string>
343
344 <!-- Content description of the airplane mode icon for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
345 <string name="accessibility_airplane_mode">Airplane mode.</string>
346
347 <!-- Content description of the battery level icon for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
348 <string name="accessibility_battery_level">Battery <xliff:g id="number">%d</xliff:g> percent.</string>
349
350 <!-- Content description of the button for showing a settings panel in the notification panel for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
Daniel Sandlerbcf6ef0b2011-09-30 11:43:36 -0400351 <string name="accessibility_settings_button">System settings.</string>
Svetoslav Ganov6179ea32011-06-28 01:12:41 -0700352
353 <!-- Content description of the button for showing a notifications panel in the notification panel for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
Daniel Sandlerbcf6ef0b2011-09-30 11:43:36 -0400354 <string name="accessibility_notifications_button">Notifications.</string>
Svetoslav Ganov6179ea32011-06-28 01:12:41 -0700355
356 <!-- Content description of the button for removing a notification in the notification panel for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
Daniel Sandlerbcf6ef0b2011-09-30 11:43:36 -0400357 <string name="accessibility_remove_notification">Clear notification.</string>
Svetoslav Ganov6179ea32011-06-28 01:12:41 -0700358
359 <!-- Content description of the enabled GPS icon in the notification panel for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
360 <string name="accessibility_gps_enabled">GPS enabled.</string>
361
362 <!-- Content description of the acquiring GPS icon in the notification panel for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
363 <string name="accessibility_gps_acquiring">GPS acquiring.</string>
364
365 <!-- Content description of the TeleTypewriter(TTY) enabled icon in the notification panel for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
366 <string name="accessibility_tty_enabled">TeleTypewriter enabled.</string>
367
368 <!-- Content description of the ringer vibrate icon in the notification panel for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
369 <string name="accessibility_ringer_vibrate">Ringer vibrate.</string>
370
371 <!-- Content description of the ringer silent icon in the notification panel for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
372 <string name="accessibility_ringer_silent">Ringer silent.</string>
Daniel Sandler2b697352011-07-22 16:23:09 -0400373
Jim Miller17377762011-10-11 15:33:34 -0700374 <!-- Content description to tell the user an application has been removed from recents -->
375 <string name="accessibility_recents_item_dismissed"><xliff:g id="app" example="Calendar">%s</xliff:g> dismissed.</string>
Casey Burkhardtbac221f2012-10-03 18:13:58 -0700376 <!-- Content description to tell the user a notification has been removed from the notification shade -->
377 <string name="accessibility_notification_dismissed">Notification dismissed.</string>
378
379 <!-- Content description for the notification shade panel (not shown on the screen). [CHAR LIMIT=NONE] -->
380 <string name="accessibility_desc_notification_shade">Notification shade.</string>
381 <!-- Content description for the quick settings panel (not shown on the screen). [CHAR LIMIT=NONE] -->
382 <string name="accessibility_desc_quick_settings">Quick settings.</string>
Casey Burkhardtd7059df2012-10-09 17:40:52 -0700383 <!-- Content description for the recent apps panel (not shown on the screen). [CHAR LIMIT=NONE] -->
384 <string name="accessibility_desc_recent_apps">Recent apps.</string>
Casey Burkhardtbac221f2012-10-03 18:13:58 -0700385
386 <!-- Content description of the user tile in quick settings (not shown on the screen). [CHAR LIMIT=NONE] -->
387 <string name="accessibility_quick_settings_user">User <xliff:g id="user" example="John Doe">%s</xliff:g>.</string>
388 <!-- Content description of the wifi tile in quick settings (not shown on the screen). [CHAR LIMIT=NONE] -->
389 <string name="accessibility_quick_settings_wifi"><xliff:g id="signal" example="Three bars">%1$s</xliff:g>. <xliff:g id="network" example="MyWifiNetwork">%2$s</xliff:g></string>
390 <!-- Content description of the mobile data tile in quick settings (not shown on the screen). [CHAR LIMIT=NONE] -->
391 <string name="accessibility_quick_settings_mobile">Mobile <xliff:g id="signal" example="Three bars">%1$s</xliff:g>. <xliff:g id="type" example="4G">%2$s</xliff:g>. <xliff:g id="network" example="T-Mobile">%3$s</xliff:g>.</string>
392 <!-- Content description of the battery tile in quick settings (not shown on the screen). [CHAR LIMIT=NONE] -->
393 <string name="accessibility_quick_settings_battery">Battery <xliff:g id="state" example="50% charging">%s</xliff:g>.</string>
394 <!-- Content description of the airplane mode tile in quick settings (not shown on the screen). [CHAR LIMIT=NONE] -->
395 <string name="accessibility_quick_settings_airplane">Airplane Mode <xliff:g id="state" example="Off">%s</xliff:g>.</string>
396 <!-- Content description of the bluetooth tile in quick settings (not shown on the screen). [CHAR LIMIT=NONE] -->
397 <string name="accessibility_quick_settings_bluetooth">Bluetooth <xliff:g id="state" example="Off">%s</xliff:g>.</string>
398 <!-- Content description of the alarm tile in quick settings (not shown on the screen). [CHAR LIMIT=NONE] -->
399 <string name="accessibility_quick_settings_alarm">Alarm set for <xliff:g id="time" example="Wed 3:30 PM">%s</xliff:g>.</string>
Jim Miller17377762011-10-11 15:33:34 -0700400
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700401 <!-- Title of dialog shown when 2G-3G data usage has exceeded limit and has been disabled. [CHAR LIMIT=48] -->
402 <string name="data_usage_disabled_dialog_3g_title">2G-3G data disabled</string>
403 <!-- Title of dialog shown when 4G data usage has exceeded limit and has been disabled. [CHAR LIMIT=48] -->
404 <string name="data_usage_disabled_dialog_4g_title">4G data disabled</string>
405 <!-- Title of dialog shown when mobile data usage has exceeded limit and has been disabled. [CHAR LIMIT=48] -->
406 <string name="data_usage_disabled_dialog_mobile_title">Mobile data disabled</string>
407 <!-- Title of dialog shown when data usage has exceeded limit and has been disabled. [CHAR LIMIT=48] -->
408 <string name="data_usage_disabled_dialog_title">Data disabled</string>
409 <!-- Body of dialog shown when data usage has exceeded limit and has been disabled. [CHAR LIMIT=NONE] -->
Claudia de Veauxb837c7a2011-10-17 13:36:00 -0700410 <string name="data_usage_disabled_dialog">You\'ve reached the specified data usage limit.\n\nIf you re-enable data, you may be charged by the operator.</string>
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700411 <!-- Dialog button indicating that data connection should be re-enabled. [CHAR LIMIT=28] -->
412 <string name="data_usage_disabled_dialog_enable">Re-enable data</string>
413
Daniel Sandler2b697352011-07-22 16:23:09 -0400414 <!-- Text to display underneath the graphical signal strength meter when
415 no connection is available. [CHAR LIMIT=20] -->
416 <string name="status_bar_settings_signal_meter_disconnected">
417 No Internet connection
418 </string>
419
420 <!-- Text to display underneath the graphical signal strength meter when
421 it is displaying Wi-Fi status and Wi-Fi is connected to a network
422 whose SSID is not available.
423 [CHAR LIMIT=20] -->
424 <string name="status_bar_settings_signal_meter_wifi_nossid">Wi-Fi connected</string>
425
426 <!-- Notification text: when GPS is getting a fix [CHAR LIMIT=50] -->
427 <string name="gps_notification_searching_text">Searching for GPS</string>
428
429 <!-- Notification text: when GPS has found a fix [CHAR LIMIT=50] -->
430 <string name="gps_notification_found_text">Location set by GPS</string>
431
Daniel Sandlerbcf6ef0b2011-09-30 11:43:36 -0400432 <!-- Content description of the clear button in the notification panel for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
433 <string name="accessibility_clear_all">Clear all notifications.</string>
Daniel Sandler221733a2011-11-03 15:21:33 -0400434
Daniel Sandlerf7a19562012-04-04 14:04:21 -0400435 <!-- Title shown in notification popup for inspecting the responsible
436 application -->
437 <string name="status_bar_notification_inspect_item_title">App info</string>
Daniel Sandlerd2217f02012-05-04 16:40:13 -0400438
Dianne Hackborna4b7f2f2012-05-21 11:28:41 -0700439 <!-- [CHAR LIMIT=NONE] -->
440 <string name="close_universe">Close</string>
441
Daniel Sandlerd2217f02012-05-04 16:40:13 -0400442 <!-- Title for the pseudo-notification shown when notifications are disabled (do-not-disturb
443 mode) -->
444 <string name="notifications_off_title">Notifications off</string>
445
446 <!-- Content text for do-not-disturb mode notification -->
447 <string name="notifications_off_text">Tap here to turn notifications back on.</string>
448
Daniel Sandler9ff63782012-05-03 23:16:42 -0400449 <!-- Description of the button in the phone-style notification panel that controls auto-rotation, when auto-rotation is on. [CHAR LIMIT=NONE] -->
450 <string name="accessibility_rotation_lock_off">Screen will rotate automatically.</string>
451
452 <!-- Description of the button in the phone-style notification panel that controls auto-rotation, when auto-rotation is off. [CHAR LIMIT=NONE] -->
453 <string name="accessibility_rotation_lock_on_landscape">Screen is locked in landscape orientation.</string>
454
455 <!-- Description of the button in the phone-style notification panel that controls auto-rotation, when auto-rotation is off. [CHAR LIMIT=NONE] -->
456 <string name="accessibility_rotation_lock_on_portrait">Screen is locked in portrait orientation.</string>
Daniel Sandler0bcf4ad2012-08-31 16:18:31 -0400457
458 <!-- Name of the Jelly Bean platlogo screensaver -->
459 <string name="jelly_bean_dream_name">BeanFlinger</string>
Daniel Sandler32f6fd52012-09-06 01:22:59 -0400460
461 <!-- Name of the launcher shortcut icon that allows dreams to be started immediately [CHAR LIMIT=20] -->
Daniel Sandlerbd9cafa2012-10-23 01:21:33 -0400462 <string name="start_dreams">Daydream</string>
Daniel Sandler32f6fd52012-09-06 01:22:59 -0400463
Daniel Sandlerced8d212012-09-12 17:33:27 -0700464 <!-- Textual description of Ethernet connections -->
465 <string name="ethernet_label">Ethernet</string>
466
Winson Chungd63c59782012-09-05 17:34:41 -0700467 <!-- QuickSettings: Airplane mode [CHAR LIMIT=NONE] -->
468 <string name="quick_settings_airplane_mode_label">Airplane mode</string>
Winson Chungeaa5ab02012-09-13 16:36:41 -0700469 <!-- QuickSettings: Battery Charging [CHAR LIMIT=NONE] -->
470 <string name="quick_settings_battery_charging_label">Charging, <xliff:g id="number">%d</xliff:g><xliff:g id="percent">%%</xliff:g></string>
471 <!-- QuickSettings: Battery Charged [CHAR LIMIT=NONE] -->
472 <string name="quick_settings_battery_charged_label">Charged</string>
Winson Chungd63c59782012-09-05 17:34:41 -0700473 <!-- QuickSettings: Bluetooth [CHAR LIMIT=NONE] -->
474 <string name="quick_settings_bluetooth_label">Bluetooth</string>
Winson Chung5f623012012-09-14 14:58:43 -0700475 <!-- QuickSettings: Bluetooth (Multiple) [CHAR LIMIT=NONE] -->
476 <string name="quick_settings_bluetooth_multiple_devices_label">Bluetooth (<xliff:g id="number">%d</xliff:g> Devices)</string>
Winson Chung34563e22012-09-21 17:19:49 -0700477 <!-- QuickSettings: Bluetooth (Off) [CHAR LIMIT=NONE] -->
478 <string name="quick_settings_bluetooth_off_label">Bluetooth Off</string>
Winson Chungd63c59782012-09-05 17:34:41 -0700479 <!-- QuickSettings: Brightness [CHAR LIMIT=NONE] -->
480 <string name="quick_settings_brightness_label">Brightness</string>
Winson Chungd4726d02012-09-14 12:27:29 -0700481 <!-- QuickSettings: Rotation Unlocked [CHAR LIMIT=NONE] -->
482 <string name="quick_settings_rotation_unlocked_label">Auto Rotate</string>
483 <!-- QuickSettings: Rotation Locked [CHAR LIMIT=NONE] -->
484 <string name="quick_settings_rotation_locked_label">Rotation Locked</string>
Winson Chungd63c59782012-09-05 17:34:41 -0700485 <!-- QuickSettings: IME [CHAR LIMIT=NONE] -->
Winson Chung2a4057d2012-09-12 18:30:06 -0700486 <string name="quick_settings_ime_label">Input Method</string>
Winson Chungd63c59782012-09-05 17:34:41 -0700487 <!-- QuickSettings: Location [CHAR LIMIT=NONE] -->
488 <string name="quick_settings_location_label">Location in use</string>
489 <!-- QuickSettings: Media device [CHAR LIMIT=NONE] -->
490 <string name="quick_settings_media_device_label">Media device</string>
491 <!-- QuickSettings: RSSI [CHAR LIMIT=NONE] -->
492 <string name="quick_settings_rssi_label">RSSI</string>
493 <!-- QuickSettings: RSSI (No network) [CHAR LIMIT=NONE] -->
494 <string name="quick_settings_rssi_emergency_only">Emergency Calls Only</string>
495 <!-- QuickSettings: Settings [CHAR LIMIT=NONE] -->
496 <string name="quick_settings_settings_label">Settings</string>
497 <!-- QuickSettings: Time [CHAR LIMIT=NONE] -->
498 <string name="quick_settings_time_label">Time</string>
499 <!-- QuickSettings: User [CHAR LIMIT=NONE] -->
500 <string name="quick_settings_user_label">Me</string>
501 <!-- QuickSettings: Wifi [CHAR LIMIT=NONE] -->
Winson Chungf4b5ab12012-09-24 16:47:46 -0700502 <string name="quick_settings_wifi_label">Wi-Fi</string>
503 <!-- QuickSettings: Wifi (Not connected) [CHAR LIMIT=NONE] -->
504 <string name="quick_settings_wifi_not_connected">Not Connected</string>
Winson Chungd63c59782012-09-05 17:34:41 -0700505 <!-- QuickSettings: Wifi (No network) [CHAR LIMIT=NONE] -->
506 <string name="quick_settings_wifi_no_network">No Network</string>
Winson Chung34563e22012-09-21 17:19:49 -0700507 <!-- QuickSettings: Wifi (Off) [CHAR LIMIT=NONE] -->
Winson Chungf4b5ab12012-09-24 16:47:46 -0700508 <string name="quick_settings_wifi_off_label">Wi-Fi Off</string>
Winson Chungd63c59782012-09-05 17:34:41 -0700509 <!-- QuickSettings: Wifi display [CHAR LIMIT=NONE] -->
Winson Chungf4b5ab12012-09-24 16:47:46 -0700510 <string name="quick_settings_wifi_display_label">Wi-Fi Display</string>
Jeff Brown508257b2012-09-08 23:15:12 -0700511 <!-- QuickSettings: Wifi display [CHAR LIMIT=NONE] -->
John Spurlock01e2f4f2012-10-05 17:33:31 -0400512 <string name="quick_settings_wifi_display_no_connection_label">Wireless Display</string>
Winson Chung1679b362012-09-10 20:08:01 -0700513 <!-- QuickSettings: Brightness dialog title [CHAR LIMIT=NONE] -->
514 <string name="quick_settings_brightness_dialog_title">Brightness</string>
515 <!-- QuickSettings: Brightness dialog auto brightness button [CHAR LIMIT=NONE] -->
516 <string name="quick_settings_brightness_dialog_auto_brightness_label">AUTO</string>
Daniel Sandlerb17a7262012-10-05 14:32:50 -0400517
518 <!-- Title of help text shown when the notification panel is pulled down for the very first time. [CHAR LIMIT=NONE] -->
519 <string name="status_bar_help_title">Notifications appear here</string>
520 <!-- Body of help text shown when the notification panel is pulled down for the very first time. [CHAR LIMIT=NONE] -->
521 <string name="status_bar_help_text">Access them anytime by swiping down.\nSwipe down again for system controls.</string>
Joe Onorato2314aab2010-04-08 16:41:23 -0500522</resources>