1<?xml version="1.0" encoding="utf-8"?>
2<!--
3    Copyright (C) 2018 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 xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
18    <string name="app_label">Car notification manager</string>
19
20    <!-- The assistant action label to read aloud a message notification and optionally prompt user to respond [CHAR_LIMIT=20]-->
21    <string name="assist_action_play_label">Play</string>
22
23    <!-- The assistant action label to prompt user to respond [CHAR_LIMIT=20]-->
24    <string name="assist_action_reply_label">Reply</string>
25
26    <!-- The Action label displayed to mute a message notification [CHAR_LIMIT=20]-->
27    <string name="action_mute_short">Mute</string>
28
29    <!-- The Action label displayed to mute a message notification with more context [CHAR_LIMIT=35]-->
30    <string name="action_mute_long">Mute conversation</string>
31
32    <!-- The Action label displayed to unmute a message notification [CHAR_LIMIT=23]-->
33    <string name="action_unmute_short">Unmute</string>
34
35    <!-- The Action label displayed to unmute a message notification with more context [CHAR_LIMIT=35]-->
36    <string name="action_unmute_long">Unmute conversation</string>
37
38    <!-- The Action label displayed to reply with a canned response to a SMS message [CHAR_LIMIT=35]-->
39    <string name="action_canned_reply">\"I\'m driving right now.\"</string>
40
41    <!-- The canned reply SMS message, meant to be sent as a response to an incoming SMS. [CHAR_LIMIT=NONE] -->
42    <string name="canned_reply_message">I\'m driving right now.</string>
43
44    <!-- The toast that is shown when a canned reply message is sent successfully [CHAR_LIMIT=50]-->
45    <string name="toast_message_sent_success">Message sent successfully.</string>
46
47    <!-- The label for the NotificationListenerService [CHAR_LIMIT=NONE] -->
48    <string name="notification_service_label">Car Notification Listener Service</string>
49
50    <!-- The title displayed in notification center activity [CHAR_LIMIT=50] -->
51    <string name="notifications">Notification center</string>
52
53    <!-- The button text for clearing all notifications in notification center [CHAR_LIMIT=15] -->
54    <string name="clear_all">Clear all</string>
55
56    <!-- The string displayed at the end of a shortened text, e.g. "..." [CHAR_LIMIT=10] -->
57    <string name="ellipsized_string">&#8230;</string>
58
59    <!-- The separator for notification header text fields. -->
60    <string name="header_text_separator" translatable="false">&#160;&#8226;&#160;</string>
61
62    <!-- The label for the button that expands a grouped notification [CHAR_LIMIT=20] -->
63    <string name="show_more">Show more</string>
64
65    <!-- Notification header text displayed on top of the notification center shade [CHAR_LIMIT=25] -->
66    <string name="notification_header">Notifications</string>
67
68    <!-- Notification header text displayed on top of recent notifications [CHAR_LIMIT=20] -->
69    <string name="notification_recents">Recents</string>
70
71    <!-- Notification header text displayed on top of older notifications [CHAR_LIMIT=50] -->
72    <string name="notification_older">Older notifications</string>
73
74    <!-- Notification header text displayed on top of the notification center shade when there are no notification to display [CHAR_LIMIT=25] -->
75    <string name="empty_notification_header">No notifications</string>
76
77    <!-- The label for the button that collapses a grouped notification [CHAR_LIMIT=20] -->
78    <string name="collapse_group">Show less</string>
79
80    <!-- The label for the button that redirects to application that has more notifications to show. [CHAR_LIMIT=30] -->
81    <string name="show_more_from_app"><xliff:g id="count">%1$d</xliff:g>&#160;more&#160;from&#160;<xliff:g id="app">%2$s</xliff:g></string>
82
83    <!-- The label for the button that expands a grouped notification with an unread count [CHAR_LIMIT=25] -->
84    <string name="show_count_more">Show&#160;<xliff:g id="count">%d</xliff:g>&#160;more</string>
85
86    <!-- Text indicating the number of the unshown messages in a messaging style notification [CHAR_LIMIT=15] -->
87    <plurals name="message_unshown_count">
88        <item quantity="one"><xliff:g id="count">%d</xliff:g>&#160;more&#160;message</item>
89        <item quantity="other"><xliff:g id="count">%d</xliff:g>&#160;more&#160;messages</item>
90    </plurals>
91
92    <!-- Text indicating the number of new messages inside a messaging style notification during driving restriction [CHAR_LIMIT=30] -->
93    <plurals name="restricted_numbered_message_content">
94        <item quantity="one"><xliff:g id="count">%d</xliff:g>&#160;new&#160;message</item>
95        <item quantity="other"><xliff:g id="count">%d</xliff:g>&#160;new&#160;messages</item>
96    </plurals>
97
98    <!-- Text indicating that a long text message notification can be expanded to show more text from the message [CHAR_LIMIT=20] -->
99    <string name="see_more_message">See more</string>
100
101    <!-- Text indicating that a new message has been received inside a HUN with a messaging style notification during driving restriction [CHAR_LIMIT=30] -->
102    <string name="restricted_hun_message_content">New message</string>
103
104    <!-- The button text for managing notifications in settings [CHAR_LIMIT=20] -->
105    <string name="manage_text">Manage</string>
106
107    <!-- Notification Categories [DO NOT TRANSLATE] -->
108    <string name="category_car_emergency">car_emergency</string>
109    <string name="category_navigation">navigation</string>
110    <string name="category_call">call</string>
111    <string name="category_message">msg</string>
112
113    <!-- Package Names [DO NOT TRANSLATE] -->
114    <string name="pkg_car_dialer">com.android.car.dialer</string>
115
116    <!-- Text indicating the channel for sending notifications on HUN suppression [CHAR_LIMIT=50] -->
117    <string name="hun_suppression_channel_name">Heads Up suppression</string>
118    <!-- Text indicating the title for notification sent to indicate HUN suppression in park state [CHAR_LIMIT=58] -->
119    <string name="hun_suppression_notification_title_park">Keep up with the latest</string>
120    <!-- Text indicating the title for notification sent to indicate HUN suppression in drive state [CHAR_LIMIT=40] -->
121    <string name="hun_suppression_notification_title_drive">Focus on driving</string>
122    <!-- Text indicating the description for notification sent to indicate HUN suppression [CHAR_LIMIT=148] -->
123    <string name="hun_suppression_notification_description">Some new notifications are saved in the Notification Center</string>
124</resources>
125