blob: f150d270534dc398de9976ae47b15b8c520a6d66 [file] [log] [blame]
The Android Open Source Project96c5af42009-03-03 19:32:22 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2008 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
Makoto Onuki16a60dc2010-07-16 15:10:00 -07007
The Android Open Source Project96c5af42009-03-03 19:32:22 -08008 http://www.apache.org/licenses/LICENSE-2.0
Makoto Onuki16a60dc2010-07-16 15:10:00 -07009
The Android Open Source Project96c5af42009-03-03 19:32:22 -080010 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">
Marc Blankf4192872012-06-28 10:40:46 -070018 <!-- Names of packages and authorities that are common to all apps
19 and read from resources -->
The Android Open Source Project96c5af42009-03-03 19:32:22 -080020
Todd Kennedy3d81e232011-05-05 10:50:10 -070021 <!-- Permissions label for reading attachments -->
Claudia de Veauxf314e2e2011-10-04 16:38:42 -070022 <string name="permission_read_attachment_label">Read email attachments</string>
Todd Kennedy3d81e232011-05-05 10:50:10 -070023 <!-- Permissions description for reading attachments -->
Marc Blankf4192872012-06-28 10:40:46 -070024 <string name="permission_read_attachment_desc">Allows the app to read your email
Todd Kennedy3d81e232011-05-05 10:50:10 -070025 attachments.</string>
26 <!-- Permissions label for accessing the main provider -->
Claudia de Veauxf314e2e2011-10-04 16:38:42 -070027 <string name="permission_access_provider_label">Access email provider data</string>
Todd Kennedy3d81e232011-05-05 10:50:10 -070028 <!-- Permissions description for accessing the main provider -->
Marc Blankf4192872012-06-28 10:40:46 -070029 <string name="permission_access_provider_desc">Allows the app to access your email
Claudia de Veauxf314e2e2011-10-04 16:38:42 -070030 database, including received messages, sent messages, usernames, and passwords.</string>
Todd Kennedy3d81e232011-05-05 10:50:10 -070031
The Android Open Source Project96c5af42009-03-03 19:32:22 -080032 <!-- Name of application on Home screen -->
33 <string name="app_name">Email</string>
The Android Open Source Project96c5af42009-03-03 19:32:22 -080034
35 <!-- Actions will be used as buttons and in menu items -->
36 <skip />
Makoto Onuki16a60dc2010-07-16 15:10:00 -070037
Tony Mantlercef6c192013-08-12 12:03:56 -070038 <!-- Menu item used to create a new quick response [CHAR_LIMIT=16] -->
Jorge Lugo5a3888f2011-06-01 10:09:26 -070039 <string name="create_action">Create new</string>
Paul Westbrook8f0f19c2014-09-10 01:55:20 -070040
Jorge Lugo4ca1ca82011-06-30 20:13:12 -070041 <!-- Message informing user when a list that would contain quick responses
42 is empty [CHAR_LIMIT=80] -->
Marc Blankf4192872012-06-28 10:40:46 -070043 <string name="quick_responses_empty_view">No quick responses.</string>
The Android Open Source Project96c5af42009-03-03 19:32:22 -080044 <!-- Menu item -->
45 <string name="account_settings_action">Account settings</string>
Andrew Stadlerfa52e6c2009-09-21 12:57:04 -070046 <!-- The next set of strings are used in local display and may be localized. -->
47 <!-- In the UI, the inbox will be displayed with this name -->
48 <string name="mailbox_name_display_inbox">Inbox</string>
49 <!-- In the UI, the outbox will be displayed with this name -->
50 <string name="mailbox_name_display_outbox">Outbox</string>
51 <!-- In the UI, the drafts will be displayed with this name -->
52 <string name="mailbox_name_display_drafts">Drafts</string>
53 <!-- In the UI, the trash will be displayed with this name -->
54 <string name="mailbox_name_display_trash">Trash</string>
55 <!-- In the UI, the sent will be displayed with this name -->
56 <string name="mailbox_name_display_sent">Sent</string>
57 <!-- In the UI, the junk will be displayed with this name -->
58 <string name="mailbox_name_display_junk">Junk</string>
Andrew Sappersteincdee4b02013-06-26 17:19:17 -070059 <!-- In the UI, the starred will be displayed with this name -->
60 <string name="mailbox_name_display_starred">Starred</string>
Todd Kennedy0f84ff22011-05-27 14:41:32 -070061 <!-- In the UI, the unread will be displayed with this name [CHAR LIMIT=15] -->
62 <string name="mailbox_name_display_unread">Unread</string>
The Android Open Source Project96c5af42009-03-03 19:32:22 -080063
Martin Hibdon51c65362014-08-28 11:00:08 -070064 <!-- Title of debug screen -->
65 <string name="debug_title">Debug</string>
Marc Blanke7e0a852009-10-05 12:56:07 -070066 <!-- Do Not Translate. Checkbox label, shown only on debug screen -->
Andrew Stadlercd095452010-11-01 16:15:15 -070067 <string name="debug_enable_debug_logging_label" translatable="false">
68 Enable extra debug logging?</string>
Marc Blanke7e0a852009-10-05 12:56:07 -070069 <!-- Do Not Translate. Checkbox label, shown only on debug screen -->
Marc Blankf4192872012-06-28 10:40:46 -070070 <string name="debug_enable_verbose_logging_label" translatable="false">
Martin Hibdon51c65362014-08-28 11:00:08 -070071 Enable exchange logging?</string>
Marc Blanke7e0a852009-10-05 12:56:07 -070072 <!-- Do Not Translate. Checkbox label, shown only on debug screen -->
Marc Blankf4192872012-06-28 10:40:46 -070073 <string name="debug_enable_file_logging_label" translatable="false">
74 Enable sd card logging?</string>
Makoto Onuki1a0b0092010-09-30 15:39:22 -070075 <!-- Do Not Translate. Button label, shown only on debug screen -->
Andrew Stadlercd095452010-11-01 16:15:15 -070076 <string name="debug_clear_webview_cache" translatable="false">
77 Clear WebView cache</string>
Martin Hibdonf987ef82014-09-24 11:40:14 -070078 <!-- Do Not Translate. Button label. Shown only on debug screen -->
79 <string name="debug_clear_migration_state" translatable="false">Clear migration state</string>
Andrew Stadlercd095452010-11-01 16:15:15 -070080 <!-- Do Not Translate. Checkbox label, shown on debug screen. -->
Makoto Onuki5907d392011-01-27 14:31:26 -080081 <string name="debug_force_one_minute_refresh_label" translatable="false">
82 Force 1-minute refresh for POP/IMAP</string>
Makoto Onuki19b2a7e2011-03-01 16:48:06 -080083 <!-- Do Not Translate. Checkbox label, shown on debug screen. -->
84 <string name="debug_enable_strict_mode_label" translatable="false">
85 Enable strict mode (with logging)</string>
The Android Open Source Project96c5af42009-03-03 19:32:22 -080086
Andrew Stadler2999db72009-07-14 11:44:07 -070087
Makoto Onuki730cc672010-10-25 17:51:56 -070088 <!-- Label shown in the account selector to select "Combined view", which contains
89 Combined Inbox, Combined Outbox, etc. [CHAR LIMIT=30] -->
90 <string name="mailbox_list_account_selector_combined_view">Combined view</string>
satok95993a42009-08-18 17:42:04 +090091
The Android Open Source Project96c5af42009-03-03 19:32:22 -080092 <!-- Header for forwarded original messages -->
Andrew Stadler5b90a9b2010-05-27 17:27:59 -070093 <string name="message_compose_fwd_header_fmt">\n\n-------- Original Message --------\nSubject: <xliff:g id="subject">%1$s</xliff:g>\nFrom: <xliff:g id="sender">%2$s</xliff:g>\nTo: <xliff:g id="to">%3$s</xliff:g>\nCC: <xliff:g id="cc">%4$s</xliff:g>\n\n</string>
Jorge Lugo5a3888f2011-06-01 10:09:26 -070094 <!-- Title for dialog containing list of quick responses that user may insert
95 into message body. [CHAR_LIMIT=30] -->
96 <string name="message_compose_insert_quick_response_list_title">Insert quick response</string>
Tony Mantlerc6953b72013-08-14 11:05:19 -070097 <!-- Menu item for inserting quick responses into email compose activity. [CHAR_LIMIT=30] -->
98 <string name="message_compose_insert_quick_response_menu_title">Insert quick response</string>
Marc Blank09fd4d02010-08-09 17:48:53 -070099 <!-- Toast upon using "send" when one or more attachments will need to be background loaded
100 [CHAR LIMIT=none]-->
Marc Blankf4192872012-06-28 10:40:46 -0700101 <string name="message_view_attachment_background_load">One or more attachments in your
Marc Blank09fd4d02010-08-09 17:48:53 -0700102 forwarded message will be downloaded prior to sending.</string>
Makoto Onukid1ee5b82010-11-29 16:06:10 -0800103
Andy Stadler98ea7102011-01-18 18:41:24 -0800104 <!-- String used in place of a message that could not be properly decoded (e.g. bad base64
105 data was received.) [CHAR LIMIT=none] -->
Claudia de Veauxf314e2e2011-10-04 16:38:42 -0700106 <string name="message_decode_error">There was an error while decoding the message.</string>
Andy Stadler98ea7102011-01-18 18:41:24 -0800107
Marc Blank09fd4d02010-08-09 17:48:53 -0700108 <!-- Notification ticker when a forwarded attachment couldn't be sent [CHAR LIMIT=none] -->
Claudia de Veauxf314e2e2011-10-04 16:38:42 -0700109 <string name="forward_download_failed_ticker">Couldn\'t forward one or more attachments.</string>
Andy Stadlerc6d344a2011-02-16 16:38:18 -0800110 <!-- Notification title when a forwarded attachment couldn't be sent [CHAR LIMIT=30]-->
111 <string name="forward_download_failed_title">Attachment not forwarded</string>
112
113 <!-- Notification ticker when email account authentication fails [CHAR LIMIT=none] -->
114 <string name="login_failed_ticker">
Marc Blankf4192872012-06-28 10:40:46 -0700115 <xliff:g id="account_name">%s</xliff:g> signin unsuccessful.</string>
Andy Stadlerc6d344a2011-02-16 16:38:18 -0800116 <!-- Notification title when email account authentication fails [CHAR LIMIT=30]-->
Claudia de Veauxe3b56df2011-10-13 15:01:06 -0700117 <string name="login_failed_title">Couldn\'t sign in</string>
The Android Open Source Projectfd09f802009-03-09 11:52:14 -0700118
Andy Stadlere6c65872010-11-16 16:40:34 -0800119 <!-- Title of screen when setting up new email account [CHAR LIMIT=45] -->
Andy Stadler79881642010-11-14 21:16:49 -0800120 <string name="account_setup_basics_title">Account setup</string>
Martin Hibdon58fbd2a2014-01-30 16:03:00 -0800121 <!-- Title of screen when trying to get oauth authentication -->
Martin Hibdonff3276a2014-02-20 16:08:46 -0800122 <string name="oauth_authentication_title">Requesting authorization</string>
Martin Hibdon58fbd2a2014-01-30 16:03:00 -0800123 <!-- Title of screen to choose with authentication to use -->
Martin Hibdon87de9022014-02-13 17:06:33 -0800124 <string name="sign_in_title">Sign in</string>
Martin Hibdon40baa962014-03-12 11:00:24 -0700125
Martin Hibdon8cb95732014-04-03 13:33:44 -0700126 <!-- Warning if there is a problem authenticating with oauth -->
127 <string name="oauth_error_description">Unable to authenticate</string>
Martin Hibdon40baa962014-03-12 11:00:24 -0700128 <!-- Warning label displayed when the email address or password are incorrect -->
129 <string name="password_warning_label">Email address or password are incorrect</string>
130 <!-- Label displayed to confirm what email address we are trying to validate -->
131 <string name="email_confirmation_label">Email address:</string>
Andy Stadler7fd78d82010-11-15 18:37:56 -0800132 <!-- Headline of screen when setting up new email account (large text over divider)
133 [CHAR LIMIT=none] -->
Andy Stadler79881642010-11-14 21:16:49 -0800134 <string name="account_setup_basics_headline">Email account</string>
Andrew Stadler4e4abc62009-07-21 11:06:14 -0700135 <!-- On "Set up email" screen, enthusiastic welcome message. -->
Marc Blankf4192872012-06-28 10:40:46 -0700136 <string name="accounts_welcome">You can set up your account in just a few steps.
Andrew Stadler8067b542009-09-20 16:54:38 -0700137 </string>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800138 <!-- On "Set up email" screen, hint for account email address text field -->
Andy Stadler79881642010-11-14 21:16:49 -0800139 <string name="account_setup_basics_email_label">Email address</string>
Martin Hibdon58fbd2a2014-01-30 16:03:00 -0800140
141 <!-- Label between OAuth and password authentication, indicating the user must do one or the other [CHAR LIMIT=40] -->
142 <string name="or_label">OR</string>
143 <!-- Label for signing in with Google using OAuth -->
144 <string name="sign_in_with_google">Sign in with Google</string>
Martin Hibdon2883e372014-04-22 14:23:22 -0700145 <!-- On "Set up email" screen, hint for account email password text field, should be uppercase where applicable -->
146 <string name="account_setup_basics_password_label">PASSWORD</string>
Martin Hibdon71909732014-02-18 14:38:56 -0800147 <!-- hint for account email password text field -->
Martin Hibdon2883e372014-04-22 14:23:22 -0700148 <string name="password_hint">Password</string>
Martin Hibdon9195a122014-01-21 16:57:06 -0800149 <!-- On the "Setup up email" screen, label indicating what service we are signed in with [CHAR LIMIT=40] -->
150 <string name="signed_in_with_service_label">Signed in with %s</string>
Martin Hibdon2883e372014-04-22 14:23:22 -0700151 <!-- Label for the authentication section, should be uppercase where applicable [CHAR LIMIT=20] -->
152 <string name="authentication_label">AUTHENTICATION</string>
Martin Hibdon9195a122014-01-21 16:57:06 -0800153 <!-- Label for the add authentication icon [CHAR LIMIT=40] -->
154 <string name="add_authentication_label">Add authentication</string>
155 <!-- Label for the add authentication icon [CHAR LIMIT=40] -->
156 <string name="clear_authentication_label">Clear authentication</string>
Tony Mantlerc9df9392014-04-04 15:07:18 -0700157 <!-- Button name on "Set up email" screen, with action underlined using html [CHAR LIMIT=20] -->
Martin Hibdon590c14b2014-04-21 12:36:21 -0700158 <string name="account_setup_basics_manual_setup_action">Manual setup</string>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800159 <!-- Toast when we can't build a URI from the given email & password -->
Andy Stadler79881642010-11-14 21:16:49 -0800160 <!-- Note, the error message in the toast is purposefully vague, because I *don't* know
161 exactly what's wrong. -->
162 <string name="account_setup_username_password_toast">
Claudia de Veauxf314e2e2011-10-04 16:38:42 -0700163 Type a valid email address and password.</string>
Andrew Stadlerda8836a2009-09-15 14:10:12 -0700164 <!-- Title of dialog shown when a duplicate account is created -->
Claudia de Veauxf314e2e2011-10-04 16:38:42 -0700165 <string name="account_duplicate_dlg_title">Duplicate account</string>
Andrew Stadlerda8836a2009-09-15 14:10:12 -0700166 <!-- Message of dialog shown when a duplicate account is created. The display name of
167 the duplicate account is displayed. -->
168 <string name="account_duplicate_dlg_message_fmt">
Claudia de Veauxf314e2e2011-10-04 16:38:42 -0700169 You\'re already using this username for the account \"<xliff:g id="duplicate">%s</xliff:g>\".
Andrew Stadlerda8836a2009-09-15 14:10:12 -0700170 </string>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800171
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800172 <!-- On check-settings screen, this is the initially-displayed message. -->
Andrew Stadler5b2424b2010-09-13 14:39:36 -0700173 <string name="account_setup_check_settings_retr_info_msg">
174 Retrieving account information\u2026</string>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800175 <!-- Appears on screen while system is checking incoming server settings -->
Andrew Stadler5b2424b2010-09-13 14:39:36 -0700176 <string name="account_setup_check_settings_check_incoming_msg">
Marc Blank20dfb412012-08-17 14:11:17 -0700177 Validating server settings\u2026</string>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800178 <!-- Appears on screen while system is checking outgoing server settings -->
Andrew Stadler5b2424b2010-09-13 14:39:36 -0700179 <string name="account_setup_check_settings_check_outgoing_msg">
Marc Blank20dfb412012-08-17 14:11:17 -0700180 Validating smtp settings\u2026</string>
Marc Blank6eac1c92012-09-03 16:44:33 -0700181 <!-- Appears on screen while system is creating the account -->
182 <string name="account_setup_creating_account_msg">
183 Creating account\u2026</string>
Andrew Stadler5b2424b2010-09-13 14:39:36 -0700184
Tony Mantler296cde52014-03-28 16:07:56 -0700185 <!-- Headline text that appears on "Confirm account type" screen [CHAR LIMIT=none] -->
186 <string name="account_setup_ab_headline">Confirm account type</string>
187 <!-- Explanatory text that appears on the "Confirm account type" screen [CHAR LIMIT=none] -->
188 <string name="account_setup_ab_instructions_format">You indicated <xliff:g id="email">%1$s</xliff:g> uses <xliff:g id="userProtocol">%2$s</xliff:g>, but the account may use <xliff:g id="providerProtocol">%3$s</xliff:g></string>
189
Andy Stadler7fd78d82010-11-15 18:37:56 -0800190 <!-- Text that appears on "Set up email" screen after successfully setting up an account
191 [CHAR LIMIT=none] -->
Andy Stadler17adb232010-11-14 23:47:52 -0800192 <string name="account_setup_names_headline">
Marc Blankf4192872012-06-28 10:40:46 -0700193 Your account is set up and email is on its way!</string>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800194 <!-- On "Set up email" screen, label of text field -->
Andy Stadler17adb232010-11-14 23:47:52 -0800195 <string name="account_setup_names_account_name_label">
196 Give this account a name (optional)</string>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800197 <!-- On "Set up email" screen, label of text field -->
Andy Stadler17adb232010-11-14 23:47:52 -0800198 <string name="account_setup_names_user_name_label">
199 Your name (displayed on outgoing messages)</string>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800200
Andy Stadlere6c65872010-11-16 16:40:34 -0800201 <!-- Headline for the the account type selector (IMAP or POP3 or EAS) [CHAR LIMIT=none] -->
Andy Stadler27c70e32010-11-14 21:37:41 -0800202 <string name="account_setup_account_type_headline">Account type</string>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800203 <!-- "Add new email account" screen, text that appears on screen -->
204 <string name="account_setup_account_type_instructions">What type of account is this?</string>
Jim Miller6d69fb72009-12-02 17:43:43 -0800205
Andy Stadlere6c65872010-11-16 16:40:34 -0800206 <!-- "Incoming server settings" screen, headline (text over divider) [CHAR LIMIT=none] -->
207 <string name="account_setup_incoming_headline">Incoming server settings</string>
Martin Hibdon2883e372014-04-22 14:23:22 -0700208 <!-- "Incoming server settings" screen, label for text field, should be uppercase where applicable -->
209 <string name="account_setup_incoming_username_label">USERNAME</string>
210 <!-- "Incoming server settings" screen, label for text field, should be uppercase where applicable -->
211 <string name="account_setup_incoming_password_label">PASSWORD</string>
Martin Hibdonfefedde2014-04-23 11:49:05 -0700212 <!-- "Incoming server settings" screen, label for text field -->
213 <string name="account_setup_password_subheading">Password</string>
Martin Hibdon2883e372014-04-22 14:23:22 -0700214 <!-- "Incoming server settings" screen, label for text field, should be uppercase where applicable -->
215 <string name="account_setup_incoming_server_label">SERVER</string>
216 <!-- "Incoming server settings" screen, label for text field, should be uppercase where applicable -->
217 <string name="account_setup_incoming_port_label">PORT</string>
218 <!-- "Incoming server settings" screen, label for pop-up menu, should be uppercase where applicable -->
219 <string name="account_setup_incoming_security_label">SECURITY TYPE</string>
Marc Blank8fe74e72011-08-16 15:31:57 -0700220 <!-- "Incoming server settings" screen, option for "Security type" pop-up menu indicating
221 the desire for an unencrypted session -->
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800222 <string name="account_setup_incoming_security_none_label">None</string>
Marc Blank8fe74e72011-08-16 15:31:57 -0700223 <!-- "Incoming server settings" screen, option for "Security type" pop-up menu indicating
224 the desire for an encrypted session on the selected port, accepting all SSL certificates -->
Andy Stadlere6c65872010-11-16 16:40:34 -0800225 <string name="account_setup_incoming_security_ssl_trust_certificates_label">
Marc Blank8fe74e72011-08-16 15:31:57 -0700226 SSL/TLS (Accept all certificates)</string>
227 <!-- "Incoming server settings" screen, option for "Security type" pop-up menu indicating
228 the desire for an encrypted session on the selected port, including SSL certificate
229 checks -->
230 <string name="account_setup_incoming_security_ssl_label">SSL/TLS</string>
231 <!-- "Incoming server settings" screen, option for "Security type" pop-up menu indicating
232 the desire for an encrypted session overlaid on a plain text session using the selected
233 port, accepting all SSL certificates -->
Andy Stadlere6c65872010-11-16 16:40:34 -0800234 <string name="account_setup_incoming_security_tls_trust_certificates_label">
Claudia de Veauxf314e2e2011-10-04 16:38:42 -0700235 STARTTLS (accept all certificates)</string>
Marc Blank8fe74e72011-08-16 15:31:57 -0700236 <!-- "Incoming server settings" screen, option for "Security type" pop-up menu indicating
237 the desire for an encrypted session overlaid on a plain text session on the selected
238 port, including SSL certificate checks -->
239 <string name="account_setup_incoming_security_tls_label">STARTTLS</string>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800240 <!-- "Incoming server settings" screen, label for pop-up menu -->
241 <string name="account_setup_incoming_delete_policy_label">Delete email from server</string>
242 <!-- "Incoming server settings" screen, options in pop-up menu for Delete email from server: -->
243 <!-- "Incoming server settings" screen, options in pop-up menu for Delete email from server: -->
244 <string name="account_setup_incoming_delete_policy_never_label">Never</string>
245 <!-- "Incoming server settings" screen, options in pop-up menu for Delete email from server: -->
Andy Stadlere6c65872010-11-16 16:40:34 -0800246 <string name="account_setup_incoming_delete_policy_delete_label">
247 When I delete from Inbox</string>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800248 <!-- "Incoming server settings" screen, label for setting IMAP path prefix: -->
249 <string name="account_setup_incoming_imap_path_prefix_label">IMAP path prefix</string>
250 <!-- "Incoming server settings" screen, hint for setting IMAP path prefix: -->
251 <string name="account_setup_incoming_imap_path_prefix_hint">Optional</string>
Andy Stadlere6c65872010-11-16 16:40:34 -0800252
Andy Stadlere6c65872010-11-16 16:40:34 -0800253 <!-- "Outgoing server settings" screen, headline (text over divider) [CHAR LIMIT=none] -->
254 <string name="account_setup_outgoing_headline">Outgoing server settings</string>
Martin Hibdon2883e372014-04-22 14:23:22 -0700255 <!-- On "Outgoing server settings" screen, label for text field, should be uppercase where applicable -->
256 <string name="account_setup_outgoing_smtp_server_label">SMTP SERVER</string>
257 <!-- On "Outgoing server settings" screen, label for text field, should be uppercase where applicable -->
258 <string name="account_setup_outgoing_port_label">PORT</string>
259 <!-- On "Outgoing server settings" screen, label for pop-up menu, should be uppercase where applicable -->
260 <string name="account_setup_outgoing_security_label">SECURITY TYPE</string>
261 <!-- On "Outgoing server settings" screen, label for check box, should be uppercase where applicable -->
Marc Blankf4192872012-06-28 10:40:46 -0700262 <string name="account_setup_outgoing_require_login_label">Require signin</string>
Martin Hibdon2883e372014-04-22 14:23:22 -0700263 <!-- On "Outgoing server settings" screen, label for text field, should be uppercase where applicable-->
264 <string name="account_setup_outgoing_username_label">USERNAME</string>
Makoto Onuki16a60dc2010-07-16 15:10:00 -0700265
Martin Hibdon2883e372014-04-22 14:23:22 -0700266 <!-- On "Exchange" setup screen, a heading title for the current client certificate, should be uppercase where applicable [CHAR LIMIT=50] -->
267 <string name="account_setup_exchange_certificate_title">CLIENT CERTIFICATE</string>
Ben Komalo7014f7d2011-06-13 18:14:33 -0700268 <!-- On "Exchange" setup screen, a button label to include a client certificate [CHAR LIMIT=35] -->
Ben Komalo51dc9592011-09-16 10:59:34 -0700269 <string name="account_setup_exchange_select_certificate">Select</string>
Eric Fischerec475fd2011-09-30 15:48:53 -0700270 <!-- On "Exchange" setup screen, a button label to include a client certificate [CHAR LIMIT=35] -->
271 <string name="account_setup_exchange_use_certificate">Use client certificate</string>
Ben Komalo7014f7d2011-06-13 18:14:33 -0700272 <!-- On "Exchange" setup screen, a button label to remove the currently used client certificate [CHAR LIMIT=35] -->
273 <string name="account_setup_exchange_remove_certificate">Remove</string>
Ben Komalo51dc9592011-09-16 10:59:34 -0700274 <!-- On "Exchange" setup screen, placeholder text to indicate no client
275 certificate is used [CHAR LIMIT=50] -->
276 <string name="account_setup_exchange_no_certificate">None</string>
Martin Hibdon2883e372014-04-22 14:23:22 -0700277 <!-- On "Exchange" setup screen, the exchange device-id label, should be uppercase where applicable [CHAR LIMIT=30] -->
278 <string name="account_setup_exchange_device_id_label">MOBILE DEVICE ID</string>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800279
Andy Stadler7fd78d82010-11-15 18:37:56 -0800280 <!-- In Account setup options screen, Activity headline [CHAR LIMIT=none] -->
281 <string name="account_setup_options_headline">Account options</string>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800282 <!-- In Account setup options screen, label for email check frequency selector -->
Martin Hibdon10267242014-04-23 13:57:40 -0700283 <string name="account_setup_options_mail_check_frequency_label">Sync frequency:</string>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800284 <!-- In Account setup options & Account Settings screens, label for email check frequency option -->
285 <string name="account_setup_options_mail_check_frequency_never">Never</string>
Andy Stadlerea6fea92009-04-07 17:35:13 -0700286 <!-- In Account setup options & Account Settings screens, label for email check frequency option -->
287 <string name="account_setup_options_mail_check_frequency_push">Automatic (Push)</string>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800288 <!-- In Account setup options & Account Settings screens, email check frequency option -->
289 <string name="account_setup_options_mail_check_frequency_5min">Every 5 minutes</string>
290 <!-- In Account setup options & Account Settings screens, email check frequency option -->
291 <string name="account_setup_options_mail_check_frequency_10min">Every 10 minutes</string>
292 <!-- In Account setup options & Account Settings screens, email check frequency option -->
293 <string name="account_setup_options_mail_check_frequency_15min">Every 15 minutes</string>
294 <!-- In Account setup options & Account Settings screens, email check frequency option -->
295 <string name="account_setup_options_mail_check_frequency_30min">Every 30 minutes</string>
296 <!-- In Account setup options & Account Settings screens, email check frequency option -->
297 <string name="account_setup_options_mail_check_frequency_1hour">Every hour</string>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800298 <!-- In Account setup options & Account Settings screens, check box for new-mail notification -->
Marc Blankf4192872012-06-28 10:40:46 -0700299 <string name="account_setup_options_notify_label">Notify me when email arrives</string>
Marc Blanke428f942009-09-16 13:54:03 -0700300 <!-- In Account setup options screen, optional check box to also sync contacts -->
Marc Blankf4192872012-06-28 10:40:46 -0700301 <string name="account_setup_options_sync_contacts_label">Sync contacts from this account</string>
Marc Blankf3fcb892009-10-28 18:12:51 -0700302 <!-- In Account setup options screen, optional check box to also sync contacts -->
Marc Blankf4192872012-06-28 10:40:46 -0700303 <string name="account_setup_options_sync_calendar_label">Sync calendar from this account</string>
Marc Blanke6cc6622010-07-08 10:08:47 -0700304 <!-- In Account setup options screen, check box to sync email -->
Marc Blankf4192872012-06-28 10:40:46 -0700305 <string name="account_setup_options_sync_email_label">Sync email from this account</string>
306 <!-- In Account setup options screen, check box to auto-download attachments [CHAR LIMIT=none] -->
Andy Stadler98ea7102011-01-18 18:41:24 -0800307 <string name="account_setup_options_background_attachments_label">
Claudia de Veauxe6c21562011-10-17 13:09:33 -0700308 Automatically download attachments when connected to Wi-Fi</string>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800309 <!-- Dialog title when "setup" could not finish -->
Claudia de Veauxf314e2e2011-10-04 16:38:42 -0700310 <string name="account_setup_failed_dlg_title">Couldn\'t finish</string>
Marc Blank335a7242011-05-04 12:31:31 -0700311 <!-- In Account setup options screen, label for email lookback selector -->
Martin Hibdon10267242014-04-23 13:57:40 -0700312 <string name="account_setup_options_mail_window_label">Sync emails from:</string>
Marc Blank335a7242011-05-04 12:31:31 -0700313 <!-- In account setup options & account settings screens (exchange), sync window length; this
314 implies loading a 'reasonable' number of messages [CHAR LIMIT=25] -->
315 <string name="account_setup_options_mail_window_auto">Automatic</string>
316 <!-- A sync window length setting (i.e. load messages this far back) [CHAR LIMIT=25] -->
Yu Ping Hufd969292013-08-20 15:53:32 -0700317 <string name="account_setup_options_mail_window_1day">Last day</string>
Marc Blank335a7242011-05-04 12:31:31 -0700318 <!-- A sync window length setting (i.e. load messages this far back) [CHAR LIMIT=25] -->
Yu Ping Hufd969292013-08-20 15:53:32 -0700319 <string name="account_setup_options_mail_window_3days">Last three days</string>
Marc Blank335a7242011-05-04 12:31:31 -0700320 <!-- A sync window length setting (i.e. load messages this far back) [CHAR LIMIT=25] -->
Yu Ping Hufd969292013-08-20 15:53:32 -0700321 <string name="account_setup_options_mail_window_1week">Last week</string>
Marc Blank335a7242011-05-04 12:31:31 -0700322 <!-- A sync window length setting (i.e. load messages this far back) [CHAR LIMIT=25] -->
Yu Ping Hufd969292013-08-20 15:53:32 -0700323 <string name="account_setup_options_mail_window_2weeks">Last two weeks</string>
Marc Blank335a7242011-05-04 12:31:31 -0700324 <!-- A sync window length setting (i.e. load messages this far back) [CHAR LIMIT=25] -->
Yu Ping Hufd969292013-08-20 15:53:32 -0700325 <string name="account_setup_options_mail_window_1month">Last month</string>
Marc Blank335a7242011-05-04 12:31:31 -0700326 <!-- A sync window length setting (i.e. load messages this far back) [CHAR LIMIT=25] -->
327 <string name="account_setup_options_mail_window_all">All</string>
Yu Ping Hu9e8a6f82013-08-23 16:38:01 -0700328 <!-- Per-mailbox sync window setting. This means "use the account's sync window setting" [CHAR LIMIT=40] -->
Yu Ping Hufd969292013-08-20 15:53:32 -0700329 <string name="account_setup_options_mail_window_default">Use account default</string>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800330
331 <!-- "Setup could not finish" dialog text; e.g., Username or password incorrect -->
Marc Blankf4192872012-06-28 10:40:46 -0700332 <string name="account_setup_failed_dlg_auth_message">Username or password is incorrect.</string>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800333
Tony Mantler06e140e2013-11-05 15:37:53 -0800334 <!-- Account setup autodiscover auth failure dialog title. This is shown when autodiscover hits
335 an "access denied" server error, which could imply incorrect username/password or that no
336 autodiscover service has been configured for the domain [CHAR LIMIT=40] -->
337 <string name="account_setup_autodiscover_dlg_authfail_title">Problem with account setup</string>
338 <!-- Account setup autodiscover auth failure dialog message. This is shown when autodiscover hits
339 an "access denied" server error, which could imply incorrect username/password or that no
340 autodiscover service has been configured for the domain [CHAR LIMIT=NONE] -->
341 <string name="account_setup_autodiscover_dlg_authfail_message">Confirm username, password, and account settings are correct.</string>
342
Ben Komalof4dbbf12011-06-15 17:54:45 -0700343 <!-- An error message presented to the user when the server's identity
344 cannot be established or trusted [CHAR LIMIT=NONE] -->
345 <string name="account_setup_failed_dlg_certificate_message"
Claudia de Veauxf314e2e2011-10-04 16:38:42 -0700346 >Can\'t safely connect to server.</string>
Ben Komalof4dbbf12011-06-15 17:54:45 -0700347 <!-- An error message presented to the user when the server's identity
348 cannot be established or trusted [CHAR LIMIT=NONE] -->
349 <string name="account_setup_failed_dlg_certificate_message_fmt"
Claudia de Veauxf314e2e2011-10-04 16:38:42 -0700350 >Can\'t safely connect to server.\n(<xliff:g id="error">%s</xliff:g>)</string>
Ben Komalof4dbbf12011-06-15 17:54:45 -0700351 <!-- An error message presented to the user when the server requires a
352 client certificate to connect [CHAR LIMIT=NONE] -->
Ben Komalocb24e512011-06-16 13:37:10 -0700353 <string name="account_setup_failed_certificate_required"
Marc Blankf4192872012-06-28 10:40:46 -0700354 >A client certificate is required. Do you want to connect to the server with a client certificate?</string>
Ben Komalocb24e512011-06-16 13:37:10 -0700355 <!-- An error message presented to the user when the certificate they
356 specified for connecting to a server is inaccessible [CHAR LIMIT=NONE] -->
357 <string name="account_setup_failed_certificate_inaccessible"
Marc Blankf4192872012-06-28 10:40:46 -0700358 >The certificate is invalid or inaccessible.</string>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800359
Marc Blank14a5d8d2010-09-30 09:44:36 -0700360 <!-- Dialog text for ambiguous setup failure; server error/bad credentials [CHAR LIMIT=none] -->
361 <string name="account_setup_failed_check_credentials_message">
Marc Blankf4192872012-06-28 10:40:46 -0700362 The server responded with an error. Check your username and password, then try again.</string>
Marc Blank14a5d8d2010-09-30 09:44:36 -0700363
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800364 <!-- "Setup could not finish" dialog text; e.g., Cannot connect to server -->
Claudia de Veauxf314e2e2011-10-04 16:38:42 -0700365 <string name="account_setup_failed_dlg_server_message">Can\'t connect to server.</string>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800366 <!-- "Setup could not finish" dialog text; e.g., Cannot connect to server\n(Connection timed out) -->
Claudia de Veauxf314e2e2011-10-04 16:38:42 -0700367 <string name="account_setup_failed_dlg_server_message_fmt">Can\'t connect to server.\n(<xliff:g id="error">%s</xliff:g>)</string>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800368
369 <!-- Additional diagnostic text when TLS was required but the server doesn't support it -->
370 <string name="account_setup_failed_tls_required">TLS required but not supported by server.</string>
371 <!-- Additional diagnostic text when server does not support any of our authentication methods -->
Claudia de Veauxf314e2e2011-10-04 16:38:42 -0700372 <string name="account_setup_failed_auth_required">Authentication methods aren\'t supported by server.</string>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800373 <!-- Additional diagnostic text when server connection failed due to security error -->
Claudia de Veauxf314e2e2011-10-04 16:38:42 -0700374 <string name="account_setup_failed_security">Couldn\'t open connection to server due to security error.</string>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800375 <!-- Additional diagnostic text when server connection failed due to io error (connection) -->
Claudia de Veauxf314e2e2011-10-04 16:38:42 -0700376 <string name="account_setup_failed_ioerror">Couldn\'t open connection to server.</string>
Marc Blank6d51b7e2010-09-06 14:46:15 -0700377 <!-- Additional diagnostic text when server connection failed due to our inability to support a
Marc Blanka8ad80e2010-09-24 11:01:07 -0700378 required EAS protocol version [CHAR LIMIT=none] -->
Marc Blank6d51b7e2010-09-06 14:46:15 -0700379 <string name="account_setup_failed_protocol_unsupported">
Claudia de Veauxf314e2e2011-10-04 16:38:42 -0700380 You typed an incorrect server address or the server requires a protocol version that
381 Email doesn\'t support.</string>
Marc Blankd2fd1252011-04-22 11:27:30 -0700382 <!-- Additional diagnostic text when server access was denied; the user should contact the
383 administrator of the server for more information [CHAR LIMIT=none] -->
384 <string name="account_setup_failed_access_denied">
Claudia de Veauxf314e2e2011-10-04 16:38:42 -0700385 You don\'t have permission to sync with this server. Contact your server\'s
Marc Blankd2fd1252011-04-22 11:27:30 -0700386 administrator for more information.</string>
Andrew Stadlera1550672010-02-04 15:04:48 -0800387
388 <!-- Dialog title when validation requires security provisioning (e.g. support
389 for device lock PIN, or remote wipe.) and we ask the user permission before continuing -->
390 <string name="account_setup_security_required_title">Remote security administration</string>
391 <!-- Additional diagnostic text when validation requires security provisioning (e.g. support
Andy Stadler98ea7102011-01-18 18:41:24 -0800392 for device lock PIN, or remote wipe.) and we ask the user permission before continuing.
393 [CHAR LIMIT=none] -->
Andrew Stadlera1550672010-02-04 15:04:48 -0800394 <string name="account_setup_security_policies_required_fmt">
395 The server <xliff:g id="server">%s</xliff:g> requires that you allow it to remotely control
Marc Blankf4192872012-06-28 10:40:46 -0700396 some security features of your Android device. Do you want to finish setting up this
Andy Stadler98ea7102011-01-18 18:41:24 -0800397 account?</string>
Andrew Stadlera1550672010-02-04 15:04:48 -0800398 <!-- Additional diagnostic text when validation failed due to required provisioning not
Andy Stadler98ea7102011-01-18 18:41:24 -0800399 being supported [CHAR LIMIT=none] -->
Andrew Stadlera1550672010-02-04 15:04:48 -0800400 <string name="account_setup_failed_security_policies_unsupported">
Claudia de Veauxf314e2e2011-10-04 16:38:42 -0700401 This server requires security features that your Android device doesn\'t support,
Marc Blank26553072011-04-26 12:54:33 -0700402 including: <xliff:g id="error">%s</xliff:g></string>
Marc Blank02d59d22010-10-25 11:49:29 -0700403 <!-- Warning given to users when they request disabling device administration (i.e. that their
404 administered accounts will be deleted) [CHAR LIMIT=none] -->
Claudia de Veauxf314e2e2011-10-04 16:38:42 -0700405 <string name="disable_admin_warning">WARNING: Deactivating the Email app\'s authority
406 to administer your device will delete all email accounts that require it, along with their
Marc Blank02d59d22010-10-25 11:49:29 -0700407 email, contacts, calendar events, and other data.</string>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800408
Andy Stadlerf4894132011-02-18 18:23:18 -0800409 <!-- Dialog shown when the account requires some amount of device security provisioning,
410 just before jumping into system settings such as Device Policy grant, PIN/password,
411 or encryption setup. [CHAR_LIMIT=40] -->
Claudia de Veauxf314e2e2011-10-04 16:38:42 -0700412 <string name="account_security_dialog_title">Security update</string>
Andy Stadlerf4894132011-02-18 18:23:18 -0800413 <!-- Additional diagnostic text when the account requires some amount of device security
414 provisioning, just before jumping into system settings such as Device Policy grant,
415 PIN/password, or encryption setup. [CHAR LIMIT=none] -->
416 <string name="account_security_dialog_content_fmt">
Marc Blankf4192872012-06-28 10:40:46 -0700417 <xliff:g id="account">%s</xliff:g> requires that you update your security
418 settings.</string>
Andy Stadlerf4894132011-02-18 18:23:18 -0800419
Andy Stadlerc6d344a2011-02-16 16:38:18 -0800420 <!-- Notification ticker when device security required (note: unused in Holo XL) -->
Marc Blankf4192872012-06-28 10:40:46 -0700421 <string name="security_unsupported_ticker_fmt">
422 Account \"<xliff:g id="account">%s</xliff:g>\" can\'t be synced due to security
423 requirements.</string>
424 <!-- Notification ticker when device security required (note: unused in Holo XL) -->
425 <string name="security_needed_ticker_fmt">
Andrew Stadler3d2b3b32010-02-05 11:10:39 -0800426 Account \"<xliff:g id="account">%s</xliff:g>\" requires security settings update.
427 </string>
Marc Blankf4192872012-06-28 10:40:46 -0700428 <!-- Notification ticker when device security required (note: unused in Holo XL) -->
429 <string name="security_changed_ticker_fmt">
430 Account \"<xliff:g id="account">%s</xliff:g>\" changed its security settings; no user
431 action is required.
432 </string>
Andy Stadlerc6d344a2011-02-16 16:38:18 -0800433 <!-- Notification content title when device security required [CHAR_LIMIT=30] -->
Marc Blankf4192872012-06-28 10:40:46 -0700434 <string name="security_notification_content_update_title">Security update required</string>
435 <!-- Notification content title when device security policies have changed [CHAR_LIMIT=36] -->
436 <string name="security_notification_content_change_title">Security policies have
437 changed</string>
438 <!-- Notification content title when device security policies cannot be met [CHAR_LIMIT=30] -->
439 <string name="security_notification_content_unsupported_title">Security policies can\'t be
440 met</string>
Andrew Stadler3d2b3b32010-02-05 11:10:39 -0800441 <!-- Title of the activity that dispatches changes to device security. Not normally seen. -->
Claudia de Veauxf314e2e2011-10-04 16:38:42 -0700442 <string name="account_security_title">Device security</string>
Andy Stadler98ea7102011-01-18 18:41:24 -0800443 <!-- Additional diagnostic text when the email app asserts control of the phone.
444 [CHAR LIMIT=none] -->
Andrew Stadler3d2b3b32010-02-05 11:10:39 -0800445 <string name="account_security_policy_explanation_fmt">
446 The server <xliff:g id="server">%s</xliff:g> requires that you allow it to remotely control
Andy Stadler98ea7102011-01-18 18:41:24 -0800447 some security features of your Android device.</string>
Andrew Stadler3d2b3b32010-02-05 11:10:39 -0800448
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800449 <!-- "Setup could not finish" dialog action button -->
450 <string name="account_setup_failed_dlg_edit_details_action">Edit details</string>
Andrew Stadler1a5e1e12010-09-03 14:30:21 -0700451
Andy Stadler1ca111c2010-12-01 12:58:36 -0800452 <!-- Notification ticker when device password is getting ready to expire [CHAR_LIMIT=80] -->
453 <string name="password_expire_warning_ticker_fmt">
Claudia de Veauxf314e2e2011-10-04 16:38:42 -0700454 \"<xliff:g id="account">%s</xliff:g>\" requires that you change your lock screen
Andy Stadlerc6d344a2011-02-16 16:38:18 -0800455 PIN or password.</string>
Andy Stadler1ca111c2010-12-01 12:58:36 -0800456 <!-- Notification content title when device password is getting ready to expire
Andy Stadlerc6d344a2011-02-16 16:38:18 -0800457 [CHAR_LIMIT=30] -->
458 <string name="password_expire_warning_content_title">Lock screen password expiring</string>
Andy Stadler1ca111c2010-12-01 12:58:36 -0800459
460 <!-- Notification ticker when device password has expired [CHAR_LIMIT=80] -->
Andy Stadlerc6d344a2011-02-16 16:38:18 -0800461 <string name="password_expired_ticker">Your lock screen PIN or password has expired.</string>
Andy Stadler1ca111c2010-12-01 12:58:36 -0800462 <!-- Notification content title when device password has expired [CHAR_LIMIT=28] -->
Andy Stadlerc6d344a2011-02-16 16:38:18 -0800463 <string name="password_expired_content_title">Lock screen password expired</string>
Andy Stadler1ca111c2010-12-01 12:58:36 -0800464
Andy Stadlerf4894132011-02-18 18:23:18 -0800465 <!-- Dialog title if device pin/password is going to expire soon. [CHAR_LIMIT=40] -->
466 <string name="password_expire_warning_dialog_title">Lock screen password expiring</string>
467 <!-- Dialog content device pin/password is going to expire soon. [CHAR_LIMIT=none] -->
468 <string name="password_expire_warning_dialog_content_fmt">
Marc Blankf4192872012-06-28 10:40:46 -0700469 You need to change your lock screen PIN or password soon, or the data for
470 <xliff:g id="account">%s</xliff:g> will be erased. Do you want to change it now?</string>
Andy Stadlerf4894132011-02-18 18:23:18 -0800471
472 <!-- Dialog title if device pin/password has already expired. [CHAR_LIMIT=40] -->
473 <string name="password_expired_dialog_title">Lock screen password expired</string>
474 <!-- Dialog content device pin/password has already expired. [CHAR_LIMIT=none] -->
475 <string name="password_expired_dialog_content_fmt">
476 The data for <xliff:g id="account">%s</xliff:g> is being erased from your device.
Marc Blankf4192872012-06-28 10:40:46 -0700477 You can restore it by changing your lock screen PIN or password. Do you want to change it now?</string>
Andy Stadlerf4894132011-02-18 18:23:18 -0800478
Andrew Stadler1a5e1e12010-09-03 14:30:21 -0700479 <!-- On AccountSettingsXL, dialog text if you try to exit in/out/eas fragment (server settings)
480 without checking/saving [CHAR LIMIT=none]-->
481 <string name="account_settings_exit_server_settings">Discard unsaved changes?</string>
482
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800483 <!-- On Settings screen, setting option name -->
Andy Stadler946239e2011-01-18 10:53:37 -0800484 <!-- Title of account preference for downloading attachments in background [CHAR LIMIT=32] -->
485 <string name="account_settings_background_attachments_label">
Claudia de Veauxe3b56df2011-10-13 15:01:06 -0700486 Download attachments</string>
Andy Stadler946239e2011-01-18 10:53:37 -0800487 <!-- Summary of account preference for downloading attachments in background [CHAR LIMIT=64] -->
488 <string name="account_settings_background_attachments_summary">
Claudia de Veauxe6c21562011-10-17 13:09:33 -0700489 Auto-download attachments to recent messages via Wi-Fi</string>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800490 <string name="account_settings_notify_label">Email notifications</string>
Marc Blank055e8352010-10-07 15:24:30 -0700491 <!-- On Settings screen, summary line when called via AccountManager for Exchange accounts
492 [CHAR LIMIT=50] -->
Marc Blanke6cc6622010-07-08 10:08:47 -0700493 <string name="account_settings_summary">Sync frequency, notifications, etc.</string>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800494 <!-- On Settings screen, setting summary text -->
Marc Blankf4192872012-06-28 10:40:46 -0700495 <string name="account_settings_notify_summary">Send notification when email arrives</string>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800496 <!-- On Settings screen, setting option name and title of dialog box that opens -->
Yu Ping Hufd969292013-08-20 15:53:32 -0700497 <string name="account_settings_mail_check_frequency_label">Sync frequency</string>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800498 <!-- On Settings screen, setting option name -->
499 <string name="account_settings_incoming_label">Incoming settings</string>
Marc Blankf4192872012-06-28 10:40:46 -0700500 <!-- On Settings screen, setting option summary [CHAR LIMIT=64] -->
Andy Stadlere47af762011-02-16 14:19:34 -0800501 <string name="account_settings_incoming_summary">
502 Username, password, and other incoming server settings</string>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800503 <!-- On Settings screen, setting option name -->
504 <string name="account_settings_outgoing_label">Outgoing settings</string>
Marc Blankf4192872012-06-28 10:40:46 -0700505 <!-- On Settings screen, setting option summary [CHAR LIMIT=64] -->
Andy Stadlere47af762011-02-16 14:19:34 -0800506 <string name="account_settings_outgoing_summary">
507 Username, password, and other outgoing server settings</string>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800508 <!-- On Settings screen, setting option name -->
Marc Blankf4192872012-06-28 10:40:46 -0700509 <string name="account_settings_enforced_label">Policies enforced</string>
510 <!-- On Settings screen, setting option summary [CHAR LIMIT=64] -->
511 <string name="account_settings_enforced_summary">None</string>
512 <!-- On Settings screen, setting option name -->
513 <string name="account_settings_unsupported_label">Unsupported policies</string>
514 <!-- On Settings screen, setting option summary [CHAR LIMIT=64] -->
515 <string name="account_settings_unsupported_summary">None</string>
516 <!-- On Settings screen, label for button that attempts to sync the account -->
517 <string name="account_settings_retry_label">Attempt sync</string>
518 <!-- On Settings screen, summmary for button that attempts to sync an account [CHAR LIMIT=64] -->
519 <string name="account_settings_retry_summary">Touch here to sync this account</string>
520 <!-- On Settings screen, setting option name -->
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800521 <string name="account_settings_description_label">Account name</string>
522 <!-- On Settings screen, setting option name -->
523 <string name="account_settings_name_label">Your name</string>
Jorge Lugo5a3888f2011-06-01 10:09:26 -0700524 <!-- On Settings screen, setting option name. Allows user to modify saved quick responses
525 for insertion in message body. [CHAR_LIMIT=24]-->
526 <string name="account_settings_edit_quick_responses_label">Quick responses</string>
527 <!-- On Settings screen, setting option summary [CHAR LIMIT=64] -->
528 <string name="account_settings_edit_quick_responses_summary">
Marc Blankf4192872012-06-28 10:40:46 -0700529 Edit text that you frequently insert when composing email</string>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800530 <!-- On Settings screen, section heading -->
531 <string name="account_settings_notifications">Notification settings</string>
Ben Komalo72a24f12011-07-22 15:15:47 -0700532 <!-- On Settings screen, section heading for data usage [CHAR LIMIT=70] -->
533 <string name="account_settings_data_usage">Data usage</string>
Marc Blankf4192872012-06-28 10:40:46 -0700534 <!-- On Settings screen, section heading -->
535 <string name="account_settings_policies">Security policies</string>
Marc Blanke428f942009-09-16 13:54:03 -0700536
Marc Blank266064b2012-09-09 19:07:53 -0700537 <string name="system_folders_title">System folders</string>
538 <string name="system_folders_trash_title">Trash folder</string>
539 <string name="system_folders_trash_summary">Select your server\'s trash folder</string>
540 <string name="system_folders_trash_dlg">Select your server\'s trash folder</string>
541 <string name="system_folders_sent_title">Sent items folder</string>
542 <string name="system_folders_sent_summary">Select your server\'s sent items folder</string>
543 <string name="system_folders_sent_dlg">Select your server\'s sent items folder</string>
544
Yu Ping Hue2e9c842013-09-25 16:14:08 -0700545 <!-- On settings screen, dialog heading informing user to create or edit a quick response -->
546 <string name="edit_quick_response_dialog">Quick response</string>
Jorge Lugo5a3888f2011-06-01 10:09:26 -0700547 <!-- On settings screen, edit quick response dialog's "save" button -->
548 <string name="save_action">Save</string>
549
Marc Blank055e8352010-10-07 15:24:30 -0700550 <!-- On settings screen, sync contacts check box label [CHAR LIMIT=20]-->
Claudia de Veauxf314e2e2011-10-04 16:38:42 -0700551 <string name="account_settings_sync_contacts_enable">Sync contacts</string>
Marc Blank055e8352010-10-07 15:24:30 -0700552 <!-- On settings screen, sync contacts summary text [CHAR LIMIT=35] -->
Marc Blanke6cc6622010-07-08 10:08:47 -0700553 <string name="account_settings_sync_contacts_summary">Sync contacts for this account</string>
Marc Blank055e8352010-10-07 15:24:30 -0700554 <!-- On settings screen, sync calendar check box label [CHAR LIMIT=20]-->
Marc Blankf4192872012-06-28 10:40:46 -0700555 <string name="account_settings_sync_calendar_enable">Sync calendar</string>
556 <!-- On settings screen, sync calendar summary text [CHAR LIMIT=50] -->
557 <string name="account_settings_sync_calendar_summary">Sync calendar event for this account</string>
Marc Blank055e8352010-10-07 15:24:30 -0700558 <!-- On settings screen, sync email check box label [CHAR LIMIT=20]-->
Claudia de Veauxf314e2e2011-10-04 16:38:42 -0700559 <string name="account_settings_sync_email_enable">Sync email</string>
Marc Blank055e8352010-10-07 15:24:30 -0700560 <!-- On settings screen, sync email summary text [CHAR LIMIT=35] -->
Marc Blanke6cc6622010-07-08 10:08:47 -0700561 <string name="account_settings_sync_email_summary">Sync email for this account</string>
Marc Blanke428f942009-09-16 13:54:03 -0700562
Jim Shuma9e2ddca2010-03-16 18:08:52 -0700563 <!-- On Settings screen, vibrate pop-up menu label -->
Paul Westbrook8f0f19c2014-09-10 01:55:20 -0700564 <string name="label_notification_vibrate_title">Vibrate</string>
Jim Shuma9e2ddca2010-03-16 18:08:52 -0700565
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800566 <!-- On Settings screen, setting option name -->
Claudia de Veauxf314e2e2011-10-04 16:38:42 -0700567 <string name="account_settings_ringtone">Choose ringtone</string>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800568 <!-- On Settings screen, section heading -->
569 <string name="account_settings_servers">Server settings</string>
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800570
Makoto Onuki1ddc2ca2011-07-02 14:48:43 -0700571 <!-- Mailbox settings activity title [CHAR LIMIT=none] -->
Ben Komalo6be8cce2011-08-03 17:22:37 -0700572 <string name="mailbox_settings_activity_title">Sync options</string>
Makoto Onuki1ddc2ca2011-07-02 14:48:43 -0700573 <!-- Mailbox settings activity title, with the target folder name [CHAR LIMIT=none] -->
Ben Komalo6be8cce2011-08-03 17:22:37 -0700574 <string name="mailbox_settings_activity_title_with_mailbox">Sync options (<xliff:g id="mailboxx_name" example="Family">%s</xliff:g>)</string>
Yu Ping Hu03892402013-06-24 17:11:38 -0700575 <!-- On mailbox settings screen: Whether to sync this mailbox when the account syncs. -->
Yu Ping Hufd969292013-08-20 15:53:32 -0700576 <string name="mailbox_settings_sync_enabled_label">Sync this folder</string>
577 <!-- On mailbox settings screen: Explanatory text for what it means to "sync this folder". -->
578 <string name="mailbox_settings_sync_enabled_summary">Messages will download when connected</string>
Makoto Onuki1ddc2ca2011-07-02 14:48:43 -0700579 <!-- On mailbox settings screen: Mailbox sync window (the number of days to synchronize email for) setting label [CHAR LIMIT=none] -->
Yu Ping Hufd969292013-08-20 15:53:32 -0700580 <string name="mailbox_settings_mailbox_sync_window_label">Days of mail to sync</string>
Makoto Onuki1ddc2ca2011-07-02 14:48:43 -0700581
The Android Open Source Project96c5af42009-03-03 19:32:22 -0800582 <!-- Message that appears when adding a T-Online account -->
Claudia de Veauxf314e2e2011-10-04 16:38:42 -0700583 <string name="provider_note_t_online">Before setting up this email account, visit the T-Online website and create a password for POP3 email access.</string>
Marc Blankf00dccd2009-07-30 18:17:52 -0700584
Régis Décamps24f2b192014-10-09 13:37:03 +0200585 <!-- Short name of Microsoft Exchange account type; used by AccountManager -->
586 <string name="exchange_eas_name" translatable="false">Exchange</string>
587 <!-- Long name of Microsoft Exchange account type; used by AccountManager -->
Makoto Onukib854d052010-01-28 10:07:51 -0800588 <string name="exchange_name_alternate">Microsoft Exchange ActiveSync</string>
Marc Blankf00dccd2009-07-30 18:17:52 -0700589
Todd Kennedy3f60e932011-02-18 16:41:41 -0800590 <!-- Message that appears if the AccountManager cannot create the system Account -->
Claudia de Veauxf314e2e2011-10-04 16:38:42 -0700591 <string name="system_account_create_failed">Couldn\'t create the account. Try again.</string>
Andrew Stadlerd6286082010-02-01 16:48:16 -0800592
593 <!-- Strings that support the DeviceAdmin / DevicePolicyManager API -->
Andrew Stadler3d2b3b32010-02-05 11:10:39 -0800594 <!-- Name of the DeviceAdmin (seen in settings & in user confirmation screen) -->
595 <string name="device_admin_label">Email</string>
596 <!-- Long-form description of the DeviceAdmin (2nd line in settings & in user conf. screen) -->
597 <string name="device_admin_description">Enables server-specified security policies</string>
598
Marc Blankf4192872012-06-28 10:40:46 -0700599 <!-- A policy disallowing the user of the device's camera [CHAR LIMIT=50] -->
600 <string name="policy_dont_allow_camera">Disallow use of the device\'s camera</string>
601 <!-- A policy requiring a device lock screen password [CHAR LIMIT=50] -->
602 <string name="policy_require_password">Require device password</string>
603 <!-- A policy disallowing the reuse of recent passwords [CHAR LIMIT=50] -->
604 <string name="policy_password_history">Restrict the reuse of recent passwords</string>
605 <!-- A policy that forces a password to expire after a set period of time [CHAR LIMIT=50] -->
606 <string name="policy_password_expiration">Require passwords to expire</string>
607 <!-- A policy requiring a maximum amount of time the device can sit idle before the lock screen
608 is activated [CHAR LIMIT=50] -->
609 <string name="policy_screen_timeout">Require an idle device to lock its screen</string>
610 <!-- A policy limiting the number of old calendar events synced [CHAR LIMIT=50] -->
611 <string name="policy_calendar_age">Limit the number of calendar events synced</string>
612 <!-- A policy limiting the number of emails synced [CHAR LIMIT=50] -->
613 <string name="policy_email_age">Limit the number of emails synced</string>
614
615 <!-- The four strings below represent "quick responses" which the user can insert into a
616 message being composed with just a couple of taps. These four responses MUST be defined,
617 but need not include a string (i.e. they are optional). Further, the responses can be
618 customized as necessary by the translator, in case one or more of these is inappropriate in
619 a particular locale or if there are better options available. -->
620 <!-- A "quick response", i.e. a quick reply to a received mail [CHAR LIMIT=NONE] -->
621 <string name="quick_1">Thanks!</string>
622 <!-- A "quick response", i.e. a quick reply to a received mail [CHAR LIMIT=NONE] -->
623 <string name="quick_2">Sounds good to me!</string>
624 <!-- A "quick response", i.e. a quick reply to a received mail [CHAR LIMIT=NONE] -->
625 <string name="quick_3">I\'ll read this later and get back to you.</string>
626 <!-- A "quick response", i.e. a quick reply to a received mail [CHAR LIMIT=NONE] -->
627 <string name="quick_4">Let\'s set up a meeting to discuss this.</string>
628
Marc Blankf4192872012-06-28 10:40:46 -0700629 <!-- This is shown when a user responds to a meeting invitation [CHAR LIMIT=none]-->
Marc Blanka8b683c2012-07-18 12:52:40 -0700630 <string name="confirm_response">Sending response&#8230;</string>
Marc Blankf4192872012-06-28 10:40:46 -0700631
Marc Blanke714bb92012-08-22 22:25:42 -0700632 <!-- Used by AccountManager -->
Tony Mantlera9f69fc2014-09-11 11:47:02 -0700633 <!-- Account type name as used by AccountManager UI (IMAP is not translatable) [CHAR LIMIT=30] -->
634 <string name="imap_name">Personal (IMAP)</string>
635 <!-- Account type name as used by AccountManager UI (POP3 is not translatable) [CHAR LIMIT=30] -->
636 <string name="pop3_name">Personal (POP3)</string>
Marc Blankc6089bc2012-06-29 09:42:05 -0700637
Marc Blanka8b683c2012-07-18 12:52:40 -0700638 <!-- Displayed when the user must pick his server's trash folder from a list [CHAR LIMIT 30]-->
Marc Blank26164052012-09-06 10:19:34 -0700639 <string name="trash_folder_selection_title">Select server trash folder for <xliff:g id="account">%s</xliff:g></string>
Marc Blanka8b683c2012-07-18 12:52:40 -0700640 <!-- Displayed when the user must pick his server's sent items folder from a list [CHAR LIMIT 30]-->
Marc Blank26164052012-09-06 10:19:34 -0700641 <string name="sent_folder_selection_title">Select server sent items folder for <xliff:g id="account">%s</xliff:g></string>
Marc Blank26164052012-09-06 10:19:34 -0700642 <string name="account_waiting_for_folders_msg">Loading folder list&#8230;</string>
Paul Westbrook5a3d8632013-03-08 16:54:50 -0800643
644 <!-- Feedback uri to be used when feedback is enabled -->
645 <string name="email_feedback_uri" translatable="false"></string>
Andrew Sapperstein642c6772013-05-24 10:39:28 -0700646
647 <string name="account_manager_type_exchange" translatable="false">com.android.exchange</string>
648 <string name="account_manager_type_pop3" translatable="false">com.android.email</string>
649 <string name="account_manager_type_imap" translatable="false">com.android.email</string>
650 <string name="account_manager_type_legacy_imap" translatable="false">com.android.email</string>
Paul Westbrooke4ac0602013-08-28 14:31:09 -0700651 <string name="intent_exchange_action" translatable="false">com.android.email.EXCHANGE_INTENT</string>
Tony Mantlerf765f9b2014-06-05 13:05:42 -0700652 <string name="intent_exchange_cert_action" translatable="false">com.android.email.EXCHANGE_REQUEST_CERT</string>
Paul Westbrooke4ac0602013-08-28 14:31:09 -0700653 <string name="intent_exchange_package" translatable="false">com.android.exchange</string>
Andrew Sapperstein642c6772013-05-24 10:39:28 -0700654 <string name="intent_account_manager_entry" translatable="false">com.android.email.activity.setup.ACCOUNT_MANAGER_ENTRY</string>
Tony Mantlercd118b32014-07-18 15:11:36 -0700655 <string name="intent_force_create_email_account" translatable="false">com.android.email.FORCE_CREATE_ACCOUNT</string>
656 <string name="intent_create_email_account" translatable="false">com.android.email.CREATE_NEW_ACCOUNT</string>
Andrew Sapperstein642c6772013-05-24 10:39:28 -0700657 <string name="authority_email_provider" translatable="false">com.android.email.provider</string>
Tony Mantler9ef3c8b2014-03-05 11:27:46 -0800658 <string name="authority_conversation_provider" translatable="false">com.android.email.conversation.provider</string>
659 <string name="authority_account_cache_provider" translatable="false">com.android.email.accountcache</string>
Andrew Sapperstein642c6772013-05-24 10:39:28 -0700660 <string name="protocol_legacy_imap" translatable="false">imap</string>
661 <string name="protocol_imap" translatable="false">imap</string>
662 <string name="protocol_pop3" translatable="false">pop3</string>
663 <string name="protocol_eas" translatable="false">eas</string>
664 <string name="application_mime_type" translatable="false">application/email-ls</string>
Andrew Sapperstein478417a2013-06-21 11:30:49 -0700665
666 <!-- Content Provider Authority for Eml Attachments -->
667 <string name="eml_attachment_provider" translatable="false">com.android.email.provider.eml.attachment</string>
Tony Mantler37aa4602013-10-09 12:39:43 -0700668
669 <!-- Provider name for widgets -->
670 <string name="widget_provider" translatable="false">com.android.email.provider.WidgetProvider</string>
Andrew Sapperstein7b57eee2013-10-10 18:14:59 -0700671
672 <string name="print_job_name" translatable="false">Email - <xliff:g id="subject">%1$s</xliff:g></string>
673
James Lemieux6dce0b12014-05-30 12:15:32 -0700674 <!-- This message indicates no quick responses exist to choose from -->
675 <string name="no_quick_responses">None available</string>
676
Paul Westbrooke817be12014-06-17 03:18:11 -0700677 <!-- Activity name of the compose activity that should be reconciled -->
678 <string name="reconciliation_compose_activity_name" translatable="false">com.android.email.activity.ComposeActivityEmail</string>
679
Tony Mantler751da262014-07-31 10:40:53 -0700680 <!-- Gmail name for redirecting during account setup -->
681 <string name="gmail_name">Gmail</string>
Tony Mantler9f14d6b2014-08-13 14:18:01 -0700682
683 <!-- Name for preference entry which leads to the per-folder sync settings activity -->
684 <string name="folder_sync_settings_pref_title">Folder sync settings</string>
weitan1ed64e22016-04-06 10:52:00 +0800685 <string name="missing_required_permission">You have disabled a required permission.</string>
Scott Kennedyf9997922012-11-28 18:14:06 -0800686</resources>