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>
18    <string name="activity_sample_code">Support v4 Demos</string>
19
20    <string name="hello_world"><b>Hello, <i>World!</i></b></string>
21    <string name="alert_dialog_two_buttons_title">
22        Lorem ipsum dolor sit aie consectetur adipiscing\nPlloaso mako nuto
23        siwuf cakso dodtos anr koop.
24    </string>
25    <string name="alert_dialog_ok">OK</string>
26    <string name="alert_dialog_cancel">Cancel</string>
27
28    <string name="initial_text">Initial text.</string>
29
30    <string name="pick_result">Pick a result to send, or BACK to cancel.</string>
31    <string name="corky">Corky</string>
32    <string name="violet">Violet</string>
33    <string name="receive_result_instructions">Press the buttons below to get an activity or intent sender result, which will be displayed here:</string>
34    <string name="receive_result_result">Get Activity Result</string>
35    <string name="receive_result_intentsender">Get IntentSender Result</string>
36
37    <!-- Fragment API -->
38
39    <string name="fragment_alert_dialog_support">Fragment/Alert Dialog</string>
40
41    <string name="fragment_arguments_support">Fragment/Arguments</string>
42    <string name="fragment_arguments_msg">Demonstrates a fragment that takes arguments
43        as a Bundle at runtime (on the right) or from attributes in a layout (on the left).</string>
44    <string name="fragment_arguments_embedded">From Attributes</string>
45    <string name="fragment_arguments_embedded_land">Landscape Only</string>
46
47    <string name="fragment_custom_animation_support">Fragment/Custom Animation</string>
48
49    <string name="fragment_hide_show_support">Fragment/Hide and Show</string>
50
51    <string name="fragment_context_menu_support">Fragment/Context Menu</string>
52    <string name="fragment_context_menu_msg">Fragment populating a context
53            menu; long press the button to see.</string>
54    <string name="long_press">Long press me</string>
55
56    <string name="fragment_dialog_support">Fragment/Dialog</string>
57    <string name="show">Show</string>
58    <string name="hide">Hide</string>
59
60    <string name="fragment_dialog_or_activity_support">Fragment/Dialog or Activity</string>
61    <string name="fragment_dialog_or_activity_msg">Demonstrates the same fragment
62            being shown as a dialog and embedded inside of an activity.</string>
63    <string name="fragment_dialog_or_activity_inline">Fragment embedded inside
64            of the activity:</string>
65
66    <string name="fragment_layout_support">Fragment/Layout</string>
67
68    <string name="fragment_list_array_support">Fragment/List Array</string>
69
70    <string name="fragment_menu_support">Fragment/Menu</string>
71    <string name="fragment_menu_msg">Build menus from two fragments, allowing
72        you to hide them to remove them..</string>
73    <string name="fragment1menu">Show fragment 1 menu</string>
74    <string name="fragment2menu">Show fragment 2 menu</string>
75
76    <string name="fragment_nesting_tabs_support">Fragment/Nesting Tabs</string>
77
78    <string name="fragment_retain_instance_support">Fragment/Retain Instance</string>
79    <string name="fragment_retain_instance_msg">Current progress of retained fragment;
80    restarts if fragment is re-created.</string>
81    <string name="restart">Restart</string>
82
83    <string name="fragment_receive_result_support">Fragment/Receive Result</string>
84
85    <string name="fragment_stack_support">Fragment/Stack</string>
86    <string name="home">Go home</string>
87    <string name="new_fragment">Add new</string>
88    <string name="delete_fragment">Pop top</string>
89
90    <string name="fragment_tabs">Fragment/Tabs</string>
91
92    <string name="fragment_tabs_pager">Fragment/Tabs and Pager</string>
93
94    <string name="fragment_pager_support">Fragment/Pager</string>
95    <string name="first">First</string>
96    <string name="last">Last</string>
97
98    <string name="fragment_state_pager_support">Fragment/State Pager</string>
99
100    <string name="loader_cursor_support">Loader/Cursor</string>
101
102    <string name="loader_retained_support">Loader/Retained</string>
103
104    <string name="loader_custom_support">Loader/Custom</string>
105
106    <string name="loader_throttle_support">Loader/Throttle</string>
107
108    <string name="local_service_broadcaster">Content/Local Service Broadcaster</string>
109
110    <string name="local_service_broadcaster_msg">Demonstrates use of LocalBroadcastManager
111        to communicate from a Service to an Activity.</string>
112    <string name="start_service">Start Service</string>
113    <string name="stop_service">Stop Service</string>
114
115    <string name="simple_job_intent_controller">App/Simple JobIntentService</string>
116    <string name="simple_job_intent_controller_msg">Demonstrates use of JobIntentService.
117        The buttons enqueue work in to the service, which it will then process.</string>
118    <string name="schedule_work_a">Work A</string>
119    <string name="schedule_work_b">Work B</string>
120    <string name="schedule_work_c">Work C</string>
121
122    <string name="simple_wakeful_controller">Content/Simple WakefulReceiver</string>
123
124    <string name="simple_wakeful_controller_msg">Demonstrates use of WakefulBroadcastReceiver
125        to keep the device awake while dispatching a broadcast to a service.</string>
126    <string name="schedule_wakeful_alarm">Wakeup in 30 seconds</string>
127    <string name="simple_wakeful_scheduled">Alarm scheduled</string>
128
129    <!-- Accessibility API -->
130
131    <string name="accessibility_manager_title">Accessibility/Accessibility Manager</string>
132    <string name="accessibility_manager_instructions">
133        1. Enable TalkBack from Settings->Accessibility.
134        \n2. Go back to this activity.
135        \n3. Disable TalkBack from Settings->Accessibility.</string>
136    <string name="accessibility_manager_no_enabled_services">No enabled accessibility services or API level lower than ICS.</string>
137    <string name="accessibility_manager_enabled_service">ENABLED ACCESSIBILITY SERVICES:
138        \n\nService: %1$s\nFeedback: %2$s\nDescription: %3$s\nSettings: %4$s\n</string>
139    <string name="accessibility_manager_accessibility_state">Accessibility enabled: %1$s</string>
140
141    <string name="accessibility_delegate_title">Accessibility/Accessibility Delegate</string>
142    <string name="accessibility_delegate_instructions">
143        1. Enable TalkBack from Settings->Accessibility.
144        \n2. Go back to this activity.
145        \n3. Touch the button below.</string>
146    <string name="accessibility_delegate_button">Button</string>
147    <string name="accessibility_delegate_custom_text_added">Custom text added via an accessibility delegate.</string>
148
149    <string name="accessibility_roledescription_title">Accessibility/Role Description</string>
150    <string name="accessibility_roledescription_instructions">
151        1. Make sure that you have TalkBack 4.5 or later from the Play Store.
152        \n2. Enable TalkBack from Settings->Accessibility.
153        \n3. Go back to this activity.
154        \n4. Touch the two items below.
155        \n5. The first item has a role description, but the second item does not.</string>
156    <string name="accessibility_roledescription_item">Android rocks!</string>
157    <string name="accessibility_roledescription_role">Custom role description</string>
158    <string name="accessibility_roledescription_example">
159        One possible use of role description is to notate heading levels in structured text:</string>
160    <string name="accessibility_roledescription_h1_item">Milky Way Galaxy</string>
161    <string name="accessibility_roledescription_h2_item">Solar System</string>
162    <string name="accessibility_roledescription_h3_item">Planet Earth</string>
163    <string name="accessibility_roledescription_h1_role">heading level 1</string>
164    <string name="accessibility_roledescription_h2_role">heading level 2</string>
165    <string name="accessibility_roledescription_h3_role">heading level 3</string>
166    <string name="accessibility_roledescription_counterexample">
167        Do not set the role description for standard widgets.
168        \nThe following button has a role description, which is incorrect.
169        \nYou should let accessibility services determine feedback for standard widgets.</string>
170    <string name="accessibility_roledescription_button_item">Click me</string>
171    <string name="accessibility_roledescription_button_role">Button with incorrect role description</string>
172
173    <string name="share_text">Share some text</string>
174    <string name="share_file">Share a file</string>
175    <string name="share_multiple_file">Share multiple files</string>
176    <string name="sharing_support_title">App/ShareCompat Demo</string>
177    <string name="sharing_receiver_title">ShareCompat Receiver</string>
178
179    <string name="file_provider_example">Content/FileProvider example</string>
180
181    <!-- Text API -->
182
183    <string name="without_bidiformatter">Without BidiFormatter:</string>
184    <string name="with_bidiformatter">With BidiFormatter:</string>
185    <string name="bidiformatter_support_title">Text/BidiFormatter Demo</string>
186
187    <!-- TransportController -->
188
189    <string name="sample_transport_controller_activity">Media/TransportController</string>
190
191    <string name="view_pager_layout_support">View/View pager</string>
192
193    <string name="sliding_pane_layout_support">Widget/Sliding pane layout</string>
194
195    <string name="sliding_pane_layout_summary">This activity illustrates the use of sliding panes. The content pane may be slid to one side on narrow devices to reveal the left pane used to select content. Sliding panes can be used to fit a UI intended for wider screens in a smaller space. Tapping the Action Bar\'s Up button at the left side of the bar will navigate up in the hierarchy, represented by the left pane. If you rotate the device to landscape mode, on most devices you will see that both panes fit together side by side with no sliding necessary.</string>
196
197    <!-- MediaBrowserCompat Sample -->
198
199    <string name="media_browser_support">Media/MediaBrowserCompat Sample</string>
200    <string name="favorite">Favorite</string>
201    <string name="error_no_metadata">Unable to retrieve metadata.</string>
202    <string name="browse_genres">Genres</string>
203    <string name="browse_genre_subtitle">Songs by genre</string>
204    <string name="browse_musics_by_genre_subtitle">%1$s songs</string>
205    <string name="random_queue_title">Random music</string>
206    <string name="error_cannot_skip">Cannot skip</string>
207    <string name="error_loading_media">Error Loading Media</string>
208    <string name="play_item">Play item</string>
209    <string name="skip_previous">Skip to previous</string>
210    <string name="play_pause">play or pause</string>
211    <string name="skip_next">Skip to next</string>
212    <string name="no_search_results">No search results.</string>
213    <string name="label_pause">Pause</string>
214    <string name="label_play">Play</string>
215    <string name="label_previous">Previous</string>
216    <string name="label_next">Next</string>
217    <string name="error_empty_metadata">Empty metadata!</string>
218
219    <!-- ExploreByTouchHelper -->
220
221    <string name="explore_by_touch_helper_support">Widget/Explore by Touch helper</string>
222    <string name="sample_item_a">Sample item A</string>
223    <string name="sample_item_b">Sample item B</string>
224    <string name="sample_item_c">Sample item C</string>
225    <string name="sample_item_d">Sample item D</string>
226
227    <!-- ContentLoadingProgressBar -->
228    <string name="content_loading_progress_bar">Widget/Content Loading Progress Bar</string>
229
230    <!--  Swipe refresh -->
231    <string name="swipe_list">Widget/SwipeRefreshLayout ListView</string>
232    <string name="swipe_text">Widget/SwipeRefreshLayout TextView</string>
233    <string name="swipe_nested_sv">Widget/SwipeRefreshLayout NestedScrollView</string>
234
235    <string name="nested_scroll">Widget/Nested Scrolling</string>
236
237    <string name="nested_scroll_long_text">This is some long text. It just keeps going. Look at it. Scroll it. Scroll the nested version of it. This is some long text. It just keeps going. Look at it. Scroll it. Scroll the nested version of it. This is some long text. It just keeps going. Look at it. Scroll it. Scroll the nested version of it. This is some long text. It just keeps going. Look at it. Scroll it. Scroll the nested version of it. This is some long text. It just keeps going. Look at it. Scroll it. Scroll the nested version of it. This is some long text. It just keeps going. Look at it. Scroll it. Scroll the nested version of it. This is some long text. It just keeps going. Look at it. Scroll it. Scroll the nested version of it. This is some long text. It just keeps going. Look at it. Scroll it. Scroll the nested version of it. This is some long text. It just keeps going. Look at it. Scroll it. Scroll the nested version of it. This is some long text. It just keeps going. Look at it. Scroll it. Scroll the nested version of it.</string>
238    <string name="regular">regular</string>
239    <string name="round">round</string>
240
241    <string name="drawable_compat_no_tint">Not tint</string>
242    <string name="drawable_compat_color_tint">Color tint</string>
243    <string name="drawable_compat_color_list_tint">Color state list</string>
244</resources>
245