1<!--
2  ~ Copyright (C) 2016 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="app_name">Sample Leanback Launcher</string>
19    <string name="apps_row_title">Apps</string>
20    <string name="games_row_title">Games</string>
21    <string name="settings_row_title">Settings</string>
22
23    <string name="network_settings_disconnected">Network Settings</string>
24
25    <string name="app_unavailable">Application unavailable</string>
26
27    <string name="search_click_to_speak">Click to speak</string>
28    <string name="search_click_to_type">Click to type</string>
29
30    <string name="now_playing_state_playing">Now Playing</string>
31    <string name="now_playing_state_paused">Paused</string>
32
33    <!-- Title of dialog which allows user to select which apps will be allowed to post recommendations -->
34    <string name="rec_prefs_title">Recommendations row</string>
35
36    <!-- Description of dialog which allows user to select which apps will be allowed to post recommendations -->
37    <string name="rec_prefs_wall_of_text">Selected sources may display recommendations on the home screen. To hide these, turn off recommendations from specific sources.</string>
38
39    <!-- Recommendations missing reasons -->
40    <string name="rec_missing_empty">No recommendations</string>
41    <string name="rec_missing_disabled">Some recommendation sources disabled</string>
42    <string name="rec_missing_preparing">Preparing recommendations</string>
43
44    <!-- Notifications -->
45    <plurals name="notifications_title">
46        <item quantity="one">%d notification</item>
47        <item quantity="other">%d notifications</item>
48    </plurals>
49
50    <!-- Title displayed at the top of the notifications panel.  -->
51    <string name="system_notifications">Notifications</string>
52
53    <!-- Text displayed in the notifications panel if there are no notifications.  -->
54    <string name="no_notifications_message">No notifications</string>
55
56    <!-- Format for a content description for a notification where the first argument is the notification title and the second is the notification text -->
57    <string name="notification_content_description_format"><xliff:g id="title" example="USB debugging connected">%1$s </xliff:g><xliff:g id="text" example="Select to disable USB debugging.">%2$s</xliff:g></string>
58</resources>
59