Home | History | Annotate | Download | only in values
      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.  It also has lots of text to show how text wrapping (and
     35             corresponding window size adjustment) can happen in a dialog.</string>
     36     <string name="dialog_activity_add">Add content</string>
     37     <string name="dialog_activity_remove">Remove content</string>
     38     <string name="activity_custom_dialog">App/Activity/Custom Dialog</string>
     39     <string name="custom_dialog_activity_text">Example of how you can use a
     40             custom Theme.Dialog theme to make an activity that looks like a
     41             customized dialog, here with an ugly frame.</string>
     42 
     43     <string name="quick_contacts_demo">App/Activity/QuickContactsDemo</string>
     44 
     45     <string name="activity_wallpaper">App/Activity/Wallpaper</string>
     46     <string name="activity_setwallpaper">App/Activity/SetWallpaper</string>
     47     <string name="set_wallpaper">Set Wallpaper</string>
     48     <string name="randomize">Randomize</string>
     49 
     50     <string name="activity_screen_orientation">App/Activity/Screen Orientation</string>
     51     <string name="screen_orientation_summary">Demonstrates the available screen
     52         orientation modes.  Often you want to set the desired mode in your manifest
     53         instead of programmatically.</string>
     54     <string name="screen_orientation">Screen Orientation</string>
     55 
     56     <string name="activity_translucent">App/Activity/Translucent</string>
     57     <string name="translucent_background">Example of how you can make an
     58             activity have a translucent background, compositing over
     59             whatever is behind it.</string>
     60 
     61     <string name="activity_translucent_blur">App/Activity/Translucent Blur</string>
     62 
     63     <string name="activity_animation">App/Activity/Animation</string>
     64     <string name="activity_animation_msg">Press a button to launch an activity with a custom animation.</string>
     65     <string name="activity_animation_fade">Fade in</string>
     66     <string name="activity_animation_zoom">Zoom in</string>
     67 
     68     <string name="activity_save_restore">App/Activity/Save &amp; Restore State</string>
     69     <string name="save_restore_msg">Demonstration of saving and restoring activity state in onSaveInstanceState() and onCreate().</string>
     70     <string name="saves_state">This text field saves its state:</string>
     71     <string name="no_saves_state">This text field does not save its state:</string>
     72     <string name="initial_text">Initial text.</string>
     73 
     74     <string name="soft_input_modes">App/Activity/Soft Input Modes</string>
     75     <string name="soft_input_modes_summary">Shows how different soft input modes impact
     76         application resizing due to an input method.</string>
     77     <string name="soft_input_modes_label">Resize mode: </string>
     78     <string name="soft_input_modes_content">This is a part of the application\'s UI that
     79         can resize to adjust for the IME.</string>
     80     <string name="soft_input_modes_initial_text">Text editor.\n\nTap to show the IME,
     81         which will cause this window to resize as requested.</string>
     82 
     83     <string name="activity_persistent">App/Activity/Persistent State</string>
     84     <string name="persistent_msg">Demonstration of persistent activity state with getPreferences(0).edit() and getPreferences(0).</string>
     85 
     86     <string name="activity_recreate">App/Activity/Recreate</string>
     87     <string name="activity_recreate_msg">Demonstration recreating an activity, to have
     88         it reconstructed with significant new changes.  In this case the theme is changed.</string>
     89     <string name="recreate">Recreate</string>
     90 
     91     <string name="activity_receive_result">App/Activity/Receive Result</string>
     92     <string name="pick_result">Pick a result to send, or BACK to cancel.</string>
     93     <string name="corky">Corky</string>
     94     <string name="violet">Violet</string>
     95 
     96     <string name="activity_forwarding">App/Activity/Forwarding</string>
     97     <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>
     98     <string name="go">Go</string>
     99     <string name="forward_target">Press back button and notice we don\'t see the previous activity.</string>
    100 
    101     <string name="activity_redirect">App/Activity/Redirection</string>
    102     <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>
    103     <string name="redirect_main">You now see the main activity running normally because the user text has been set to:</string>
    104     <string name="clear_text">Clear and Exit</string>
    105     <string name="new_text">New Text</string>
    106     <string name="redirect_getter">Enter the text that will be used by the main activity.  Press back to cancel.</string>
    107     <string name="apply">Apply</string>
    108 
    109     <string name="fragment_alert_dialog">App/Fragment/Alert Dialog</string>
    110 
    111     <string name="fragment_arguments">App/Fragment/Arguments</string>
    112     <string name="fragment_arguments_msg">Demonstrates a fragment that takes arguments
    113         as a Bundle at runtime (on the right) or from attributes in a layout (on the left).</string>
    114     <string name="fragment_arguments_embedded">From Attributes</string>
    115     <string name="fragment_arguments_embedded_land">Landscape Only</string>
    116 
    117     <string name="fragment_custom_animations">App/Fragment/Custom Animations</string>
    118 
    119     <string name="fragment_hide_show">App/Fragment/Hide and Show</string>
    120 
    121     <string name="fragment_context_menu">App/Fragment/Context Menu</string>
    122     <string name="fragment_context_menu_msg">Fragment populating a context
    123             menu; long press the button to see.</string>
    124     <string name="long_press">Long press me</string>
    125 
    126     <string name="fragment_dialog">App/Fragment/Dialog</string>
    127     <string name="show">Show</string>
    128 
    129     <string name="fragment_dialog_or_activity">App/Fragment/Dialog or Activity</string>
    130     <string name="fragment_dialog_or_activity_msg">Demonstrates the same fragment
    131             being shown as a dialog and embedded inside of an activity.</string>
    132     <string name="fragment_dialog_or_activity_inline">Fragment embedded inside
    133             of the activity:</string>
    134 
    135     <string name="fragment_layout">App/Fragment/Layout</string>
    136 
    137     <string name="fragment_list_array">App/Fragment/List Array</string>
    138 
    139     <string name="fragment_menu">App/Fragment/Menu</string>
    140     <string name="fragment_menu_msg">Build menus from two fragments, allowing
    141         you to hide them to remove them..</string>
    142     <string name="fragment1menu">Show fragment 1 menu</string>
    143     <string name="fragment2menu">Show fragment 2 menu</string>
    144 
    145     <string name="fragment_retain_instance">App/Fragment/Retain Instance</string>
    146     <string name="fragment_retain_instance_msg">Current progress of retained fragment;
    147     restarts if fragment is re-created.</string>
    148     <string name="restart">Restart</string>
    149 
    150     <string name="fragment_receive_result">App/Fragment/Receive Result</string>
    151 
    152     <string name="fragment_stack">App/Fragment/Stack</string>
    153     <string name="new_fragment">New fragment</string>
    154 
    155     <string name="first">First</string>
    156     <string name="last">Last</string>
    157 
    158     <string name="fragment_tabs">App/Fragment/Tabs</string>
    159 
    160     <string name="loader_cursor">App/Loader/Cursor</string>
    161 
    162     <string name="loader_custom">App/Loader/Custom</string>
    163 
    164     <string name="loader_throttle">App/Loader/Throttle</string>
    165 
    166     <string name="activity_menu">App/Activity/Menu</string>
    167     <string name="open_menu">Open menu</string>
    168     <string name="close_menu">Close menu</string>
    169     <string name="toggle_scenery">Toggle scenery</string>
    170     <string name="toggle_dogs">Toggle dogs</string>
    171     <string name="long_click_for_context_menu">Long click for context menu</string>
    172 
    173     <string name="local_service_started">Local service has started</string>
    174     <string name="local_service_stopped">Local service has stopped</string>
    175     <string name="local_service_label">Sample Local Service</string>
    176 
    177     <string name="activity_local_service_controller">App/Service/Local Service Controller</string>
    178     <string name="local_service_controller">This demonstrates how you can implement persistent services that
    179         may be started and stopped as desired.</string>
    180     <string name="start_service">Start Service</string>
    181     <string name="stop_service">Stop Service</string>
    182 
    183     <string name="activity_local_service_binding">App/Service/Local Service Binding</string>
    184     <string name="local_service_binding">This demonstrates how you can connect with a persistent
    185         service.  Notice how it automatically starts for you, and play around with the
    186         interaction between this and Local Service Controller.</string>
    187     <string name="bind_service">Bind Service</string>
    188     <string name="unbind_service">Unbind Service</string>
    189     <string name="local_service_connected">Connected to local service</string>
    190     <string name="local_service_disconnected">Disconnected from local service</string>
    191 
    192     <string name="activity_messenger_service_binding">App/Service/Messenger Service</string>
    193     <string name="messenger_service_binding">This demonstrates how you can communicate with
    194         a remote service using Messenger.</string>
    195 
    196     <string name="remote_service_started">Remote service has started</string>
    197     <string name="remote_service_stopped">Remote service has stopped</string>
    198     <string name="remote_service_label">Sample Remote Service</string>
    199 
    200     <string name="activity_remote_service_controller">App/Service/Remote Service Controller</string>
    201     <string name="remote_service_controller">This demonstrates how you can implement persistent services
    202         running in a separate process that may be started and stopped as desired.</string>
    203 
    204     <string name="activity_remote_service_binding">App/Service/Remote Service Binding</string>
    205     <string name="remote_service_binding">This demonstrates how you can connect with a persistent
    206         service running in another process.  Use the kill button to see what happens when
    207         the process crashes.</string>
    208     <string name="kill_process">Kill Process</string>
    209     <string name="remote_service_connected">Connected to remote service</string>
    210     <string name="remote_service_disconnected">Disconnected from remote service</string>
    211     <string name="remote_service_unbind_disconn">Unbinding due to disconnect</string>
    212     <string name="remote_call_failed">Failure calling remote service</string>
    213 
    214     <string name="activity_remote_service_binding_options">App/Service/Remote Service Binding Options</string>
    215 
    216     <string name="service_start_arguments_label">Sample Service Start Arguments
    217     </string>
    218 
    219     <string name="activity_service_start_arguments_controller">App/Service/Service
    220         Start Arguments Controller
    221     </string>
    222     <string name="service_start_arguments_controller">This demonstrates how
    223         service can be started with arguments, and run until all arguments are
    224         processed.
    225     </string>
    226     <string name="start1_service">Start \"One\" no redeliver</string>
    227     <string name="start2_service">Start \"Two\" no redeliver</string>
    228     <string name="start3_service">Start \"Three\" w/redeliver</string>
    229     <string name="startfail_service">Start failed delivery</string>
    230     <string name="service_created">Service created.</string>
    231     <string name="service_destroyed">Service destroyed.</string>
    232 
    233     <string name="foreground_service_started">Service is in the foreground</string>
    234     <string name="foreground_service_label">Sample Foreground Service</string>
    235 
    236     <string name="activity_foreground_service_controller">App/Service/Foreground Service Controller</string>
    237     <string name="foreground_service_controller">This demonstrates how you can
    238             implement services that run in the foreground when needed.</string>
    239     <string name="start_service_foreground">Start Service Foreground</string>
    240     <string name="start_service_background">Start Service Background</string>
    241 
    242     <string name="one_shot_received">The one-shot alarm has gone off</string>
    243     <string name="repeating_received">The repeating alarm has gone off</string>
    244 
    245     <string name="activity_alarm_controller">App/Alarm/Alarm Controller</string>
    246     <string name="alarm_controller">This demonstrates how to schedule and handle
    247         one-shot and repeating alarms.</string>
    248     <string name="one_shot_alarm">One Shot Alarm</string>
    249     <string name="start_repeating_alarm">Start Repeating Alarm</string>
    250     <string name="stop_repeating_alarm">Stop Repeating Alarm</string>
    251     <string name="one_shot_scheduled">One-shot alarm will go off in 30 seconds based on
    252         the real time clock.  Try changing the current time before then!</string>
    253     <string name="repeating_scheduled">Repeating alarm will go off in 15 seconds and
    254         every 15 seconds after based on the elapsed realtime clock</string>
    255     <string name="repeating_unscheduled">Repeating alarm has been unscheduled</string>
    256 
    257     <string name="alarm_service_started">The alarm service has started running</string>
    258     <string name="alarm_service_finished">The alarm service has finished running</string>
    259     <string name="alarm_service_label">Sample Alarm Service</string>
    260 
    261     <string name="activity_alarm_service">App/Alarm/Alarm Service</string>
    262     <string name="alarm_service">This demonstrates how to schedule a repeating
    263         alarm that will initiate a long-lived operation through a service.</string>
    264     <string name="start_alarm_service">Start Alarm Service</string>
    265     <string name="stop_alarm_service">Stop Alarm Service</string>
    266     <string name="alarm_service_scheduled">Alarm service will run now, and then every
    267         30 seconds for 15 seconds</string>
    268     <string name="alarm_service_unscheduled">Alarm service has been unscheduled</string>
    269 
    270     <string name="activity_local_sample">App/Instrumentation/Local Sample</string>
    271     <string name="local_sample">This demonstrates an Instrumentation that runs against
    272         one of our own classes.  Note that this activity will be killed as
    273         a side-effect of starting instrumentation on its own application.</string>
    274 
    275     <string name="activity_contacts_filter">App/Instrumentation/Contacts Filter</string>
    276     <string name="contacts_filter">This demonstrates an Instrumentation package that
    277         launches the contacts list and simulates user events to filter it.</string>
    278 
    279     <string name="pick_image_label">App/Activity/PickImage</string>
    280     <string name="pick_image">Pick Image</string>
    281 
    282     <string name="short_notification_text">Short notification</string>
    283     <string name="long_notification_text">This is a long notification.  See, you might need a second more to read it.</string>
    284     <string name="status_bar_notification_title">Sample Notification</string>
    285 
    286     <string name="notifying_service_controller">This service will update a status bar notification
    287                   every 5 seconds for a minute</string>
    288 
    289     <string name="activity_custom_title">App/Activity/Custom Title</string>
    290     <string name="custom_title_left">Left is best</string>
    291     <string name="custom_title_right">Right is always right</string>
    292     <string name="custom_title_left_button">Change Left</string>
    293     <string name="custom_title_right_button">Change Right</string>
    294 
    295     <string name="activity_reorder">App/Activity/Reorder Activities</string>
    296     <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>
    297     <string name="reorder_launch_two">Go to the second</string>
    298     <string name="reorder_two_text">This is the second in a sequence of four Activities.</string>
    299     <string name="reorder_launch_three">Go to the third</string>
    300     <string name="reorder_three_text">This is the third of a sequence of four Activities.</string>
    301     <string name="reorder_launch_four">Go to the fourth</string>
    302     <string name="reorder_four_text">This is the last in a sequence of four Activities.</string>
    303     <string name="reorder_second_to_front">Bring the second in front</string>
    304 
    305     <string name="menu_from_xml_title">App/Menu/Inflate from XML</string>
    306     <string name="menu_from_xml_instructions_press_menu">Select a menu resource and press the menu key.</string>
    307     <string name="menu_from_xml_instructions_go_back">If you want to choose another menu resource, go back and re-run this activity.</string>
    308 
    309     <string name="voice_recognition">App/Voice Recognition</string>
    310     <string name="supported_languages">Supported languages</string>
    311     <string name="language_preference">Voice Search in Settings</string>
    312 
    313     <string name="text_to_speech">App/Text-To-Speech</string>
    314     <string name="again">Again</string>
    315 
    316     <string name="app_update_received">ApiDemos has been updated!</string>
    317 
    318     <!-- ============================== -->
    319     <!--  app/content examples strings  -->
    320     <!-- ============================== -->
    321 
    322     <string name="activity_clipboard">Content/Clipboard/Data Types</string>
    323     <string name="copy_text">Copy Text</string>
    324     <string name="copy_intent">Copy Intent</string>
    325     <string name="copy_uri">Copy URI</string>
    326     <string name="clip_type_prompt">Clip Type</string>
    327 
    328     <string name="activity_external_storage">Content/Storage/External Storage</string>
    329     <string name="create">Create</string>
    330     <string name="delete">Delete</string>
    331 
    332     <string name="activity_styled_text">Content/Resources/<i>Styled</i> <b>Text</b></string>
    333     <string name="styled_text_rsrc">Initialized from a resource:</string>
    334     <string name="styled_text">Plain, <b>bold</b>, <i>italic</i>, <b><i>bold-italic</i></b></string>
    335     <string name="styled_text_prog">Assigned programmatically:</string>
    336 
    337     <string name="activity_resources_layout_reference">Content/Resources/Layout Reference</string>
    338     <string name="resources_layout_reference_description">Shows how to write layout
    339         resource references, so that you can define multiple different configurations of
    340         a layout resource that refer to one actual XML definition.</string>
    341     <string name="resources_layout_reference_default">Default layout</string>
    342     <string name="resources_layout_reference_tablet">Tablet layout</string>
    343 
    344     <string name="activity_resources_width_and_height">Content/Resources/Width and Height</string>
    345     <string name="resources_width_and_height_description">The layouts below use -wNNNdp and
    346         -hNNNdp to select between different versions based on the size of the screen.</string>
    347 
    348     <string name="activity_resources_smallest_width">Content/Resources/Smallest Width</string>
    349     <string name="resources_smallest_width_description">The layouts below use -swNNNdp
    350         to select between different versions based on the size of the screen.</string>
    351 
    352     <string name="activity_read_asset">Content/Assets/Read Asset</string>
    353 
    354     <string name="activity_themes">Content/Resources/Themes</string>
    355     <string name="activity_resources">Content/Resources/Resources</string>
    356 
    357     <string name="activity_pick_contact">Content/Provider/Pick Contact</string>
    358     <string name="pick_contact_msg">Invoke Contacts to pick various kinds of
    359         contact data.  None of these require that the caller hold the
    360         READ_CONTACTS permission.</string>
    361     <string name="pick_contact">Pick a Contact</string>
    362     <string name="pick_person">Pick a Person</string>
    363     <string name="pick_phone">Pick a Phone</string>
    364     <string name="pick_address">Pick an Address</string>
    365 
    366     <string name="activity_install_apk">Content/Packages/Install Apk</string>
    367 
    368     <!-- ============================== -->
    369     <!--  app/intents examples strings     -->
    370     <!-- ============================== -->
    371 
    372     <string name="activity_intents">App/Activity/Intents</string>
    373     <string name="intents">Example of launching various Intents.</string>
    374     <string name="get_music">Get Music</string>
    375 
    376     <!-- ============================== -->
    377     <!--  app/intents activity flags examples strings     -->
    378     <!-- ============================== -->
    379 
    380     <string name="activity_intent_activity_flags">App/Activity/Intent Activity Flags</string>
    381     <string name="intent_activity_flags">Example of the use of various intent activity flags.</string>
    382     <string name="flag_activity_clear_task">FLAG_ACTIVITY_CLEAR_TASK</string>
    383     <string name="flag_activity_clear_task_pi">FLAG_ACTIVITY_CLEAR_TASK (PI)</string>
    384 
    385     <!-- =================================== -->
    386     <!--  app/notification examples strings  -->
    387     <!-- =================================== -->
    388 
    389     <string name="short_notification">Short notification.</string>
    390     <string name="long_notification">Long notification.</string>
    391     <string name="short_top_notification">Short top.</string>
    392     <string name="short_bottom_notification">Short bottom.</string>
    393     <string name="short_center_notification">Short center.</string>
    394     <string name="short_left_notification">Short left.</string>
    395     <string name="short_right_notification">Short right.</string>
    396     <string name="custom_notification">Custom Notification:</string>
    397     <string name="custom_notification_button">With a Button</string>
    398 
    399     <string name="status_bar_notifications_icons_only">Icons only</string>
    400     <string name="status_bar_notifications_icons_and_marquee">Icons and marquee</string>
    401     <string name="status_bar_notifications_remote_views">Use remote views in balloon</string>
    402     <string name="status_bar_notifications_defaults">Use default values where applicable</string>
    403     <string name="status_bar_notifications_happy">:-)</string>
    404     <string name="status_bar_notifications_ok">:-|</string>
    405     <string name="status_bar_notifications_sad">:-(</string>
    406     <string name="status_bar_notifications_happy_message">I am happy</string>
    407     <string name="status_bar_notifications_ok_message">I am ok</string>
    408     <string name="status_bar_notifications_sad_message">I am sad</string>
    409     <string name="status_bar_notifications_clear">Clear notification</string>
    410     <string name="status_bar_notifications_mood_title">Mood ring</string>
    411     <string name="status_bar_notifications_default_sound">Sound</string>
    412     <string name="status_bar_notifications_default_vibrate">Vibrate</string>
    413     <string name="status_bar_notifications_default_all">All</string>
    414 
    415     <!-- ============================== -->
    416     <!--  app/dialog examples strings  -->
    417     <!-- ============================== -->
    418 
    419     <string name="activity_alert_dialog">App/Alert Dialogs</string>
    420     <string name="alert_dialog_two_buttons">OK Cancel dialog with a message</string>
    421     <string name="alert_dialog_two_buttons_old_school">OK Cancel dialog with traditional theme</string>
    422     <string name="alert_dialog_two_buttons_holo_light">OK Cancel dialog with Holo Light theme</string>
    423     <string name="alert_dialog_two_buttons2">OK Cancel dialog with a long message</string>
    424     <string name="alert_dialog_two_buttons2ultra">OK Cancel dialog with ultra long message</string>
    425     <string name="alert_dialog_select_button">List dialog</string>
    426     <string name="alert_dialog_single_choice">Single choice list</string>
    427     <string name="alert_dialog_multi_choice">Repeat alarm</string>
    428     <string name="alert_dialog_multi_choice_cursor">Send Call to VoiceMail</string>
    429     <string name="alert_dialog_progress_button">Progress dialog</string>
    430     <string name="alert_dialog_text_entry">Text Entry dialog</string>
    431     <string name="alert_dialog_username">Name:</string>
    432     <string name="alert_dialog_password">Password:</string>
    433     <string name="alert_dialog_two_buttons_title">
    434         Lorem ipsum dolor sit aie consectetur adipiscing\nPlloaso mako nuto
    435         siwuf cakso dodtos anr koop.
    436     </string>
    437     <string name="alert_dialog_two_buttons_msg">Header title</string>
    438     <string name="alert_dialog_two_buttons2_msg">
    439         Plloaso mako nuto siwuf cakso dodtos anr koop a
    440         cupy uf cak vux noaw yerw phuno. Whag schengos, uf efed, quiel
    441         ba mada su otrenzr.\n\nSwipontgwook proudgs hus yag su ba dagarmidad.
    442         Plasa maku noga wipont trenzsa schengos ent kaap zux comy.\n\nWipont trenz
    443         kipg naar mixent phona. Cak pwico siructiun
    444         ruous nust apoply tyu cak Uhex sisulutiun munityuw uw dseg
    445     </string>
    446     <string name="alert_dialog_two_buttons2ultra_msg">
    447         Plloaso mako nuto siwuf cakso dodtos anr koop a
    448         cupy uf cak vux noaw yerw phuno. Whag schengos, uf efed, quiel
    449         ba mada su otrenzr.\n\nSwipontgwook proudgs hus yag su ba dagarmidad.
    450         Plasa maku noga wipont trenzsa schengos ent kaap zux comy.\n\nWipont trenz
    451         kipg naar mixent phona. Cak pwico siructiun
    452         ruous nust apoply tyu cak Uhex sisulutiun munityuw uw dseg\n\n
    453         Plloaso mako nuto siwuf cakso dodtos anr koop a
    454         cupy uf cak vux noaw yerw phuno. Whag schengos, uf efed, quiel
    455         ba mada su otrenzr.\n\nSwipontgwook proudgs hus yag su ba dagarmidad.
    456         Plasa maku noga wipont trenzsa schengos ent kaap zux comy.\n\nWipont trenz
    457         kipg naar mixent phona. Cak pwico siructiun
    458         ruous nust apoply tyu cak Uhex sisulutiun munityuw uw dseg\n\n
    459         Plloaso mako nuto siwuf cakso dodtos anr koop a
    460         cupy uf cak vux noaw yerw phuno. Whag schengos, uf efed, quiel
    461         ba mada su otrenzr.\n\nSwipontgwook proudgs hus yag su ba dagarmidad.
    462         Plasa maku noga wipont trenzsa schengos ent kaap zux comy.\n\nWipont trenz
    463         kipg naar mixent phona. Cak pwico siructiun
    464         ruous nust apoply tyu cak Uhex sisulutiun munityuw uw dseg\n\n
    465         Plloaso mako nuto siwuf cakso dodtos anr koop a
    466         cupy uf cak vux noaw yerw phuno. Whag schengos, uf efed, quiel
    467         ba mada su otrenzr.\n\nSwipontgwook proudgs hus yag su ba dagarmidad.
    468         Plasa maku noga wipont trenzsa schengos ent kaap zux comy.\n\nWipont trenz
    469         kipg naar mixent phona. Cak pwico siructiun
    470         ruous nust apoply tyu cak Uhex sisulutiun munityuw uw dseg\n\n
    471         Plloaso mako nuto siwuf cakso dodtos anr koop a
    472         cupy uf cak vux noaw yerw phuno. Whag schengos, uf efed, quiel
    473         ba mada su otrenzr.\n\nSwipontgwook proudgs hus yag su ba dagarmidad.
    474         Plasa maku noga wipont trenzsa schengos ent kaap zux comy.\n\nWipont trenz
    475         kipg naar mixent phona. Cak pwico siructiun
    476         ruous nust apoply tyu cak Uhex sisulutiun munityuw uw dseg\n\n
    477         Plloaso mako nuto siwuf cakso dodtos anr koop a
    478         cupy uf cak vux noaw yerw phuno. Whag schengos, uf efed, quiel
    479         ba mada su otrenzr.\n\nSwipontgwook proudgs hus yag su ba dagarmidad.
    480         Plasa maku noga wipont trenzsa schengos ent kaap zux comy.\n\nWipont trenz
    481         kipg naar mixent phona. Cak pwico siructiun
    482         ruous nust apoply tyu cak Uhex sisulutiun munityuw uw dseg\n\n
    483     </string>
    484     <string name="alert_dialog_ok">OK</string>
    485     <string name="alert_dialog_hide">Hide</string>
    486     <string name="alert_dialog_something">Something</string>
    487     <string name="alert_dialog_cancel">Cancel</string>
    488     <string name="alert_dialog_progress_text1">34<xliff:g id="percent">%</xliff:g></string>
    489     <string name="alert_dialog_progress_text2">145/305 KB</string>
    490 
    491     <string name="select_dialog">Header title</string>
    492     <string name="select_dialog_show">List dialog</string>
    493 
    494     <!-- ============================== -->
    495     <!--  app/menu examples strings     -->
    496     <!-- ============================== -->
    497 
    498     <string name="last_most_often">Last most often</string>
    499     <string name="middle_most_often">Middle most often</string>
    500     <string name="first_most_often">First most often</string>
    501     <string name="last_least_often">Last least often</string>
    502     <string name="middle_least_often">Middle least often</string>
    503     <string name="first_least_often">First least often</string>
    504     <string name="item_1">Item 1</string>
    505     <string name="item_2">Item 2</string>
    506     <string name="item_3">Item 3</string>
    507     <string name="browser_visibility">Browser visibility</string>
    508     <string name="browser_refresh">Refresh</string>
    509     <string name="browser_bookmark">Bookmark</string>
    510     <string name="email_visibility">Email visibility</string>
    511     <string name="email_reply">Reply</string>
    512     <string name="email_forward">Forward</string>
    513     <string name="jump">Jump</string>
    514     <string name="dive">Dive</string>
    515 
    516     <!-- ============================== -->
    517     <!--  app/menu examples strings     -->
    518     <!-- ============================== -->
    519 
    520     <string name="preferences_from_xml">Preference/1. Preferences from XML</string>
    521     <string name="launching_preferences">Preference/2. Launching preferences</string>
    522     <string name="preference_dependencies">Preference/3. Preference dependencies</string>
    523     <string name="default_values">Preference/4. Default values</string>
    524     <string name="preferences_from_code">Preference/5. Preferences from code</string>
    525     <string name="advanced_preferences">Preference/6. Advanced preferences</string>
    526     <string name="fragment_preferences">Preference/7. Fragment</string>
    527     <string name="preference_with_headers">Preference/8. Headers</string>
    528     <string name="switch_preference">Preference/9. Switch</string>
    529 
    530     <string name="launch_preference_activity">Launch PreferenceActivity</string>
    531     <string name="counter_value_is">The counter value is</string>
    532 
    533     <string name="inline_preferences">In-line preferences</string>
    534     <string name="dialog_based_preferences">Dialog-based preferences</string>
    535     <string name="launch_preferences">Launch preferences</string>
    536     <string name="preference_attributes">Preference attributes</string>
    537 
    538     <string name="title_checkbox_preference">Checkbox preference</string>
    539     <string name="summary_checkbox_preference">This is a checkbox</string>
    540 
    541     <string name="title_switch_preference">Switch preference</string>
    542     <string name="summary_switch_preference">This is a switch</string>
    543     <string name="summary_switch_preference_yes_no">This is a switch with custom text</string>
    544 
    545     <string name="title_yesno_preference">Yes or no preference</string>
    546     <string name="summary_yesno_preference">An example that uses a yes/no dialog</string>
    547     <string name="dialog_title_yesno_preference">Do you like bananas?</string>
    548 
    549     <string name="title_edittext_preference">Edit text preference</string>
    550     <string name="summary_edittext_preference">An example that uses an edit text dialog</string>
    551     <string name="dialog_title_edittext_preference">Enter your favorite animal</string>
    552 
    553     <string name="title_list_preference">List preference</string>
    554     <string name="summary_list_preference">An example that uses a list dialog</string>
    555     <string name="dialog_title_list_preference">Choose one</string>
    556 
    557     <string name="title_screen_preference">Screen preference</string>
    558     <string name="summary_screen_preference">Shows another screen of preferences</string>
    559 
    560     <string name="title_fragment_preference">Fragment preference</string>
    561     <string name="summary_fragment_preference">Shows another fragment of preferences</string>
    562 
    563     <string name="title_next_screen_toggle_preference">Toggle preference</string>
    564     <string name="summary_next_screen_toggle_preference">Preference that is on the next screen but same hierarchy</string>
    565 
    566     <string name="title_intent_preference">Intent preference</string>
    567     <string name="summary_intent_preference">Launches an Activity from an Intent</string>
    568 
    569     <string name="title_my_preference">My preference</string>
    570     <string name="summary_my_preference">This is a custom counter preference</string>
    571 
    572     <string name="title_advanced_toggle_preference">Haunted preference</string>
    573     <string name="summary_on_advanced_toggle_preference">I\'m on! :)</string>
    574     <string name="summary_off_advanced_toggle_preference">I\'m off! :(</string>
    575 
    576     <string name="title_parent_preference">Parent checkbox preference</string>
    577     <string name="summary_parent_preference">This is visually a parent</string>
    578     <string name="title_child_preference">Child checkbox preference</string>
    579     <string name="summary_child_preference">This is visually a child</string>
    580 
    581     <string name="example_preference_dependency">Example preference dependency</string>
    582     <string name="title_wifi">WiFi</string>
    583     <string name="title_wifi_settings">WiFi settings</string>
    584 
    585     <string name="default_value_list_preference">beta</string>
    586     <string name="default_value_edittext_preference">Default value</string>
    587 
    588     <!-- ============================== -->
    589     <!--  app/search examples strings  -->
    590     <!-- ============================== -->
    591 
    592     <string name="search_invoke">App/Search/Invoke Search</string>
    593     <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>
    594     <string name="search_sect_invocation">Ways to invoke search</string>
    595     <string name="label_onsearchrequested">onSearchRequested()</string>
    596     <string name="search_sect_options">Optional search parameters</string>
    597     <string name="label_search_query_prefill">"Prefill query: "</string>
    598     <string name="label_search_query_appdata">"App Data: "</string>
    599 
    600     <string name="search_query_results">App/Search/Query Search Results</string>
    601     <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>
    602     <string name="label_search_query">"Query String: "</string>
    603     <string name="label_search_appdata">"Query App Data: "</string>
    604     <string name="label_search_deliveredby">"Activity Method: "</string>
    605 
    606     <string name="search_label">Search Demo</string>
    607     <string name="search_hint">Search Demo Hint</string>
    608 
    609     <!-- ================================ -->
    610     <!--  app/shortcuts examples strings  -->
    611     <!-- ================================ -->
    612 
    613     <string name="shortcuts">App/Launcher Shortcuts</string>
    614     <string name="sample_shortcuts">ApiDemos</string>
    615     <string name="shortcut_name">Sample</string>
    616 
    617     <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>
    618     <string name="label_intent">Intent:</string>
    619 
    620     <!-- ============================== -->
    621     <!--  app/device policies examples strings     -->
    622     <!-- ============================== -->
    623 
    624     <!-- Manifest strings -->
    625     <string name="activity_sample_device_admin">App/Device Admin</string>
    626     <string name="sample_device_admin">Sample Device Admin</string>
    627     <string name="sample_device_admin_description">Sample code for writing
    628         a DeviceAdmin class.  This implementation provides a UI (in ApiDemos)
    629         for you to directly control what the DeviceAdmin does with the
    630         system.</string>
    631 
    632     <!-- Strings used in preference headers and preference definitions -->
    633     <string name="header_general">General</string>
    634     <string name="header_quality">Password quality</string>
    635     <string name="header_expiration">Password expiration</string>
    636     <string name="header_lock_wipe">Lock screen / Wipe</string>
    637     <string name="header_encryption">Encryption</string>
    638 
    639     <string name="enable_admin">Enable admin</string>
    640     <string name="device_capabilities_category">Device capabilities</string>
    641     <string name="disable_camera">Disable all device cameras</string>
    642     <string name="camera_disabled">Device cameras disabled</string>
    643     <string name="camera_enabled">Device cameras enabled</string>
    644     <string name="password_controls_category">Password controls</string>
    645     <string name="set_password_user">Set password (user)</string>
    646     <string name="set_password_api">Set password (via API)</string>
    647     <string name="set_password_api_dialog">Set screen lock password to</string>
    648     <string name="password_quality_category">Password quality</string>
    649     <string name="password_quality">Password quality</string>
    650     <string name="password_minimum_length">Minimum length </string>
    651     <string name="password_minimum_letters">Minimum letters</string>
    652     <string name="password_minimum_numeric">Minimum numeric</string>
    653     <string name="password_minimum_lower_case">Minimum lower case</string>
    654     <string name="password_minimum_upper_case">Minimum upper case</string>
    655     <string name="password_minimum_symbols">Minimum symbols</string>
    656     <string name="password_minimum_non_letter">Minimum non-letter</string>
    657     <string name="password_expiration_category">Password history / Expiration</string>
    658     <string name="password_history_depth">Password history depth</string>
    659     <string name="password_expiration_timeout">Password expiration timeout (minutes)</string>
    660     <string name="password_expiration_status">Password expiration status</string>
    661     <string name="lock_wipe_category">Lock screen / Wipe</string>
    662     <string name="maximum_lock_time">Max time to screen lock (minutes)</string>
    663     <string name="maximum_password_fails">Max password failures for local wipe</string>
    664     <string name="lock_screen">Lock screen now</string>
    665     <string name="wipe_data">Wipe data</string>
    666     <string name="wipe_data_summary">Wipe internal data, like a factory reset</string>
    667     <string name="wipe_all_data">Wipe all data</string>
    668     <string name="wipe_all_data_summary">Wipe internal data and external storage</string>
    669     <string name="encryption_category">Encryption</string>
    670     <string name="require_encryption">Require encryption</string>
    671     <string name="activate_encryption">Activate encryption</string>
    672 
    673     <!-- Strings used by DeviceAdminSample controller code -->
    674     <string name="password_sufficient">Current password meets policy requirements</string>
    675     <string name="password_insufficient">Current password does not meet policy requirements</string>
    676     <string name="monkey_reset_password">You can\'t reset my password, you are a monkey!</string>
    677     <string name="monkey_lock_screen">You can\'t lock my screen, you are a monkey!</string>
    678     <string name="monkey_encryption">You can\'t start encryption, you are a monkey!</string>
    679     <string name="monkey_wipe_data">You can\'t wipe my data, you are a monkey!</string>
    680     <string name="monkey_ok">I admit defeat</string>
    681     <string name="reset_password_warning">
    682         You have just reset your screen lock password to \"%1$s\""</string>
    683     <string name="reset_password_ok">Don\'t forget it</string>
    684     <string name="add_admin_extra_app_text">
    685         Additional text explaining why this needs to be added.</string>
    686     <string name="status_local_global">Local=%1$s / Global=%2$s</string>
    687     <string name="status_device_encryption">Device encryption status=%1$s</string>
    688     <string name="status_days_hours_minutes">%1$sd %2$sh %3$sm</string>
    689     <string name="number_format_warning">Bad value \"%1$s\""</string>
    690     <string name="wipe_warning_first">This will erase all of your data.  Are you sure?</string>
    691     <string name="wipe_warning_first_ok">Yes</string>
    692     <string name="wipe_warning_first_no">No</string>
    693     <string name="wipe_warning_second">This is not a test. This WILL erase all of your data!
    694         Are you really absolutely sure?</string>
    695     <string name="wipe_warning_second_full">This is not a test. This WILL erase all of your data,
    696         including external storage! Are you really absolutely sure?</string>
    697     <string name="wipe_warning_second_ok">BOOM!</string>
    698     <string name="wipe_warning_second_no">Oops, run away!</string>
    699     <string name="encryption_not_supported">Encryption is not supported on this device.</string>
    700     <string name="encryption_not_supported_ok">OK</string>
    701     <string name="encryption_status_unknown">unknown</string>
    702     <string name="encryption_status_unsupported">unsupported</string>
    703     <string name="encryption_status_inactive">inactive</string>
    704     <string name="encryption_status_activating">activating</string>
    705     <string name="encryption_status_active">active</string>
    706     <string name="expiration_status_none">None</string>
    707     <string name="expiration_status_past">Password expired %1$s ago</string>
    708     <string name="expiration_status_future">Password will expire %1$s from now</string>
    709 
    710     <!-- Strings used by the sample DeviceAdminReceiver -->
    711     <string name="admin_receiver_status">Sample Device Admin: %1$s</string>
    712     <string name="admin_receiver_status_enabled">enabled</string>
    713     <string name="admin_receiver_status_disabled">disabled</string>
    714     <string name="admin_receiver_status_pw_changed">pw changed</string>
    715     <string name="admin_receiver_status_pw_failed">pw failed</string>
    716     <string name="admin_receiver_status_pw_succeeded">pw succeeded</string>
    717     <string name="admin_receiver_status_disable_warning">
    718         This is an optional message to warn the user about disabling.</string>
    719 
    720     <!-- ============================== -->
    721     <!--  app/voice recognition examples strings  -->
    722     <!-- ============================== -->
    723 
    724     <string name="voice_recognition_prompt">This activity demonstrates the voice recognition APIs.</string>
    725     <string name="speak_button">Speak!</string>
    726     <string name="voice_recognition_results">Results:</string>
    727 
    728     <!-- ================================= -->
    729     <!--  app/action bar examples strings  -->
    730     <!-- ================================= -->
    731 
    732     <string name="action_bar_mechanics">App/Action Bar/Action Bar Mechanics</string>
    733     <string name="action_bar_usage">App/Action Bar/Action Bar Usage</string>
    734     <string name="action_bar_tabs">App/Action Bar/Action Bar Tabs</string>
    735     <string name="action_bar_settings_action_provider">App/Action Bar/Action Provider/Settings Action Provider</string>
    736     <string name="action_bar_share_action_provider">App/Action Bar/Action Provider/Share Action Provider</string>
    737     <string name="action_bar_settings_action_provider_no_handling">Handling in onOptionsItemSelected avoided</string>
    738 
    739     <string name="action_bar_search">Search</string>
    740     <string name="action_bar_add">Add</string>
    741     <string name="action_bar_edit">Edit</string>
    742     <string name="action_bar_share">Share</string>
    743     <string name="action_bar_sort">Sort</string>
    744     <string name="action_bar_sort_alpha">Alphabetically</string>
    745     <string name="action_bar_sort_size">By size</string>
    746     <string name="action_bar_share_with">Share with...</string>
    747     <string name="action_bar_settings">Settings</string>
    748 
    749     <string name="action_bar_display_options">App/Action Bar/Display Options</string>
    750     <string name="toggle_home_as_up">DISPLAY_HOME_AS_UP</string>
    751     <string name="toggle_show_home">DISPLAY_SHOW_HOME</string>
    752     <string name="toggle_use_logo">DISPLAY_USE_LOGO</string>
    753     <string name="toggle_show_title">DISPLAY_SHOW_TITLE</string>
    754     <string name="toggle_show_custom">DISPLAY_SHOW_CUSTOM</string>
    755     <string name="toggle_navigation">Navigation</string>
    756     <string name="cycle_custom_gravity">Cycle Custom View Gravity</string>
    757 
    758     <string name="display_options_custom_button">Custom View!</string>
    759     <string name="display_options_menu_item">Menu Item</string>
    760 
    761     <string name="btn_add_tab">Add new tab</string>
    762     <string name="btn_remove_tab">Remove last tab</string>
    763     <string name="btn_toggle_tabs">Toggle tab mode</string>
    764     <string name="btn_remove_all_tabs">Remove all tabs</string>
    765 
    766     <!-- ============================ -->
    767     <!--  graphics examples strings  -->
    768     <!-- ============================ -->
    769 
    770     <string name="hide_me">Hide Me!</string>
    771 
    772     <string name="density_title">Density: Unknown Screen</string>
    773     <string name="camera_alert">Device has only one camera!</string>
    774     <string name="switch_cam">Switch Camera</string>
    775 
    776     <!-- ============================ -->
    777     <!--  media examples strings  -->
    778     <!-- ============================ -->
    779 
    780     <string name="local_video">Play Video from Local File</string>
    781     <string name="stream_video">Play Streaming Video</string>
    782     <string name="local_audio">Play Audio from Local File</string>
    783     <string name="res_audio">Play Audio from Resources</string>
    784 
    785     <!-- ============================ -->
    786     <!--  views examples strings  -->
    787     <!-- ============================ -->
    788 
    789     <string name="linear_layout_8_vertical">Vertical</string>
    790     <string name="linear_layout_8_horizontal">Horizontal</string>
    791     <string name="linear_layout_8_top">Top</string>
    792     <string name="linear_layout_8_middle">Middle</string>
    793     <string name="linear_layout_8_bottom">Bottom</string>
    794     <string name="linear_layout_8_left">Left</string>
    795     <string name="linear_layout_8_center">Center</string>
    796     <string name="linear_layout_8_right">Right</string>
    797     <string name="linear_layout_10_from">From:</string>
    798     <string name="linear_layout_10_to">To:</string>
    799     <string name="radio_group_snack">Snack</string>
    800     <string name="radio_group_selection">"You have selected: "</string>
    801     <string name="radio_group_none">(none)</string>
    802     <string name="table_layout_7_quit">Quit</string>
    803     <string name="table_layout_7_ctrlq">Ctrl-Q</string>
    804     <string name="table_layout_8_quit">Quit</string>
    805     <string name="table_layout_8_ctrlq">Ctrl-Q</string>
    806 
    807     <string name="seekbar_tracking_on">Tracking on</string>
    808     <string name="seekbar_tracking_off">Tracking off</string>
    809     <string name="seekbar_from_touch">from touch</string>
    810 
    811     <string name="ratingbar_rating">Rating:</string>
    812 
    813     <string name="popup_menu_search">Search</string>
    814     <string name="popup_menu_add">Add</string>
    815     <string name="popup_menu_edit">Edit</string>
    816     <string name="popup_menu_share">Share</string>
    817     <string name="popup_menu_button">Make a Popup!</string>
    818 
    819     <string name="secure_view_description">
    820         This activity demonstrates a view that detects when it is potentially obscured
    821         by other windows.
    822     </string>
    823     <string name="secure_view_step1_heading">Click me first:</string>
    824     <string name="secure_view_step1_detail">
    825         Pop up a toast that will overlay and obscure this window in a poor attempt to fool
    826         you into clicking the big red buttons.  Don\'t do it!
    827     </string>
    828     <string name="secure_view_step2_heading">Unfiltered demo:</string>
    829     <string name="secure_view_step2_detail">
    830         This button does no filtering.  This button will still work as usual while the
    831         toast is visible and is spoofing the view.  Careful!
    832     </string>
    833     <string name="secure_view_step3_heading">Built-in filtering demo:</string>
    834     <string name="secure_view_step3_detail">
    835         This button uses the built-in secure touch filtering provided by the framework
    836         using the android:filterTouchesWhenObscured attribute.  This button will be inoperable
    837         while the toast is visible.
    838     </string>
    839     <string name="secure_view_step4_heading">Custom filtering demo:</string>
    840     <string name="secure_view_step4_detail">
    841         This button filters touches using a touch listener to examine the MotionEvent flags
    842         and warns the user.  This button will display a message if touched while the
    843         toast is visible.
    844     </string>
    845 
    846     <string name="secure_view_pop_toast">Pop toast</string>
    847     <string name="secure_view_button">Don\'t click!  It\'ll cost you!</string>
    848     <string name="secure_view_action_dialog_title">Oh no!</string>
    849     <string name="secure_view_action_dialog_dismiss">Oops...</string>
    850     <string name="secure_view_caught_dialog_title">Saved!</string>
    851     <string name="secure_view_caught_dialog_message">
    852         Careful!  There appears to be another window partly obscuring this window...
    853         Something unutterably HORRIBLE might have happened.
    854     </string>
    855     <string name="secure_view_caught_dialog_dismiss">Phew!</string>
    856 
    857     <string name="secure_view_overlay_description">A toast!  A toast!</string>
    858     <string name="secure_view_overlay_button1">Totally safe, trust me...</string>
    859     <string name="secure_view_overlay_button2">Clicky?</string>
    860     <string name="secure_view_overlay_button3">Think of the penguins!</string>
    861 
    862     <string name="split_touch_view_description">
    863         This activity demonstrates splitting touch events across multiple views
    864         within a view group.  Here we have two ListViews within a LinearLayout
    865         that has the attribute android:splitMotionEvents set to "true".
    866         Try scrolling both lists simultaneously using multiple fingers.
    867     </string>
    868     <string name="split_touch_view_cheese_toast">Do you have any %1$s?\n%2$s</string>
    869 
    870     <string name="searchview_hint">Find something</string>
    871     <string name="cheese_hunt_hint">Cheese hunt</string>
    872     <string name="open_search">Expand</string>
    873     <string name="close_search">Iconify</string>
    874 
    875     <string name="drag_explanation">
    876         Longpress on a dot to start a drag, then drop over another dot. The destination
    877         dot will append the drag\'s textual conversion to the EditText.
    878     </string>
    879 
    880     <string name="game_controller_input_description">
    881         This activity demonstrates how to process input events received from
    882         game controllers.  Please connect your game controller now and try
    883         moving the joysticks or pressing buttons.  If it helps, try to imagine
    884         that you are a lone space cowboy in hot pursuit of the aliens who kidnapped
    885         your favorite llama on their way back to Andromeda...
    886     </string>
    887     <string name="game_controller_input_heading_device">Input Device</string>
    888     <string name="game_controller_input_heading_axes">Axes</string>
    889     <string name="game_controller_input_heading_keys">Keys and Buttons</string>
    890     <string name="game_controller_input_label_device_name">Name</string>
    891     <string name="game_controller_input_key_pressed">Pressed</string>
    892     <string name="game_controller_input_key_released">Released</string>
    893 
    894     <string name="hover_description">
    895         This activity demonstrates how to handle hover events with View.onHoverEvent,
    896         ViewGroup.onInterceptHoverEvent, and View.setOnHoverListener.
    897     </string>
    898     <string name="hover_intercept_checkbox">Make container intercept hover events</string>
    899     <string name="hover_message_initial">Try using a mouse or touch pad to hover over views within this activity.</string>
    900     <string name="hover_message_entered_at">Entered the container at (%1$f,%2$f).</string>
    901     <string name="hover_message_moved_at">Moved within the container at (%1$f,%2$f).</string>
    902     <string name="hover_message_exited_at">Exited the container at (%1$f,%2$f).  The pointer may be inside the bounds of a child instead.</string>
    903     <string name="hover_intercept_message_initial">Try hovering over the button.</string>
    904     <string name="hover_intercept_message_intercepted">Intercepted hover event instead of sending it to the button.  Om nom nom!</string>
    905     <string name="hover_button">Hover Here</string>
    906 
    907     <!-- ============================== -->
    908     <!--  GoogleLogin examples strings  -->
    909     <!-- ============================== -->
    910     <string name="googlelogin_err">Use a better username and password, please.</string>
    911 
    912 
    913     <!-- ================================== -->
    914     <!--  initial strings for layout files  -->
    915     <!-- ================================== -->
    916     <string name="animation_1_instructions">Please enter your password:</string>
    917     <string name="animation_2_text_1">Freedom</string>
    918     <string name="animation_2_text_2">is nothing else but</string>
    919     <string name="animation_2_text_3">a chance to be better.</string>
    920     <string name="animation_2_text_4"> Albert Camus</string>
    921     <string name="animation_2_instructions">Select an animation:</string>
    922     <string name="animation_3_text">Interpolators</string>
    923     <string name="autocomplete_1_instructions">Type in the text field for auto-completion.</string>
    924     <string name="autocomplete_1_country">Country:</string>
    925     <string name="autocomplete_1_focus">Give me Focus</string>
    926     <string name="autocomplete_2_country">Country:</string>
    927     <string name="autocomplete_2_focus">Give me Focus</string>
    928     <string name="autocomplete_3_button_1">Scroll</string>
    929     <string name="autocomplete_3_button_2">Down</string>
    930     <string name="autocomplete_3_button_3">To</string>
    931     <string name="autocomplete_3_button_4">See</string>
    932     <string name="autocomplete_3_button_5">Auto</string>
    933     <string name="autocomplete_3_button_6">Complete</string>
    934     <string name="autocomplete_3_button_7">Text</string>
    935     <string name="autocomplete_3_button_8">View</string>
    936     <string name="autocomplete_3_button">Button</string>
    937     <string name="autocomplete_3_country">Country:</string>
    938     <string name="autocomplete_4_instructions">Type in the text field for auto-completion.</string>
    939     <string name="autocomplete_4_name">Name:</string>
    940     <string name="autocomplete_4_message">You must have contacts in your address book. Typing * will show all of your contacts.</string>
    941     <string name="autocomplete_5_instructions">Type in the text field for auto-completion.</string>
    942     <string name="autocomplete_5_hint">Typing * will show all of your contacts.</string>
    943     <string name="autocomplete_5_name">Name:</string>
    944     <string name="autocomplete_6_to">To:</string>
    945     <string name="autocomplete_6_to_hint">To</string>
    946     <string name="autocomplete_6_subject">Subject:</string>
    947     <string name="autocomplete_7_instructions">Type in the text field for auto-completion by words.</string>
    948     <string name="autocomplete_7_country">Country:</string>
    949     <string name="autocomplete_7_focus">Give me Focus</string>
    950     <string name="baseline_1_label">Label:</string>
    951     <string name="baseline_1_button">Button</string>
    952     <string name="baseline_1_bigger">Bigger</string>
    953     <string name="baseline_2_label">Label:</string>
    954     <string name="baseline_2_button">Button</string>
    955     <string name="baseline_2_bigger">Bigger</string>
    956     <string name="baseline_3_label">Label:</string>
    957     <string name="baseline_3_button">Button</string>
    958     <string name="baseline_3_bigger">Bigger</string>
    959     <string name="baseline_3_explanation">This example shows that baseline alignment has no effect when the layout gravity is set to center_vertical.</string>
    960     <string name="baseline_4_label">Label:</string>
    961     <string name="baseline_4_button">Button</string>
    962     <string name="baseline_4_bigger">Bigger</string>
    963     <string name="baseline_4_label_2">Label Again</string>
    964     <string name="baseline_4_label_3">Label Me</string>
    965     <string name="baseline_6_multi_line">This is a\nmulti-line field.</string>
    966     <string name="baseline_6_baseline">Baseline Aligned</string>
    967     <string name="baseline_7_fat">Big and bold</string>
    968     <string name="baseline_7_lean">Slim and slick.</string>
    969     <string name="baseline_nested_1_label">label</string>
    970     <string name="controls_1_save">Save</string>
    971     <string name="controls_1_checkbox_1">Checkbox 1</string>
    972     <string name="controls_1_checkbox_2">Checkbox 2</string>
    973     <string name="controls_1_radiobutton_1">RadioButton 1</string>
    974     <string name="controls_1_radiobutton_2">RadioButton 2</string>
    975     <string name="controls_1_star">Star</string>
    976     <string name="focus_1_message">Service not running</string>
    977     <string name="focus_1_placeholder">placeholder</string>
    978     <string name="focus_2_left">left</string>
    979     <string name="focus_2_jump">jump over me from L to R</string>
    980     <string name="focus_2_right">right</string>
    981     <string name="focus_3_left">left</string>
    982     <string name="focus_3_right">right</string>
    983     <string name="focus_3_top">top</string>
    984     <string name="focus_3_bottom">bottom</string>
    985     <string name="focus_5_button1">1</string>
    986     <string name="focus_5_button2">2</string>
    987     <string name="focus_5_button3">3</string>
    988     <string name="focus_5_button4">4</string>
    989     <string name="focus_5_button5">5</string>
    990     <string name="gallery_2_text">Testing</string>
    991     <string name="googlelogin_login">Login</string>
    992     <string name="googlelogin_bad_login">Bad Login</string>
    993     <string name="googlelogin_clear">Clear Credentials</string>
    994     <string name="googlelogin_user">Username:</string>
    995     <string name="layout_animation_name">Name:</string>
    996     <string name="layout_animation_lastname">Last Name:</string>
    997     <string name="layout_animation_phone">Phone:</string>
    998     <string name="layout_animation_address">Address:</string>
    999     <string name="linear_layout_1_top">This is the top view.</string>
   1000     <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>
   1001     <string name="linear_layout_1_bottom">This is the bottom view.</string>
   1002     <string name="linear_layout_2_top">This is the top view.</string>
   1003     <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>
   1004     <string name="linear_layout_2_bottom">This is the bottom view.</string>
   1005     <string name="linear_layout_3_top">This is the top view.</string>
   1006     <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>
   1007     <string name="linear_layout_3_bottom">This is the bottom view.</string>
   1008     <string name="linear_layout_5_instructions">Type Here:</string>
   1009     <string name="linear_layout_5_cancel">Cancel</string>
   1010     <string name="linear_layout_5_ok">OK</string>
   1011     <string name="linear_layout_6_one">One</string>
   1012     <string name="linear_layout_6_two">Two</string>
   1013     <string name="linear_layout_6_three">This is the third one</string>
   1014     <string name="linear_layout_6_four">Four</string>
   1015     <string name="linear_layout_7_small">Not much text</string>
   1016     <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>
   1017     <string name="linear_layout_7_wrap">wrap_content</string>
   1018     <string name="linear_layout_8_a">A</string>
   1019     <string name="linear_layout_8_b">B</string>
   1020     <string name="linear_layout_8_c">C</string>
   1021     <string name="linear_layout_9_button">Button</string>
   1022     <string name="link_text_auto"><b>text1: Various kinds
   1023       of data that will be auto-linked.</b>  In
   1024       this text are some things that are actionable.  For instance,
   1025       you can click on http://www.google.com and it will launch the
   1026       web browser.  You can click on google.com too.  If you
   1027       click on (415) 555-1212 it should dial the phone.  Or just write
   1028       foobar (a] example.com for an e-mail link.  If you have a URI like
   1029       http://www.example.com/lala/foobar@example.com you should get the
   1030       full link not the e-mail address.  Or you can put a location
   1031       like 1600 Amphitheatre Parkway, Mountain View, CA 94043.  To summarize:
   1032       https://www.google.com, or 650-253-0000, somebody (a] example.com,
   1033       or 9606 North MoPac Expressway, Suite 400, Austin, TX 78759.
   1034     </string>
   1035     <string name="link_text_manual"><b>text2: Explicit links using &lt;a&gt; markup.</b>
   1036       This has markup for a <a href="http://www.google.com">link</a> specified
   1037       via an &lt;a&gt; tag.  Use a \"tel:\" URL
   1038       to <a href="tel:4155551212">dial a phone number</a>.
   1039     </string>
   1040     <string name="list_8_new_photo">New photo</string>
   1041     <string name="list_8_clear_photos">Clear photos</string>
   1042     <string name="list_8_no_photos">No photos</string>
   1043     <string name="progressbar_1_plus">+</string>
   1044     <string name="progressbar_1_minus">-</string>
   1045     <string name="progressbar_1_default_progress">Default progress:</string>
   1046     <string name="progressbar_1_secondary_progress">Secondary progress:</string>
   1047     <string name="progressbar_3_progress">Show Progress</string>
   1048     <string name="progressbar_3_indeterminate">Show Indeterminate</string>
   1049     <string name="progressbar_3_indeterminate_no_title">Show Indeterminate No Title</string>
   1050     <string name="progressbar_4_toggle">Toggle Indeterminate</string>
   1051     <string name="radio_group_1_breakfast">Breakfast</string>
   1052     <string name="radio_group_1_lunch">Lunch</string>
   1053     <string name="radio_group_1_dinner">Dinner</string>
   1054     <string name="radio_group_1_all">All of them</string>
   1055     <string name="radio_group_1_selection">You have selected: (none)</string>
   1056     <string name="radio_group_1_clear">Clear</string>
   1057     <string name="receive_result_instructions">Press the button to get an activity result, which will be displayed here:</string>
   1058     <string name="receive_result_result">Get Result</string>
   1059     <string name="relative_layout_1_top">Top</string>
   1060     <string name="relative_layout_1_bottom">Bottom</string>
   1061     <string name="relative_layout_1_center">center_vertical</string>
   1062     <string name="relative_layout_2_instructions">Type here:</string>
   1063     <string name="relative_layout_2_ok">Ok</string>
   1064     <string name="relative_layout_2_cancel">Cancel</string>
   1065     <string name="scroll_view_1_text_1">Text View 1</string>
   1066     <string name="scroll_view_1_button_1">Button 1</string>
   1067     <string name="scroll_view_1_text_2">Text View 2</string>
   1068     <string name="scroll_view_1_button_2">Button 2</string>
   1069     <string name="scroll_view_1_text_3">Text View 3</string>
   1070     <string name="scroll_view_1_button_3">Button 3</string>
   1071     <string name="scroll_view_1_text_4">Text View 4</string>
   1072     <string name="scroll_view_1_button_4">Button 4</string>
   1073     <string name="scroll_view_1_text_5">Text View 5</string>
   1074     <string name="scroll_view_1_button_5">Button 5</string>
   1075     <string name="scroll_view_1_text_6">Text View 6</string>
   1076     <string name="scroll_view_1_button_6">Button 6</string>
   1077     <string name="scroll_view_2_text_1">Text View 1</string>
   1078     <string name="scroll_view_2_button_1">Button 1</string>
   1079     <string name="scrollbar_1_text">Lorem ipsum dolor sit amet.</string>
   1080     <string name="scrollbar_2_text">Lorem ipsum dolor sit amet.</string>
   1081     <string name="scrollbar_3_text">
   1082  The Android platform is a software stack for mobile devices including an
   1083  operating system, middleware and key applications. Developers can create
   1084  applications for the platform using the Android SDK. Applications are written
   1085  using the Java programming language and run on Dalvik, a custom virtual
   1086  machine designed for embedded use which runs on top of a Linux kernel.
   1087 
   1088  If you want to know how to develop applications for Android, you\'re in the
   1089  right place. This site provides a variety of documentation that will help you
   1090  learn about Android and develop mobile applications for the platform.
   1091 
   1092  An early look at the the Android SDK is also available. It includes sample
   1093  projects with source code, development tools, an emulator, and of course all
   1094  the libraries you\'ll need to build an Android application. What would it take
   1095  to build a better mobile phone?
   1096     </string>
   1097     <string name="spinner_1_color">Color:</string>
   1098     <string name="spinner_1_planet">Planet:</string>
   1099     <string name="spinner_1_color_prompt">Choose a color</string>
   1100     <string name="spinner_1_planet_prompt">Choose a planet</string>
   1101     <string name="table_layout_1_star">*</string>
   1102     <string name="table_layout_1_triple_star">***</string>
   1103     <string name="table_layout_1_open">Open\u2026</string>
   1104     <string name="table_layout_1_open_shortcut">Ctrl-O</string>
   1105     <string name="table_layout_1_save">Save As\u2026</string>
   1106     <string name="table_layout_1_save_shortcut">(Save Document)</string>
   1107     <string name="table_layout_1_quit">Quit Application</string>
   1108     <string name="table_layout_1_quit_shortcut">Ctrl-Shift-Q</string>
   1109     <string name="table_layout_2_path_1">~/path/to/file/to/open</string>
   1110     <string name="table_layout_2_path_2">~/.profile</string>
   1111     <string name="table_layout_2_open">Open</string>
   1112     <string name="table_layout_2_save">Save</string>
   1113     <string name="table_layout_2_save_all">Save All</string>
   1114     <string name="table_layout_3_star">*</string>
   1115     <string name="table_layout_3_triple_star">***</string>
   1116     <string name="table_layout_3_open">Open\u2026</string>
   1117     <string name="table_layout_3_open_shortcut">Ctrl-O</string>
   1118     <string name="table_layout_3_save">Save As\u2026</string>
   1119     <string name="table_layout_3_save_shortcut">(Save Document)</string>
   1120     <string name="table_layout_3_too_long">Too Long</string>
   1121     <string name="table_layout_3_quit">Quit Application</string>
   1122     <string name="table_layout_3_quit_shortcut">Ctrl-Shift-Q</string>
   1123     <string name="table_layout_4_open">Open\u2026</string>
   1124     <string name="table_layout_4_open_shortcut">Ctrl-O</string>
   1125     <string name="table_layout_4_save">Save As\u2026</string>
   1126     <string name="table_layout_4_save_shortcut">Ctrl-Shift-S</string>
   1127     <string name="table_layout_5_open">Open\u2026</string>
   1128     <string name="table_layout_5_open_shortcut">Ctrl-O</string>
   1129     <string name="table_layout_5_save">Save\u2026</string>
   1130     <string name="table_layout_5_save_shortcut">Ctrl-S</string>
   1131     <string name="table_layout_5_save_as">Save As\u2026</string>
   1132     <string name="table_layout_5_save_as_shortcut">Ctrl-Shift-S</string>
   1133     <string name="table_layout_5_import">Import\u2026</string>
   1134     <string name="table_layout_5_export">Export\u2026</string>
   1135     <string name="table_layout_5_export_shortcut">Ctrl-E</string>
   1136     <string name="table_layout_5_quit">Quit\u2026</string>
   1137     <string name="table_layout_6_x">X</string>
   1138     <string name="table_layout_6_open">Open\u2026</string>
   1139     <string name="table_layout_6_open_shortcut">Ctrl-O</string>
   1140     <string name="table_layout_6_save">Save\u2026</string>
   1141     <string name="table_layout_6_save_shortcut">Ctrl-S</string>
   1142     <string name="table_layout_6_save_as">Save As\u2026</string>
   1143     <string name="table_layout_6_save_as_shortcut">Ctrl-Shift-S</string>
   1144     <string name="table_layout_6_import">Import\u2026</string>
   1145     <string name="table_layout_6_export">Export\u2026</string>
   1146     <string name="table_layout_6_export_shortcut">Ctrl-E</string>
   1147     <string name="table_layout_6_quit">Quit\u2026</string>
   1148     <string name="table_layout_7_x">X</string>
   1149     <string name="table_layout_7_open">Open\u2026</string>
   1150     <string name="table_layout_7_open_shortcut">Ctrl-O</string>
   1151     <string name="table_layout_7_save">Save\u2026</string>
   1152     <string name="table_layout_7_save_shortcut">Ctrl-S</string>
   1153     <string name="table_layout_7_save_as">Save As\u2026</string>
   1154     <string name="table_layout_7_save_as_shortcut">Ctrl-Shift-S</string>
   1155     <string name="table_layout_7_import">Import\u2026</string>
   1156     <string name="table_layout_7_export">Export\u2026</string>
   1157     <string name="table_layout_7_export_shortcut">Ctrl-E</string>
   1158     <string name="table_layout_7_toggle_checkmarks">Toggle Checkmarks</string>
   1159     <string name="table_layout_7_toggle_shortcuts">Toggle Shortcuts</string>
   1160     <string name="table_layout_8_x">X</string>
   1161     <string name="table_layout_8_open">Open\u2026</string>
   1162     <string name="table_layout_8_open_shortcut">Ctrl-O</string>
   1163     <string name="table_layout_8_save">Save\u2026</string>
   1164     <string name="table_layout_8_save_shortcut">Ctrl-S</string>
   1165     <string name="table_layout_8_save_as">Save As\u2026</string>
   1166     <string name="table_layout_8_save_as_shortcut">Ctrl-Shift-S</string>
   1167     <string name="table_layout_8_import">Import\u2026</string>
   1168     <string name="table_layout_8_export">Export\u2026</string>
   1169     <string name="table_layout_8_export_shortcut">Ctrl-E</string>
   1170     <string name="table_layout_8_toggle_stretch">Toggle Stretch</string>
   1171     <string name="table_layout_9_open">Open\u2026</string>
   1172     <string name="table_layout_9_open_shortcut">Ctrl-O</string>
   1173     <string name="table_layout_9_save">Save\u2026</string>
   1174     <string name="table_layout_9_save_shortcut">Ctrl-S</string>
   1175     <string name="table_layout_9_save_as">Save As\u2026</string>
   1176     <string name="table_layout_9_save_as_shortcut">Ctrl-Shift-S</string>
   1177     <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>
   1178     <string name="table_layout_9_save_all_shortcut">Ctrl-E</string>
   1179     <string name="table_layout_9_import">Import\u2026</string>
   1180     <string name="table_layout_9_export">Export\u2026</string>
   1181     <string name="table_layout_9_export_shortcut">Ctrl-E</string>
   1182     <string name="table_layout_9_toggle_shrink">Toggle Shrink</string>
   1183     <string name="table_layout_10_user">User</string>
   1184     <string name="table_layout_10_password">Password</string>
   1185     <string name="table_layout_10_cancel">Cancel</string>
   1186     <string name="table_layout_10_login">Login</string>
   1187     <string name="table_layout_12_a">A</string>
   1188     <string name="table_layout_12_b">BB</string>
   1189     <string name="table_layout_12_c">CCCC</string>
   1190     <string name="table_layout_12_d">D</string>
   1191     <string name="table_layout_12_e">E</string>
   1192     <string name="table_layout_12_f">F</string>
   1193     <string name="table_layout_12_g">G</string>
   1194     <string name="table_layout_12_h">H</string>
   1195     <string name="visibility_1_view_1">View A</string>
   1196     <string name="visibility_1_view_2">View B</string>
   1197     <string name="visibility_1_view_3">View C</string>
   1198     <string name="visibility_1_vis">Vis</string>
   1199     <string name="visibility_1_invis">Invis</string>
   1200     <string name="visibility_1_gone">Gone</string>
   1201 
   1202 
   1203     <string name="google_login_username_text"></string>
   1204 
   1205     <string name="incoming_message_info_message_text">this is the text of a previous message.\nkthx. meet u for dinner. cul8r</string>
   1206 
   1207     <string name="incoming_message_view_message_text">This is the text of the posted notification.</string>
   1208     <string name="imcoming_message_view_message2_text">Did you notice that the status bar icon disappeared?</string>
   1209     <string name="imcoming_message_ticker_text">New text message: <xliff:g id="text">%0$s</xliff:g></string>
   1210 
   1211     <string name="log_text_box_1_do_nothing_text">Do nothing</string>
   1212     <string name="log_text_box_1_add_text">Add</string>
   1213 
   1214     <string name="notify_with_text_long_notify_text">Show Long Notification</string>
   1215     <string name="notify_with_text_short_notify_text">Show Short Notification</string>
   1216 
   1217     <string name="marquee_default">This use the default marquee animation limit of 3</string>
   1218     <string name="marquee_once">This will run the marquee animation once</string>
   1219     <string name="marquee_forever">This will run the marquee animation forever</string>
   1220 
   1221     <string name="table_layout_10_password_text"></string>
   1222     <string name="table_layout_10_username_text"></string>
   1223 
   1224     <string name="text_switcher_1_next_text">Next</string>
   1225 
   1226     <string name="date_widgets_example_dateDisplay_text"></string>
   1227     <string name="date_widgets_example_pickTime_text">change the time</string>
   1228     <string name="date_widgets_example_pickDate_text">change the date</string>
   1229 
   1230     <string name="buttons_1_normal">Normal</string>
   1231     <string name="buttons_1_right">Right</string>
   1232     <string name="buttons_1_small">Small</string>
   1233     <string name="buttons_1_small_right">S R</string>
   1234     <string name="buttons_1_small_left">S L</string>
   1235     <string name="buttons_1_small_up">S U</string>
   1236     <string name="buttons_1_small_down">S D</string>
   1237     <string name="buttons_1_toggle">Toggle</string>
   1238 
   1239     <string name="expandable_list_sample_action">Sample action</string>
   1240 
   1241     <string name="chronometer_start">Start</string>
   1242     <string name="chronometer_stop">Stop</string>
   1243     <string name="chronometer_reset">Reset</string>
   1244     <string name="chronometer_set_format">Set format string</string>
   1245     <string name="chronometer_clear_format">Clear format string</string>
   1246     <string name="chronometer_initial_format">Initial format: <xliff:g id="initial-format">%s</xliff:g></string>
   1247 
   1248     <!-- ============================ -->
   1249     <!--  vibrator examples strings  -->
   1250     <!-- ============================ -->
   1251 
   1252     <string name="vibrate">Vibrate</string>
   1253 
   1254 
   1255     <string name="image_view_large_normal">Large image at normal size</string>
   1256     <string name="image_view_large_at_most">Large image scaled to at most 50x50</string>
   1257     <string name="image_view_large_at_most_padded">Large image scaled to at most 70x70 with padding</string>
   1258     <string name="image_view_large_exactly_padded">Large image scaled to exactly 70x70 with padding</string>
   1259     <string name="image_view_small_normal">Small image at normal size</string>
   1260     <string name="image_view_small_at_most">Small image scaled to at most 50x50</string>
   1261     <string name="image_view_small_at_most_padded">Small image scaled to at most 70x70 with padding</string>
   1262     <string name="image_view_small_exactly_padded">Small image scaled to exactly 70x70 with padding</string>
   1263 
   1264     <!-- Shouldn't be localized -->
   1265     <string name="textColorPrimary">textColorPrimary</string>
   1266     <string name="textColorSecondary">textColorSecondary</string>
   1267     <string name="textColorTertiary">textColorTertiary</string>
   1268     <string name="listSeparatorTextViewStyle">listSeparatorTextViewStyle</string>
   1269 
   1270     <!-- ============================ -->
   1271     <!--  AppWidget examples strings     -->
   1272     <!-- ============================ -->
   1273 
   1274     <string name="appwidget_configure_instructions">This text will be shown before the date in our example widget.</string>
   1275     <string name="appwidget_prefix_default">Oh hai</string>
   1276     <string name="appwidget_text_format"><xliff:g id="prefix">%1$s</xliff:g>: <xliff:g id="time">%2$s</xliff:g></string>
   1277 
   1278     <!-- ============================ -->
   1279     <!--  SMS Messaging examples strings  -->
   1280     <!-- ============================ -->
   1281 
   1282     <string name="sms_warning">
   1283         WARNING: this demo can send actual text messages (one at a time), so be sure to
   1284         test with the Android emulator or have a text messaging plan with your carrier.
   1285     </string>
   1286     <string name="sms_enable_receiver">Enable SMS broadcast receiver</string>
   1287     <string name="sms_recipient_label">Recipient #</string>
   1288     <string name="sms_content_label">Message Body</string>
   1289     <string name="sms_send_message">Send</string>
   1290     <string name="sms_speak_string_format">Message from "%1$s": %2$s</string>
   1291     <string name="reply">Reply</string>
   1292     <string name="dismiss">Dismiss</string>
   1293 
   1294     <string name="share">Share</string>
   1295 
   1296     <!-- ============================ -->
   1297     <!--  Accessibility examples strings  -->
   1298     <!-- ============================ -->
   1299 
   1300     <string name="accessibility_service">Accessibility/Accessibility Service</string>
   1301     <string name="accessibility_service_label">ClockBack</string>
   1302     <string name="accessibility_service_instructions">
   1303         1. Enable TalkBack (Settings -> Accessibility -> TalkBack).
   1304         \n\n2. Enable Explore-by-Touch (Settings -> Accessibility -> Explore by Touch).
   1305         \n\n3. Touch explore the Clock application and the home screen.
   1306         \n\n4. Go to the Clock application and change the time of an alarm.
   1307         \n\n5. Enable ClockBack (Settings -> Accessibility -> ClockBack).
   1308         \n\n6. Go to the Clock application and change an alarm.
   1309         \n\n7. Set the ringer to vibration mode and change an alarm.
   1310         \n\n8. Set the ringer to muted mode and change an alarm.
   1311     </string>
   1312 
   1313     <string name="value_ringer_audible">Ringer audible</string>
   1314     <string name="value_ringer_vibrate">Ringer vibrate</string>
   1315     <string name="value_ringer_silent">Ringer silent</string>
   1316     <string name="template_screen_on">Screen on. Volume %1$s percent.</string>
   1317     <string name="template_screen_off">Screen off. Volume %1$s percent.</string>
   1318 
   1319     <string name="accessibility_query_window">Accessibility/Accessibility Node Querying</string>
   1320     <string name="accessibility_query_window_label">QueryBack</string>
   1321     <string name="accessibility_query_window_description">Task App Accessibility Service</string>
   1322     <string name="accessibility_query_window_instructions">
   1323         1. Enable QueryBack (Settings -> Accessibility -> QueryBack).
   1324         \n\n2. Enable Explore-by-Touch (Settings -> Accessibility -> Explore by Touch).
   1325         \n\n3. Touch explore the list.
   1326     </string>
   1327 
   1328     <string name="accessibility_custom_view">Accessibility/Custom View</string>
   1329     <string name="accessibility_custom_view_instructions">
   1330         1. Enable TalkBack (Settings -> Accessibility -> TalkBack).
   1331         \n\n2. Enable Explore-by-Touch (Settings -> Accessibility -> Explore by Touch).
   1332         \n\n3. Touch explore/poke the buttons.
   1333     </string>
   1334     <string name="accessibility_custom_on">On</string>
   1335     <string name="accessibility_custom_off">Off</string>
   1336 
   1337     <string name="task_name">Task</string>
   1338     <string name="task_complete_template">Task %1$s %2$s</string>
   1339     <string name="task_complete">is complete</string>
   1340     <string name="task_not_complete">is not complete</string>
   1341 
   1342   </resources>
   1343