1<?xml version="1.0" encoding="utf-8"?>
2<!--
3 ~ Copyright (C) 2017 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  <!-- Title for incoming call type. [CHAR LIMIT=40] -->
19  <string name="type_incoming">Incoming call</string>
20
21  <!-- Title for incoming call which was transferred to another device. [CHAR LIMIT=60] -->
22  <string name="type_incoming_pulled">Incoming call transferred to another device</string>
23
24  <!-- Title for outgoing call type. [CHAR LIMIT=40] -->
25  <string name="type_outgoing">Outgoing call</string>
26
27  <!-- Title for outgoing call which was transferred to another device. [CHAR LIMIT=60] -->
28  <string name="type_outgoing_pulled">Outgoing call transferred to another device</string>
29
30  <!-- Title for missed call type. [CHAR LIMIT=40] -->
31  <string name="type_missed">Missed call</string>
32
33  <!-- Title for incoming video call in call details screen [CHAR LIMIT=60] -->
34  <string name="type_incoming_video">Incoming video call</string>
35
36  <!-- Title for incoming video call in call details screen which was transferred to another device.
37       [CHAR LIMIT=60] -->
38  <string name="type_incoming_video_pulled">Incoming video call transferred to another device</string>
39
40  <!-- Title for outgoing video call in call details screen [CHAR LIMIT=60] -->
41  <string name="type_outgoing_video">Outgoing video call</string>
42
43  <!-- Title for outgoing video call in call details screen which was transferred to another device.
44       [CHAR LIMIT=60] -->
45  <string name="type_outgoing_video_pulled">Outgoing video call transferred to another device</string>
46
47  <!-- Title for missed video call in call details screen [CHAR LIMIT=60] -->
48  <string name="type_missed_video">Missed video call</string>
49
50  <!-- Title for voicemail details screen -->
51  <string name="type_voicemail">Voicemail</string>
52
53  <!-- Title for rejected call type. [CHAR LIMIT=40] -->
54  <string name="type_rejected">Declined call</string>
55
56  <!-- Title for blocked call type. [CHAR LIMIT=40] -->
57  <string name="type_blocked">Blocked call</string>
58
59  <!-- An abbreviation for minutes. For example "1m" [CHAR LIMIT=NONE] -->
60  <string name="call_details_minutes_abbreviation">m</string>
61
62  <!-- An abbreviation for seconds. For example "28s" [CHAR LIMIT=NONE] -->
63  <string name="call_details_seconds_abbreviation">s</string>
64
65  <!-- A string to announce a call duration. For example, in english might say 2 minutes 15 seconds.
66       This translation may require the variables to be rearranged for grammars different than
67       english. [CHAR LIMIT=NONE] -->
68  <string name="a11y_call_duration_format">
69    <xliff:g id="minutes">%1$d</xliff:g> <xliff:g id="minutes_translation">%2$s</xliff:g> <xliff:g id="seconds">%3$d</xliff:g> <xliff:g id="seconds_translation">%4$s</xliff:g>
70  </string>
71
72  <!-- A string to announce a call duration. For example, in english might say 15 seconds.
73       This translation may require the variables to be rearranged for grammars different than
74       english. [CHAR LIMIT=NONE] -->
75  <string name="a11y_call_duration_short_format">
76    <xliff:g id="seconds">%1$d</xliff:g> <xliff:g id="seconds_translation">%2$s</xliff:g>
77  </string>
78
79  <!-- A pattern to define the layout of a call duration string. for example, in english might
80        say 2m 15s. Translation should only rearrange the inputs. minutes_translation and
81        seconds_translation should remain in \'quotes\'. [CHAR LIMIT=NONE] -->
82  <string name="call_duration_format_pattern">
83    <xliff:g id="minutes_special_character">%1$s</xliff:g>\'<xliff:g id="minutes_translation">%2$s</xliff:g>\' <xliff:g id="seconds_special_character">%3$s</xliff:g>\'<xliff:g id="seconds_translation">%4$s</xliff:g>\'
84  </string>
85
86  <!-- A pattern to define the layout of a call duration string. for example, in english might
87        say 2m 15s. Translation should only rearrange the inputs. seconds_translation should
88        remain in \'quotes\'. [CHAR LIMIT=NONE] -->
89  <string name="call_duration_short_format_pattern">
90    <xliff:g id="seconds_special_character">%1$s</xliff:g>\'<xliff:g id="seconds_translation">%2$s</xliff:g>\'
91  </string>
92
93  <!-- A full string for seconds (time). [CHAR LIMIT=NONE] -->
94  <plurals name="a11y_seconds">
95    <item quantity="one">second</item>
96    <item quantity="other">seconds</item>
97  </plurals>
98
99  <!-- A full string for minutes (time). [CHAR LIMIT=NONE] -->
100  <plurals name="a11y_minutes">
101    <item quantity="one">minute</item>
102    <item quantity="other">minutes</item>
103  </plurals>
104
105  <!-- Title for "answered elsewhere" call type. This will happen if a call was ringing
106       simultaneously on multiple devices, and the user answered it on a device other than the
107       current device. [CHAR LIMIT=60] -->
108  <string name="type_answered_elsewhere">Call answered on another device</string>
109
110  <!-- String describing the phone account the call was made on or to. This string will be used
111         in description_incoming_missed_call, description_incoming_answered_call, and
112         description_outgoing_call.
113         Note: AccessibilityServices uses this attribute to announce what the view represents.
114         [CHAR LIMIT=NONE] -->
115  <string name="description_phone_account">on <xliff:g example="SIM 1" id="phoneAccount">^1</xliff:g></string>
116
117  <!-- String describing the secondary line number the call was received via.
118       Note: AccessibilityServices use this attribute to announce what the view represents.
119       [CHAR LIMIT=NONE]-->
120  <string name="description_via_number">via <xliff:g example="(555) 555-5555" id="number">%1$s</xliff:g></string>
121
122  <!-- String describing the PhoneAccount and via number that a call was received on, if both are
123       visible.
124       Note: AccessibilityServices use this attribute to announce what the view represents.
125       [CHAR LIMIT=NONE]-->
126  <string name="description_via_number_phone_account">on <xliff:g example="SIM 1" id="phoneAccount">%1$s</xliff:g>, via <xliff:g example="(555) 555-5555" id="number">%2$s</xliff:g></string>
127
128  <!-- String used for displaying calls to the voicemail number in the call log -->
129  <string name="voicemail_string">Voicemail</string>
130
131  <!-- String to be displayed to indicate in the call log that a call just now occurred. -->
132  <string name="just_now">Just now</string>
133
134  <!-- Text to show in call log for a carrier video call. [CHAR LIMIT=31] -->
135  <string name="new_call_log_carrier_video">Carrier video</string>
136
137  <!-- Text to show in call log for a duo video call. [CHAR LIMIT=30] -->
138  <string name="new_call_log_duo_video">Duo video</string>
139
140  <!-- String used to display calls from unknown numbers in the call log.  [CHAR LIMIT=30] -->
141  <string name="new_call_log_unknown">Unknown</string>
142
143  <!-- String used to display calls from blocked numbers in the call log.   [CHAR LIMIT=30] -->
144  <string name="new_call_log_secondary_blocked">Blocked</string>
145
146  <!-- String used to display calls from spam numbers in the call log.   [CHAR LIMIT=30] -->
147  <string name="new_call_log_secondary_spam">Spam</string>
148
149  <!--
150    String introducing to a11y users a call log entry in which the latest call is a missed call.
151    [CHAR LIMIT=NONE]
152  -->
153  <plurals name="a11y_new_call_log_entry_missed_call">
154    <item quantity="one"><xliff:g example="1" id="count">^1</xliff:g> missed call from <xliff:g example="Jane Smith" id="primaryInfoForEntry">^2</xliff:g></item>
155    <item quantity="other"><xliff:g example="2" id="count">^1</xliff:g> calls, the latest is a missed call from <xliff:g example="Jane Smith" id="primaryInfoForEntry">^2</xliff:g></item>
156  </plurals>
157
158  <!--
159    String introducing to a11y users a call log entry in which the latest call is an answered call.
160    [CHAR LIMIT=NONE]
161  -->
162  <plurals name="a11y_new_call_log_entry_answered_call">
163    <item quantity="one"><xliff:g example="1" id="count">^1</xliff:g> answered call from <xliff:g example="Jane Smith" id="primaryInfoForEntry">^2</xliff:g></item>
164    <item quantity="other"><xliff:g example="2" id="count">^1</xliff:g> calls, the latest is an answered call from <xliff:g example="Jane Smith" id="primaryInfoForEntry">^2</xliff:g></item>
165  </plurals>
166
167  <!--
168    String introducing to a11y users a call log entry in which the latest call is an outgoing call.
169    [CHAR LIMIT=NONE]
170  -->
171  <plurals name="a11y_new_call_log_entry_outgoing_call">
172    <item quantity="one"><xliff:g example="1" id="count">^1</xliff:g> outgoing call to <xliff:g example="Jane Smith" id="primaryInfoForEntry">^2</xliff:g></item>
173    <item quantity="other"><xliff:g example="2" id="count">^1</xliff:g> calls, the latest is an outgoing call to <xliff:g example="Jane Smith" id="primaryInfoForEntry">^2</xliff:g></item>
174  </plurals>
175
176  <!--
177    String introducing to a11y users a call log entry in which the latest call is a blocked call.
178    [CHAR LIMIT=NONE]
179  -->
180  <plurals name="a11y_new_call_log_entry_blocked_call">
181    <item quantity="one"><xliff:g example="1" id="count">^1</xliff:g> blocked call from <xliff:g example="Jane Smith" id="primaryInfoForEntry">^2</xliff:g></item>
182    <item quantity="other"><xliff:g example="2" id="count">^1</xliff:g> calls, the latest is a blocked call from <xliff:g example="Jane Smith" id="primaryInfoForEntry">^2</xliff:g></item>
183  </plurals>
184
185
186  <!--
187    String describing to a11y users the phone account used to make/receive the latest call in a call
188    log entry.
189    [CHAR LIMIT=NONE]
190  -->
191  <string name="a11y_new_call_log_entry_phone_account">
192    on <xliff:g example="SIM 1" id="phoneAccount">^1</xliff:g>,
193    via <xliff:g example="(555) 555-5555" id="number">^2</xliff:g>
194  </string>
195
196  <!--
197    String template describing to a11y users a call log entry without phone account info.
198    [CHAR LIMIT=NONE]
199  -->
200  <string name="a11y_new_call_log_entry_full_description_without_phone_account_info">
201    <xliff:g example="A missed call from Jane Smith" id="primaryDescriptionForEntry">^1</xliff:g>, <xliff:g example="mobile, 30 minutes ago" id="secondaryDescriptionForEntry">^2</xliff:g>.
202  </string>
203
204  <!--
205    String template describing to a11y users a call log entry with phone account info.
206    [CHAR LIMIT=NONE]
207  -->
208  <string name="a11y_new_call_log_entry_full_description_with_phone_account_info">
209    <xliff:g example="A missed call from Jane Smith" id="primaryDescriptionForEntry">^1</xliff:g>, <xliff:g example="mobile, 30 minutes ago" id="secondaryDescriptionForEntry">^2</xliff:g>, <xliff:g example="on SIM 1, via (555) 555-5555">^3</xliff:g>.
210  </string>
211</resources>
212