1<?xml version="1.0" encoding="utf-8"?> 2<!-- Copyright (C) 2007 The Android Open Source Project 3 4 Licensed under the Apache License, Version 2.0 (the "License"); 5 you may not use this file except in compliance with the License. 6 You may obtain a copy of the License at 7 8 http://www.apache.org/licenses/LICENSE-2.0 9 10 Unless required by applicable law or agreed to in writing, software 11 distributed under the License is distributed on an "AS IS" BASIS, 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 See the License for the specific language governing permissions and 14 limitations under the License. 15--> 16 17<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> 18 <string name="activity_sample_code">API Demos</string> 19 20 <!-- =============================== --> 21 <!-- app/activity examples strings --> 22 <!-- =============================== --> 23 24 <string name="tabs_1_tab_1">tab1</string> 25 <string name="tabs_1_tab_2">tab2</string> 26 <string name="tabs_1_tab_3">tab3</string> 27 28 <string name="activity_hello_world">App/Activity/<b>Hello <i>World</i></b></string> 29 <string name="hello_world"><b>Hello, <i>World!</i></b></string> 30 31 <string name="activity_dialog">App/Activity/Dialog</string> 32 <string name="dialog_activity_text">Example of how you can use the 33 Theme.Dialog theme to make an activity that looks like a 34 dialog.</string> 35 36 <string name="activity_custom_dialog">App/Activity/Custom Dialog</string> 37 <string name="custom_dialog_activity_text">Example of how you can use a 38 custom Theme.Dialog theme to make an activity that looks like a 39 customized dialog, here with an ugly frame.</string> 40 41 <string name="activity_wallpaper">App/Activity/Wallpaper</string> 42 43 <string name="activity_translucent">App/Activity/Translucent</string> 44 <string name="translucent_background">Example of how you can make an 45 activity have a translucent background, compositing over 46 whatever is behind it.</string> 47 48 <string name="activity_translucent_blur">App/Activity/Translucent Blur</string> 49 50 <string name="activity_animation">App/Activity/Animation</string> 51 <string name="activity_animation_msg">Press a button to launch an activity with a custom animation.</string> 52 <string name="activity_animation_fade">Fade in</string> 53 <string name="activity_animation_zoom">Zoom in</string> 54 55 <string name="activity_save_restore">App/Activity/Save & Restore State</string> 56 <string name="save_restore_msg">Demonstration of saving and restoring activity state in onSaveInstanceState() and onCreate().</string> 57 <string name="saves_state">This text field saves its state:</string> 58 <string name="no_saves_state">This text field does not save its state:</string> 59 <string name="initial_text">Initial text.</string> 60 61 <string name="activity_persistent">App/Activity/Persistent State</string> 62 <string name="persistent_msg">Demonstration of persistent activity state with getPreferences(0).edit() and getPreferences(0).</string> 63 64 <string name="activity_receive_result">App/Activity/Receive Result</string> 65 <string name="pick_result">Pick a result to send, or BACK to cancel.</string> 66 <string name="corky">Corky</string> 67 <string name="violet">Violet</string> 68 69 <string name="activity_forwarding">App/Activity/Forwarding</string> 70 <string name="forwarding">Press the button to go forward to the next activity. This activity will stop, so you will no longer see it when going back.</string> 71 <string name="go">Go</string> 72 <string name="forward_target">Press back button and notice we don\'t see the previous activity.</string> 73 74 <string name="activity_redirect">App/Activity/Redirection</string> 75 <string name="redirect_enter">Press the button to start the example. The next activity will conditionally redirect to another activity to collect data from the user.</string> 76 <string name="redirect_main">You now see the main activity running normally because the user text has been set to:</string> 77 <string name="clear_text">Clear and Exit</string> 78 <string name="new_text">New Text</string> 79 <string name="redirect_getter">Enter the text that will be used by the main activity. Press back to cancel.</string> 80 <string name="apply">Apply</string> 81 82 <string name="activity_menu">App/Activity/Menu</string> 83 <string name="open_menu">Open menu</string> 84 <string name="close_menu">Close menu</string> 85 <string name="toggle_scenery">Toggle scenery</string> 86 <string name="toggle_dogs">Toggle dogs</string> 87 <string name="long_click_for_context_menu">Long click for context menu</string> 88 89 <string name="local_service_started">Local service has started</string> 90 <string name="local_service_stopped">Local service has stopped</string> 91 <string name="local_service_label">Sample Local Service</string> 92 93 <string name="activity_local_service_controller">App/Service/Local Service Controller</string> 94 <string name="local_service_controller">This demonstrates how you can implement persistent services that 95 may be started and stopped as desired.</string> 96 <string name="start_service">Start Service</string> 97 <string name="stop_service">Stop Service</string> 98 99 <string name="activity_local_service_binding">App/Service/Local Service Binding</string> 100 <string name="local_service_binding">This demonstrates how you can connect with a persistent 101 service. Notice how it automatically starts for you, and play around with the 102 interaction between this and Local Service Controller.</string> 103 <string name="bind_service">Bind Service</string> 104 <string name="unbind_service">Unbind Service</string> 105 <string name="local_service_connected">Connected to local service</string> 106 <string name="local_service_disconnected">Disconnected from local service</string> 107 108 <string name="remote_service_started">Remote service has started</string> 109 <string name="remote_service_stopped">Remote service has stopped</string> 110 <string name="remote_service_label">Sample Remote Service</string> 111 112 <string name="activity_remote_service_controller">App/Service/Remote Service Controller</string> 113 <string name="remote_service_controller">This demonstrates how you can implement persistent services 114 running in a separate process that may be started and stopped as desired.</string> 115 116 <string name="activity_remote_service_binding">App/Service/Remote Service Binding</string> 117 <string name="remote_service_binding">This demonstrates how you can connect with a persistent 118 service running in another process. Use the kill button to see what happens when 119 the process crashes.</string> 120 <string name="kill_process">Kill Process</string> 121 <string name="remote_service_connected">Connected to remote service</string> 122 <string name="remote_service_disconnected">Disconnected from remote service</string> 123 <string name="remote_call_failed">Failure calling remote service</string> 124 125 <string name="service_start_arguments_label">Sample Service Start Arguments 126 </string> 127 128 <string name="activity_service_start_arguments_controller">App/Service/Service 129 Start Arguments Controller 130 </string> 131 <string name="service_start_arguments_controller">This demonstrates how 132 service can be started with arguments, and run until all arguments are 133 processed. 134 </string> 135 <string name="start1_service">Start \"One\" no redeliver</string> 136 <string name="start2_service">Start \"Two\" no redeliver</string> 137 <string name="start3_service">Start \"Three\" w/redeliver</string> 138 <string name="startfail_service">Start failed delivery</string> 139 <string name="service_created">Service created.</string> 140 <string name="service_destroyed">Service destroyed.</string> 141 142 <string name="one_shot_received">The one-shot alarm has gone off</string> 143 <string name="repeating_received">The repeating alarm has gone off</string> 144 145 <string name="activity_alarm_controller">App/Alarm/Alarm Controller</string> 146 <string name="alarm_controller">This demonstrates how to schedule and handle 147 one-shot and repeating alarms.</string> 148 <string name="one_shot_alarm">One Shot Alarm</string> 149 <string name="start_repeating_alarm">Start Repeating Alarm</string> 150 <string name="stop_repeating_alarm">Stop Repeating Alarm</string> 151 <string name="one_shot_scheduled">One-shot alarm will go off in 30 seconds based on 152 the real time clock. Try changing the current time before then!</string> 153 <string name="repeating_scheduled">Repeating alarm will go off in 15 seconds and 154 every 15 seconds after based on the elapsed realtime clock</string> 155 <string name="repeating_unscheduled">Repeating alarm has been unscheduled</string> 156 157 <string name="alarm_service_started">The alarm service has started running</string> 158 <string name="alarm_service_finished">The alarm service has finished running</string> 159 <string name="alarm_service_label">Sample Alarm Service</string> 160 161 <string name="activity_alarm_service">App/Alarm/Alarm Service</string> 162 <string name="alarm_service">This demonstrates how to schedule a repeating 163 alarm that will initiate a long-lived operation through a service.</string> 164 <string name="start_alarm_service">Start Alarm Service</string> 165 <string name="stop_alarm_service">Stop Alarm Service</string> 166 <string name="alarm_service_scheduled">Alarm service will run now, and then every 167 30 seconds for 15 seconds</string> 168 <string name="alarm_service_unscheduled">Alarm service has been unscheduled</string> 169 170 <string name="activity_local_sample">App/Instrumentation/Local Sample</string> 171 <string name="local_sample">This demonstrates an Instrumentation that runs against 172 one of our own classes. Note that this activity will be killed as 173 a side-effect of starting instrumentation on its own application.</string> 174 175 <string name="activity_contacts_filter">App/Instrumentation/Contacts Filter</string> 176 <string name="contacts_filter">This demonstrates an Instrumentation package that 177 launches the contacts list and simulates user events to filter it.</string> 178 179 <string name="pick_image_label">App/Activity/PickImage</string> 180 <string name="pick_image">Pick Image</string> 181 182 <string name="short_notification_text">Short notification</string> 183 <string name="long_notification_text">This is a long notification. See, you might need a second more to read it.</string> 184 <string name="status_bar_notification_title">Sample Notification</string> 185 186 <string name="notifying_service_controller">This service will update a status bar notification 187 every 5 seconds for a minute</string> 188 189 <string name="activity_custom_title">App/Activity/Custom Title</string> 190 <string name="custom_title_left">Left is best</string> 191 <string name="custom_title_right">Right is always right</string> 192 <string name="custom_title_left_button">Change Left</string> 193 <string name="custom_title_right_button">Change Right</string> 194 195 <string name="activity_reorder">App/Activity/Reorder Activities</string> 196 <string name="reorder_on_launch">This is the first of a sequence of four Activities. A button on the fourth will use the Intent.FLAG_ACTIVITY_REORDER_TO_FRONT flag to bring the second of the activities to the front of the history stack. After that, proceeding back through the history should begin with the newly-frontmost second reorder activity, then the fourth, the third, and finally the first.</string> 197 <string name="reorder_launch_two">Go to the second</string> 198 <string name="reorder_two_text">This is the second in a sequence of four Activities.</string> 199 <string name="reorder_launch_three">Go to the third</string> 200 <string name="reorder_three_text">This is the third of a sequence of four Activities.</string> 201 <string name="reorder_launch_four">Go to the fourth</string> 202 <string name="reorder_four_text">This is the last in a sequence of four Activities.</string> 203 <string name="reorder_second_to_front">Bring the second in front</string> 204 205 <string name="menu_from_xml_title">App/Menu/Inflate from XML</string> 206 <string name="menu_from_xml_instructions_press_menu">Select a menu resource and press the menu key.</string> 207 <string name="menu_from_xml_instructions_go_back">If you want to choose another menu resource, go back and re-run this activity.</string> 208 209 <string name="voice_recognition">App/Voice Recognition</string> 210 211 <!-- ============================== --> 212 <!-- app/content examples strings --> 213 <!-- ============================== --> 214 215 <string name="activity_styled_text">Content/Resources/<i>Styled</i> <b>Text</b></string> 216 <string name="styled_text_rsrc">Initialized from a resource:</string> 217 <string name="styled_text">Plain, <b>bold</b>, <i>italic</i>, <b><i>bold-italic</i></b></string> 218 <string name="styled_text_prog">Assigned programmatically:</string> 219 220 <string name="activity_read_asset">Content/Assets/Read Asset</string> 221 222 <string name="activity_themes">Content/Resources/Themes</string> 223 <string name="activity_resources">Content/Resources/Resources</string> 224 225 <!-- ============================== --> 226 <!-- app/intents examples strings --> 227 <!-- ============================== --> 228 229 <string name="activity_intents">App/Intents</string> 230 <string name="intents">Example of launching various Intents.</string> 231 <string name="get_music">Get Music</string> 232 233 <!-- =================================== --> 234 <!-- app/notification examples strings --> 235 <!-- =================================== --> 236 237 <string name="short_notification">Short notification.</string> 238 <string name="long_notification">Long notification.</string> 239 <string name="short_top_notification">Short top.</string> 240 <string name="short_bottom_notification">Short bottom.</string> 241 <string name="short_center_notification">Short center.</string> 242 <string name="short_left_notification">Short left.</string> 243 <string name="short_right_notification">Short right.</string> 244 <string name="custom_notification">Custom Notification:</string> 245 <string name="custom_notification_button">With a Button</string> 246 247 <string name="status_bar_notifications_icons_only">Icons only</string> 248 <string name="status_bar_notifications_icons_and_marquee">Icons and marquee</string> 249 <string name="status_bar_notifications_remote_views">Use remote views in balloon</string> 250 <string name="status_bar_notifications_defaults">Use default values where applicable</string> 251 <string name="status_bar_notifications_happy">:-)</string> 252 <string name="status_bar_notifications_ok">:-|</string> 253 <string name="status_bar_notifications_sad">:-(</string> 254 <string name="status_bar_notifications_happy_message">I am happy</string> 255 <string name="status_bar_notifications_ok_message">I am ok</string> 256 <string name="status_bar_notifications_sad_message">I am sad</string> 257 <string name="status_bar_notifications_clear">Clear notification</string> 258 <string name="status_bar_notifications_mood_title">Mood ring</string> 259 <string name="status_bar_notifications_default_sound">Sound</string> 260 <string name="status_bar_notifications_default_vibrate">Vibrate</string> 261 <string name="status_bar_notifications_default_all">All</string> 262 263 <!-- ============================== --> 264 <!-- app/dialog examples strings --> 265 <!-- ============================== --> 266 267 <string name="activity_alert_dialog">App/Dialog</string> 268 <string name="alert_dialog_two_buttons">OK Cancel dialog with a message</string> 269 <string name="alert_dialog_two_buttons2">OK Cancel dialog with a long message</string> 270 <string name="alert_dialog_select_button">List dialog</string> 271 <string name="alert_dialog_single_choice">Single choice list</string> 272 <string name="alert_dialog_multi_choice">Repeat alarm</string> 273 <string name="alert_dialog_progress_button">Progress dialog</string> 274 <string name="alert_dialog_text_entry">Text Entry dialog</string> 275 <string name="alert_dialog_username">Name:</string> 276 <string name="alert_dialog_password">Password:</string> 277 <string name="alert_dialog_two_buttons_title"> 278 Lorem ipsum dolor sit aie consectetur adipiscing\nPlloaso mako nuto 279 siwuf cakso dodtos anr koop. 280 </string> 281 <string name="alert_dialog_two_buttons_msg">Header title</string> 282 <string name="alert_dialog_two_buttons2_msg"> 283 Plloaso mako nuto siwuf cakso dodtos anr koop a 284 cupy uf cak vux noaw yerw phuno. Whag schengos, uf efed, quiel 285 ba mada su otrenzr.\n\nSwipontgwook proudgs hus yag su ba dagarmidad. 286 Plasa maku noga wipont trenzsa schengos ent kaap zux comy.\n\nWipont trenz 287 kipg naar mixent phona. Cak pwico siructiun 288 ruous nust apoply tyu cak Uhex sisulutiun munityuw uw dseg 289 </string> 290 <string name="alert_dialog_ok">OK</string> 291 <string name="alert_dialog_hide">Hide</string> 292 <string name="alert_dialog_something">Something</string> 293 <string name="alert_dialog_cancel">Cancel</string> 294 <string name="alert_dialog_progress_text1">34<xliff:g id="percent">%</xliff:g></string> 295 <string name="alert_dialog_progress_text2">145/305 KB</string> 296 297 <string name="select_dialog">Header title</string> 298 <string name="select_dialog_show">List dialog</string> 299 300 <!-- ============================== --> 301 <!-- app/menu examples strings --> 302 <!-- ============================== --> 303 304 <string name="last_most_often">Last most often</string> 305 <string name="middle_most_often">Middle most often</string> 306 <string name="first_most_often">First most often</string> 307 <string name="last_least_often">Last least often</string> 308 <string name="middle_least_often">Middle least often</string> 309 <string name="first_least_often">First least often</string> 310 <string name="item_1">Item 1</string> 311 <string name="item_2">Item 2</string> 312 <string name="item_3">Item 3</string> 313 <string name="browser_visibility">Browser visibility</string> 314 <string name="browser_refresh">Refresh</string> 315 <string name="browser_bookmark">Bookmark</string> 316 <string name="email_visibility">Email visibility</string> 317 <string name="email_reply">Reply</string> 318 <string name="email_forward">Forward</string> 319 <string name="jump">Jump</string> 320 <string name="dive">Dive</string> 321 322 <!-- ============================== --> 323 <!-- app/menu examples strings --> 324 <!-- ============================== --> 325 326 <string name="preferences_from_xml">App/Preferences/1. Preferences from XML</string> 327 <string name="launching_preferences">App/Preferences/2. Launching preferences</string> 328 <string name="preference_dependencies">App/Preferences/3. Preference dependencies</string> 329 <string name="default_values">App/Preferences/4. Default values</string> 330 <string name="preferences_from_code">App/Preferences/5. Preferences from code</string> 331 <string name="advanced_preferences">App/Preferences/6. Advanced preferences</string> 332 333 <string name="launch_preference_activity">Launch PreferenceActivity</string> 334 <string name="counter_value_is">The counter value is</string> 335 336 <string name="inline_preferences">In-line preferences</string> 337 <string name="dialog_based_preferences">Dialog-based preferences</string> 338 <string name="launch_preferences">Launch preferences</string> 339 <string name="preference_attributes">Preference attributes</string> 340 341 <string name="title_toggle_preference">Toggle preference</string> 342 <string name="summary_toggle_preference">This is a toggle button</string> 343 344 <string name="title_checkbox_preference">Checkbox preference</string> 345 <string name="summary_checkbox_preference">This is a checkbox</string> 346 347 <string name="title_yesno_preference">Yes or no preference</string> 348 <string name="summary_yesno_preference">An example that uses a yes/no dialog</string> 349 <string name="dialog_title_yesno_preference">Do you like bananas?</string> 350 351 <string name="title_edittext_preference">Edit text preference</string> 352 <string name="summary_edittext_preference">An example that uses an edit text dialog</string> 353 <string name="dialog_title_edittext_preference">Enter your favorite animal</string> 354 355 <string name="title_list_preference">List preference</string> 356 <string name="summary_list_preference">An example that uses a list dialog</string> 357 <string name="dialog_title_list_preference">Choose one</string> 358 359 <string name="title_screen_preference">Screen preference</string> 360 <string name="summary_screen_preference">Shows another screen of preferences</string> 361 362 <string name="title_next_screen_toggle_preference">Toggle preference</string> 363 <string name="summary_next_screen_toggle_preference">Preference that is on the next screen but same hierarchy</string> 364 365 <string name="title_intent_preference">Intent preference</string> 366 <string name="summary_intent_preference">Launches an Activity from an Intent</string> 367 368 <string name="title_my_preference">My preference</string> 369 <string name="summary_my_preference">This is a custom counter preference</string> 370 371 <string name="title_advanced_toggle_preference">Haunted preference</string> 372 <string name="summary_on_advanced_toggle_preference">I\'m on! :)</string> 373 <string name="summary_off_advanced_toggle_preference">I\'m off! :(</string> 374 375 <string name="title_parent_preference">Parent toggle</string> 376 <string name="summary_parent_preference">This is visually a parent</string> 377 <string name="title_child_preference">Child toggle</string> 378 <string name="summary_child_preference">This is visually a child</string> 379 380 <string name="example_preference_dependency">Example preference dependency</string> 381 <string name="title_wifi">WiFi</string> 382 <string name="title_wifi_settings">WiFi settings</string> 383 384 <string name="default_value_list_preference">beta</string> 385 <string name="default_value_edittext_preference">Default value</string> 386 387 <!-- ============================== --> 388 <!-- app/search examples strings --> 389 <!-- ============================== --> 390 391 <string name="search_invoke">App/Search/Invoke Search</string> 392 <string name="msg_search">This activity shows a few different ways to invoke search, and inserts context-specific data for use by the search activity.</string> 393 <string name="search_sect_invocation">Ways to invoke search</string> 394 <string name="label_onsearchrequested">onSearchRequested()</string> 395 <string name="search_sect_options">Optional search parameters</string> 396 <string name="label_search_query_prefill">"Prefill query: "</string> 397 <string name="label_search_query_appdata">"App Data: "</string> 398 399 <string name="search_query_results">App/Search/Query Search Results</string> 400 <string name="msg_search_results">This activity accepts query strings via the ACTION_SEARCH intent. In a full implementation, you would use the query string to select results from your data source, and present a list of those results to the user.</string> 401 <string name="label_search_query">"Query String: "</string> 402 <string name="label_search_appdata">"Query App Data: "</string> 403 <string name="label_search_deliveredby">"Activity Method: "</string> 404 405 <string name="search_label">Search Demo</string> 406 <string name="search_hint">Search Demo Hint</string> 407 408 <!-- ================================ --> 409 <!-- app/shortcuts examples strings --> 410 <!-- ================================ --> 411 412 <string name="shortcuts">App/Launcher Shortcuts</string> 413 <string name="sample_shortcuts">ApiDemos</string> 414 <string name="shortcut_name">Sample</string> 415 416 <string name="msg_launcher_shortcuts">This activity creates shortcuts for the launcher (home screen), and receives intents from those shortcuts. To try it, return to the launcher and long-press to create a shortcut.</string> 417 <string name="label_intent">Intent:</string> 418 419 <!-- ============================== --> 420 <!-- app/voice recognition examples strings --> 421 <!-- ============================== --> 422 423 <string name="voice_recognition_prompt">This activity demonstrates the voice recognition APIs.</string> 424 <string name="speak_button">Speak!</string> 425 <string name="voice_recognition_results">Results:</string> 426 427 <!-- ============================ --> 428 <!-- graphics examples strings --> 429 <!-- ============================ --> 430 431 <string name="hide_me">Hide Me!</string> 432 433 <string name="density_title">Density: Unknown Screen</string> 434 435 <!-- ============================ --> 436 <!-- media examples strings --> 437 <!-- ============================ --> 438 439 <string name="local_video">Play Video from Local File</string> 440 <string name="stream_video">Play Streaming Video</string> 441 <string name="local_audio">Play Audio from Local File</string> 442 <string name="res_audio">Play Audio from Resources</string> 443 444 <!-- ============================ --> 445 <!-- views examples strings --> 446 <!-- ============================ --> 447 448 <string name="linear_layout_8_vertical">Vertical</string> 449 <string name="linear_layout_8_horizontal">Horizontal</string> 450 <string name="linear_layout_8_top">Top</string> 451 <string name="linear_layout_8_middle">Middle</string> 452 <string name="linear_layout_8_bottom">Bottom</string> 453 <string name="linear_layout_8_left">Left</string> 454 <string name="linear_layout_8_center">Center</string> 455 <string name="linear_layout_8_right">Right</string> 456 <string name="linear_layout_10_from">From:</string> 457 <string name="linear_layout_10_to">To:</string> 458 <string name="list_7_nothing">Nothing\u2026</string> 459 <string name="radio_group_snack">Snack</string> 460 <string name="radio_group_selection">"You have selected: "</string> 461 <string name="radio_group_none">(none)</string> 462 <string name="table_layout_7_quit">Quit</string> 463 <string name="table_layout_7_ctrlq">Ctrl-Q</string> 464 <string name="table_layout_8_quit">Quit</string> 465 <string name="table_layout_8_ctrlq">Ctrl-Q</string> 466 467 <string name="seekbar_tracking_on">Tracking on</string> 468 <string name="seekbar_tracking_off">Tracking off</string> 469 <string name="seekbar_from_touch">from touch</string> 470 471 <string name="ratingbar_rating">Rating:</string> 472 473 <!-- ============================== --> 474 <!-- GoogleLogin examples strings --> 475 <!-- ============================== --> 476 <string name="googlelogin_err">Use a better username and password, please.</string> 477 478 479 <!-- ================================== --> 480 <!-- initial strings for layout files --> 481 <!-- ================================== --> 482 <string name="animation_1_instructions">Please enter your password:</string> 483 <string name="animation_2_text_1">Freedom</string> 484 <string name="animation_2_text_2">is nothing else but</string> 485 <string name="animation_2_text_3">a chance to be better.</string> 486 <string name="animation_2_text_4">— Albert Camus</string> 487 <string name="animation_2_instructions">Select an animation:</string> 488 <string name="animation_3_text">Interpolators</string> 489 <string name="autocomplete_1_instructions">Type in the text field for auto-completion.</string> 490 <string name="autocomplete_1_country">Country:</string> 491 <string name="autocomplete_1_focus">Give me Focus</string> 492 <string name="autocomplete_2_country">Country:</string> 493 <string name="autocomplete_2_focus">Give me Focus</string> 494 <string name="autocomplete_3_button_1">Scroll</string> 495 <string name="autocomplete_3_button_2">Down</string> 496 <string name="autocomplete_3_button_3">To</string> 497 <string name="autocomplete_3_button_4">See</string> 498 <string name="autocomplete_3_button_5">Auto</string> 499 <string name="autocomplete_3_button_6">Complete</string> 500 <string name="autocomplete_3_button_7">Text</string> 501 <string name="autocomplete_3_button_8">View</string> 502 <string name="autocomplete_3_button">Button</string> 503 <string name="autocomplete_3_country">Country:</string> 504 <string name="autocomplete_4_instructions">Type in the text field for auto-completion.</string> 505 <string name="autocomplete_4_name">Name:</string> 506 <string name="autocomplete_4_message">You must have contacts in your address book. Typing * will show all of your contacts.</string> 507 <string name="autocomplete_5_instructions">Type in the text field for auto-completion.</string> 508 <string name="autocomplete_5_hint">Typing * will show all of your contacts.</string> 509 <string name="autocomplete_5_name">Name:</string> 510 <string name="autocomplete_6_to">To:</string> 511 <string name="autocomplete_6_to_hint">To</string> 512 <string name="autocomplete_6_subject">Subject:</string> 513 <string name="autocomplete_7_instructions">Type in the text field for auto-completion by words.</string> 514 <string name="autocomplete_7_country">Country:</string> 515 <string name="autocomplete_7_focus">Give me Focus</string> 516 <string name="baseline_1_label">Label:</string> 517 <string name="baseline_1_button">Button</string> 518 <string name="baseline_1_bigger">Bigger</string> 519 <string name="baseline_2_label">Label:</string> 520 <string name="baseline_2_button">Button</string> 521 <string name="baseline_2_bigger">Bigger</string> 522 <string name="baseline_3_label">Label:</string> 523 <string name="baseline_3_button">Button</string> 524 <string name="baseline_3_bigger">Bigger</string> 525 <string name="baseline_3_explanation">This example shows that baseline alignment has no effect when the layout gravity is set to center_vertical.</string> 526 <string name="baseline_4_label">Label:</string> 527 <string name="baseline_4_button">Button</string> 528 <string name="baseline_4_bigger">Bigger</string> 529 <string name="baseline_4_label_2">Label Again</string> 530 <string name="baseline_4_label_3">Label Me</string> 531 <string name="baseline_6_multi_line">This is a\nmulti-line field.</string> 532 <string name="baseline_6_baseline">Baseline Aligned</string> 533 <string name="baseline_7_fat">Big and bold</string> 534 <string name="baseline_7_lean">Slim and slick.</string> 535 <string name="baseline_nested_1_label">label</string> 536 <string name="controls_1_save">Save</string> 537 <string name="controls_1_checkbox_1">Checkbox 1</string> 538 <string name="controls_1_checkbox_2">Checkbox 2</string> 539 <string name="controls_1_radiobutton_1">RadioButton 1</string> 540 <string name="controls_1_radiobutton_2">RadioButton 2</string> 541 <string name="controls_1_star">Star</string> 542 <string name="focus_1_message">Service not running</string> 543 <string name="focus_1_placeholder">placeholder</string> 544 <string name="focus_2_left">left</string> 545 <string name="focus_2_jump">jump over me from L to R</string> 546 <string name="focus_2_right">right</string> 547 <string name="focus_3_left">left</string> 548 <string name="focus_3_right">right</string> 549 <string name="focus_3_top">top</string> 550 <string name="focus_3_bottom">bottom</string> 551 <string name="gallery_2_text">Testing</string> 552 <string name="googlelogin_login">Login</string> 553 <string name="googlelogin_bad_login">Bad Login</string> 554 <string name="googlelogin_clear">Clear Credentials</string> 555 <string name="googlelogin_user">Username:</string> 556 <string name="layout_animation_name">Name:</string> 557 <string name="layout_animation_lastname">Last Name:</string> 558 <string name="layout_animation_phone">Phone:</string> 559 <string name="layout_animation_address">Address:</string> 560 <string name="linear_layout_1_top">This is the top view.</string> 561 <string name="linear_layout_1_middle">This is the middle view. It has more text in it than either the top view or the bottom view.</string> 562 <string name="linear_layout_1_bottom">This is the bottom view.</string> 563 <string name="linear_layout_2_top">This is the top view.</string> 564 <string name="linear_layout_2_middle">This is the middle view. It has more text in it than either the top view or the bottom view.</string> 565 <string name="linear_layout_2_bottom">This is the bottom view.</string> 566 <string name="linear_layout_3_top">This is the top view.</string> 567 <string name="linear_layout_3_middle">This is the middle view. It has more text in it than either the top view or the bottom view.</string> 568 <string name="linear_layout_3_bottom">This is the bottom view.</string> 569 <string name="linear_layout_5_instructions">Type Here:</string> 570 <string name="linear_layout_5_cancel">Cancel</string> 571 <string name="linear_layout_5_ok">OK</string> 572 <string name="linear_layout_6_one">One</string> 573 <string name="linear_layout_6_two">Two</string> 574 <string name="linear_layout_6_three">This is the third one</string> 575 <string name="linear_layout_6_four">Four</string> 576 <string name="linear_layout_7_small">Not much text</string> 577 <string name="linear_layout_7_big">A lot more text than any of the other columns. This column should set the height of the linear layout.</string> 578 <string name="linear_layout_7_wrap">wrap_content</string> 579 <string name="linear_layout_8_a">A</string> 580 <string name="linear_layout_8_b">B</string> 581 <string name="linear_layout_8_c">C</string> 582 <string name="linear_layout_9_button">Button</string> 583 <string name="link_text_auto"><b>text1:</b> This is some text. In 584 this text are some things that are actionable. For instance, 585 you can click on http://www.google.com and it will launch the 586 web browser. You can click on google.com too. And, if you 587 click on (415) 555-1212 it should dial the phone. 588 </string> 589 <string name="link_text_manual"><b>text2:</b> This is some other 590 text, with a <a href="http://www.google.com">link</a> specified 591 via an <a> tag. Use a \"tel:\" URL 592 to <a href="tel:4155551212">dial a phone number</a>. 593 </string> 594 <string name="list_8_new_photo">New photo</string> 595 <string name="list_8_clear_photos">Clear photos</string> 596 <string name="list_8_no_photos">No photos</string> 597 <string name="progressbar_1_plus">+</string> 598 <string name="progressbar_1_minus">-</string> 599 <string name="progressbar_1_default_progress">Default progress:</string> 600 <string name="progressbar_1_secondary_progress">Secondary progress:</string> 601 <string name="progressbar_3_progress">Show Progress</string> 602 <string name="progressbar_3_indeterminate">Show Indeterminate</string> 603 <string name="progressbar_3_indeterminate_no_title">Show Indeterminate No Title</string> 604 <string name="progressbar_4_toggle">Toggle Indeterminate</string> 605 <string name="radio_group_1_breakfast">Breakfast</string> 606 <string name="radio_group_1_lunch">Lunch</string> 607 <string name="radio_group_1_dinner">Dinner</string> 608 <string name="radio_group_1_all">All of them</string> 609 <string name="radio_group_1_selection">You have selected: (none)</string> 610 <string name="radio_group_1_clear">Clear</string> 611 <string name="receive_result_instructions">Press the button to get an activity result, which will be displayed here:</string> 612 <string name="receive_result_result">Get Result</string> 613 <string name="relative_layout_1_top">Top</string> 614 <string name="relative_layout_1_bottom">Bottom</string> 615 <string name="relative_layout_1_center">center_vertical</string> 616 <string name="relative_layout_2_instructions">Type here:</string> 617 <string name="relative_layout_2_ok">Ok</string> 618 <string name="relative_layout_2_cancel">Cancel</string> 619 <string name="scroll_view_1_text_1">Text View 1</string> 620 <string name="scroll_view_1_button_1">Button 1</string> 621 <string name="scroll_view_1_text_2">Text View 2</string> 622 <string name="scroll_view_1_button_2">Button 2</string> 623 <string name="scroll_view_1_text_3">Text View 3</string> 624 <string name="scroll_view_1_button_3">Button 3</string> 625 <string name="scroll_view_1_text_4">Text View 4</string> 626 <string name="scroll_view_1_button_4">Button 4</string> 627 <string name="scroll_view_1_text_5">Text View 5</string> 628 <string name="scroll_view_1_button_5">Button 5</string> 629 <string name="scroll_view_1_text_6">Text View 6</string> 630 <string name="scroll_view_1_button_6">Button 6</string> 631 <string name="scroll_view_2_text_1">Text View 1</string> 632 <string name="scroll_view_2_button_1">Button 1</string> 633 <string name="scrollbar_1_text">Lorem ipsum dolor sit amet.</string> 634 <string name="scrollbar_2_text">Lorem ipsum dolor sit amet.</string> 635 <string name="scrollbar_3_text"> 636 The Android platform is a software stack for mobile devices including an 637 operating system, middleware and key applications. Developers can create 638 applications for the platform using the Android SDK. Applications are written 639 using the Java programming language and run on Dalvik, a custom virtual 640 machine designed for embedded use which runs on top of a Linux kernel. 641 642 If you want to know how to develop applications for Android, you\'re in the 643 right place. This site provides a variety of documentation that will help you 644 learn about Android and develop mobile applications for the platform. 645 646 An early look at the the Android SDK is also available. It includes sample 647 projects with source code, development tools, an emulator, and of course all 648 the libraries you\'ll need to build an Android application. What would it take 649 to build a better mobile phone? 650 </string> 651 <string name="spinner_1_color">Color:</string> 652 <string name="spinner_1_planet">Planet:</string> 653 <string name="spinner_1_color_prompt">Choose a color</string> 654 <string name="spinner_1_planet_prompt">Choose a planet</string> 655 <string name="table_layout_1_star">*</string> 656 <string name="table_layout_1_triple_star">***</string> 657 <string name="table_layout_1_open">Open\u2026</string> 658 <string name="table_layout_1_open_shortcut">Ctrl-O</string> 659 <string name="table_layout_1_save">Save As\u2026</string> 660 <string name="table_layout_1_save_shortcut">(Save Document)</string> 661 <string name="table_layout_1_quit">Quit Application</string> 662 <string name="table_layout_1_quit_shortcut">Ctrl-Shift-Q</string> 663 <string name="table_layout_2_path_1">~/path/to/file/to/open</string> 664 <string name="table_layout_2_path_2">~/.profile</string> 665 <string name="table_layout_2_open">Open</string> 666 <string name="table_layout_2_save">Save</string> 667 <string name="table_layout_2_save_all">Save All</string> 668 <string name="table_layout_3_star">*</string> 669 <string name="table_layout_3_triple_star">***</string> 670 <string name="table_layout_3_open">Open\u2026</string> 671 <string name="table_layout_3_open_shortcut">Ctrl-O</string> 672 <string name="table_layout_3_save">Save As\u2026</string> 673 <string name="table_layout_3_save_shortcut">(Save Document)</string> 674 <string name="table_layout_3_too_long">Too Long</string> 675 <string name="table_layout_3_quit">Quit Application</string> 676 <string name="table_layout_3_quit_shortcut">Ctrl-Shift-Q</string> 677 <string name="table_layout_4_open">Open\u2026</string> 678 <string name="table_layout_4_open_shortcut">Ctrl-O</string> 679 <string name="table_layout_4_save">Save As\u2026</string> 680 <string name="table_layout_4_save_shortcut">Ctrl-Shift-S</string> 681 <string name="table_layout_5_open">Open\u2026</string> 682 <string name="table_layout_5_open_shortcut">Ctrl-O</string> 683 <string name="table_layout_5_save">Save\u2026</string> 684 <string name="table_layout_5_save_shortcut">Ctrl-S</string> 685 <string name="table_layout_5_save_as">Save As\u2026</string> 686 <string name="table_layout_5_save_as_shortcut">Ctrl-Shift-S</string> 687 <string name="table_layout_5_import">Import\u2026</string> 688 <string name="table_layout_5_export">Export\u2026</string> 689 <string name="table_layout_5_export_shortcut">Ctrl-E</string> 690 <string name="table_layout_5_quit">Quit\u2026</string> 691 <string name="table_layout_6_x">X</string> 692 <string name="table_layout_6_open">Open\u2026</string> 693 <string name="table_layout_6_open_shortcut">Ctrl-O</string> 694 <string name="table_layout_6_save">Save\u2026</string> 695 <string name="table_layout_6_save_shortcut">Ctrl-S</string> 696 <string name="table_layout_6_save_as">Save As\u2026</string> 697 <string name="table_layout_6_save_as_shortcut">Ctrl-Shift-S</string> 698 <string name="table_layout_6_import">Import\u2026</string> 699 <string name="table_layout_6_export">Export\u2026</string> 700 <string name="table_layout_6_export_shortcut">Ctrl-E</string> 701 <string name="table_layout_6_quit">Quit\u2026</string> 702 <string name="table_layout_7_x">X</string> 703 <string name="table_layout_7_open">Open\u2026</string> 704 <string name="table_layout_7_open_shortcut">Ctrl-O</string> 705 <string name="table_layout_7_save">Save\u2026</string> 706 <string name="table_layout_7_save_shortcut">Ctrl-S</string> 707 <string name="table_layout_7_save_as">Save As\u2026</string> 708 <string name="table_layout_7_save_as_shortcut">Ctrl-Shift-S</string> 709 <string name="table_layout_7_import">Import\u2026</string> 710 <string name="table_layout_7_export">Export\u2026</string> 711 <string name="table_layout_7_export_shortcut">Ctrl-E</string> 712 <string name="table_layout_7_toggle_checkmarks">Toggle Checkmarks</string> 713 <string name="table_layout_7_toggle_shortcuts">Toggle Shortcuts</string> 714 <string name="table_layout_8_x">X</string> 715 <string name="table_layout_8_open">Open\u2026</string> 716 <string name="table_layout_8_open_shortcut">Ctrl-O</string> 717 <string name="table_layout_8_save">Save\u2026</string> 718 <string name="table_layout_8_save_shortcut">Ctrl-S</string> 719 <string name="table_layout_8_save_as">Save As\u2026</string> 720 <string name="table_layout_8_save_as_shortcut">Ctrl-Shift-S</string> 721 <string name="table_layout_8_import">Import\u2026</string> 722 <string name="table_layout_8_export">Export\u2026</string> 723 <string name="table_layout_8_export_shortcut">Ctrl-E</string> 724 <string name="table_layout_8_toggle_stretch">Toggle Stretch</string> 725 <string name="table_layout_9_open">Open\u2026</string> 726 <string name="table_layout_9_open_shortcut">Ctrl-O</string> 727 <string name="table_layout_9_save">Save\u2026</string> 728 <string name="table_layout_9_save_shortcut">Ctrl-S</string> 729 <string name="table_layout_9_save_as">Save As\u2026</string> 730 <string name="table_layout_9_save_as_shortcut">Ctrl-Shift-S</string> 731 <string name="table_layout_9_save_all">Save All And Do A Lot Of Stuff Just To Be Too Long For This Screen Because It Is A Test After All</string> 732 <string name="table_layout_9_save_all_shortcut">Ctrl-E</string> 733 <string name="table_layout_9_import">Import\u2026</string> 734 <string name="table_layout_9_export">Export\u2026</string> 735 <string name="table_layout_9_export_shortcut">Ctrl-E</string> 736 <string name="table_layout_9_toggle_shrink">Toggle Shrink</string> 737 <string name="table_layout_10_user">User</string> 738 <string name="table_layout_10_password">Password</string> 739 <string name="table_layout_10_cancel">Cancel</string> 740 <string name="table_layout_10_login">Login</string> 741 <string name="table_layout_12_a">A</string> 742 <string name="table_layout_12_b">BB</string> 743 <string name="table_layout_12_c">CCCC</string> 744 <string name="table_layout_12_d">D</string> 745 <string name="table_layout_12_e">E</string> 746 <string name="table_layout_12_f">F</string> 747 <string name="table_layout_12_g">G</string> 748 <string name="table_layout_12_h">H</string> 749 <string name="visibility_1_view_1">View A</string> 750 <string name="visibility_1_view_2">View B</string> 751 <string name="visibility_1_view_3">View C</string> 752 <string name="visibility_1_vis">Vis</string> 753 <string name="visibility_1_invis">Invis</string> 754 <string name="visibility_1_gone">Gone</string> 755 756 757 <string name="google_login_username_text"></string> 758 759 <string name="incoming_message_notify_text">Show Notification</string> 760 761 <string name="incoming_message_info_message_text">this is the text of a previous message.\nkthx. meet u for dinner. cul8r</string> 762 763 <string name="incoming_message_view_message_text">this is the text of a previous message.\nkthx. meet u for dinner. cul8r</string> 764 <string name="imcoming_message_view_message2_text">Did you notice that the status bar icon disappeared?</string> 765 <string name="imcoming_message_ticker_text">New text message: <xliff:g id="text">%0$s</xliff:g></string> 766 767 <string name="log_text_box_1_do_nothing_text">Do nothing</string> 768 <string name="log_text_box_1_add_text">Add</string> 769 770 <string name="notify_with_text_long_notify_text">Show Long Notification</string> 771 <string name="notify_with_text_short_notify_text">Show Short Notification</string> 772 773 <string name="marquee_default">This use the default marquee animation limit of 3</string> 774 <string name="marquee_once">This will run the marquee animation once</string> 775 <string name="marquee_forever">This will run the marquee animation forever</string> 776 777 <string name="table_layout_10_password_text"></string> 778 <string name="table_layout_10_username_text"></string> 779 780 <string name="text_switcher_1_next_text">Next</string> 781 782 <string name="date_widgets_example_dateDisplay_text"></string> 783 <string name="date_widgets_example_pickTime_text">change the time</string> 784 <string name="date_widgets_example_pickDate_text">change the date</string> 785 786 <string name="buttons_1_normal">Normal</string> 787 <string name="buttons_1_right">Right</string> 788 <string name="buttons_1_small">Small</string> 789 <string name="buttons_1_small_right">S R</string> 790 <string name="buttons_1_small_left">S L</string> 791 <string name="buttons_1_small_up">S U</string> 792 <string name="buttons_1_small_down">S D</string> 793 <string name="buttons_1_toggle">Toggle</string> 794 795 <string name="expandable_list_sample_action">Sample action</string> 796 797 <string name="chronometer_start">Start</string> 798 <string name="chronometer_stop">Stop</string> 799 <string name="chronometer_reset">Reset</string> 800 <string name="chronometer_set_format">Set format string</string> 801 <string name="chronometer_clear_format">Clear format string</string> 802 <string name="chronometer_initial_format">Initial format: <xliff:g id="initial-format">%s</xliff:g></string> 803 804 <!-- ============================ --> 805 <!-- vibrator examples strings --> 806 <!-- ============================ --> 807 808 <string name="vibrate">Vibrate</string> 809 810 811 <string name="image_view_large_normal">Large image at normal size</string> 812 <string name="image_view_large_at_most">Large image scaled to at most 50x50</string> 813 <string name="image_view_large_at_most_padded">Large image scaled to at most 70x70 with padding</string> 814 <string name="image_view_large_exactly_padded">Large image scaled to exactly 70x70 with padding</string> 815 <string name="image_view_small_normal">Small image at normal size</string> 816 <string name="image_view_small_at_most">Small image scaled to at most 50x50</string> 817 <string name="image_view_small_at_most_padded">Small image scaled to at most 70x70 with padding</string> 818 <string name="image_view_small_exactly_padded">Small image scaled to exactly 70x70 with padding</string> 819 820 <!-- Shouldn't be localized --> 821 <string name="textColorPrimary">textColorPrimary</string> 822 <string name="textColorSecondary">textColorSecondary</string> 823 <string name="textColorTertiary">textColorTertiary</string> 824 <string name="listSeparatorTextViewStyle">listSeparatorTextViewStyle</string> 825 826 <!-- ============================ --> 827 <!-- AppWidget examples strings --> 828 <!-- ============================ --> 829 830 <string name="appwidget_configure_instructions">This text will be shown before the date in our example widget.</string> 831 <string name="appwidget_prefix_default">Oh hai</string> 832 <string name="appwidget_text_format"><xliff:g id="prefix">%1$s</xliff:g>: <xliff:g id="time">%2$s</xliff:g></string> 833</resources> 834 835