1<?xml version="1.0" encoding="utf-8"?>
2<!--
3  ~ Copyright 2019 The Android Open Source Project
4  ~
5  ~ Licensed under the Apache License, Version 2.0 (the "License");
6  ~ you may not use this file except in compliance with the License.
7  ~ You may obtain a copy of the License at
8  ~
9  ~      http://www.apache.org/licenses/LICENSE-2.0
10  ~
11  ~ Unless required by applicable law or agreed to in writing, software
12  ~ distributed under the License is distributed on an "AS IS" BASIS,
13  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  ~ See the License for the specific language governing permissions and
15  ~ limitations under the License.
16  -->
17<resources
18    xmlns:tools="http://schemas.android.com/tools"
19    tools:ignore="MissingTranslation">
20  <!-- Application name [CHAR LIMIT=30] -->
21  <string name="app_name" translatable="false">Paint Booth (Gerrit)</string>
22
23  <!-- Description of the CurrentActivityService. [CHAR_LIMIT=200] -->
24  <string name="current_activity_service_description">Shows the current activity</string>
25
26  <!-- Strings for Preference Samples -->
27  <eat-comment/>
28
29  <!-- Preferences page title [CHAR_LIMIT=13] -->
30  <string name="preferences_screen_title">Settings</string>
31
32  <string name="split_preference_screen_message">This area is used for some other content</string>
33
34  <!--This section is for basic attributes -->
35  <eat-comment/>
36  <!-- Category title for basic preferences [CHAR_LIMIT=26]-->
37  <string name="basic_preferences">Basic attributes</string>
38  <!-- Title of a basic preference [CHAR_LIMIT=10]-->
39  <string name="title_basic_preference">Preference</string>
40  <!-- Summary of a basic preference [CHAR_LIMIT=71]-->
41  <string name="summary_basic_preference">Simple preference with no special attributes</string>
42
43  <!-- Title of a preference with stylized text [CHAR_LIMIT=71]-->
44  <string name="title_stylish_preference"><b>Very</b> <i>stylish</i> <u>preference</u></string>
45  <!-- Summary of a preference with stylized text [CHAR_LIMIT=150]-->
46  <string name="summary_stylish_preference">Define style tags such as &lt;b&gt; in a string resource to customize a preference\'s text</string>
47
48  <!-- Title of an icon preference [CHAR_LIMIT=25]-->
49  <string name="title_icon_preference">Icon preference</string>
50  <!-- Summary of an icon preference [CHAR_LIMIT=103]-->
51  <string name="summary_icon_preference">Define a drawable to display it at the start of the preference</string>
52
53  <!-- Title of a single line title preference [CHAR_LIMIT=165]-->
54  <string name="title_single_line_title_preference">Single line title preference - no matter how long the title is it will never wrap to multiple lines</string>
55  <!-- Summary of a single line title preference [CHAR_LIMIT=108]-->
56  <string name="summary_single_line_title_preference">This title will be ellipsized instead of wrapping to another line</string>
57
58  <!-- Title of a single line title preference without summary [CHAR_LIMIT=28]-->
59  <string name="title_single_line_no_summary">Single line preference - no summary</string>
60
61  <!--This section is for preferences that contain a widget in their layout -->
62  <eat-comment/>
63  <!-- Category title for preferences with widgets [CHAR_LIMIT=12]-->
64  <string name="widgets">Widgets</string>
65
66  <!-- Title of a two action preference [CHAR_LIMIT=31]-->
67  <string name="title_twoaction_preference">TwoAction preference</string>
68  <!-- Summary of a two action preference [CHAR_LIMIT=70]-->
69  <string name="summary_twoaction_preference">A widget should be visible on the right</string>
70  <!-- Summary of the deprecated two action preference [CHAR_LIMIT=70]-->
71  <string name="summary_deprecated_twoaction_preference">The deprecated version of TwoActionPreference</string>
72
73  <!-- Title of a checkbox preference [CHAR_LIMIT=31]-->
74  <string name="title_checkbox_preference">Checkbox preference</string>
75  <!-- Summary of a checkbox preference [CHAR_LIMIT=78]-->
76  <string name="summary_checkbox_preference">Tap anywhere in this preference to toggle state</string>
77
78  <!-- Title of a switch preference [CHAR_LIMIT=28]-->
79  <string name="title_switch_preference">Switch preference</string>
80  <!-- Summary of a switch preference [CHAR_LIMIT=78]-->
81  <string name="summary_switch_preference">Tap anywhere in this preference to toggle state</string>
82
83  <!-- Title of a dropdown preference [CHAR_LIMIT=31]-->
84  <string name="title_dropdown_preference">Dropdown preference</string>
85
86  <!-- Title of a seekbar preference [CHAR_LIMIT=30]-->
87  <string name="title_seekbar_preference">Seekbar preference</string>
88  <!-- Summary of an seekbar preference [CHAR_LIMIT=32]-->
89  <string name="summary_seekbar_preference">Seekbar summary</string>
90
91  <!--This section is for preferences that launch a dialog to edit the preference -->
92  <eat-comment/>
93  <!-- Category title for preferences which launch dialogs [CHAR_LIMIT=12]-->
94  <string name="dialogs">Dialogs</string>
95
96  <!-- Title of an edittext preference [CHAR_LIMIT=32]-->
97  <string name="title_edittext_preference">EditText preference</string>
98  <!-- Title of the dialog for an edittext preference [CHAR_LIMIT=43]-->
99  <string name="dialog_title_edittext_preference">This title can be changed!</string>
100
101  <!-- Title of a list preference [CHAR_LIMIT=25]-->
102  <string name="title_list_preference">List preference</string>
103  <!-- Title of the dialog for a list preference [CHAR_LIMIT=30]-->
104  <string name="dialog_title_list_preference">Choose one option!</string>
105
106  <!-- Title of a multi-select list preference [CHAR_LIMIT=46]-->
107  <string name="title_multi_list_preference">Multi-select list preference</string>
108  <!-- Summary of a multi-select list preference [CHAR_LIMIT=71]-->
109  <string name="summary_multi_list_preference">Shows a dialog with multiple choice options</string>
110  <!-- Title of the dialog for a multi-select list preference [CHAR_LIMIT=33]-->
111  <string name="dialog_title_multi_list_preference">Choose some options!</string>
112
113  <!--This section is for advanced attributes-->
114  <eat-comment/>
115  <!-- Category title for preferences with advanced attributes [CHAR_LIMIT=32]-->
116  <string name="advanced_attributes">Advanced attributes</string>
117
118  <!-- Title of an expandable preference [CHAR_LIMIT=45]-->
119  <string name="title_expandable_preference">Expandable preference group</string>
120  <!-- Summary of an expandable preference [CHAR_LIMIT=131]-->
121  <string name="summary_expandable_preference">This group shows one item and collapses the rest into the advanced button below</string>
122
123  <!-- Title of a preference which launches an intent [CHAR_LIMIT=28]-->
124  <string name="title_intent_preference">Intent preference</string>
125  <!-- Summary of a preference which launches an intent [CHAR_LIMIT=51]-->
126  <string name="summary_intent_preference">Launches an intent when pressed</string>
127
128  <!-- Title of a parent preference [CHAR_LIMIT=28]-->
129  <string name="title_parent_preference">Parent preference</string>
130  <!-- Summary of a parent preference [CHAR_LIMIT=130]-->
131  <string name="summary_parent_preference">Toggling this preference will change the enabled state of the preference below</string>
132
133  <!-- Title of a child preference [CHAR_LIMIT=26]-->
134  <string name="title_child_preference">Child preference</string>
135  <!-- Summary of a child preference [CHAR_LIMIT=123]-->
136  <string name="summary_child_preference">The enabled state of this preference is controlled by the preference above</string>
137
138  <!-- Title of a switch preference with variable summaries [CHAR_LIMIT=45]-->
139  <string name="title_toggle_summary_preference">Variable summary preference</string>
140  <!-- Summary of a variable summary preference when the preference is on [CHAR_LIMIT=118]-->
141  <string name="summary_on_toggle_summary_preference">On! :) - the summary of this preference changes depending on its state</string>
142  <!-- Summary of a variable summary preference when the preference is off [CHAR_LIMIT=118]-->
143  <string name="summary_off_toggle_summary_preference">Off! :( - the summary of this preference changes depending on its state</string>
144
145  <!-- Title of a copyable preference [CHAR_LIMIT=31]-->
146  <string name="title_copyable_preference">Copyable preference</string>
147  <!-- Summary of a copyable preference [CHAR_LIMIT=81]-->
148  <string name="summary_copyable_preference">Long press on this preference to copy its summary</string>
149
150  <!-- Title of a Advanced preference [CHAR_LIMIT=13]-->
151  <string name="advanced_preference">Advanced</string>
152
153  <!-- Title of a Intent preference [CHAR_LIMIT=28]-->
154  <string name="intent_preference">Intent preference</string>
155
156  <!--This section is for toolbar attributes -->
157  <eat-comment/>
158
159  <!-- Text for change title button [CHAR_LIMIT=20]-->
160  <string name="toolbar_change_title">Change title</string>
161
162  <!-- Text for set xml button [CHAR_LIMIT=45]-->
163  <string name="toolbar_set_xml_resource">MenuItem: Set to XML source</string>
164
165  <!-- Text for add icon button [CHAR_LIMIT=30]-->
166  <string name="toolbar_add_icon">MenuItem: Add Icon</string>
167
168  <!-- Text for add untined icon button [CHAR_LIMIT=45]-->
169  <string name="toolbar_add_untined_icon">MenuItem: Add untinted icon</string>
170
171  <!-- Text for add overflow button [CHAR_LIMIT=36]-->
172  <string name="toolbar_add_overflow">Overflow MenuItem: Add Simple</string>
173
174  <!-- Text for add overflow button [CHAR_LIMIT=36]-->
175  <string name="toolbar_add_overflow_switch">Overflow MenuItem: Add switchable</string>
176
177  <!-- Text for add icon text overflow button [CHAR_LIMIT=45]-->
178  <string name="toolbar_add_icon_text_overflow">Overflow MenuItem: Add icon and text</string>
179
180  <!-- Text for add switch button [CHAR_LIMIT=33]-->
181  <string name="toolbar_add_switch">MenuItem: Add Switch</string>
182
183  <!-- Text for add text button [CHAR_LIMIT=30]-->
184  <string name="toolbar_add_text">MenuItem: Add text</string>
185
186  <!-- Text for add icon text button [CHAR_LIMIT=45]-->
187  <string name="toolbar_add_icon_text">MenuItem: Add icon and text</string>
188
189
190  <!-- Text for add text button [CHAR_LIMIT=30]-->
191  <string name="toolbar_add_bordered_text">MenuItem: Add bordered text</string>
192
193  <!-- Text for add icon text button [CHAR_LIMIT=45]-->
194  <string name="toolbar_add_bordered_icon_text">MenuItem: Add bordered icon and text</string>
195
196  <!-- Text for add untined icon and text button [CHAR_LIMIT=60]-->
197  <string name="toolbar_add_untinted_icon_and_text">MenuItem: Add untinted icon and text</string>
198
199  <!-- Text for add activatable button [CHAR_LIMIT=41]-->
200  <string name="toolbar_add_activatable">MenuItem: Add activatable</string>
201
202  <!-- Text for add activatable button [CHAR_LIMIT=36]-->
203  <string name="toolbar_add_morphing">MenuItem: Add morphing</string>
204
205  <!-- Text for toggle visibility button [CHAR_LIMIT=45]-->
206  <string name="toolbar_toggle_visibility">MenuItem: Toggle Visibility</string>
207
208  <!-- Text for toggle enable button [CHAR_LIMIT=40]-->
209  <string name="toolbar_toggle_enable">MenuItem: Toggle Enabled</string>
210
211  <!-- Text for toggle enable button [CHAR_LIMIT=49]-->
212  <string name="toolbar_toggle_perform_click">MenuItem: Call PerformClick()</string>
213
214  <!-- Text for toggle icon button [CHAR_LIMIT=35]-->
215  <string name="toolbar_toggle_icon">MenuItem: Toggle Icon</string>
216
217  <!-- Text for toggle show while search button [CHAR_LIMIT=61]-->
218  <string name="toolbar_toggle_show_while_search">MenuItem: Toggle show while searching</string>
219
220  <!-- Text for cycle nav button mode button [CHAR_LIMIT=35]-->
221  <string name="toolbar_cycle_nav_button">Cycle nav button mode</string>
222
223  <!-- Text for toggle logo button [CHAR_LIMIT=19]-->
224  <string name="toolbar_toggle_logo">Toggle logo</string>
225
226  <!-- Text for cycle state button [CHAR_LIMIT=20]-->
227  <string name="toolbar_cycle_state">Cycle state (Deprecated)</string>
228
229  <!-- Text for toggle search hint button [CHAR_LIMIT=30]-->
230  <string name="toolbar_toggle_search_hint">Toggle search hint</string>
231
232  <!-- Text for toggle background button [CHAR_LIMIT=30]-->
233  <string name="toolbar_toggle_background">Toggle background</string>
234
235  <!-- Text for add tab button [CHAR_LIMIT=12]-->
236  <string name="toolbar_add_tab">Add tab</string>
237
238  <!-- Text for add tab with custom text button [CHAR_LIMIT=40]-->
239  <string name="toolbar_add_tab_with_custom_text">Add tab with custom text</string>
240
241  <!-- Text for showing tabs in subpages [CHAR_LIMIT=50]-->
242  <string name="toolbar_show_tabs_in_subpage">Toggle showing tabs in subpages (Deprecated)</string>
243
244  <!-- Text for toggle search icon button [CHAR_LIMIT=30]-->
245  <string name="toolbar_toggle_search_icon">Toggle search icon</string>
246
247  <!--This section is for dialog attributes -->
248  <eat-comment/>
249
250  <!-- Text for show dialog button [CHAR_LIMIT=18]-->
251  <string name="dialog_show_dialog">Show Dialog</string>
252
253  <!-- Text for show dialog button [CHAR_LIMIT=30]-->
254  <string name="dialog_show_dialog_icon">Show Dialog with icon</string>
255
256  <!-- Text for Dialog with edit text box button [CHAR_LIMIT=50]-->
257  <string name="dialog_show_dialog_edit">Show Dialog with edit text box</string>
258
259  <!-- Text for show Dialog with only positive button button [CHAR_LIMIT=61]-->
260  <string name="dialog_show_dialog_only_positive">Show Dialog with only positive button</string>
261
262  <!-- Text for show Dialog With no button provided button [CHAR_LIMIT=60]-->
263  <string name="dialog_show_dialog_no_button">Show Dialog With no button provided</string>
264
265  <!-- Text for show Dialog With Checkbox button [CHAR_LIMIT=41]-->
266  <string name="dialog_show_dialog_checkbox">Show Dialog With Checkbox</string>
267
268  <!-- Text for show Dialog without title button [CHAR_LIMIT=41]-->
269  <string name="dialog_show_dialog_no_title">Show Dialog without title</string>
270
271  <!-- Text for show Toast button [CHAR_LIMIT=16]-->
272  <string name="dialog_show_toast">Show Toast</string>
273
274  <!-- Button that shows a dialog with a subtitle [CHAR_LIMIT=50]-->
275  <string name="dialog_show_subtitle">Show Dialog with title and subtitle</string>
276
277  <!-- Button that shows a dialog with a subtitle and icon [CHAR_LIMIT=50]-->
278  <string name="dialog_show_subtitle_and_icon">Show Dialog with title, subtitle, and icon</string>
279
280  <!-- Button that shows a dialog with a long title, subtitle and icon [CHAR_LIMIT=500]-->
281  <string name="dialog_show_long_subtitle_and_icon">Show Dialog with a long title, subtitle, and icon</string>
282
283  <!-- Text to show Dialog with single choice items-->
284  <string name="dialog_show_single_choice">Show with single choice items</string>
285
286  <!-- Text to show a dialog with single choice items and no default button [CHAR_LIMIT=200] -->
287  <string name="dialog_show_list_items_without_default_button">Show with single choice items and no default button</string>
288
289  <!-- Text to show a dialog with unfocusable items [CHAR_LIMIT=200] -->
290  <string name="dialog_show_unfocusable_list_items">Show with unfocusable items</string>
291
292  <!-- Text to show a dialog with an empty list [CHAR_LIMIT=200] -->
293  <string name="dialog_show_empty_list_items">Show with empty list</string>
294
295  <!-- Text to show a permission Dialog [CHAR_LIMIT=50] -->
296  <string name="dialog_show_permission_dialog">Show permission dialog</string>
297
298  <!-- Text to show a permission Dialog for multiple permissions [CHAR_LIMIT=50] -->
299  <string name="dialog_show_multi_permission_dialog">Show multiple permissions dialog</string>
300
301  <!-- Text on button to show a permission dialog asking for the users location. [CHAR_LIMIT=100] -->
302  <string name="dialog_show_foreground_permission_dialog">Show foreground permission dialog</string>
303
304  <!-- Text on button to show a permission dialog asking for the users location in the background [CHAR_LIMIT=100] -->
305  <string name="dialog_show_background_permission_dialog">Show background permission dialog</string>
306
307  <!--This section is for widget attributes -->
308  <eat-comment/>
309  <!-- Text for checkbox [CHAR_LIMIT=16]-->
310  <string name="widget_checkbox_text">I\'m a check box</string>
311  <!-- Text for switch [CHAR_LIMIT=25]-->
312  <string name="widget_switch_text">I\'m a switch</string>
313
314  <!-- ListItem related resources  -->
315  <string name="first_header">First header</string>
316  <string name="test_title">Test title</string>
317  <string name="test_body">Test body</string>
318  <string name="test_title_no_body">Test title with no body</string>
319  <string name="random_header">Random header</string>
320  <string name="header_with_body">with header body</string>
321  <string name="test_body_no_title">Test body with no title</string>
322  <string name="title_with_content_icon">Test Title — with content icon</string>
323  <string name="with_avatar_icon">With avatar icon.</string>
324  <string name="display_toast_on_click">Displays toast on click</string>
325  <string name="title_item_with_checkbox">Title — Item with checkbox</string>
326  <string name="toast_on_selection_changed">Will present toast on change of selection state.</string>
327  <string name="title_with_disabled_checkbox">Title — Checkbox that is disabled</string>
328  <string name="click_should_have_no_effect">Clicks should not have any affect</string>
329  <string name="body_item_with_switch">Body — Item with switch  — with click listener</string>
330  <string name="item_initially_checked">Item is initially checked</string>
331  <string name="title_item_with_radio_button">Title — Item with radio button</string>
332  <string name="item_mutually_exclusive_with_item_above">Item is mutually exclusive with item above</string>
333  <string name="item_with_chevron">Item with chevron</string>
334  <string name="random_body_text_with_action_divider">Random body text — with action divider</string>
335  <string name="null_supplement_icon">Null supplemental icon</string>
336  <string name="supplemental_icon_with_listener">Supplemental icon with listener</string>
337  <string name="test_data">Test data</string>
338
339  <!-- Dialog -->
340  <string name="standard_alert_dialog">Standard Alert Dialog</string>
341  <string name="my_message">My message</string>
342  <string name="alert_dialog_with_icon">Alert dialog with icon</string>
343  <string name="neutral">NEUTRAL</string>
344  <string name="ok">OK</string>
345  <string name="cancel">CANCEL</string>
346  <string name="custom_dialog_box">Custom Dialog Box</string>
347  <string name="edit_me_please">Edit me please</string>
348  <string name="no_title_message">I don\'t have a title.</string>
349  <string name="my_title">My Title!</string>
350  <string name="my_subtitle">My Subtitle!</string>
351  <string name="first_item">First item</string>
352  <string name="second_item">Second item</string>
353  <string name="third_item">Third item</string>
354  <string name="select_one_option">Select one option.</string>
355  <string name="select_one_option_at_a_time">Ony one option may be selected at a time</string>
356  <string name="long_title">This is a very long title. It should likely span across multiple lines or something. It shouldn\'t get cut off.</string>
357  <string name="long_subtitle">This is a very long subtitle. It should likely span across  multiple lines or something. It shouldn\'t get cut off.</string>
358
359</resources>
360