auto import from //depot/cupcake/@135843

This commit is contained in:
The Android Open Source Project 2009-03-03 18:28:50 -08:00
parent 1f5bbf66d1
commit 8c2158a5eb
368 changed files with 0 additions and 63846 deletions

View File

@ -1,27 +0,0 @@
# Copyright 2008, The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE_TAGS := eng development
LOCAL_SRC_FILES := $(call all-java-files-under, src)
LOCAL_PACKAGE_NAME := Email
include $(BUILD_PACKAGE)
# additionally, build unit tests in a separate .apk
include $(call all-makefiles-under,$(LOCAL_PATH))

View File

@ -1,163 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2008 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.email">
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
<uses-permission android:name="android.permission.READ_CONTACTS"/>
<uses-permission android:name="android.permission.READ_OWNER_DATA"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.VIBRATE"/>
<permission android:name="com.android.email.permission.READ_ATTACHMENT"
android:permissionGroup="android.permission-group.MESSAGES"
android:protectionLevel="dangerous"
android:label="@string/read_attachment_label"
android:description="@string/read_attachment_desc"/>
<uses-permission android:name="com.android.email.permission.READ_ATTACHMENT"/>
<application android:icon="@drawable/icon" android:label="@string/app_name"
android:name="Email">
<activity android:name=".activity.Welcome">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".activity.setup.AccountSetupBasics"
android:label="@string/account_setup_basics_title"
>
</activity>
<activity
android:name=".activity.setup.AccountSetupAccountType"
android:label="@string/account_setup_account_type_title"
>
</activity>
<activity
android:name=".activity.setup.AccountSetupIncoming"
android:label="@string/account_setup_incoming_title"
>
</activity>
<activity
android:name=".activity.setup.AccountSetupOutgoing"
android:label="@string/account_setup_outgoing_title"
>
</activity>
<activity
android:name=".activity.setup.AccountSetupOptions"
android:label="@string/account_setup_options_title"
>
</activity>
<activity
android:name=".activity.setup.AccountSetupNames"
android:label="@string/account_setup_names_title"
>
</activity>
<!-- XXX Note: this activity is hacked to ignore config changes,
since it doesn't currently handle them correctly in code. -->
<activity
android:name=".activity.setup.AccountSetupCheckSettings"
android:label="@string/account_setup_check_settings_title"
android:configChanges="keyboardHidden|orientation"
>
</activity>
<activity
android:name=".activity.setup.AccountSettings"
android:label="@string/account_settings_action"
>
</activity>
<activity
android:name=".activity.Debug"
android:label="@string/debug_title">
</activity>
<activity
android:name=".activity.Accounts"
android:label="@string/accounts_title"
android:launchMode="singleTop" >
</activity>
<activity
android:name=".activity.AccountShortcutPicker"
android:label="@string/app_name"
android:enabled="false"
>
<intent-filter>
<action android:name="android.intent.action.CREATE_SHORTCUT" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name=".activity.FolderMessageList">
<intent-filter>
<!-- This action is only to allow an entry point for launcher shortcuts -->
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
<activity
android:name=".activity.MessageView"
android:theme="@android:style/Theme.NoTitleBar" >
</activity>
<activity
android:name=".activity.MessageCompose"
android:label="@string/app_name"
android:enabled="false"
>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<action android:name="android.intent.action.SENDTO" />
<data android:scheme="mailto" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
</intent-filter>
<intent-filter android:label="@string/app_name">
<action android:name="android.intent.action.SEND" />
<data android:mimeType="text/plain" />
<data android:mimeType="image/*" />
<data android:mimeType="video/*" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<receiver android:name=".service.BootReceiver"
android:enabled="false"
>
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.DEVICE_STORAGE_LOW" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.DEVICE_STORAGE_OK" />
</intent-filter>
</receiver>
<service
android:name=".service.MailService"
android:enabled="false"
>
</service>
<provider
android:name=".provider.AttachmentProvider"
android:authorities="com.android.email.attachmentprovider"
android:multiprocess="true"
android:grantUriPermissions="true"
android:readPermission="com.android.email.permission.READ_ATTACHMENT"
/>
</application>
</manifest>

View File

190
NOTICE
View File

@ -1,190 +0,0 @@
Copyright (c) 2005-2008, The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.
"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:
(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and
(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and
(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS

View File

@ -1,4 +0,0 @@
<html>
<body bgcolor="white">
</body>
</html>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -1,17 +0,0 @@
<html>
<body bgcolor="white">
<table width="100%" height="100%">
<tr>
<td align="center" valign="center">
<font color="gray">Loading...</font>
<br/>
<br/>
<br/>
<br/>
<br/>
<img src="loading.gif">
</td>
</tr>
</table>
</body>
</html>

View File

@ -1,18 +0,0 @@
<html>
<body>
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Phasellus dui dui, luctus sit amet, hendrerit ac, blandit quis, diam. Duis libero velit, elementum id, mattis ut, fermentum aliquet, tortor. Maecenas tincidunt egestas pede. Integer sagittis ipsum ut lorem. Morbi egestas egestas sapien. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Duis eget erat ac sem iaculis sollicitudin. Maecenas in velit id mauris cursus tincidunt. Sed ultrices elit in sapien ullamcorper imperdiet. Nunc viverra, lacus id varius elementum, nisl turpis lacinia tellus, sit amet viverra neque odio quis nisl. Quisque facilisis, ipsum non vulputate malesuada, leo augue elementum tortor, nec eleifend tellus lectus non massa.
<br/><br/>
Maecenas pulvinar rutrum risus. Phasellus mattis arcu sit amet neque. Aliquam sed quam at nulla laoreet pretium. Proin elit. Integer ullamcorper dolor a pede. Nam lobortis quam ut mauris. Pellentesque non mauris ut lacus hendrerit iaculis. In volutpat nulla et turpis. Fusce mollis. Aliquam sit amet tortor fermentum orci lacinia convallis. Donec tincidunt tortor sed erat sollicitudin gravida. In hac habitasse platea dictumst. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Sed pulvinar arcu consectetuer dolor. Nunc luctus aliquam leo. In hac habitasse platea dictumst. Praesent et mi sit amet ligula blandit hendrerit. Nam aliquam tincidunt est. Aliquam erat volutpat.
<br/><br/>
Curabitur augue. Fusce pulvinar nisi vitae diam. Donec dictum. Sed suscipit convallis magna. Ut hendrerit tortor in mauris. In at diam. Maecenas commodo. Aliquam erat volutpat. Nunc odio eros, vestibulum at, sodales id, congue et, risus. Curabitur feugiat blandit lacus. Nulla gravida placerat enim. Nunc turpis. Praesent malesuada.
<br/><br/>
Aenean quis erat. Vivamus non ipsum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Sed metus magna, porta eu, ultricies vitae, vulputate et, urna. Sed pulvinar, massa at ultricies rhoncus, nunc eros dapibus felis, quis congue risus orci rhoncus nibh. Pellentesque quam ante, laoreet vitae, iaculis a, gravida in, nibh. In hac habitasse platea dictumst. Aliquam erat volutpat. Suspendisse augue neque, posuere eu, sollicitudin quis, sagittis et, massa. Maecenas varius sem sodales ipsum. Donec congue mi nec orci. Nam pede ipsum, varius sed, condimentum ac, rhoncus non, lorem. Integer vestibulum, neque vitae ornare euismod, mauris turpis congue massa, non venenatis arcu lorem eget metus. Sed sollicitudin, enim aliquam pharetra cursus, neque augue bibendum leo, vitae ullamcorper ante felis nec massa. Maecenas vitae urna. Proin tincidunt, urna eu sodales vulputate, nisl tellus pretium ligula, ut venenatis metus nulla eu lectus. Integer urna purus, sagittis ut, posuere sed, sagittis non, mauris. Nunc eros risus, lacinia sit amet, dictum in, faucibus quis, urna. Fusce dictum mattis enim. Vivamus luctus sagittis felis.
<br/><br/>
Fusce pulvinar, erat a facilisis congue, lacus libero imperdiet dui, nec luctus justo neque sit amet mauris. Praesent sodales. Sed sed nisl a arcu tempus placerat. Duis sagittis risus. Aliquam tristique. Ut a mi. Integer volutpat, turpis vitae lobortis blandit, lorem sapien suscipit arcu, sit amet dignissim felis mauris vitae ipsum. Sed elit. Mauris elementum, pede nec accumsan pretium, leo metus fringilla erat, at feugiat turpis arcu pretium urna. Morbi lorem tellus, commodo sed, convallis id, suscipit sed, leo. Donec egestas ultricies tellus. Curabitur sapien orci, interdum nec, molestie at, pharetra eu, magna. Duis pharetra orci sed felis posuere malesuada. Donec nec nisi non urna ultricies porttitor. Maecenas lectus. Sed dignissim malesuada justo. Nunc rutrum consectetuer nunc.
<img src="cid:23978198273">
more text
<img src="cid:12371982371">
more text
</body>
</html>

View File

View File

@ -1,23 +0,0 @@
Some simple functional tests
--
Compose a message
Attach an image to the message
Save the message as a draft
Reopen the draft
* Is the attachment still there?
Send the message.
* Does the received message have the correct attachment?
Check delete functionality on POP and IMAP account.
Check delete functionality on IMAP with no network connection.
Check save draft functionality on POP and IMAP account.
Check save draft functionality on IMAP with no network connection.
Check sent message functionality on POP and IMAP account.
Check sent functionality on IMAP with no network connection.
* When the network is brought back does the sent message get uploaded?

View File

@ -1,27 +0,0 @@
Currently
--
Need to add NOOP checking to Pop3Store and ImapStore on cached connections.
In the future
--
Move attachments to files, instead of storing as blobs in the database. There are tons of ways
we can make the app perform better with this small change. Primarily, we can do everything
pertaining to large attachments as streams instead of as large loads into byte arrays.
Get rid of the LocalStore's attachment to Store altogether. Local storage is too complex and
specific to performance to be bound to the Store API. It needs to be flexible with plenty of helper
functions to make best use of memory and resources.
Make better use of the abstractions for Body, Part and BodyPart. Proper use of these abstractions
can completely remove the need for the special headers.

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 842 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 436 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 294 B

View File

@ -1,21 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2008 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_expanded="true"
android:drawable="@drawable/expander_ic_folder_maximized" />
<item android:drawable="@drawable/expander_ic_folder_minimized" />
</selector>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -1,26 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2008 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_window_focused="false" android:state_selected="true"
android:drawable="@color/folder_message_list_child_background" />
<item android:state_selected="true"
android:drawable="@android:color/transparent" />
<item android:state_pressed="true" android:state_selected="false"
android:drawable="@android:color/transparent" />
<item android:state_selected="false"
android:drawable="@color/folder_message_list_child_background" />
</selector>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 855 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 713 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 706 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 986 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 652 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 659 B

View File

@ -1,67 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2008 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@android:color/white">
<ScrollView
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="1"
android:scrollbarStyle="outsideInset"
android:fadingEdge="none">
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="1">
<include layout="@layout/message_view_header" />
</LinearLayout>
</ScrollView>
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingTop="5dip"
android:paddingLeft="4dip"
android:paddingRight="4dip"
android:paddingBottom="1dip"
android:background="@android:drawable/bottom_bar">
<Button
android:id="@+id/reply"
android:text="@string/reply_action"
android:layout_height="fill_parent"
android:layout_width="0dip"
android:layout_weight="1" />
<Button
android:id="@+id/reply_all"
android:text="@string/reply_all_action"
android:layout_height="fill_parent"
android:layout_width="0dip"
android:layout_weight="1" />
<Button
android:id="@+id/delete"
android:text="@string/delete_action"
android:layout_height="fill_parent"
android:layout_width="0dip"
android:layout_weight="1" />
</LinearLayout>
</LinearLayout>

View File

@ -1,45 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2008 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
>
<TextView
android:text="@string/account_setup_account_type_instructions"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="?android:attr/textColorPrimary"
/>
<Button
android:id="@+id/pop"
android:text="@string/account_setup_account_type_pop_action"
android:layout_height="wrap_content"
android:layout_width="150sp"
android:minWidth="@dimen/button_minWidth"
android:layout_gravity="center_horizontal"
/>
<Button
android:id="@+id/imap"
android:text="@string/account_setup_account_type_imap_action"
android:layout_height="wrap_content"
android:layout_width="150sp"
android:minWidth="@dimen/button_minWidth"
android:layout_gravity="center_horizontal"
/>
</LinearLayout>

View File

@ -1,81 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2008 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
>
<TextView
android:text="@string/account_setup_basics_instructions"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="?android:attr/textColorPrimary"
/>
<EditText
android:id="@+id/account_email"
android:hint="@string/account_setup_basics_email_hint"
android:inputType="textEmailAddress"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
/>
<EditText
android:id="@+id/account_password"
android:hint="@string/account_setup_basics_password_hint"
android:inputType="textPassword"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:nextFocusDown="@+id/next"
/>
<CheckBox
android:id="@+id/account_default"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:text="@string/account_setup_basics_default_label"
android:visibility="gone"
/>
<View
android:layout_width="fill_parent"
android:layout_height="0px"
android:layout_weight="1"
/>
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="54dip"
android:background="@android:drawable/bottom_bar"
>
<Button
android:id="@+id/manual_setup"
android:text="@string/account_setup_basics_manual_setup_action"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:minWidth="@dimen/button_minWidth"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
/>
<Button
android:id="@+id/next"
android:text="@string/next_action"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:minWidth="@dimen/button_minWidth"
android:drawableRight="@drawable/button_indicator_next"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
/>
</RelativeLayout>
</LinearLayout>

View File

@ -1,54 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2008 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<View
android:layout_width="fill_parent"
android:layout_height="100sp" />
<TextView
android:id="@+id/message"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:gravity="center_horizontal"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="?android:attr/textColorPrimary"
android:paddingBottom="6px" />
<ProgressBar
android:id="@+id/progress"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
style="?android:attr/progressBarStyleHorizontal" />
<View
android:layout_width="fill_parent"
android:layout_height="0px"
android:layout_weight="1" />
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="54dip"
android:background="@android:drawable/bottom_bar">
<Button
android:id="@+id/cancel"
android:text="@string/cancel_action"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:minWidth="@dimen/button_minWidth"
android:layout_centerVertical="true" />
</RelativeLayout>
</LinearLayout>

View File

@ -1,131 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2008 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scrollbarStyle="outsideInset">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<TextView
android:text="@string/account_setup_incoming_username_label"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="?android:attr/textColorPrimary" />
<EditText
android:id="@+id/account_username"
android:inputType="textEmailAddress"
android:layout_height="wrap_content"
android:layout_width="fill_parent" />
<TextView
android:text="@string/account_setup_incoming_password_label"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="?android:attr/textColorPrimary" />
<EditText
android:id="@+id/account_password"
android:inputType="textPassword"
android:layout_height="wrap_content"
android:layout_width="fill_parent" />
<!-- This text may be changed in code if the server is IMAP, etc. -->
<TextView
android:id="@+id/account_server_label"
android:text="@string/account_setup_incoming_pop_server_label"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="?android:attr/textColorPrimary" />
<!-- Note: we use inputType=textUri as the closest approximation to a server name -->
<EditText
android:id="@+id/account_server"
android:inputType="textUri"
android:layout_height="wrap_content"
android:layout_width="fill_parent" />
<TextView
android:text="@string/account_setup_incoming_port_label"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="?android:attr/textColorPrimary" />
<EditText
android:id="@+id/account_port"
android:inputType="number"
android:layout_height="wrap_content"
android:layout_width="fill_parent" />
<TextView
android:text="@string/account_setup_incoming_security_label"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="?android:attr/textColorPrimary" />
<Spinner
android:id="@+id/account_security_type"
android:layout_height="wrap_content"
android:layout_width="fill_parent" />
<TextView
android:id="@+id/account_delete_policy_label"
android:text="@string/account_setup_incoming_delete_policy_label"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="?android:attr/textColorPrimary" />
<Spinner
android:id="@+id/account_delete_policy"
android:layout_height="wrap_content"
android:layout_width="fill_parent" />
<LinearLayout
android:id="@+id/imap_path_prefix_section"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:text="@string/account_setup_incoming_imap_path_prefix_label"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="?android:attr/textColorPrimary" />
<EditText
android:id="@+id/imap_path_prefix"
android:hint="@string/account_setup_incoming_imap_path_prefix_hint"
inputType="text"
android:layout_height="wrap_content"
android:layout_width="fill_parent" />
</LinearLayout>
<View
android:layout_width="fill_parent"
android:layout_height="0px"
android:layout_weight="1" />
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="54dip"
android:background="@android:drawable/bottom_bar">
<Button
android:id="@+id/next"
android:text="@string/next_action"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:minWidth="@dimen/button_minWidth"
android:drawableRight="@drawable/button_indicator_next"
android:layout_alignParentRight="true"
android:layout_centerVertical="true" />
</RelativeLayout>
</LinearLayout>
</ScrollView>

View File

@ -1,67 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2008 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<TextView
android:text="@string/account_setup_names_instructions"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="?android:attr/textColorPrimary" />
<TextView
android:text="@string/account_setup_names_account_name_label"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="?android:attr/textColorPrimary" />
<EditText
android:id="@+id/account_description"
android:inputType="textCapWords"
android:layout_height="wrap_content"
android:layout_width="fill_parent" />
<TextView
android:text="@string/account_setup_names_user_name_label"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="?android:attr/textColorPrimary" />
<EditText
android:id="@+id/account_name"
android:inputType="textPersonName"
android:layout_height="wrap_content"
android:layout_width="fill_parent" />
<View
android:layout_height="0px"
android:layout_width="fill_parent"
android:layout_weight="1" />
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="54dip"
android:background="@android:drawable/bottom_bar">
<Button
android:id="@+id/done"
android:text="@string/done_action"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:minWidth="@dimen/button_minWidth"
android:layout_alignParentRight="true"
android:layout_centerVertical="true" />
</RelativeLayout>
</LinearLayout>

View File

@ -1,60 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2008 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<TextView
android:text="@string/account_setup_options_mail_check_frequency_label"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="?android:attr/textColorPrimary" />
<Spinner
android:id="@+id/account_check_frequency"
android:layout_height="wrap_content"
android:layout_width="fill_parent" />
<CheckBox
android:id="@+id/account_default"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:text="@string/account_setup_options_default_label" />
<CheckBox
android:id="@+id/account_notify"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:text="@string/account_setup_options_notify_label" />
<View
android:layout_width="fill_parent"
android:layout_height="0px"
android:layout_weight="1" />
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="54dip"
android:background="@android:drawable/bottom_bar">
<Button
android:id="@+id/next"
android:text="@string/next_action"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:minWidth="@dimen/button_minWidth"
android:drawableRight="@drawable/button_indicator_next"
android:layout_alignParentRight="true"
android:layout_centerVertical="true" />
</RelativeLayout>
</LinearLayout>

View File

@ -1,112 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2008 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scrollbarStyle="outsideInset">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<TextView
android:text="@string/account_setup_outgoing_smtp_server_label"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="?android:attr/textColorPrimary" />
<!-- Note: we use inputType=textUri as the closest approximation to a server name -->
<EditText
android:id="@+id/account_server"
android:inputType="textUri"
android:layout_height="wrap_content"
android:layout_width="fill_parent" />
<TextView
android:text="@string/account_setup_outgoing_port_label"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="?android:attr/textColorPrimary" />
<EditText
android:id="@+id/account_port"
android:inputType="number"
android:layout_height="wrap_content"
android:layout_width="fill_parent" />
<TextView
android:text="@string/account_setup_outgoing_security_label"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="?android:attr/textColorPrimary" />
<Spinner
android:id="@+id/account_security_type"
android:layout_height="wrap_content"
android:layout_width="fill_parent" />
<CheckBox
android:id="@+id/account_require_login"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/account_setup_outgoing_require_login_label" />
<LinearLayout
android:id="@+id/account_require_login_settings"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:visibility="gone">
<TextView
android:text="@string/account_setup_outgoing_username_label"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="?android:attr/textColorPrimary" />
<EditText
android:id="@+id/account_username"
android:inputType="textEmailAddress"
android:layout_height="wrap_content"
android:layout_width="fill_parent" />
<TextView
android:text="@string/account_setup_outgoing_password_label"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="?android:attr/textColorPrimary" />
<EditText
android:id="@+id/account_password"
android:inputType="textPassword"
android:layout_height="wrap_content"
android:layout_width="fill_parent" />
</LinearLayout>
<View
android:layout_width="fill_parent"
android:layout_height="0px"
android:layout_weight="1" />
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="54dip"
android:background="@android:drawable/bottom_bar">
<Button
android:id="@+id/next"
android:text="@string/next_action"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:minWidth="@dimen/button_minWidth"
android:drawableRight="@drawable/button_indicator_next"
android:layout_alignParentRight="true"
android:layout_centerVertical="true" />
</RelativeLayout>
</LinearLayout>
</ScrollView>

View File

@ -1,56 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2008 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
<LinearLayout
android:id="@+id/empty"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="20sp"
android:text="@string/accounts_welcome"
android:textColor="?android:attr/textColorPrimary" />
<View
android:layout_width="fill_parent"
android:layout_height="0px"
android:layout_weight="1" />
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="54dip"
android:background="@android:drawable/bottom_bar">
<Button
android:id="@+id/add_new_account"
android:layout_width="wrap_content"
android:minWidth="@dimen/button_minWidth"
android:layout_height="wrap_content"
android:text="@string/next_action"
android:drawableRight="@drawable/button_indicator_next"
android:layout_alignParentRight="true"
android:layout_centerVertical="true" />
</RelativeLayout>
</LinearLayout>
</FrameLayout>

View File

@ -1,59 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2008 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="?android:attr/listPreferredItemHeight"
android:orientation="horizontal"
android:gravity="center_vertical"
android:paddingRight="4px">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:paddingLeft="6px">
<TextView
android:id="@+id/description"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="?android:attr/textColorPrimary"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/email"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="?android:attr/textColorSecondary"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
<View
android:layout_height="fill_parent"
android:layout_width="0px"
android:layout_weight="1" />
<TextView
android:id="@+id/new_message_count"
android:ellipsize="end"
android:singleLine="true"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="?android:attr/textColorPrimary"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/text_box_light"
android:paddingLeft="10px"
android:paddingRight="10px"
android:minWidth="64px"
android:gravity="right" />
</LinearLayout>

View File

@ -1,40 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2008 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
<TextView
android:id="@+id/version"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/debug_version_fmt"
/>
<CheckBox
android:id="@+id/debug_logging"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/debug_enable_debug_logging_label"
/>
<CheckBox
android:id="@+id/sensitive_logging"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/debug_enable_sensitive_logging_label"
/>
</LinearLayout>

View File

@ -1,64 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2008 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="?android:attr/listPreferredItemHeight"
android:paddingRight="10px"
android:background="@drawable/folder_message_list_child_background">
<View
android:id="@+id/chip"
android:background="@drawable/appointment_indicator_leftside_1"
android:layout_width="4px"
android:layout_height="56px"
android:layout_centerVertical="true" />
<TextView
android:id="@+id/from"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/chip"
android:ellipsize="end"
android:singleLine="true"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="?android:attr/textColorPrimary"
android:paddingLeft="30px"
android:drawablePadding="4px"
android:paddingTop="12px" />
<TextView
android:id="@+id/date"
android:ellipsize="end"
android:singleLine="true"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="?android:attr/textColorPrimary"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignBaseline="@+id/subject" />
<TextView
android:id="@+id/subject"
android:ellipsize="end"
android:singleLine="true"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="?android:attr/textColorSecondary"
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_below="@id/from"
android:layout_alignLeft="@id/from"
android:layout_toLeftOf="@id/date"
android:paddingLeft="30px"
android:layout_marginRight="6dip" />
</RelativeLayout>

View File

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2008 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="?android:attr/listPreferredItemHeight"
android:gravity="center"
android:orientation="horizontal">
<ProgressBar
android:id="@+id/progress"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
style="?android:attr/progressBarStyleSmall"
android:paddingRight="10px"
/>
<TextView
android:id="@+id/main_text"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="?android:attr/textColorPrimary"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
/>
</LinearLayout>

View File

@ -1,60 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2008 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="?android:attr/listPreferredItemHeight"
android:orientation="horizontal"
android:gravity="center_vertical"
android:paddingLeft="36px"
android:paddingRight="4px">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:gravity="center_vertical">
<TextView
android:id="@+id/folder_name"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="?android:attr/textColorPrimary"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/folder_status"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="?android:attr/textColorTertiary"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
<View
android:layout_height="0dip"
android:layout_width="0dip"
android:layout_weight="1" />
<TextView
android:id="@+id/new_message_count"
android:ellipsize="end"
android:singleLine="true"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="?android:attr/textColorPrimary"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/text_box_light"
android:paddingLeft="10px"
android:paddingRight="10px"
android:minWidth="64px"
android:gravity="right" />
</LinearLayout>

View File

@ -1,140 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2008 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="fill_parent" android:layout_width="fill_parent"
android:orientation="vertical" android:background="#ffffff">
<ScrollView android:layout_width="fill_parent"
android:layout_height="0dip" android:layout_weight="1"
android:scrollbarStyle="outsideInset"
android:fillViewport="true">
<LinearLayout android:orientation="vertical"
android:layout_width="fill_parent" android:layout_height="wrap_content">
<LinearLayout android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content" android:background="#ededed">
<MultiAutoCompleteTextView
android:id="@+id/to" android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="?android:attr/textColorSecondaryInverse"
android:layout_marginLeft="6px"
android:layout_marginRight="6px"
android:inputType="textEmailAddress|textMultiLine"
android:hint="@string/message_compose_to_hint" />
<MultiAutoCompleteTextView
android:id="@+id/cc" android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="?android:attr/textColorSecondaryInverse"
android:layout_marginLeft="6px"
android:layout_marginRight="6px"
android:inputType="textEmailAddress|textMultiLine"
android:hint="@string/message_compose_cc_hint"
android:visibility="gone" />
<MultiAutoCompleteTextView
android:id="@+id/bcc" android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="?android:attr/textColorSecondaryInverse"
android:layout_marginLeft="6px"
android:layout_marginRight="6px"
android:inputType="textEmailAddress|textMultiLine"
android:hint="@string/message_compose_bcc_hint"
android:visibility="gone" />
<EditText android:id="@+id/subject"
android:layout_width="fill_parent"
android:textAppearance="?android:attr/textAppearanceMedium"
android:layout_height="wrap_content"
android:textColor="?android:attr/textColorSecondaryInverse"
android:layout_marginLeft="6px"
android:layout_marginRight="6px"
android:hint="@string/message_compose_subject_hint"
android:inputType="textEmailSubject|textAutoCorrect|textCapSentences|textImeMultiLine" />
<!--
Empty container for storing attachments. We'll stick
instances of message_compose_attachment.xml in here.
-->
<LinearLayout android:id="@+id/attachments"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" />
<View android:layout_width="fill_parent"
android:layout_height="1px"
android:background="@drawable/divider_horizontal_email" />
</LinearLayout>
<EditText android:id="@+id/message_content"
android:textColor="?android:attr/textColorSecondaryInverse"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1.0"
android:textAppearance="?android:attr/textAppearanceMedium"
android:gravity="left|top"
android:minLines="3"
android:inputType="textMultiLine|textAutoCorrect|textCapSentences" />
<!-- quoted text bar -->
<RelativeLayout android:id="@+id/quoted_text_bar"
android:layout_width="fill_parent"
android:layout_height="45px" android:background="@drawable/email_quoted_bar">
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="?android:attr/textColorSecondaryInverse"
android:text="@string/message_compose_quoted_text_label"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true" />
<ImageButton android:id="@+id/quoted_text_delete"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@android:drawable/btn_dialog"
android:layout_centerVertical="true"
android:layout_alignParentRight="true" />
</RelativeLayout>
<WebView android:id="@+id/quoted_text"
android:layout_height="wrap_content"
android:layout_width="fill_parent" />
</LinearLayout>
</ScrollView>
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingTop="5dip"
android:paddingLeft="4dip"
android:paddingRight="4dip"
android:paddingBottom="1dip"
android:background="@android:drawable/bottom_bar" >
<Button
android:id="@+id/send"
android:text="@string/send_action"
android:layout_height="fill_parent"
android:layout_width="0dip"
android:layout_weight="1" />
<Button
android:id="@+id/save"
android:text="@string/save_draft_action"
android:layout_height="fill_parent"
android:layout_width="0dip"
android:layout_weight="1" />
<Button
android:id="@+id/discard"
android:text="@string/discard_action"
android:layout_height="fill_parent"
android:layout_width="0dip"
android:layout_weight="1" />
</LinearLayout>
</LinearLayout>

View File

@ -1,51 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2008 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="54px"
android:paddingRight="6px"
android:paddingTop="6px"
android:paddingBottom="6px">
<ImageButton
android:id="@+id/attachment_delete"
android:src="@android:drawable/ic_delete"
android:layout_alignParentRight="true"
android:layout_height="42px"
android:layout_width="42px" />
<TextView
android:id="@+id/attachment_name"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="?android:attr/textColorSecondaryInverse"
android:layout_width="1dip"
android:layout_height="42px"
android:background="@drawable/text_box"
android:paddingLeft="36px"
android:singleLine="true"
android:ellipsize="start"
android:gravity="center_vertical"
android:layout_marginLeft="6px"
android:layout_marginRight="4px"
android:layout_alignParentLeft="true"
android:layout_toLeftOf="@id/attachment_delete" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_email_attachment"
android:layout_marginLeft="1px"
android:layout_centerVertical="true" />
</RelativeLayout>

View File

@ -1,88 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2008 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@android:color/white">
<ScrollView
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="1"
android:scrollbarStyle="outsideInset"
android:fadingEdge="none">
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="1">
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="54px"
android:paddingTop="4px">
<Button
android:id="@+id/previous"
android:text="@string/message_view_prev_action"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:minWidth="@dimen/button_minWidth"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true" />
<Button
android:id="@+id/next"
android:text="@string/message_view_next_action"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:minWidth="@dimen/button_minWidth"
android:layout_alignParentRight="true"
android:layout_centerVertical="true" />
</RelativeLayout>
<include layout="@layout/message_view_header" />
</LinearLayout>
</ScrollView>
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingTop="5dip"
android:paddingLeft="4dip"
android:paddingRight="4dip"
android:paddingBottom="1dip"
android:background="@android:drawable/bottom_bar">
<Button
android:id="@+id/reply"
android:text="@string/reply_action"
android:layout_height="fill_parent"
android:layout_width="0dip"
android:layout_weight="1" />
<Button
android:id="@+id/reply_all"
android:text="@string/reply_all_action"
android:layout_height="fill_parent"
android:layout_width="0dip"
android:layout_weight="1" />
<Button
android:id="@+id/delete"
android:text="@string/delete_action"
android:layout_height="fill_parent"
android:layout_width="0dip"
android:layout_weight="1" />
</LinearLayout>
</LinearLayout>

View File

@ -1,96 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2008 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingBottom="4px">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingLeft="4px">
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/text_box"
android:gravity="center_vertical">
<ImageView
android:id="@+id/attachment_icon"
android:layout_width="62px"
android:layout_height="62px"
android:src="@drawable/attached_image_placeholder"
android:layout_marginLeft="4px"
android:layout_marginRight="4px"
android:layout_marginBottom="4px"
android:layout_marginTop="4px" />
<TextView
android:id="@+id/attachment_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="?android:attr/textColorSecondaryInverse"
android:singleLine="true"
android:ellipsize="middle"
android:layout_alignParentTop="true"
android:layout_toRightOf="@id/attachment_icon"
android:layout_alignParentRight="true"
android:layout_alignWithParentIfMissing="true" />
<TextView
android:id="@+id/attachment_info"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="?android:attr/textColorTertiaryInverse"
android:singleLine="true"
android:ellipsize="middle"
android:layout_alignLeft="@id/attachment_name"
android:layout_below="@id/attachment_name"
android:layout_alignWithParentIfMissing="true" />
<Button
android:id="@+id/download"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="?android:attr/buttonStyleSmall"
android:text="@string/message_view_attachment_download_action"
android:singleLine="true"
android:layout_alignParentRight="true"
android:layout_below="@id/attachment_name"
android:layout_marginTop="6px" />
<Button
android:id="@+id/view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="?android:attr/buttonStyleSmall"
android:text="@string/message_view_attachment_view_action"
android:singleLine="true"
android:layout_toLeftOf="@id/download"
android:layout_alignWithParentIfMissing="true"
android:layout_below="@id/attachment_name"
android:layout_marginTop="6px" />
</RelativeLayout>
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_gravity="center_vertical">
<ImageView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:src="@drawable/ic_email_attachment"
android:layout_alignParentLeft="true" />
</LinearLayout>
</FrameLayout>

View File

@ -1,157 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2008 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<merge xmlns:android="http://schemas.android.com/apk/res/android">
<!-- header area -->
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:background="@drawable/ic_email_thread_open_top_default">
<LinearLayout
android:id="@+id/from_container"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/from"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="?android:attr/textColorPrimaryInverse"
android:layout_width="0dip"
android:layout_weight="1.0"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:singleLine="true"
android:ellipsize="end"
android:paddingRight="6px" />
<View
android:id="@+id/attachment"
android:background="@drawable/ic_email_attachment_small"
android:layout_width="22px"
android:layout_height="22px"
android:layout_alignTop="@id/from" />
<TextView
android:id="@+id/date"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="?android:attr/textColorPrimaryInverse"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="4px"
android:singleLine="true" />
</LinearLayout>
<LinearLayout
android:id="@+id/to_container"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<TextView
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="?android:attr/textColorSecondaryInverse"
android:textStyle="bold"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/message_view_to_label" />
<TextView
android:id="@+id/to"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="?android:attr/textColorSecondaryInverse"
android:layout_width="0dip"
android:layout_weight="1.0"
android:layout_height="wrap_content"
android:layout_marginLeft="4px"
android:singleLine="false"
android:ellipsize="none" />
<TextView
android:id="@+id/time"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="?android:attr/textColorPrimaryInverse"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="4px"
android:singleLine="true" />
</LinearLayout>
<LinearLayout
android:id="@+id/cc_container"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<TextView
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="?android:attr/textColorSecondaryInverse"
android:textStyle="bold"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/message_view_cc_label" />
<TextView
android:id="@+id/cc"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="?android:attr/textColorSecondaryInverse"
android:layout_width="0dip"
android:layout_weight="1.0"
android:layout_height="wrap_content"
android:layout_marginLeft="4px"
android:singleLine="false"
android:ellipsize="none" />
</LinearLayout>
<TextView
android:id="@+id/subject"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="?android:attr/textColorSecondaryInverse"
android:textStyle="bold"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:singleLine="false"
android:ellipsize="none" />
</LinearLayout>
<LinearLayout
android:id="@+id/show_pictures_section"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#ffefefef"
android:layout_marginTop="6dip"
android:paddingLeft="6dip"
android:paddingRight="3dip"
android:paddingTop="4dip"
android:paddingBottom="4dip"
android:baselineAligned="false"
android:visibility="gone">
<TextView
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="?android:attr/textColorSecondaryInverse"
android:text="@string/message_view_show_pictures_instructions"
android:layout_gravity="center"
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_weight="1.0" />
<Button
android:id="@+id/show_pictures"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/message_view_show_pictures_action" />
</LinearLayout>
<!-- content area -->
<WebView
android:id="@+id/message_content"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:background="#ffffff" />
<!-- attachments area -->
<LinearLayout
android:id="@+id/attachments"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="4dip"
android:background="#ffffff">
</LinearLayout>
</merge>

View File

@ -1,43 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2008 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="50px"
android:orientation="horizontal">
<TextView android:id="@+id/text1"
android:textColor="?android:attr/textColorPrimaryInverse"
android:textAppearance="?android:attr/textAppearanceMedium"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:paddingLeft="6px"
android:singleLine="true"
android:ellipsize="end"
/>
<TextView android:id="@+id/text2"
android:textColor="?android:attr/textColorSecondaryInverse"
android:textAppearance="?android:attr/textAppearanceSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/text1"
android:layout_centerVertical="true"
android:paddingLeft="6px"
android:singleLine="true"
android:ellipsize="end"
/>
</RelativeLayout>

View File

@ -1,24 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2008 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@+id/open"
android:title="@string/open_action" />
<item android:id="@+id/edit_account"
android:title="@string/account_settings_action" />
<item android:id="@+id/delete_account"
android:title="@string/remove_account_action" />
</menu>

View File

@ -1,41 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2008 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:id="@+id/check_mail"
android:alphabeticShortcut="r"
android:title="@string/refresh_action"
android:icon="@*android:drawable/ic_menu_refresh"
/>
<item
android:id="@+id/add_new_account"
android:title="@string/add_account_action"
android:icon="@android:drawable/ic_menu_add"
/>
<item
android:id="@+id/compose"
android:alphabeticShortcut="c"
android:title="@string/compose_action"
android:icon="@*android:drawable/ic_menu_compose"
/>
<!--
<item android:id="@+id/search"
android:title="@string/search_action" />
<item android:id="@+id/preferences"
android:title="@string/preferences_action" />
-->
</menu>

View File

@ -1,20 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2008 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@+id/dump_settings"
android:title="@string/dump_settings_action" />
</menu>

View File

@ -1,42 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2008 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:id="@+id/open"
android:title="@string/open_action"
/>
<item
android:id="@+id/delete"
android:title="@string/delete_action"
/>
<item
android:id="@+id/forward"
android:title="@string/forward_action"
/>
<item
android:id="@+id/reply_all"
android:title="@string/reply_all_action"
/>
<item
android:id="@+id/reply"
android:title="@string/reply_action"
/>
<item
android:id="@+id/mark_as_read"
android:title="@string/mark_as_read_action"
/>
</menu>

View File

@ -1,47 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2008 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:id="@+id/refresh"
android:alphabeticShortcut="r"
android:title="@string/refresh_action"
android:icon="@*android:drawable/ic_menu_refresh"
/>
<item
android:id="@+id/compose"
android:alphabeticShortcut="c"
android:title="@string/compose_action"
android:icon="@*android:drawable/ic_menu_compose"
/>
<item
android:id="@+id/accounts"
android:title="@string/accounts_action"
android:icon="@*android:drawable/ic_menu_account_list"
/>
<item
android:id="@+id/account_settings"
android:title="@string/account_settings_action"
android:icon="@android:drawable/ic_menu_preferences"
/>
<!--
<item android:id="@+id/search"
android:title="@string/search_action" />
<item android:id="@+id/preferences"
android:title="@string/preferences_action" />
-->
</menu>

View File

@ -1,48 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2008 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:id="@+id/add_cc_bcc"
android:alphabeticShortcut="c"
android:title="@string/add_cc_bcc_action"
android:icon="@*android:drawable/ic_menu_cc"
/>
<item
android:id="@+id/send"
android:alphabeticShortcut="s"
android:title="@string/send_action"
android:icon="@android:drawable/ic_menu_send"
/>
<item
android:id="@+id/save"
android:alphabeticShortcut="d"
android:title="@string/save_draft_action"
android:icon="@drawable/ic_menu_save_draft"
/>
<item
android:id="@+id/discard"
android:alphabeticShortcut="q"
android:title="@string/discard_action"
android:icon="@android:drawable/ic_menu_close_clear_cancel"
/>
<item
android:id="@+id/add_attachment"
android:alphabeticShortcut="n"
android:title="@string/add_attachment_action"
android:icon="@*android:drawable/ic_menu_attachment"
/>
</menu>

View File

@ -1,48 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2008 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:id="@+id/delete"
android:alphabeticShortcut="q"
android:title="@string/delete_action"
android:icon="@android:drawable/ic_menu_delete"
/>
<item
android:id="@+id/forward"
android:alphabeticShortcut="f"
android:title="@string/forward_action"
android:icon="@drawable/ic_menu_forward_mail"
/>
<item
android:id="@+id/reply"
android:alphabeticShortcut="r"
android:title="@string/reply_action"
android:icon="@drawable/ic_menu_reply"
/>
<item
android:id="@+id/reply_all"
android:alphabeticShortcut="a"
android:title="@string/reply_all_action"
android:icon="@drawable/ic_menu_reply_all"
/>
<item
android:id="@+id/mark_as_unread"
android:alphabeticShortcut="u"
android:title="@string/mark_as_unread_action"
android:icon="@*android:drawable/ic_menu_mark"
/>
</menu>

View File

@ -1,172 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright (C) 2009 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<resources xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="read_attachment_label">"přečíst přílohy e-mailu"</string>
<string name="read_attachment_desc">"Umožňuje této aplikaci čtení e-mailových příloh."</string>
<string name="app_name">"E-mail"</string>
<string name="accounts_title">"Vaše účty"</string>
<string name="compose_title">"Nová"</string>
<string name="debug_title">"Ladění"</string>
<string name="next_action">"Další"</string>
<string name="okay_action">"OK"</string>
<string name="cancel_action">"Zrušit"</string>
<string name="send_action">"Odeslat"</string>
<string name="reply_action">"Odpovědět"</string>
<string name="reply_all_action">"Odpovědět všem"</string>
<string name="delete_action">"Smazat"</string>
<string name="forward_action">"Přeposlat"</string>
<string name="done_action">"Hotovo"</string>
<string name="discard_action">"Zrušit"</string>
<string name="save_draft_action">"Uložit jako koncept"</string>
<string name="refresh_action">"Obnovit"</string>
<string name="add_account_action">"Přidat účet"</string>
<string name="compose_action">"Nová"</string>
<string name="search_action">"Hledat"</string>
<string name="open_action">"Otevřít"</string>
<string name="account_settings_action">"Nastavení účtu"</string>
<string name="remove_account_action">"Odebrat účet"</string>
<string name="accounts_action">"Účty"</string>
<string name="mark_as_read_action">"Označit jako přečtené"</string>
<string name="mark_as_unread_action">"Označit jako nepřečtené"</string>
<string name="add_cc_bcc_action">"Přidat příjemce kopie/skryté kopie"</string>
<string name="add_attachment_action">"Připojit přílohu"</string>
<string name="dump_settings_action">"Nastavení výpisu"</string>
<string name="accounts_context_menu_title">"Možnosti účtu"</string>
<string name="status_loading_more">"Načítání zpráv..."</string>
<string name="status_network_error">"Chyba připojení"</string>
<string name="status_loading_more_failed">"Opakovat načítání dalších zpráv"</string>
<string name="notification_new_title">"Nový e-mail"</string>
<string name="notification_new_one_account_fmt">"Nepřečtené zprávy: <xliff:g id="UNREAD_MESSAGE_COUNT">%d</xliff:g>(<xliff:g id="ACCOUNT">%s</xliff:g>)"</string>
<string name="notification_new_multi_account_fmt">"v(e) <xliff:g id="NUMBER_ACCOUNTS">%d</xliff:g> účtech"</string>
<string name="special_mailbox_name_inbox">"Doručená pošta"</string>
<string name="accounts_welcome">"Vítá vás nastavení aplikace Email!"\n\n"V aplikaci Email můžete používat jakékoli e-mailové účty."\n\n"Nejznámější e-mailové účty lze nastavit ve dvou krocích!"</string>
<string name="debug_version_fmt">"Verze: <xliff:g id="VERSION">%s</xliff:g>"</string>
<string name="debug_enable_debug_logging_label">"Povolit zvláštní protokolování ladění?"</string>
<string name="debug_enable_sensitive_logging_label">"Povolit protokolování ladění citlivých informací? (Může zobrazovat hesla v protokolech.)"</string>
<string name="message_list_load_more_messages_action">"Načíst další zprávy"</string>
<string name="message_compose_to_hint">"Komu"</string>
<string name="message_compose_cc_hint">"Kopie"</string>
<string name="message_compose_bcc_hint">"Skrytá kopie"</string>
<string name="message_compose_subject_hint">"Předmět"</string>
<string name="message_compose_fwd_header_fmt">\n\n"-------- Původní zpráva --------"\n"Předmět: <xliff:g id="SUBJECT">%s</xliff:g>"\n"Odesílatel: <xliff:g id="SENDER">%s</xliff:g>"\n"Komu: <xliff:g id="TO">%s</xliff:g>"\n"Kopie: <xliff:g id="CC_0">%s</xliff:g>"\n\n</string>
<string name="message_compose_reply_header_fmt">\n\n"<xliff:g id="SENDER">%s</xliff:g>napsal/a:"\n\n</string>
<string name="message_compose_quoted_text_label">"Text v uvozovkách"</string>
<string name="message_compose_error_no_recipients">"Je třeba přidat nejméně jednoho příjemce."</string>
<string name="message_compose_attachments_skipped_toast">"Některé přílohy nelze přeposlat, protože nebyly staženy."</string>
<string name="message_view_to_label">"Komu:"</string>
<string name="message_view_cc_label">"Kopie:"</string>
<string name="message_view_attachment_view_action">"Otevřít"</string>
<string name="message_view_attachment_download_action">"Uložit"</string>
<string name="message_view_prev_action">"Náhled zprávy"</string>
<string name="message_view_next_action">"Další zpráva"</string>
<string name="message_view_status_attachment_saved">"Příloha byla uložena na SD kartu jako <xliff:g id="FILENAME">%s</xliff:g>."</string>
<string name="message_view_status_attachment_not_saved">"Nelze uložit přílohu na SD kartu."</string>
<string name="message_view_show_pictures_instructions">"Výběrem možnosti Zobrazit obrázky zobrazíte vnořené obrázky."</string>
<string name="message_view_show_pictures_action">"Zobrazit obrázky"</string>
<string name="message_view_fetching_attachment_toast">"Načítání přílohy"</string>
<string name="message_deleted_toast">"Zpráva byla smazána."</string>
<string name="message_discarded_toast">"Zpráva byla zrušena."</string>
<string name="message_saved_toast">"Zpráva byla uložena jako koncept."</string>
<string name="account_setup_basics_title">"Nastavit e-mail"</string>
<string name="account_setup_basics_instructions">"Zadejte e-mailovou adresu účtu:"</string>
<string name="account_setup_basics_email_hint">"E-mailová adresa"</string>
<string name="account_setup_basics_password_hint">"Heslo"</string>
<string name="account_setup_basics_default_label">"Ve výchozím nastavení odesílat e-maily z tohoto účtu."</string>
<string name="account_setup_basics_manual_setup_action">"Ruční nastavení"</string>
<string name="account_setup_username_password_toast">"Zadejte platnou e-mailovou adresu a heslo."</string>
<string name="account_setup_check_settings_retr_info_msg">"Načítání informací o účtu..."</string>
<string name="account_setup_check_settings_check_incoming_msg">"Kontrola nastavení serveru příchozí pošty..."</string>
<string name="account_setup_check_settings_check_outgoing_msg">"Kontrola nastavení serveru odchozí pošty..."</string>
<string name="account_setup_check_settings_canceling_msg">"Probíhá zrušení..."</string>
<string name="account_setup_names_title">"Nastavit e-mail"</string>
<string name="account_setup_names_instructions">"Váš účet je nastaven, e-mail je na cestě!"</string>
<string name="account_setup_names_account_name_label">"Pojmenovat tento účet (nepovinné)"</string>
<string name="account_setup_names_user_name_label">"Vaše jméno (zobrazované v odchozích zprávách)"</string>
<string name="account_setup_account_type_title">"Přidat nový e-mailový účet"</string>
<string name="account_setup_account_type_instructions">"O jaký typ účtu se jedná?"</string>
<string name="account_setup_account_type_pop_action">"Účet POP3"</string>
<string name="account_setup_account_type_imap_action">"Účet IMAP"</string>
<string name="account_setup_incoming_title">"Nastavení serveru příchozí pošty"</string>
<string name="account_setup_incoming_username_label">"Uživatelské jméno"</string>
<string name="account_setup_incoming_password_label">"Heslo"</string>
<string name="account_setup_incoming_pop_server_label">"Server POP"</string>
<string name="account_setup_incoming_imap_server_label">"Server IMAP"</string>
<string name="account_setup_incoming_port_label">"Port"</string>
<string name="account_setup_incoming_security_label">"Typ zabezpečení"</string>
<string name="account_setup_incoming_security_none_label">"Nic"</string>
<string name="account_setup_incoming_security_ssl_optional_label">"SSL (pokud je k dispozici)"</string>
<string name="account_setup_incoming_security_ssl_label">"SSL (vždy)"</string>
<string name="account_setup_incoming_security_tls_optional_label">"TLS (je-li k dispozici)"</string>
<string name="account_setup_incoming_security_tls_label">"TLS (vždy)"</string>
<string name="account_setup_incoming_delete_policy_label">"Odstranit e-mail ze serveru"</string>
<string name="account_setup_incoming_delete_policy_never_label">"Nikdy"</string>
<string name="account_setup_incoming_delete_policy_7days_label">"Po 7 dnech"</string>
<string name="account_setup_incoming_delete_policy_delete_label">"Při odstranění ze složky Doručená pošta"</string>
<string name="account_setup_incoming_imap_path_prefix_label">"Předpona cesty IMAP"</string>
<string name="account_setup_incoming_imap_path_prefix_hint">"Nepovinné"</string>
<string name="account_setup_outgoing_title">"Nastavení odchozího serveru"</string>
<string name="account_setup_outgoing_smtp_server_label">"Server SMTP"</string>
<string name="account_setup_outgoing_port_label">"Port"</string>
<string name="account_setup_outgoing_security_label">"Typ zabezpečení"</string>
<string name="account_setup_outgoing_require_login_label">"Požadovat přihlášení"</string>
<string name="account_setup_outgoing_username_label">"Uživatelské jméno"</string>
<string name="account_setup_outgoing_password_label">"Heslo"</string>
<string name="account_setup_options_title">"Možnosti účtu"</string>
<string name="account_setup_options_mail_check_frequency_label">"Četnost kontrol e-mailů"</string>
<string name="account_setup_options_mail_check_frequency_never">"Nikdy"</string>
<string name="account_setup_options_mail_check_frequency_5min">"Každých 5 minut"</string>
<string name="account_setup_options_mail_check_frequency_10min">"Každých 10 minut"</string>
<string name="account_setup_options_mail_check_frequency_15min">"Každých 15 minut"</string>
<string name="account_setup_options_mail_check_frequency_30min">"Každých 30 minut"</string>
<string name="account_setup_options_mail_check_frequency_1hour">"Každou hodinu"</string>
<string name="account_setup_options_default_label">"Ve výchozím nastavení odesílat e-maily z tohoto účtu."</string>
<string name="account_setup_options_notify_label">"Upozornit mě na příchod e-mailu"</string>
<string name="account_setup_failed_dlg_title">"Nastavení nelze dokončit"</string>
<string name="account_setup_failed_dlg_auth_message">"Uživatelské jméno nebo heslo není správné"</string>
<string name="account_setup_failed_dlg_auth_message_fmt">"Uživatelské jméno nebo heslo není správné."\n"(<xliff:g id="ERROR">%s</xliff:g>)"</string>
<string name="account_setup_failed_dlg_certificate_message">"Nelze se bezpečně připojit k serveru."</string>
<string name="account_setup_failed_dlg_certificate_message_fmt">"Nelze se bezpečně připojit k serveru."\n"(<xliff:g id="ERROR">%s</xliff:g>)"</string>
<string name="account_setup_failed_dlg_server_message">"Nelze se připojit k serveru."</string>
<string name="account_setup_failed_dlg_server_message_fmt">"Nelze se připojit k serveru."\n"(<xliff:g id="ERROR">%s</xliff:g>)"</string>
<string name="account_setup_failed_tls_required">"Služba TLS je požadována, ale není podporována na serveru."</string>
<string name="account_setup_failed_auth_required">"Server nepodporuje metody ověření."</string>
<string name="account_setup_failed_security">"Nelze navázat připojení k serveru z důvodu chyby zabezpečení."</string>
<string name="account_setup_failed_ioerror">"Nelze navázat připojení k serveru."</string>
<string name="account_setup_failed_dlg_edit_details_action">"Upravit podrobnosti"</string>
<string name="account_settings_title_fmt">"Obecná nastavení"</string>
<string name="account_settings_default_label">"Výchozí účet"</string>
<string name="account_settings_default_summary">"Ve výchozím nastavení odesílat e-maily z tohoto účtu"</string>
<string name="account_settings_notify_label">"E-mailová upozornění"</string>
<string name="account_settings_notify_summary">"Zobrazit upozornění na příchod e-mailu na stavovém řádku"</string>
<string name="account_settings_mail_check_frequency_label">"Četnost kontrol e-mailů"</string>
<string name="account_settings_incoming_label">"Nastavení příchozí pošty"</string>
<string name="account_settings_outgoing_label">"Nastavení odchozí pošty"</string>
<string name="account_settings_add_account_label">"Přidat další účet"</string>
<string name="account_settings_description_label">"Název účtu"</string>
<string name="account_settings_name_label">"Vaše jméno"</string>
<string name="account_settings_notifications">"Nastavení upozornění"</string>
<string name="account_settings_vibrate_enable">"Vibrovat"</string>
<string name="account_settings_vibrate_summary">"Při příchodu e-mailu také vibrovat"</string>
<string name="account_settings_ringtone">"Zvolit vyzváněcí tón"</string>
<string name="account_settings_servers">"Nastavení serveru"</string>
<string name="account_delete_dlg_title">"Odebrat účet"</string>
<string name="account_delete_dlg_instructions_fmt">"Účet <xliff:g id="ACCOUNT">%s</xliff:g> bude z aplikace Email odebrán."</string>
<string name="provider_note_yahoo">"Přístup do schránky není u některých poštovních účtů Yahoo! podporován. Pokud máte problémy s připojením, získáte další informace na webové stránce yahoo.com."</string>
<string name="provider_note_yahoo_uk">"Před nastavením tohoto e-mailového účtu přejděte na web Yahoo! a povolte u tohoto účtu e-mailový přístup POP3."</string>
<string name="provider_note_live">"Pouze některé účty typu Plus obsahují přístup POP umožňující připojení tohoto programu. Pokud se nemůžete přihlásit se správnou e-mailovou adresou a heslem, pravděpodobně nemáte placený účet Plus. Spusťte webový prohlížeč a vyhledejte přístup k těmto poštovním účtům."</string>
<string name="provider_note_t_online">"Před nastavením tohoto e-mailového účtu navštivte web T-Online a vytvořte heslo pro e-mailový přístup POP3."</string>
</resources>

View File

@ -1,172 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright (C) 2009 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<resources xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="read_attachment_label">"Anhänge lesen"</string>
<string name="read_attachment_desc">"Erlaubt der Anwendung, Ihre Anhänge zu lesen."</string>
<string name="app_name">"E-Mail"</string>
<string name="accounts_title">"Ihre Konten"</string>
<string name="compose_title">"E-Mail schreiben"</string>
<string name="debug_title">"Fehlersuche"</string>
<string name="next_action">"Weiter"</string>
<string name="okay_action">"OK"</string>
<string name="cancel_action">"Abbrechen"</string>
<string name="send_action">"Senden"</string>
<string name="reply_action">"Antworten"</string>
<string name="reply_all_action">"Allen antworten"</string>
<string name="delete_action">"Löschen"</string>
<string name="forward_action">"Weiterleiten"</string>
<string name="done_action">"Fertig"</string>
<string name="discard_action">"Löschen"</string>
<string name="save_draft_action">"Als Entwurf speichern"</string>
<string name="refresh_action">"Aktualisieren"</string>
<string name="add_account_action">"Konto hinzufügen"</string>
<string name="compose_action">"E-Mail schreiben"</string>
<string name="search_action">"Suchen"</string>
<string name="open_action">"Öffnen"</string>
<string name="account_settings_action">"Kontoeinstellungen"</string>
<string name="remove_account_action">"Konto entfernen"</string>
<string name="accounts_action">"Konten"</string>
<string name="mark_as_read_action">"Als gelesen markieren"</string>
<string name="mark_as_unread_action">"Als ungelesen markieren"</string>
<string name="add_cc_bcc_action">"Feld \"Cc\"/\"Bcc\" hinzufügen"</string>
<string name="add_attachment_action">"Anhang hinzufügen"</string>
<string name="dump_settings_action">"Einstellungen für Speicherauszug"</string>
<string name="accounts_context_menu_title">"Kontooptionen"</string>
<string name="status_loading_more">"Nachrichten werden geladen..."</string>
<string name="status_network_error">"Verbindungsfehler"</string>
<string name="status_loading_more_failed">"Laden weiterer Nachrichten erneut versuchen"</string>
<string name="notification_new_title">"Neue E-Mail"</string>
<string name="notification_new_one_account_fmt">"<xliff:g id="UNREAD_MESSAGE_COUNT">%d</xliff:g> ungelesen (<xliff:g id="ACCOUNT">%s</xliff:g>)"</string>
<string name="notification_new_multi_account_fmt">"in <xliff:g id="NUMBER_ACCOUNTS">%d</xliff:g> Google-Konten"</string>
<string name="special_mailbox_name_inbox">"Posteingang"</string>
<string name="accounts_welcome">"Willkommen bei der Einrichtung von E-Mails."\n\n"Nutzen Sie ein beliebiges E-Mail-Konto."\n\n"Gängige E-Mail-Konten können in nur zwei Schritten eingerichtet werden."</string>
<string name="debug_version_fmt">"Version: <xliff:g id="VERSION">%s</xliff:g>"</string>
<string name="debug_enable_debug_logging_label">"Zusätzliche Debug-Protokollierung aktivieren?"</string>
<string name="debug_enable_sensitive_logging_label">"Debug-Protokoll für sensible Daten aktivieren? (Passwörter werden evtl. in Protokollen angezeigt.)"</string>
<string name="message_list_load_more_messages_action">"Weitere Nachrichten laden"</string>
<string name="message_compose_to_hint">"An"</string>
<string name="message_compose_cc_hint">"Cc"</string>
<string name="message_compose_bcc_hint">"Bcc"</string>
<string name="message_compose_subject_hint">"Betreff"</string>
<string name="message_compose_fwd_header_fmt">\n\n"-------- Originalnachricht --------"\n"Betreff: <xliff:g id="SUBJECT">%s</xliff:g>"\n"Von: <xliff:g id="SENDER">%s</xliff:g>"\n"An: <xliff:g id="TO">%s</xliff:g>"\n"Cc: <xliff:g id="CC_0">%s</xliff:g>"\n\n</string>
<string name="message_compose_reply_header_fmt">\n\n"<xliff:g id="SENDER">%s</xliff:g> schrieb:"\n\n</string>
<string name="message_compose_quoted_text_label">"Zitierter Text"</string>
<string name="message_compose_error_no_recipients">"Sie müssen mindestens einen Empfänger hinzufügen."</string>
<string name="message_compose_attachments_skipped_toast">"Einige Anhänge können nicht weitergeleitet werden, da Sie noch nicht heruntergeladen wurden."</string>
<string name="message_view_to_label">"An:"</string>
<string name="message_view_cc_label">"Cc:"</string>
<string name="message_view_attachment_view_action">"Öffnen"</string>
<string name="message_view_attachment_download_action">"Speichern"</string>
<string name="message_view_prev_action">"Vorherige Nachricht"</string>
<string name="message_view_next_action">"Nächste Nachricht"</string>
<string name="message_view_status_attachment_saved">"Anhang auf SD-Speicherkarte unter \"<xliff:g id="FILENAME">%s</xliff:g>\" abgespeichert"</string>
<string name="message_view_status_attachment_not_saved">"Speichern des Anhangs auf SD-Karte nicht möglich"</string>
<string name="message_view_show_pictures_instructions">"Wählen Sie \"Bilder anzeigen\" aus, um eingebettete Bilder anzuzeigen."</string>
<string name="message_view_show_pictures_action">"Bilder anzeigen"</string>
<string name="message_view_fetching_attachment_toast">"Anhang wird abgerufen"</string>
<string name="message_deleted_toast">"Nachricht gelöscht"</string>
<string name="message_discarded_toast">"Nachricht gelöscht"</string>
<string name="message_saved_toast">"Nachricht als Entwurf gespeichert"</string>
<string name="account_setup_basics_title">"E-Mail einrichten"</string>
<string name="account_setup_basics_instructions">"Geben Sie Ihre im Konto gespeicherte E-Mail-Adresse ein:"</string>
<string name="account_setup_basics_email_hint">"E-Mail-Adresse"</string>
<string name="account_setup_basics_password_hint">"Passwort"</string>
<string name="account_setup_basics_default_label">"E-Mails standardmäßig von diesem Konto senden"</string>
<string name="account_setup_basics_manual_setup_action">"Manuelle Einrichtung"</string>
<string name="account_setup_username_password_toast">"Geben Sie eine gültige E-Mail-Adresse und ein gültiges Passwort ein."</string>
<string name="account_setup_check_settings_retr_info_msg">"Kontoinformationen werden abgerufen..."</string>
<string name="account_setup_check_settings_check_incoming_msg">"Einstellungen des Eingangsservers werden überprüft..."</string>
<string name="account_setup_check_settings_check_outgoing_msg">"Einstellungen des Ausgangsservers werden überprüft..."</string>
<string name="account_setup_check_settings_canceling_msg">"Vorgang wird abgebrochen..."</string>
<string name="account_setup_names_title">"E-Mail einrichten"</string>
<string name="account_setup_names_instructions">"Ihr Konto ist nun eingerichtet."</string>
<string name="account_setup_names_account_name_label">"Konto benennen (optional)"</string>
<string name="account_setup_names_user_name_label">"Ihr Name (wird für ausgehende Nachrichten angezeigt)"</string>
<string name="account_setup_account_type_title">"Neues E-Mail-Konto hinzufügen"</string>
<string name="account_setup_account_type_instructions">"Um welchen Kontotyp handelt es sich hierbei?"</string>
<string name="account_setup_account_type_pop_action">"POP3-Konto"</string>
<string name="account_setup_account_type_imap_action">"IMAP-Konto"</string>
<string name="account_setup_incoming_title">"Einstellungen für Eingangsserver"</string>
<string name="account_setup_incoming_username_label">"Nutzername"</string>
<string name="account_setup_incoming_password_label">"Passwort"</string>
<string name="account_setup_incoming_pop_server_label">"POP3-Server"</string>
<string name="account_setup_incoming_imap_server_label">"IMAP-Server"</string>
<string name="account_setup_incoming_port_label">"Port"</string>
<string name="account_setup_incoming_security_label">"Sicherheitstyp"</string>
<string name="account_setup_incoming_security_none_label">"Keine"</string>
<string name="account_setup_incoming_security_ssl_optional_label">"SSL (wenn verfügbar)"</string>
<string name="account_setup_incoming_security_ssl_label">"SSL (immer)"</string>
<string name="account_setup_incoming_security_tls_optional_label">"TLS (wenn verfügbar)"</string>
<string name="account_setup_incoming_security_tls_label">"TLS (immer)"</string>
<string name="account_setup_incoming_delete_policy_label">"E-Mail von Server löschen"</string>
<string name="account_setup_incoming_delete_policy_never_label">"Nie"</string>
<string name="account_setup_incoming_delete_policy_7days_label">"Nach 7 Tagen"</string>
<string name="account_setup_incoming_delete_policy_delete_label">"Wenn ich sie aus dem Posteingang lösche"</string>
<string name="account_setup_incoming_imap_path_prefix_label">"IMAP-Pfadpräfix"</string>
<string name="account_setup_incoming_imap_path_prefix_hint">"Optional"</string>
<string name="account_setup_outgoing_title">"Einstellungen für Postausgangsserver"</string>
<string name="account_setup_outgoing_smtp_server_label">"SMTP-Server"</string>
<string name="account_setup_outgoing_port_label">"Port"</string>
<string name="account_setup_outgoing_security_label">"Sicherheitstyp"</string>
<string name="account_setup_outgoing_require_login_label">"Anmeldung erforderlich"</string>
<string name="account_setup_outgoing_username_label">"Nutzername"</string>
<string name="account_setup_outgoing_password_label">"Passwort"</string>
<string name="account_setup_options_title">"Kontooptionen"</string>
<string name="account_setup_options_mail_check_frequency_label">"Abrufhäufigkeit"</string>
<string name="account_setup_options_mail_check_frequency_never">"Nie"</string>
<string name="account_setup_options_mail_check_frequency_5min">"Alle 5 Minuten"</string>
<string name="account_setup_options_mail_check_frequency_10min">"Alle 10 Minuten"</string>
<string name="account_setup_options_mail_check_frequency_15min">"Alle 15 Minuten"</string>
<string name="account_setup_options_mail_check_frequency_30min">"Alle 30 Minuten"</string>
<string name="account_setup_options_mail_check_frequency_1hour">"Stündlich"</string>
<string name="account_setup_options_default_label">"E-Mails standardmäßig von diesem Konto senden"</string>
<string name="account_setup_options_notify_label">"Benachrichtigung bei E-Mail-Eingang"</string>
<string name="account_setup_failed_dlg_title">"Einrichtung konnte nicht abgeschlossen werden"</string>
<string name="account_setup_failed_dlg_auth_message">"Nutzername oder Passwort falsch"</string>
<string name="account_setup_failed_dlg_auth_message_fmt">"Nutzername oder Password falsch"\n"(<xliff:g id="ERROR">%s</xliff:g>)"</string>
<string name="account_setup_failed_dlg_certificate_message">"Keine sichere Verbindung zu Server möglich"</string>
<string name="account_setup_failed_dlg_certificate_message_fmt">"Keine sichere Verbindung zum Server möglich"\n"(<xliff:g id="ERROR">%s</xliff:g>)"</string>
<string name="account_setup_failed_dlg_server_message">"Keine Verbindung zu Server möglich"</string>
<string name="account_setup_failed_dlg_server_message_fmt">"Keine Verbindung zum Server möglich"\n"(<xliff:g id="ERROR">%s</xliff:g>)"</string>
<string name="account_setup_failed_tls_required">"TLS erforderlich aber nicht von Server unterstützt"</string>
<string name="account_setup_failed_auth_required">"Authentifizierungsmethoden nicht von Server unterstützt"</string>
<string name="account_setup_failed_security">"Verbindung zu Server kann aufgrund eines Sicherheitsfehlers nicht geöffnet werden."</string>
<string name="account_setup_failed_ioerror">"Verbindung zu Server kann nicht geöffnet werden"</string>
<string name="account_setup_failed_dlg_edit_details_action">"Details bearbeiten"</string>
<string name="account_settings_title_fmt">"Allgemeine Einstellungen"</string>
<string name="account_settings_default_label">"Standardkonto"</string>
<string name="account_settings_default_summary">"E-Mails standardmäßig von diesem Konto senden"</string>
<string name="account_settings_notify_label">"E-Mail-Benachrichtigungen"</string>
<string name="account_settings_notify_summary">"Bei E-Mail-Eingang Benachrichtigung in der Statusleiste"</string>
<string name="account_settings_mail_check_frequency_label">"Abrufhäufigkeit"</string>
<string name="account_settings_incoming_label">"Einstellungen für eingehende Nachrichten"</string>
<string name="account_settings_outgoing_label">"Einstellungen für ausgehende Nachrichten"</string>
<string name="account_settings_add_account_label">"Weiteres Konto hinzufügen"</string>
<string name="account_settings_description_label">"Kontoname"</string>
<string name="account_settings_name_label">"Ihr Name"</string>
<string name="account_settings_notifications">"Benachrichtigungseinstellungen"</string>
<string name="account_settings_vibrate_enable">"Vibration"</string>
<string name="account_settings_vibrate_summary">"Bei E-Mail-Eingang zusätzlich vibrieren"</string>
<string name="account_settings_ringtone">"Klingelton auswählen"</string>
<string name="account_settings_servers">"Servereinstellungen"</string>
<string name="account_delete_dlg_title">"Konto entfernen"</string>
<string name="account_delete_dlg_instructions_fmt">"Das Konto \"<xliff:g id="ACCOUNT">%s</xliff:g>\" wird aus Email entfernt."</string>
<string name="provider_note_yahoo">"Der Zugang zum Postfach bestimmter E-Mail-Konten von Yahoo! wird nicht unterstützt. Bei Verbindungsproblemen besuchen Sie die Website von Yahoo! für weitere Informationen."</string>
<string name="provider_note_yahoo_uk">"Vor Eröffnung dieses E-Mail-Kontos bitte die Website von Yahoo! besuchen und E-Mail-Zugang über POP3 für dieses Konto aktivieren."</string>
<string name="provider_note_live">"Nur einige \"Plus\"-Konten ermöglichen einen POP-Zugang und damit diesem Programm, eine Verbindung aufzubauen. Sollten Sie nicht dazu in der Lage sein, sich mit Ihrer korrekten E-Mail-Adresse und dem richtigen Password anzumelden, verfügen Sie möglicherweise nicht über ein kostenpflichtiges \"Plus\"-Konto. Starten Sie Ihren Webbrowser, um Zugriff auf diese Konten zu erlangen."</string>
<string name="provider_note_t_online">"Vor Erstellung des E-Mail Kontos bitte \\\"eMail-Passwort\\\" für den POP3-Zugang auf der T-Online Homepage einrichten."</string>
</resources>

View File

@ -1,172 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright (C) 2009 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<resources xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="read_attachment_label">"leer los archivos adjuntos del mensaje"</string>
<string name="read_attachment_desc">"Permite que esta aplicación lea los archivos adjuntos del correo electrónico."</string>
<string name="app_name">"Correo electrónico"</string>
<string name="accounts_title">"Tus cuentas"</string>
<string name="compose_title">"Redactar"</string>
<string name="debug_title">"Depurar"</string>
<string name="next_action">"Siguiente"</string>
<string name="okay_action">"Aceptar"</string>
<string name="cancel_action">"Cancelar"</string>
<string name="send_action">"Enviar"</string>
<string name="reply_action">"Responder"</string>
<string name="reply_all_action">"Responder a todos"</string>
<string name="delete_action">"Suprimir"</string>
<string name="forward_action">"Reenviar"</string>
<string name="done_action">"Finalizado"</string>
<string name="discard_action">"Descartar"</string>
<string name="save_draft_action">"Guardar como borrador"</string>
<string name="refresh_action">"Actualizar"</string>
<string name="add_account_action">"Añadir cuenta"</string>
<string name="compose_action">"Redactar"</string>
<string name="search_action">"Buscar"</string>
<string name="open_action">"Abrir"</string>
<string name="account_settings_action">"Configuración"</string>
<string name="remove_account_action">"Eliminar cuenta"</string>
<string name="accounts_action">"Cuentas"</string>
<string name="mark_as_read_action">"Marcar como leída"</string>
<string name="mark_as_unread_action">"Marcar como no leído"</string>
<string name="add_cc_bcc_action">"Añadir Cc/CCO"</string>
<string name="add_attachment_action">"Añadir archivo adjunto"</string>
<string name="dump_settings_action">"Configuración de volcado"</string>
<string name="accounts_context_menu_title">"Opciones de cuenta"</string>
<string name="status_loading_more">"Cargando mensajes..."</string>
<string name="status_network_error">"Error de conexión"</string>
<string name="status_loading_more_failed">"Intentar cargar más mensajes"</string>
<string name="notification_new_title">"Nuevo mensaje"</string>
<string name="notification_new_one_account_fmt">"<xliff:g id="UNREAD_MESSAGE_COUNT">%d</xliff:g> no leídos (<xliff:g id="ACCOUNT">%s</xliff:g>)"</string>
<string name="notification_new_multi_account_fmt">"en <xliff:g id="NUMBER_ACCOUNTS">%d</xliff:g> cuentas"</string>
<string name="special_mailbox_name_inbox">"Recibidos"</string>
<string name="accounts_welcome">"Te damos la bienvenida a la configuración del correo electrónico."\n\n"Usa cualquier cuenta de correo electrónico con \"Correo electrónico\"."\n\n"Las cuentas de correo electrónico más populares se pueden configurar en 2 pasos."</string>
<string name="debug_version_fmt">"Versión: <xliff:g id="VERSION">%s</xliff:g>"</string>
<string name="debug_enable_debug_logging_label">"¿Deseas habilitar un registro adicional de depuración?"</string>
<string name="debug_enable_sensitive_logging_label">"¿Deseas habilitar el registro de depuración de la información confidencial? (Es posible que se muestren las contraseñas en los registros)."</string>
<string name="message_list_load_more_messages_action">"Cargar más mensajes"</string>
<string name="message_compose_to_hint">"Para"</string>
<string name="message_compose_cc_hint">"Cc"</string>
<string name="message_compose_bcc_hint">"CCO"</string>
<string name="message_compose_subject_hint">"Asunto"</string>
<string name="message_compose_fwd_header_fmt">\n\n"-------- Original Message --------"\n"Subject: <xliff:g id="SUBJECT">%s</xliff:g>"\n"From: <xliff:g id="SENDER">%s</xliff:g>"\n"To: <xliff:g id="TO">%s</xliff:g>"\n"CC: <xliff:g id="CC_0">%s</xliff:g>"\n\n</string>
<string name="message_compose_reply_header_fmt">\n\n"<xliff:g id="SENDER">%s</xliff:g> wrote:"\n\n</string>
<string name="message_compose_quoted_text_label">"Texto entre comillas"</string>
<string name="message_compose_error_no_recipients">"Debes especificar, al menos, un destinatario."</string>
<string name="message_compose_attachments_skipped_toast">"No se pueden reenviar algunos archivos adjuntos porque no se han descargado."</string>
<string name="message_view_to_label">"Para:"</string>
<string name="message_view_cc_label">"Cc:"</string>
<string name="message_view_attachment_view_action">"Abrir"</string>
<string name="message_view_attachment_download_action">"Guardar"</string>
<string name="message_view_prev_action">"Mensaje anterior"</string>
<string name="message_view_next_action">"Siguiente mensaje"</string>
<string name="message_view_status_attachment_saved">"El archivo adjunto se ha guardado en una tarjeta SD como <xliff:g id="FILENAME">%s</xliff:g>."</string>
<string name="message_view_status_attachment_not_saved">"No es posible guardar el archivo adjunto en la tarjeta SD."</string>
<string name="message_view_show_pictures_instructions">"Selecciona \"Mostrar imágenes\" para visualizar las imágenes incrustadas."</string>
<string name="message_view_show_pictures_action">"Mostrar imágenes"</string>
<string name="message_view_fetching_attachment_toast">"Obteniendo archivo adjunto"</string>
<string name="message_deleted_toast">"Mensaje suprimido"</string>
<string name="message_discarded_toast">"Mensaje descartado"</string>
<string name="message_saved_toast">"Mensaje guardado como borrador"</string>
<string name="account_setup_basics_title">"Configurar correo electrónico"</string>
<string name="account_setup_basics_instructions">"Introduce la dirección de correo electrónico de tu cuenta:"</string>
<string name="account_setup_basics_email_hint">"Dirección de correo electrónico"</string>
<string name="account_setup_basics_password_hint">"Contraseña"</string>
<string name="account_setup_basics_default_label">"Enviar correo electrónico desde esta cuenta de forma predeterminada"</string>
<string name="account_setup_basics_manual_setup_action">"Configuración manual"</string>
<string name="account_setup_username_password_toast">"Introduce una dirección de correo electrónico y una contraseña válidas."</string>
<string name="account_setup_check_settings_retr_info_msg">"Recuperando la información de la cuenta..."</string>
<string name="account_setup_check_settings_check_incoming_msg">"Comprobando la configuración del servidor de entrada..."</string>
<string name="account_setup_check_settings_check_outgoing_msg">"Comprobando la configuración del servidor de salida..."</string>
<string name="account_setup_check_settings_canceling_msg">"Cancelando..."</string>
<string name="account_setup_names_title">"Configurar correo electrónico"</string>
<string name="account_setup_names_instructions">"Tu cuenta ya está configurada y el correo electrónico está por llegar."</string>
<string name="account_setup_names_account_name_label">"Asignar un nombre a esta cuenta (opcional)"</string>
<string name="account_setup_names_user_name_label">"Tu nombre (aparece en los mensajes salientes)"</string>
<string name="account_setup_account_type_title">"Añadir una cuenta de correo electrónico nueva"</string>
<string name="account_setup_account_type_instructions">"¿Qué tipo de cuenta es ésta?"</string>
<string name="account_setup_account_type_pop_action">"Cuenta POP3"</string>
<string name="account_setup_account_type_imap_action">"Cuenta IMAP"</string>
<string name="account_setup_incoming_title">"Configuración del servidor de entrada"</string>
<string name="account_setup_incoming_username_label">"Nombre de usuario"</string>
<string name="account_setup_incoming_password_label">"Contraseña"</string>
<string name="account_setup_incoming_pop_server_label">"Servidor POP3"</string>
<string name="account_setup_incoming_imap_server_label">"Servidor IMAP"</string>
<string name="account_setup_incoming_port_label">"Puerto"</string>
<string name="account_setup_incoming_security_label">"Tipo de seguridad"</string>
<string name="account_setup_incoming_security_none_label">"Ninguna"</string>
<string name="account_setup_incoming_security_ssl_optional_label">"SSL (si está disponible)"</string>
<string name="account_setup_incoming_security_ssl_label">"SSL (siempre)"</string>
<string name="account_setup_incoming_security_tls_optional_label">"TLS (si está disponible)"</string>
<string name="account_setup_incoming_security_tls_label">"TLS (siempre)"</string>
<string name="account_setup_incoming_delete_policy_label">"Suprimir correo electrónico del servidor"</string>
<string name="account_setup_incoming_delete_policy_never_label">"Nunca"</string>
<string name="account_setup_incoming_delete_policy_7days_label">"Después de 7 días"</string>
<string name="account_setup_incoming_delete_policy_delete_label">"Cuando suprimo algún mensaje de \"Recibidos\""</string>
<string name="account_setup_incoming_imap_path_prefix_label">"Prefijo de ruta IMAP"</string>
<string name="account_setup_incoming_imap_path_prefix_hint">"Opcional"</string>
<string name="account_setup_outgoing_title">"Configuración del servidor de salida"</string>
<string name="account_setup_outgoing_smtp_server_label">"Servidor SMTP"</string>
<string name="account_setup_outgoing_port_label">"Puerto"</string>
<string name="account_setup_outgoing_security_label">"Tipo de seguridad"</string>
<string name="account_setup_outgoing_require_login_label">"Acceso obligatorio"</string>
<string name="account_setup_outgoing_username_label">"Nombre de usuario"</string>
<string name="account_setup_outgoing_password_label">"Contraseña"</string>
<string name="account_setup_options_title">"Opciones de cuenta"</string>
<string name="account_setup_options_mail_check_frequency_label">"Frecuencia de comprobación del correo electrónico"</string>
<string name="account_setup_options_mail_check_frequency_never">"Nunca"</string>
<string name="account_setup_options_mail_check_frequency_5min">"Cada 5 minutos"</string>
<string name="account_setup_options_mail_check_frequency_10min">"Cada 10 minutos"</string>
<string name="account_setup_options_mail_check_frequency_15min">"Cada 15 minutos"</string>
<string name="account_setup_options_mail_check_frequency_30min">"Cada 30 minutos"</string>
<string name="account_setup_options_mail_check_frequency_1hour">"Cada hora"</string>
<string name="account_setup_options_default_label">"Enviar correo electrónico desde esta cuenta de forma predeterminada"</string>
<string name="account_setup_options_notify_label">"Avisarme cuando llegue un correo electrónico"</string>
<string name="account_setup_failed_dlg_title">"No se ha podido completar la configuración."</string>
<string name="account_setup_failed_dlg_auth_message">"Nombre de usuario o contraseña incorrecta"</string>
<string name="account_setup_failed_dlg_auth_message_fmt">"Nombre de usuario o contraseña incorrecta"\n"(<xliff:g id="ERROR">%s</xliff:g>)"</string>
<string name="account_setup_failed_dlg_certificate_message">"No se puede establecer conexión de forma segura con el servidor."</string>
<string name="account_setup_failed_dlg_certificate_message_fmt">"No se puede establecer una conexión de forma segura con el servidor."\n"(<xliff:g id="ERROR">%s</xliff:g>)"</string>
<string name="account_setup_failed_dlg_server_message">"No se puede establecer conexión con el servidor."</string>
<string name="account_setup_failed_dlg_server_message_fmt">"No se puede establecer una conexión con el servidor."\n"(<xliff:g id="ERROR">%s</xliff:g>)"</string>
<string name="account_setup_failed_tls_required">"El protocolo TLS es obligatorio, pero el servidor no lo admite."</string>
<string name="account_setup_failed_auth_required">"El servidor no admite los métodos de autenticación."</string>
<string name="account_setup_failed_security">"No se puede abrir la conexión con el servidor debido a un error de seguridad."</string>
<string name="account_setup_failed_ioerror">"No se puede abrir la conexión con el servidor."</string>
<string name="account_setup_failed_dlg_edit_details_action">"Editar detalles"</string>
<string name="account_settings_title_fmt">"Configuración general"</string>
<string name="account_settings_default_label">"Cuenta predeterminada"</string>
<string name="account_settings_default_summary">"Enviar correo electrónico desde esta cuenta de forma predeterminada"</string>
<string name="account_settings_notify_label">"Notificaciones de correo electrónico"</string>
<string name="account_settings_notify_summary">"Notificar en la barra de estado cuando llegue un mensaje"</string>
<string name="account_settings_mail_check_frequency_label">"Frecuencia de comprobación del correo"</string>
<string name="account_settings_incoming_label">"Configuración entrante"</string>
<string name="account_settings_outgoing_label">"Configuración saliente"</string>
<string name="account_settings_add_account_label">"Añadir otra cuenta"</string>
<string name="account_settings_description_label">"Nombre de cuenta"</string>
<string name="account_settings_name_label">"Tu nombre"</string>
<string name="account_settings_notifications">"Configuración de la notificación"</string>
<string name="account_settings_vibrate_enable">"Vibrar"</string>
<string name="account_settings_vibrate_summary">"Vibrar también cuando llegue un mensaje"</string>
<string name="account_settings_ringtone">"Seleccionar tono de llamada"</string>
<string name="account_settings_servers">"Configuración del servidor"</string>
<string name="account_delete_dlg_title">"Eliminar cuenta"</string>
<string name="account_delete_dlg_instructions_fmt">"Se va a eliminar la cuenta \"<xliff:g id="ACCOUNT">%s</xliff:g>\" de \"Correo electrónico\"."</string>
<string name="provider_note_yahoo">"Algunos tipos de cuentas de correo de Yahoo! no permiten acceder al buzón de correo. Si tienes problemas de conexión, visita yahoo.com para obtener información adicional al respecto."</string>
<string name="provider_note_yahoo_uk">"Antes de configurar esta cuenta de correo electrónico, visita el sitio web de Yahoo! y habilita el acceso al correo electrónico POP3 para esta cuenta."</string>
<string name="provider_note_live">"Sólo algunas cuentas \"Plus\" incluyen el acceso POP, que permite que este programa se conecte. Si no puedes acceder con la dirección de correo electrónico y la contraseña adecuadas, es posible que no dispongas de una cuenta \"Plus\" de pago. Usa el navegador web para acceder a estas cuentas de correo."</string>
<string name="provider_note_t_online">"Antes de configurar esta cuenta de correo electrónico, visita el sitio web de T-Online y crea una contraseña para el acceso al correo electrónico POP3."</string>
</resources>

View File

@ -1,172 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright (C) 2009 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<resources xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="read_attachment_label">"lire les pièces jointes"</string>
<string name="read_attachment_desc">"Permet à cette application de lire les pièces jointes aux e-mails."</string>
<string name="app_name">"E-mail"</string>
<string name="accounts_title">"Vos comptes"</string>
<string name="compose_title">"Nouveau message"</string>
<string name="debug_title">"Déboguer"</string>
<string name="next_action">"Suivant"</string>
<string name="okay_action">"OK"</string>
<string name="cancel_action">"Annuler"</string>
<string name="send_action">"Envoyer"</string>
<string name="reply_action">"Répondre"</string>
<string name="reply_all_action">"Répondre à tous"</string>
<string name="delete_action">"Supprimer"</string>
<string name="forward_action">"Transférer"</string>
<string name="done_action">"OK"</string>
<string name="discard_action">"Supprimer"</string>
<string name="save_draft_action">"Enregistrer en tant que brouillon"</string>
<string name="refresh_action">"Actualiser"</string>
<string name="add_account_action">"Ajouter un compte"</string>
<string name="compose_action">"Nouveau message"</string>
<string name="search_action">"Rechercher"</string>
<string name="open_action">"Ouvrir"</string>
<string name="account_settings_action">"Paramètres du compte"</string>
<string name="remove_account_action">"Supprimer le compte"</string>
<string name="accounts_action">"Comptes"</string>
<string name="mark_as_read_action">"Marquer comme lu"</string>
<string name="mark_as_unread_action">"Marquer comme non lu"</string>
<string name="add_cc_bcc_action">"Ajouter les champs Cc/Cci"</string>
<string name="add_attachment_action">"Ajouter une pièce jointe"</string>
<string name="dump_settings_action">"Paramètres d\'image mémoire"</string>
<string name="accounts_context_menu_title">"Options de compte"</string>
<string name="status_loading_more">"Chargement des messages en cours..."</string>
<string name="status_network_error">"Erreur de connexion"</string>
<string name="status_loading_more_failed">"Essayer de charger plus de messages"</string>
<string name="notification_new_title">"Nouvel e-mail"</string>
<string name="notification_new_one_account_fmt">"<xliff:g id="UNREAD_MESSAGE_COUNT">%d</xliff:g> non lus (<xliff:g id="ACCOUNT">%s</xliff:g>)"</string>
<string name="notification_new_multi_account_fmt">"dans <xliff:g id="NUMBER_ACCOUNTS">%d</xliff:g> comptes"</string>
<string name="special_mailbox_name_inbox">"Boîte de réception"</string>
<string name="accounts_welcome">"Bienvenue dans le programme de configuration de votre messagerie électronique !"\n\n"Utilisez le compte de votre choix."\n\n"Les comptes de messagerie les plus courants peuvent être configurés en deux étapes !"</string>
<string name="debug_version_fmt">"Version : <xliff:g id="VERSION">%s</xliff:g>"</string>
<string name="debug_enable_debug_logging_label">"Activer la consignation supplémentaire des données de débogage ?"</string>
<string name="debug_enable_sensitive_logging_label">"Activer la consignation des données de débogage pour les informations sensibles ? (Les mots de passe pourront s\'afficher dans les journaux.)"</string>
<string name="message_list_load_more_messages_action">"Charger plus de messages"</string>
<string name="message_compose_to_hint">"À"</string>
<string name="message_compose_cc_hint">"Cc"</string>
<string name="message_compose_bcc_hint">"Cci"</string>
<string name="message_compose_subject_hint">"Objet"</string>
<string name="message_compose_fwd_header_fmt">\n\n"-------- Message original --------"\n"Objet : <xliff:g id="SUBJECT">%s</xliff:g>"\n"De : <xliff:g id="SENDER">%s</xliff:g>"\n"À : <xliff:g id="TO">%s</xliff:g>"\n"Cc : <xliff:g id="CC_0">%s</xliff:g>"\n\n</string>
<string name="message_compose_reply_header_fmt">\n\n"<xliff:g id="SENDER">%s</xliff:g> a écrit :"\n\n</string>
<string name="message_compose_quoted_text_label">"Texte du message précédent"</string>
<string name="message_compose_error_no_recipients">"Vous devez ajouter au moins un destinataire."</string>
<string name="message_compose_attachments_skipped_toast">"Impossible de transférer certaines pièces jointes : elles n\'ont pas été téléchargées."</string>
<string name="message_view_to_label">"À :"</string>
<string name="message_view_cc_label">"Cc :"</string>
<string name="message_view_attachment_view_action">"Ouvrir"</string>
<string name="message_view_attachment_download_action">"Enregistrer"</string>
<string name="message_view_prev_action">"Message préc."</string>
<string name="message_view_next_action">"Message suivant"</string>
<string name="message_view_status_attachment_saved">"Pièce jointe enregistrée sur la carte SD sous le nom <xliff:g id="FILENAME">%s</xliff:g>."</string>
<string name="message_view_status_attachment_not_saved">"Impossible d\'enregistrer la pièce jointe sur la carte SD."</string>
<string name="message_view_show_pictures_instructions">"Sélectionnez \"Afficher les images\" pour afficher les images intégrées."</string>
<string name="message_view_show_pictures_action">"Afficher les images"</string>
<string name="message_view_fetching_attachment_toast">"Récupération de la pièce jointe."</string>
<string name="message_deleted_toast">"Message supprimé."</string>
<string name="message_discarded_toast">"Message supprimé."</string>
<string name="message_saved_toast">"Message enregistré en tant que brouillon."</string>
<string name="account_setup_basics_title">"Configurer la messagerie électronique"</string>
<string name="account_setup_basics_instructions">"Saisissez l\'adresse e-mail de votre compte :"</string>
<string name="account_setup_basics_email_hint">"Adresse e-mail"</string>
<string name="account_setup_basics_password_hint">"Mot de passe"</string>
<string name="account_setup_basics_default_label">"Par défaut, envoyer les e-mails avec ce compte"</string>
<string name="account_setup_basics_manual_setup_action">"Configuration manuelle"</string>
<string name="account_setup_username_password_toast">"Veuillez saisir une adresse e-mail et un mot de passe corrects."</string>
<string name="account_setup_check_settings_retr_info_msg">"Récupération des informations sur le compte…"</string>
<string name="account_setup_check_settings_check_incoming_msg">"Vérification des paramètres de serveur entrant…"</string>
<string name="account_setup_check_settings_check_outgoing_msg">"Vérification des paramètres de serveur sortant…"</string>
<string name="account_setup_check_settings_canceling_msg">"Annulation en cours..."</string>
<string name="account_setup_names_title">"Configurer la messagerie électronique"</string>
<string name="account_setup_names_instructions">"Votre compte est configuré et votre messagerie est active !"</string>
<string name="account_setup_names_account_name_label">"Donner un nom à ce compte (facultatif)"</string>
<string name="account_setup_names_user_name_label">"Votre nom (affiché sur les messages sortants)"</string>
<string name="account_setup_account_type_title">"Ajouter un compte de messagerie"</string>
<string name="account_setup_account_type_instructions">"De quel type de compte s\'agit-il ?"</string>
<string name="account_setup_account_type_pop_action">"Compte POP3"</string>
<string name="account_setup_account_type_imap_action">"Compte IMAP"</string>
<string name="account_setup_incoming_title">"Paramètres de serveur entrant"</string>
<string name="account_setup_incoming_username_label">"Nom d\'utilisateur"</string>
<string name="account_setup_incoming_password_label">"Mot de passe"</string>
<string name="account_setup_incoming_pop_server_label">"Serveur POP3"</string>
<string name="account_setup_incoming_imap_server_label">"Serveur IMAP"</string>
<string name="account_setup_incoming_port_label">"Port"</string>
<string name="account_setup_incoming_security_label">"Type de sécurité"</string>
<string name="account_setup_incoming_security_none_label">"Aucun protocole"</string>
<string name="account_setup_incoming_security_ssl_optional_label">"SSL (si disponible)"</string>
<string name="account_setup_incoming_security_ssl_label">"SSL (toujours)"</string>
<string name="account_setup_incoming_security_tls_optional_label">"TLS (si disponible)"</string>
<string name="account_setup_incoming_security_tls_label">"TLS (toujours)"</string>
<string name="account_setup_incoming_delete_policy_label">"Supprimer les e-mails du serveur"</string>
<string name="account_setup_incoming_delete_policy_never_label">"Jamais"</string>
<string name="account_setup_incoming_delete_policy_7days_label">"Au bout de 7 jours"</string>
<string name="account_setup_incoming_delete_policy_delete_label">"Si messages suppr. de boîte de récep."</string>
<string name="account_setup_incoming_imap_path_prefix_label">"Préfixe du chemin IMAP"</string>
<string name="account_setup_incoming_imap_path_prefix_hint">"Facultatif"</string>
<string name="account_setup_outgoing_title">"Paramètres de serveur sortant"</string>
<string name="account_setup_outgoing_smtp_server_label">"Serveur SMTP"</string>
<string name="account_setup_outgoing_port_label">"Port"</string>
<string name="account_setup_outgoing_security_label">"Type de sécurité"</string>
<string name="account_setup_outgoing_require_login_label">"Connexion obligatoire."</string>
<string name="account_setup_outgoing_username_label">"Nom d\'utilisateur"</string>
<string name="account_setup_outgoing_password_label">"Mot de passe"</string>
<string name="account_setup_options_title">"Options de compte"</string>
<string name="account_setup_options_mail_check_frequency_label">"Vérification des e-mails"</string>
<string name="account_setup_options_mail_check_frequency_never">"Jamais"</string>
<string name="account_setup_options_mail_check_frequency_5min">"Toutes les 5 minutes"</string>
<string name="account_setup_options_mail_check_frequency_10min">"Toutes les 10 minutes"</string>
<string name="account_setup_options_mail_check_frequency_15min">"Toutes les 15 minutes"</string>
<string name="account_setup_options_mail_check_frequency_30min">"Toutes les 30 minutes"</string>
<string name="account_setup_options_mail_check_frequency_1hour">"Toutes les heures"</string>
<string name="account_setup_options_default_label">"Par défaut, envoyer les e-mails avec ce compte"</string>
<string name="account_setup_options_notify_label">"Afficher une notification lors de la réception d\'un e-mail"</string>
<string name="account_setup_failed_dlg_title">"La configuration a échoué."</string>
<string name="account_setup_failed_dlg_auth_message">"Nom d\'utilisateur ou mot de passe incorrect."</string>
<string name="account_setup_failed_dlg_auth_message_fmt">"Nom d\'utilisateur ou mot de passe incorrect."\n"(<xliff:g id="ERROR">%s</xliff:g>)"</string>
<string name="account_setup_failed_dlg_certificate_message">"Impossible d\'établir une connexion sécurisée avec le serveur."</string>
<string name="account_setup_failed_dlg_certificate_message_fmt">"Impossible d\'établir une connexion sécurisée avec le serveur."\n"(<xliff:g id="ERROR">%s</xliff:g>)"</string>
<string name="account_setup_failed_dlg_server_message">"Impossible d\'établir une connexion avec le serveur."</string>
<string name="account_setup_failed_dlg_server_message_fmt">"Impossible d\'établir une connexion avec le serveur."\n"(<xliff:g id="ERROR">%s</xliff:g>)"</string>
<string name="account_setup_failed_tls_required">"Protocole TLS requis mais non pris en charge par le serveur."</string>
<string name="account_setup_failed_auth_required">"Les méthodes d\'authentification ne sont pas prises en charge par le serveur."</string>
<string name="account_setup_failed_security">"Impossible d\'établir une connexion avec le serveur en raison d\'une erreur de sécurité."</string>
<string name="account_setup_failed_ioerror">"Impossible d\'établir une connexion avec le serveur."</string>
<string name="account_setup_failed_dlg_edit_details_action">"Modifier les infos"</string>
<string name="account_settings_title_fmt">"Paramètres généraux"</string>
<string name="account_settings_default_label">"Compte par défaut"</string>
<string name="account_settings_default_summary">"Par défaut, envoyer les e-mails avec ce compte"</string>
<string name="account_settings_notify_label">"Notifications d\'e-mails"</string>
<string name="account_settings_notify_summary">"Afficher une notification dans la barre d\'état lors de la réception d\'un e-mail"</string>
<string name="account_settings_mail_check_frequency_label">"Fréquence de vérification des e-mails"</string>
<string name="account_settings_incoming_label">"Paramètres de réception"</string>
<string name="account_settings_outgoing_label">"Paramètres d\'envoi"</string>
<string name="account_settings_add_account_label">"Ajouter un autre compte"</string>
<string name="account_settings_description_label">"Nom du compte"</string>
<string name="account_settings_name_label">"Votre nom"</string>
<string name="account_settings_notifications">"Paramètres de notification"</string>
<string name="account_settings_vibrate_enable">"Vibrer"</string>
<string name="account_settings_vibrate_summary">"Vibrer également lors de la réception d\'un e-mail"</string>
<string name="account_settings_ringtone">"Sélectionner la sonnerie"</string>
<string name="account_settings_servers">"Paramètres du serveur"</string>
<string name="account_delete_dlg_title">"Supprimer le compte"</string>
<string name="account_delete_dlg_instructions_fmt">"Le compte \"<xliff:g id="ACCOUNT">%s</xliff:g>\" va être supprimé de votre messagerie."</string>
<string name="provider_note_yahoo">"L\'accès à la boîte aux lettres n\'est pas possible avec certains types de comptes Yahoo!. En cas de problème de connexion, consultez le site yahoo.fr pour obtenir plus d\'informations."</string>
<string name="provider_note_yahoo_uk">"Avant de configurer ce compte de messagerie, veuillez consulter le site de Yahoo! et activer l\'accès POP3 pour ce compte."</string>
<string name="provider_note_live">"Seuls certains comptes \"Plus\" comportent un accès POP permettant à ce programme de se connecter. Si vous ne parvenez pas à vous connecter avec l\'adresse e-mail et le mot de passe corrects, vous ne disposez peut-être pas d\'un compte payant \"Plus\". Pour accéder à ces comptes de messagerie, lancez votre navigateur Web."</string>
<string name="provider_note_t_online">"Avant de configurer ce compte de messagerie, veuillez consulter le site de T-Online et créer un mot de passe de messagerie POP3."</string>
</resources>

View File

@ -1,172 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright (C) 2009 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<resources xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="read_attachment_label">"lettura allegati email"</string>
<string name="read_attachment_desc">"Consente all\'applicazione di leggere i tuoi allegati email."</string>
<string name="app_name">"Email"</string>
<string name="accounts_title">"I tuoi account"</string>
<string name="compose_title">"Scrivi"</string>
<string name="debug_title">"Debug"</string>
<string name="next_action">"Avanti"</string>
<string name="okay_action">"OK"</string>
<string name="cancel_action">"Annulla"</string>
<string name="send_action">"Invia"</string>
<string name="reply_action">"Rispondi"</string>
<string name="reply_all_action">"Rispondi a tutti"</string>
<string name="delete_action">"Elimina"</string>
<string name="forward_action">"Inoltra"</string>
<string name="done_action">"Completato"</string>
<string name="discard_action">"Elimina"</string>
<string name="save_draft_action">"Salva come bozza"</string>
<string name="refresh_action">"Aggiorna"</string>
<string name="add_account_action">"Aggiungi account"</string>
<string name="compose_action">"Scrivi"</string>
<string name="search_action">"Cerca"</string>
<string name="open_action">"Apri"</string>
<string name="account_settings_action">"Impostazioni account"</string>
<string name="remove_account_action">"Rimuovi account"</string>
<string name="accounts_action">"Account"</string>
<string name="mark_as_read_action">"Segna come Già letto"</string>
<string name="mark_as_unread_action">"Segna come da leggere"</string>
<string name="add_cc_bcc_action">"Aggiungi Cc/Ccn"</string>
<string name="add_attachment_action">"Aggiungi allegato"</string>
<string name="dump_settings_action">"Scarica impostazioni"</string>
<string name="accounts_context_menu_title">"Opzioni account"</string>
<string name="status_loading_more">"Caricamento messaggi in corso..."</string>
<string name="status_network_error">"Errore di connessione"</string>
<string name="status_loading_more_failed">"Prova nuovamente a caricare altri messaggi"</string>
<string name="notification_new_title">"Nuova email"</string>
<string name="notification_new_one_account_fmt">"<xliff:g id="UNREAD_MESSAGE_COUNT">%d</xliff:g> da leggere (<xliff:g id="ACCOUNT">%s</xliff:g>)"</string>
<string name="notification_new_multi_account_fmt">"in <xliff:g id="NUMBER_ACCOUNTS">%d</xliff:g> account"</string>
<string name="special_mailbox_name_inbox">"Posta in arrivo"</string>
<string name="accounts_welcome">"Benvenuto in Impostazione email."\n\n"Usa qualunque account email con Email."\n\n"Puoi impostare gli account email più popolari in due semplici passaggi."</string>
<string name="debug_version_fmt">"Versione: <xliff:g id="VERSION">%s</xliff:g>"</string>
<string name="debug_enable_debug_logging_label">"Attivare la registrazione debug aggiuntiva?"</string>
<string name="debug_enable_sensitive_logging_label">"Attivare la registrazione debug delle informazioni riservate? (Nei registri potrebbero essere visualizzate le password.)"</string>
<string name="message_list_load_more_messages_action">"Carica ulteriori messaggi"</string>
<string name="message_compose_to_hint">"A"</string>
<string name="message_compose_cc_hint">"Cc"</string>
<string name="message_compose_bcc_hint">"Ccn"</string>
<string name="message_compose_subject_hint">"Oggetto"</string>
<string name="message_compose_fwd_header_fmt">\n\n"-------- Messaggio originale --------"\n"Oggetto: <xliff:g id="SUBJECT">%s</xliff:g>"\n"Da: <xliff:g id="SENDER">%s</xliff:g>"\n"A: <xliff:g id="TO">%s</xliff:g>"\n"CC: <xliff:g id="CC_0">%s</xliff:g>"\n\n</string>
<string name="message_compose_reply_header_fmt">\n\n"<xliff:g id="SENDER">%s</xliff:g> ha scritto:"\n\n</string>
<string name="message_compose_quoted_text_label">"Testo tra virgolette"</string>
<string name="message_compose_error_no_recipients">"Devi aggiungere almeno un destinatario."</string>
<string name="message_compose_attachments_skipped_toast">"Impossibile inviare alcuni allegati poiché non sono stati scaricati."</string>
<string name="message_view_to_label">"A:"</string>
<string name="message_view_cc_label">"Cc:"</string>
<string name="message_view_attachment_view_action">"Apri"</string>
<string name="message_view_attachment_download_action">"Salva"</string>
<string name="message_view_prev_action">"Messaggio precedente"</string>
<string name="message_view_next_action">"Messaggio successivo"</string>
<string name="message_view_status_attachment_saved">"Allegato salvato su scheda SD come <xliff:g id="FILENAME">%s</xliff:g>."</string>
<string name="message_view_status_attachment_not_saved">"Impossibile salvare l\'allegato nella scheda SD."</string>
<string name="message_view_show_pictures_instructions">"Seleziona \"Mostra immagini\" per visualizzare le immagini incorporate."</string>
<string name="message_view_show_pictures_action">"Mostra immagini"</string>
<string name="message_view_fetching_attachment_toast">"Recupero allegato in corso."</string>
<string name="message_deleted_toast">"Messaggio eliminato."</string>
<string name="message_discarded_toast">"Messaggio eliminato."</string>
<string name="message_saved_toast">"Messaggio salvato come bozza."</string>
<string name="account_setup_basics_title">"Imposta email"</string>
<string name="account_setup_basics_instructions">"Digita l\'indirizzo email del tuo account:"</string>
<string name="account_setup_basics_email_hint">"Indirizzo email"</string>
<string name="account_setup_basics_password_hint">"Password"</string>
<string name="account_setup_basics_default_label">"Invia email da questo account per impostazione predefinita."</string>
<string name="account_setup_basics_manual_setup_action">"Impostazione manuale"</string>
<string name="account_setup_username_password_toast">"Digita un indirizzo email e una password validi."</string>
<string name="account_setup_check_settings_retr_info_msg">"Recupero informazioni sull\'account in corso…"</string>
<string name="account_setup_check_settings_check_incoming_msg">"Verifica delle impostazioni del server della posta in arrivo in corso…"</string>
<string name="account_setup_check_settings_check_outgoing_msg">"Verifica delle impostazioni del server della posta in uscita in corso…"</string>
<string name="account_setup_check_settings_canceling_msg">"Annullamento in corso..."</string>
<string name="account_setup_names_title">"Imposta email"</string>
<string name="account_setup_names_instructions">"Il tuo account è stato impostato e l\'email sarà presto disponibile."</string>
<string name="account_setup_names_account_name_label">"Assegna un nome all\'account (facoltativo)"</string>
<string name="account_setup_names_user_name_label">"Il tuo nome (visualizzato nei messaggi in uscita)"</string>
<string name="account_setup_account_type_title">"Aggiungi un nuovo account email"</string>
<string name="account_setup_account_type_instructions">"Di quale tipo di account si tratta?"</string>
<string name="account_setup_account_type_pop_action">"Account POP3"</string>
<string name="account_setup_account_type_imap_action">"Account IMAP"</string>
<string name="account_setup_incoming_title">"Impostazioni server della Posta in arrivo"</string>
<string name="account_setup_incoming_username_label">"Nome utente"</string>
<string name="account_setup_incoming_password_label">"Password"</string>
<string name="account_setup_incoming_pop_server_label">"Server POP3"</string>
<string name="account_setup_incoming_imap_server_label">"Server IMAP"</string>
<string name="account_setup_incoming_port_label">"Porta"</string>
<string name="account_setup_incoming_security_label">"Tipo di protezione"</string>
<string name="account_setup_incoming_security_none_label">"Nessuno"</string>
<string name="account_setup_incoming_security_ssl_optional_label">"SSL (se disponibile)"</string>
<string name="account_setup_incoming_security_ssl_label">"SSL (sempre)"</string>
<string name="account_setup_incoming_security_tls_optional_label">"TLS (se disponibile)"</string>
<string name="account_setup_incoming_security_tls_label">"TLS (sempre)"</string>
<string name="account_setup_incoming_delete_policy_label">"Elimina email da server"</string>
<string name="account_setup_incoming_delete_policy_never_label">"Mai"</string>
<string name="account_setup_incoming_delete_policy_7days_label">"Dopo 7 giorni"</string>
<string name="account_setup_incoming_delete_policy_delete_label">"Quando elimino dalla Posta in arrivo"</string>
<string name="account_setup_incoming_imap_path_prefix_label">"Prefisso percorso IMAP"</string>
<string name="account_setup_incoming_imap_path_prefix_hint">"Facoltativo"</string>
<string name="account_setup_outgoing_title">"Impostazioni server posta in uscita"</string>
<string name="account_setup_outgoing_smtp_server_label">"Server SMTP"</string>
<string name="account_setup_outgoing_port_label">"Porta"</string>
<string name="account_setup_outgoing_security_label">"Tipo di protezione"</string>
<string name="account_setup_outgoing_require_login_label">"Richiedi accesso"</string>
<string name="account_setup_outgoing_username_label">"Nome utente"</string>
<string name="account_setup_outgoing_password_label">"Password"</string>
<string name="account_setup_options_title">"Opzioni account"</string>
<string name="account_setup_options_mail_check_frequency_label">"Frequenza di controllo email"</string>
<string name="account_setup_options_mail_check_frequency_never">"Mai"</string>
<string name="account_setup_options_mail_check_frequency_5min">"Ogni 5 minuti"</string>
<string name="account_setup_options_mail_check_frequency_10min">"Ogni 10 minuti"</string>
<string name="account_setup_options_mail_check_frequency_15min">"Ogni 15 minuti"</string>
<string name="account_setup_options_mail_check_frequency_30min">"Ogni 30 minuti"</string>
<string name="account_setup_options_mail_check_frequency_1hour">"Ogni ora"</string>
<string name="account_setup_options_default_label">"Invia email da questo account per impostazione predefinita."</string>
<string name="account_setup_options_notify_label">"Avvisami all\'arrivo di email."</string>
<string name="account_setup_failed_dlg_title">"Impossibile completare l\'impostazione"</string>
<string name="account_setup_failed_dlg_auth_message">"Nome utente o password errata."</string>
<string name="account_setup_failed_dlg_auth_message_fmt">"Nome utente o password errata."\n"(<xliff:g id="ERROR">%s</xliff:g>)"</string>
<string name="account_setup_failed_dlg_certificate_message">"Impossibile connettersi in modo sicuro al server."</string>
<string name="account_setup_failed_dlg_certificate_message_fmt">"Impossibile connettersi correttamente al server."\n"(<xliff:g id="ERROR">%s</xliff:g>)"</string>
<string name="account_setup_failed_dlg_server_message">"Impossibile connettersi al server."</string>
<string name="account_setup_failed_dlg_server_message_fmt">"Impossibile connettersi al server."\n"(<xliff:g id="ERROR">%s</xliff:g>)"</string>
<string name="account_setup_failed_tls_required">"TLS richiesto ma non supportato dal server."</string>
<string name="account_setup_failed_auth_required">"I metodi di autenticazione non sono supportati dal server."</string>
<string name="account_setup_failed_security">"Impossibile aprire la connessione al server a causa di un errore di protezione."</string>
<string name="account_setup_failed_ioerror">"Impossibile aprire la connessione al server."</string>
<string name="account_setup_failed_dlg_edit_details_action">"Modifica dettagli"</string>
<string name="account_settings_title_fmt">"Impostazioni generali"</string>
<string name="account_settings_default_label">"Account predefinito"</string>
<string name="account_settings_default_summary">"Invia email da questo account per impostazione predefinita"</string>
<string name="account_settings_notify_label">"Notifiche email"</string>
<string name="account_settings_notify_summary">"Notifica sulla barra di stato l\'arrivo di email"</string>
<string name="account_settings_mail_check_frequency_label">"Frequenza di controllo email"</string>
<string name="account_settings_incoming_label">"Impostazioni posta in arrivo"</string>
<string name="account_settings_outgoing_label">"Impostazioni posta in uscita"</string>
<string name="account_settings_add_account_label">"Aggiungi un altro account"</string>
<string name="account_settings_description_label">"Nome account"</string>
<string name="account_settings_name_label">"Nome"</string>
<string name="account_settings_notifications">"Impostazioni notifica"</string>
<string name="account_settings_vibrate_enable">"Vibrazione"</string>
<string name="account_settings_vibrate_summary">"Attiva anche vibrazione all\'arrivo di email"</string>
<string name="account_settings_ringtone">"Seleziona suoneria"</string>
<string name="account_settings_servers">"Impostazioni server"</string>
<string name="account_delete_dlg_title">"Rimuovi account"</string>
<string name="account_delete_dlg_instructions_fmt">"L\'account \"<xliff:g id="ACCOUNT">%s</xliff:g>\" verrà rimosso da Email."</string>
<string name="provider_note_yahoo">"Accesso alla casella di posta non supportato per alcuni tipi di account di posta Yahoo!. Se hai problemi di connessione, visita il sito yahoo.com per ulteriori informazioni."</string>
<string name="provider_note_yahoo_uk">"Prima di impostare questo account email, visita il sito web Yahoo! e attiva l\'accesso email POP3 per questo account."</string>
<string name="provider_note_live">"Solo alcuni account \"Plus\" includono l\'accesso POP che consente la connessione del programma. Se non riesci ad accedere con l\'indirizzo email e la password corretti, potresti non disporre di un account \"Plus\" a pagamento. Avvia il browser web per avere accesso a questi account di posta."</string>
<string name="provider_note_t_online">"Prima di impostare questo account email, visita il sito web T-Online e crea una password per l\'accesso email POP3."</string>
</resources>

View File

@ -1,172 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright (C) 2009 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<resources xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="read_attachment_label">"メールの添付ファイルを読み取る"</string>
<string name="read_attachment_desc">"メールの添付ファイルの表示をこのアプリケーションに許可します。"</string>
<string name="app_name">"メール"</string>
<string name="accounts_title">"アカウント"</string>
<string name="compose_title">"作成"</string>
<string name="debug_title">"デバッグ"</string>
<string name="next_action">"次へ"</string>
<string name="okay_action">"OK"</string>
<string name="cancel_action">"キャンセル"</string>
<string name="send_action">"送信"</string>
<string name="reply_action">"返信"</string>
<string name="reply_all_action">"全員に返信"</string>
<string name="delete_action">"削除"</string>
<string name="forward_action">"転送"</string>
<string name="done_action">"完了"</string>
<string name="discard_action">"破棄"</string>
<string name="save_draft_action">"下書きとして保存"</string>
<string name="refresh_action">"更新"</string>
<string name="add_account_action">"アカウントを追加"</string>
<string name="compose_action">"作成"</string>
<string name="search_action">"検索"</string>
<string name="open_action">"開く"</string>
<string name="account_settings_action">"アカウントの設定"</string>
<string name="remove_account_action">"アカウントを削除"</string>
<string name="accounts_action">"アカウント"</string>
<string name="mark_as_read_action">"既読にする"</string>
<string name="mark_as_unread_action">"未読にする"</string>
<string name="add_cc_bcc_action">"Cc/Bccを追加"</string>
<string name="add_attachment_action">"添付ファイルを追加"</string>
<string name="dump_settings_action">"ダンプ設定"</string>
<string name="accounts_context_menu_title">"アカウントのオプション"</string>
<string name="status_loading_more">"メールを読み込み中..."</string>
<string name="status_network_error">"接続エラー"</string>
<string name="status_loading_more_failed">"追加のメールを読み込み直す"</string>
<string name="notification_new_title">"新着メール"</string>
<string name="notification_new_one_account_fmt">"未読<xliff:g id="UNREAD_MESSAGE_COUNT">%d</xliff:g>件 (<xliff:g id="ACCOUNT">%s</xliff:g>)"</string>
<string name="notification_new_multi_account_fmt">"<xliff:g id="NUMBER_ACCOUNTS">%d</xliff:g>個のアカウント)"</string>
<string name="special_mailbox_name_inbox">"受信トレイ"</string>
<string name="accounts_welcome">"メールアカウントのセットアップ"\n\n"お好きなメールアカウントを登録してください。"\n\n"画面の手順に沿って簡単に追加できます。"</string>
<string name="debug_version_fmt">"バージョン: <xliff:g id="VERSION">%s</xliff:g>"</string>
<string name="debug_enable_debug_logging_label">"追加のデバッグログを有効にしますか?"</string>
<string name="debug_enable_sensitive_logging_label">"デバッグログに個人情報の記録を許可する (パスワードがログに表示されることがあります)"</string>
<string name="message_list_load_more_messages_action">"他のメールも表示"</string>
<string name="message_compose_to_hint">"To"</string>
<string name="message_compose_cc_hint">"Cc"</string>
<string name="message_compose_bcc_hint">"Bcc"</string>
<string name="message_compose_subject_hint">"件名"</string>
<string name="message_compose_fwd_header_fmt">\n\n"-------- 元のメッセージ --------"\n"件名: <xliff:g id="SUBJECT">%s</xliff:g>"\n"From: <xliff:g id="SENDER">%s</xliff:g>"\n"To: <xliff:g id="TO">%s</xliff:g>"\n"Cc: <xliff:g id="CC_0">%s</xliff:g>"\n\n</string>
<string name="message_compose_reply_header_fmt">\n\n"<xliff:g id="SENDER">%s</xliff:g>: "\n\n</string>
<string name="message_compose_quoted_text_label">"元のメッセージ"</string>
<string name="message_compose_error_no_recipients">"宛先を入力してください。"</string>
<string name="message_compose_attachments_skipped_toast">"ダウンロードされていない添付ファイルは転送できません。"</string>
<string name="message_view_to_label">"To:"</string>
<string name="message_view_cc_label">"Cc:"</string>
<string name="message_view_attachment_view_action">"開く"</string>
<string name="message_view_attachment_download_action">"保存"</string>
<string name="message_view_prev_action">"前のメッセージ"</string>
<string name="message_view_next_action">"次のメッセージ"</string>
<string name="message_view_status_attachment_saved">"「<xliff:g id="FILENAME">%s</xliff:g>」という名前で添付ファイルをSDカードに保存しました。"</string>
<string name="message_view_status_attachment_not_saved">"添付ファイルをSDカードに保存できません。"</string>
<string name="message_view_show_pictures_instructions">"埋め込まれている画像を見るには[画像を表示]を選択してください。"</string>
<string name="message_view_show_pictures_action">"画像を表示"</string>
<string name="message_view_fetching_attachment_toast">"添付ファイルを取得中"</string>
<string name="message_deleted_toast">"メッセージを削除しました。"</string>
<string name="message_discarded_toast">"メッセージを破棄しました。"</string>
<string name="message_saved_toast">"メッセージを下書きとして保存しました。"</string>
<string name="account_setup_basics_title">"メールアカウントの登録"</string>
<string name="account_setup_basics_instructions">"メールのアカウント情報を入力:"</string>
<string name="account_setup_basics_email_hint">"メールアドレス"</string>
<string name="account_setup_basics_password_hint">"パスワード"</string>
<string name="account_setup_basics_default_label">"いつもこのアカウントでメールを送信する"</string>
<string name="account_setup_basics_manual_setup_action">"手動セットアップ"</string>
<string name="account_setup_username_password_toast">"有効なメールアドレスとパスワードを入力してください。"</string>
<string name="account_setup_check_settings_retr_info_msg">"アカウント情報を取得中..."</string>
<string name="account_setup_check_settings_check_incoming_msg">"受信サーバーの設定を確認中..."</string>
<string name="account_setup_check_settings_check_outgoing_msg">"送信サーバーの設定を確認中..."</string>
<string name="account_setup_check_settings_canceling_msg">"キャンセル中..."</string>
<string name="account_setup_names_title">"メールアカウントの登録"</string>
<string name="account_setup_names_instructions">"アカウントの設定が完了しました。"</string>
<string name="account_setup_names_account_name_label">"アカウントに名前を付ける(省略可)"</string>
<string name="account_setup_names_user_name_label">"名前 (送信メールに表示されます)"</string>
<string name="account_setup_account_type_title">"新しいメールアカウントを追加"</string>
<string name="account_setup_account_type_instructions">"このアカウントのタイプ"</string>
<string name="account_setup_account_type_pop_action">"POP3アカウント"</string>
<string name="account_setup_account_type_imap_action">"IMAPアカウント"</string>
<string name="account_setup_incoming_title">"受信サーバーの設定"</string>
<string name="account_setup_incoming_username_label">"ユーザー名"</string>
<string name="account_setup_incoming_password_label">"パスワード"</string>
<string name="account_setup_incoming_pop_server_label">"POP3サーバー"</string>
<string name="account_setup_incoming_imap_server_label">"IMAPサーバー"</string>
<string name="account_setup_incoming_port_label">"ポート"</string>
<string name="account_setup_incoming_security_label">"セキュリティの種類"</string>
<string name="account_setup_incoming_security_none_label">"なし"</string>
<string name="account_setup_incoming_security_ssl_optional_label">"SSL (使える場合)"</string>
<string name="account_setup_incoming_security_ssl_label">"SSL (常に使用)"</string>
<string name="account_setup_incoming_security_tls_optional_label">"TLS (使える場合)"</string>
<string name="account_setup_incoming_security_tls_label">"TLS (常に使用)"</string>
<string name="account_setup_incoming_delete_policy_label">"サーバーからメールを削除"</string>
<string name="account_setup_incoming_delete_policy_never_label">"削除しない"</string>
<string name="account_setup_incoming_delete_policy_7days_label">"7日後"</string>
<string name="account_setup_incoming_delete_policy_delete_label">"受信トレイから削除したとき"</string>
<string name="account_setup_incoming_imap_path_prefix_label">"IMAPパスのプレフィックス"</string>
<string name="account_setup_incoming_imap_path_prefix_hint">"省略可"</string>
<string name="account_setup_outgoing_title">"送信サーバーの設定"</string>
<string name="account_setup_outgoing_smtp_server_label">"SMTPサーバー"</string>
<string name="account_setup_outgoing_port_label">"ポート"</string>
<string name="account_setup_outgoing_security_label">"セキュリティの種類"</string>
<string name="account_setup_outgoing_require_login_label">"ログインが必要"</string>
<string name="account_setup_outgoing_username_label">"ユーザー名"</string>
<string name="account_setup_outgoing_password_label">"パスワード"</string>
<string name="account_setup_options_title">"アカウントのオプション"</string>
<string name="account_setup_options_mail_check_frequency_label">"メールチェックの頻度"</string>
<string name="account_setup_options_mail_check_frequency_never">"なし"</string>
<string name="account_setup_options_mail_check_frequency_5min">"5分毎"</string>
<string name="account_setup_options_mail_check_frequency_10min">"10分毎"</string>
<string name="account_setup_options_mail_check_frequency_15min">"15分毎"</string>
<string name="account_setup_options_mail_check_frequency_30min">"30分毎"</string>
<string name="account_setup_options_mail_check_frequency_1hour">"1時間毎"</string>
<string name="account_setup_options_default_label">"いつもこのアカウントでメールを送信する"</string>
<string name="account_setup_options_notify_label">"メールの着信を知らせる"</string>
<string name="account_setup_failed_dlg_title">"セットアップできませんでした"</string>
<string name="account_setup_failed_dlg_auth_message">"ユーザー名かパスワードが間違っています。"</string>
<string name="account_setup_failed_dlg_auth_message_fmt">"ユーザー名かパスワードが間違っています。"\n"(<xliff:g id="ERROR">%s</xliff:g>)"</string>
<string name="account_setup_failed_dlg_certificate_message">"サーバーへの安全な接続を確立できません。"</string>
<string name="account_setup_failed_dlg_certificate_message_fmt">"サーバーへの安全な接続を確立できません。"\n"(<xliff:g id="ERROR">%s</xliff:g>)"</string>
<string name="account_setup_failed_dlg_server_message">"サーバーに接続できません。"</string>
<string name="account_setup_failed_dlg_server_message_fmt">"サーバーに接続できません。"\n"(<xliff:g id="ERROR">%s</xliff:g>)"</string>
<string name="account_setup_failed_tls_required">"TLSが必要ですがサーバーが対応していません。"</string>
<string name="account_setup_failed_auth_required">"認証方法がサーバーでサポートされていません。"</string>
<string name="account_setup_failed_security">"セキュリティエラーのためサーバーに接続できません。"</string>
<string name="account_setup_failed_ioerror">"サーバーに接続できません。"</string>
<string name="account_setup_failed_dlg_edit_details_action">"設定を編集"</string>
<string name="account_settings_title_fmt">"全般設定"</string>
<string name="account_settings_default_label">"既定のアカウント"</string>
<string name="account_settings_default_summary">"いつもこのアカウントでメールを送信する"</string>
<string name="account_settings_notify_label">"メール通知"</string>
<string name="account_settings_notify_summary">"メールの着信をステータスバーで知らせる"</string>
<string name="account_settings_mail_check_frequency_label">"メールチェックの頻度"</string>
<string name="account_settings_incoming_label">"受信設定"</string>
<string name="account_settings_outgoing_label">"送信設定"</string>
<string name="account_settings_add_account_label">"別のアカウントを追加"</string>
<string name="account_settings_description_label">"アカウント名"</string>
<string name="account_settings_name_label">"名前"</string>
<string name="account_settings_notifications">"通知設定"</string>
<string name="account_settings_vibrate_enable">"バイブレーション"</string>
<string name="account_settings_vibrate_summary">"メール受信: バイブレーションもON"</string>
<string name="account_settings_ringtone">"着信音を選択"</string>
<string name="account_settings_servers">"サーバーの設定"</string>
<string name="account_delete_dlg_title">"アカウントを削除"</string>
<string name="account_delete_dlg_instructions_fmt">"アカウント「<xliff:g id="ACCOUNT">%s</xliff:g>」をメールから削除します。"</string>
<string name="provider_note_yahoo">"一部のタイプの Yahoo! メール アカウントでは、受信トレイへのアクセスがサポートされていません。接続できない場合は yahoo.com にアクセスして詳細をご確認ください。"</string>
<string name="provider_note_yahoo_uk">"このメールアカウントを設定する前に、Yahoo!サイトでこのアカウントのPOP3メールアクセスを有効にしてください。"</string>
<string name="provider_note_live">"このプログラムでPOPアクセスが許可されているのは一部の「Plus」アカウントだけです。有料の「Plus」アカウントがなければ、正しいメールアドレスとパスワードを入力してもログインできません。これらのアカウントにはブラウザからアクセスしてください。"</string>
<string name="provider_note_t_online">"このメールアカウントを設定する前に、T-OnlineサイトにアクセスしてPOP3メール アクセスに使用するパスワードを作成してください。"</string>
</resources>

View File

@ -1,172 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright (C) 2009 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<resources xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="read_attachment_label">"이메일 첨부파일 읽기"</string>
<string name="read_attachment_desc">"이 응용프로그램으로 이메일 첨부파일을 읽을 수 있습니다."</string>
<string name="app_name">"이메일"</string>
<string name="accounts_title">"사용자 계정"</string>
<string name="compose_title">"편지쓰기"</string>
<string name="debug_title">"디버그"</string>
<string name="next_action">"다음"</string>
<string name="okay_action">"확인"</string>
<string name="cancel_action">"취소"</string>
<string name="send_action">"보내기"</string>
<string name="reply_action">"답장"</string>
<string name="reply_all_action">"전체답장"</string>
<string name="delete_action">"삭제"</string>
<string name="forward_action">"전달"</string>
<string name="done_action">"완료"</string>
<string name="discard_action">"삭제"</string>
<string name="save_draft_action">"임시 저장"</string>
<string name="refresh_action">"새로고침"</string>
<string name="add_account_action">"계정 추가"</string>
<string name="compose_action">"편지쓰기"</string>
<string name="search_action">"검색"</string>
<string name="open_action">"열기"</string>
<string name="account_settings_action">"계정 설정"</string>
<string name="remove_account_action">"계정 삭제"</string>
<string name="accounts_action">"계정"</string>
<string name="mark_as_read_action">"읽은 상태로 표시"</string>
<string name="mark_as_unread_action">"읽지않은 상태로 표시"</string>
<string name="add_cc_bcc_action">"참조 및 숨은참조 추가"</string>
<string name="add_attachment_action">"첨부파일 추가"</string>
<string name="dump_settings_action">"덤프 설정"</string>
<string name="accounts_context_menu_title">"계정 옵션"</string>
<string name="status_loading_more">"메일 로드 중..."</string>
<string name="status_network_error">"연결 오류"</string>
<string name="status_loading_more_failed">"추가 메일 로드 재시도"</string>
<string name="notification_new_title">"새 이메일"</string>
<string name="notification_new_one_account_fmt">"읽지않은 메일 <xliff:g id="UNREAD_MESSAGE_COUNT">%d</xliff:g>개(<xliff:g id="ACCOUNT">%s</xliff:g>)"</string>
<string name="notification_new_multi_account_fmt">"<xliff:g id="NUMBER_ACCOUNTS">%d</xliff:g>개 계정"</string>
<string name="special_mailbox_name_inbox">"받은편지함"</string>
<string name="accounts_welcome">"이메일 설정에 오신 것을 환영합니다."\n\n"원하는 이메일 계정을 사용하세요."\n\n"가장 많이 사용하는 이메일 계정은 2단계 만에 설정할 수 있습니다."</string>
<string name="debug_version_fmt">"버전: <xliff:g id="VERSION">%s</xliff:g>"</string>
<string name="debug_enable_debug_logging_label">"별도의 디버그 로깅 사용 여부"</string>
<string name="debug_enable_sensitive_logging_label">"디버그 로깅 시 중요 정보 표시 여부(로그에 비밀번호가 표시될 수 있음)"</string>
<string name="message_list_load_more_messages_action">"추가 메일 로드"</string>
<string name="message_compose_to_hint">"받는사람"</string>
<string name="message_compose_cc_hint">"참조"</string>
<string name="message_compose_bcc_hint">"숨은참조"</string>
<string name="message_compose_subject_hint">"제목"</string>
<string name="message_compose_fwd_header_fmt">\n\n"-------- 원본 메일 --------"\n"제목: <xliff:g id="SUBJECT">%s</xliff:g>"\n"보낸사람: <xliff:g id="SENDER">%s</xliff:g>"\n"받는사람: <xliff:g id="TO">%s</xliff:g>"\n"참조: <xliff:g id="CC_0">%s</xliff:g>"\n\n</string>
<string name="message_compose_reply_header_fmt">\n\n"<xliff:g id="SENDER">%s</xliff:g>님이 작성:"\n\n</string>
<string name="message_compose_quoted_text_label">"받은메일"</string>
<string name="message_compose_error_no_recipients">"받는 사람을 한 명 이상 추가해야 합니다."</string>
<string name="message_compose_attachments_skipped_toast">"일부 첨부파일이 다운로드되지 않아 전달할 수 없습니다."</string>
<string name="message_view_to_label">"받는사람:"</string>
<string name="message_view_cc_label">"참조:"</string>
<string name="message_view_attachment_view_action">"열기"</string>
<string name="message_view_attachment_download_action">"저장"</string>
<string name="message_view_prev_action">"이전 메일"</string>
<string name="message_view_next_action">"다음 메일"</string>
<string name="message_view_status_attachment_saved">"첨부파일(<xliff:g id="FILENAME">%s</xliff:g>)이 SD 카드에 저장되었습니다."</string>
<string name="message_view_status_attachment_not_saved">"SD 카드에 첨부파일을 저장할 수 없습니다."</string>
<string name="message_view_show_pictures_instructions">"삽입된 사진을 표시하려면 \'사진 표시\'를 선택하세요."</string>
<string name="message_view_show_pictures_action">"사진 표시"</string>
<string name="message_view_fetching_attachment_toast">"첨부파일을 가져오는 중입니다."</string>
<string name="message_deleted_toast">"메일이 삭제되었습니다."</string>
<string name="message_discarded_toast">"메일이 삭제되었습니다."</string>
<string name="message_saved_toast">"메일을 임시로 저장했습니다."</string>
<string name="account_setup_basics_title">"이메일 설정"</string>
<string name="account_setup_basics_instructions">"계정 이메일 주소 입력:"</string>
<string name="account_setup_basics_email_hint">"이메일 주소"</string>
<string name="account_setup_basics_password_hint">"비밀번호"</string>
<string name="account_setup_basics_default_label">"기본적으로 이 계정에서 이메일 전송"</string>
<string name="account_setup_basics_manual_setup_action">"수동 설정"</string>
<string name="account_setup_username_password_toast">"올바른 이메일 주소와 비밀번호를 입력하세요."</string>
<string name="account_setup_check_settings_retr_info_msg">"계정 정보 검색 중..."</string>
<string name="account_setup_check_settings_check_incoming_msg">"받는 서버 설정 확인 중..."</string>
<string name="account_setup_check_settings_check_outgoing_msg">"보내는 서버 설정 확인 중..."</string>
<string name="account_setup_check_settings_canceling_msg">"취소하는 중..."</string>
<string name="account_setup_names_title">"이메일 설정"</string>
<string name="account_setup_names_instructions">"계정이 설정되었으며 이메일이 작동됩니다."</string>
<string name="account_setup_names_account_name_label">"계정 이름 입력(선택사항)"</string>
<string name="account_setup_names_user_name_label">"발신 메일에 표시할 이름"</string>
<string name="account_setup_account_type_title">"새 이메일 계정 추가"</string>
<string name="account_setup_account_type_instructions">"계정 유형"</string>
<string name="account_setup_account_type_pop_action">"POP3 계정"</string>
<string name="account_setup_account_type_imap_action">"IMAP 계정"</string>
<string name="account_setup_incoming_title">"받는 서버 설정"</string>
<string name="account_setup_incoming_username_label">"사용자 이름"</string>
<string name="account_setup_incoming_password_label">"비밀번호"</string>
<string name="account_setup_incoming_pop_server_label">"POP3 서버"</string>
<string name="account_setup_incoming_imap_server_label">"IMAP 서버"</string>
<string name="account_setup_incoming_port_label">"포트"</string>
<string name="account_setup_incoming_security_label">"보안 유형"</string>
<string name="account_setup_incoming_security_none_label">"없음"</string>
<string name="account_setup_incoming_security_ssl_optional_label">"SSL(제공되는 경우)"</string>
<string name="account_setup_incoming_security_ssl_label">"SSL(항상)"</string>
<string name="account_setup_incoming_security_tls_optional_label">"TLS(제공되는 경우)"</string>
<string name="account_setup_incoming_security_tls_label">"TLS(항상)"</string>
<string name="account_setup_incoming_delete_policy_label">"서버에서 이메일 삭제"</string>
<string name="account_setup_incoming_delete_policy_never_label">"삭제 안함"</string>
<string name="account_setup_incoming_delete_policy_7days_label">"7일 후"</string>
<string name="account_setup_incoming_delete_policy_delete_label">"받은편지함에서 삭제할 때"</string>
<string name="account_setup_incoming_imap_path_prefix_label">"IMAP 경로 접두어(prefix)"</string>
<string name="account_setup_incoming_imap_path_prefix_hint">"선택사항"</string>
<string name="account_setup_outgoing_title">"보내는 서버 설정"</string>
<string name="account_setup_outgoing_smtp_server_label">"SMTP 서버"</string>
<string name="account_setup_outgoing_port_label">"포트"</string>
<string name="account_setup_outgoing_security_label">"보안 유형"</string>
<string name="account_setup_outgoing_require_login_label">"로그인해야 함"</string>
<string name="account_setup_outgoing_username_label">"사용자 이름"</string>
<string name="account_setup_outgoing_password_label">"비밀번호"</string>
<string name="account_setup_options_title">"계정 옵션"</string>
<string name="account_setup_options_mail_check_frequency_label">"이메일 확인 빈도"</string>
<string name="account_setup_options_mail_check_frequency_never">"안함"</string>
<string name="account_setup_options_mail_check_frequency_5min">"5분마다"</string>
<string name="account_setup_options_mail_check_frequency_10min">"10분마다"</string>
<string name="account_setup_options_mail_check_frequency_15min">"15분마다"</string>
<string name="account_setup_options_mail_check_frequency_30min">"30분마다"</string>
<string name="account_setup_options_mail_check_frequency_1hour">"1시간마다"</string>
<string name="account_setup_options_default_label">"기본적으로 이 계정에서 이메일 전송"</string>
<string name="account_setup_options_notify_label">"이메일 도착 시 알림"</string>
<string name="account_setup_failed_dlg_title">"설정을 완료할 수 없음"</string>
<string name="account_setup_failed_dlg_auth_message">"사용자 이름 또는 비밀번호가 잘못되었습니다."</string>
<string name="account_setup_failed_dlg_auth_message_fmt">"잘못된 사용자 이름 또는 비밀번호"\n"(<xliff:g id="ERROR">%s</xliff:g>)"</string>
<string name="account_setup_failed_dlg_certificate_message">"서버에 안전하게 연결할 수 없습니다."</string>
<string name="account_setup_failed_dlg_certificate_message_fmt">"서버에 안전하게 연결할 수 없습니다."\n"(<xliff:g id="ERROR">%s</xliff:g>)"</string>
<string name="account_setup_failed_dlg_server_message">"서버에 연결할 수 없습니다."</string>
<string name="account_setup_failed_dlg_server_message_fmt">"서버에 연결할 수 없습니다."\n"(<xliff:g id="ERROR">%s</xliff:g>)"</string>
<string name="account_setup_failed_tls_required">"TLS가 필요하지만 서버에서 지원하지 않습니다."</string>
<string name="account_setup_failed_auth_required">"인증 방법이 서버에서 지원되지 않습니다."</string>
<string name="account_setup_failed_security">"보안 오류로 서버에 연결할 수 없습니다."</string>
<string name="account_setup_failed_ioerror">"서버에 연결할 수 없습니다."</string>
<string name="account_setup_failed_dlg_edit_details_action">"세부정보 수정"</string>
<string name="account_settings_title_fmt">"기본설정"</string>
<string name="account_settings_default_label">"기본 계정"</string>
<string name="account_settings_default_summary">"기본적으로 이 계정에서 이메일 전송"</string>
<string name="account_settings_notify_label">"이메일 알림"</string>
<string name="account_settings_notify_summary">"이메일 도착 시 상태 표시줄에서 알림"</string>
<string name="account_settings_mail_check_frequency_label">"이메일 확인 빈도"</string>
<string name="account_settings_incoming_label">"수신 설정"</string>
<string name="account_settings_outgoing_label">"발신 설정"</string>
<string name="account_settings_add_account_label">"다른 계정 추가"</string>
<string name="account_settings_description_label">"계정 이름"</string>
<string name="account_settings_name_label">"이름"</string>
<string name="account_settings_notifications">"알림 설정"</string>
<string name="account_settings_vibrate_enable">"진동"</string>
<string name="account_settings_vibrate_summary">"이메일 도착 시 진동"</string>
<string name="account_settings_ringtone">"벨소리 선택"</string>
<string name="account_settings_servers">"서버 설정"</string>
<string name="account_delete_dlg_title">"계정 삭제"</string>
<string name="account_delete_dlg_instructions_fmt">"계정(<xliff:g id="ACCOUNT">%s</xliff:g>)이 이메일에서 삭제됩니다."</string>
<string name="provider_note_yahoo">"일부 Yahoo! 메일 계정의 경우 편지함에 액세스할 수 없습니다. 접속에 문제가 있을 경우 자세한 정보는 yahoo.com을 참조하세요."</string>
<string name="provider_note_yahoo_uk">"이메일 계정을 설정하기 전에 Yahoo! 웹사이트를 방문하여 이 계정에 대한 POP3 이메일 액세스를 사용 설정하세요."</string>
<string name="provider_note_live">"일부 \'Plus\' 계정에만 이 프로그램을 연결할 수 있는 POP 액세스 권한이 있습니다. 올바른 이메일 주소와 비밀번호를 입력해도 로그인이 되지 않으면 \'Plus\' 계정 사용료가 미납되었을 수 있습니다. 이러한 메일 계정에 액세스하려면 웹브라우저를 실행하세요."</string>
<string name="provider_note_t_online">"이메일 계정을 설정하기 전에 T-Online 웹사이트를 방문하여 POP3 이메일 액세스에 대한 비밀번호를 만드세요."</string>
</resources>

View File

@ -1,172 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright (C) 2009 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<resources xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="read_attachment_label">"lese e-post-vedlegg"</string>
<string name="read_attachment_desc">"Tillat applikasjonen å lese e-post-vedleggene dine."</string>
<string name="app_name">"E-post"</string>
<string name="accounts_title">"Dine kontoer"</string>
<string name="compose_title">"Skriv e-post"</string>
<string name="debug_title">"Debug"</string>
<string name="next_action">"Neste"</string>
<string name="okay_action">"OK"</string>
<string name="cancel_action">"Avbryt"</string>
<string name="send_action">"Send"</string>
<string name="reply_action">"Svar"</string>
<string name="reply_all_action">"Svar alle"</string>
<string name="delete_action">"Slett"</string>
<string name="forward_action">"Videresend"</string>
<string name="done_action">"Ferdig"</string>
<string name="discard_action">"Forkast"</string>
<string name="save_draft_action">"Lagre som utkast"</string>
<string name="refresh_action">"Oppdater"</string>
<string name="add_account_action">"Legg til konto"</string>
<string name="compose_action">"Skriv e-post"</string>
<string name="search_action">"Søk"</string>
<string name="open_action">"Åpne"</string>
<string name="account_settings_action">"Kontoinnstillinger"</string>
<string name="remove_account_action">"Fjern konto"</string>
<string name="accounts_action">"Kontoer"</string>
<string name="mark_as_read_action">"Merk som lest"</string>
<string name="mark_as_unread_action">"Merk som ulest"</string>
<string name="add_cc_bcc_action">"Legg til kopi/blindkopi"</string>
<string name="add_attachment_action">"Legg til vedlegg"</string>
<string name="dump_settings_action">"Dump settings"</string>
<string name="accounts_context_menu_title">"Kontoinnstillinger"</string>
<string name="status_loading_more">"Henter meldinger…"</string>
<string name="status_network_error">"Feil ved tilkobling"</string>
<string name="status_loading_more_failed">"Prøv på nytt å hente flere meldinger"</string>
<string name="notification_new_title">"Ny e-post"</string>
<string name="notification_new_one_account_fmt">"<xliff:g id="UNREAD_MESSAGE_COUNT">%d</xliff:g> ulest(e) (<xliff:g id="ACCOUNT">%s</xliff:g>)"</string>
<string name="notification_new_multi_account_fmt">"i <xliff:g id="NUMBER_ACCOUNTS">%d</xliff:g> kontoer"</string>
<string name="special_mailbox_name_inbox">"Innboks"</string>
<string name="accounts_welcome">"Velkommen til e-post-oppsettet!"\n\n"Du kan bruke hvilken som helst e-postkonto."\n\n"De fleste vanlige e-postkontoer kan settes opp i to trinn!"</string>
<string name="debug_version_fmt">"Version: <xliff:g id="VERSION">%s</xliff:g>"</string>
<string name="debug_enable_debug_logging_label">"Enable extra debug logging?"</string>
<string name="debug_enable_sensitive_logging_label">"Enable sensitive information debug logging? (May show passwords in logs.)"</string>
<string name="message_list_load_more_messages_action">"Hent flere meldinger"</string>
<string name="message_compose_to_hint">"Til"</string>
<string name="message_compose_cc_hint">"Kopi"</string>
<string name="message_compose_bcc_hint">"Blindkopi"</string>
<string name="message_compose_subject_hint">"Emne"</string>
<string name="message_compose_fwd_header_fmt">\n\n"-------- Original Message --------"\n"Subject: <xliff:g id="SUBJECT">%s</xliff:g>"\n"From: <xliff:g id="SENDER">%s</xliff:g>"\n"To: <xliff:g id="TO">%s</xliff:g>"\n"CC: <xliff:g id="CC_0">%s</xliff:g>"\n\n</string>
<string name="message_compose_reply_header_fmt">\n\n"<xliff:g id="SENDER">%s</xliff:g>:"\n\n</string>
<string name="message_compose_quoted_text_label">"Sitert tekst"</string>
<string name="message_compose_error_no_recipients">"Du må legge til minst én mottager."</string>
<string name="message_compose_attachments_skipped_toast">"Noen vedlegg kunne ikke sendes videre fordi de ikke er blitt lastet ned."</string>
<string name="message_view_to_label">"Til:"</string>
<string name="message_view_cc_label">"Kopi:"</string>
<string name="message_view_attachment_view_action">"Åpne"</string>
<string name="message_view_attachment_download_action">"Lagre"</string>
<string name="message_view_prev_action">"Forrige melding"</string>
<string name="message_view_next_action">"Neste melding"</string>
<string name="message_view_status_attachment_saved">"Vedlegget ble lagret til minnekortet som <xliff:g id="FILENAME">%s</xliff:g>."</string>
<string name="message_view_status_attachment_not_saved">"Kunne ikke lagre vedlegget til minnekort."</string>
<string name="message_view_show_pictures_instructions">"Velg \\\\\\\"Vis bilder\\\\\\\" for å vise vedlagte bilder."</string>
<string name="message_view_show_pictures_action">"Vis bilder"</string>
<string name="message_view_fetching_attachment_toast">"Henter vedlegg."</string>
<string name="message_deleted_toast">"Meldingen ble slettet."</string>
<string name="message_discarded_toast">"Meldingen ble forkastet."</string>
<string name="message_saved_toast">"Meldingen ble lagret som utkast."</string>
<string name="account_setup_basics_title">"Sett opp e-post"</string>
<string name="account_setup_basics_instructions">"Skriv e-postadressen til kontoen din:"</string>
<string name="account_setup_basics_email_hint">"E-postadresse"</string>
<string name="account_setup_basics_password_hint">"Passord"</string>
<string name="account_setup_basics_default_label">"Bruk denne kontoen som standard for utgående e-post."</string>
<string name="account_setup_basics_manual_setup_action">"Manuelt oppsett"</string>
<string name="account_setup_username_password_toast">"Skriv inn en gyldig e-postadresse og passord."</string>
<string name="account_setup_check_settings_retr_info_msg">"Henter kontoinformasjon…"</string>
<string name="account_setup_check_settings_check_incoming_msg">"Sjekker tjenerinnstillinger for inngående e-post…"</string>
<string name="account_setup_check_settings_check_outgoing_msg">"Sjekker tjenerinnstillinger for utgående e-post…"</string>
<string name="account_setup_check_settings_canceling_msg">"Avbryter…"</string>
<string name="account_setup_names_title">"Sett opp e-post"</string>
<string name="account_setup_names_instructions">"Kontoen er satt opp, og e-post er på vei!"</string>
<string name="account_setup_names_account_name_label">"Gi denne kontoen et navn (valgfritt)"</string>
<string name="account_setup_names_user_name_label">"Navnet ditt (vises i utgående meldinger)"</string>
<string name="account_setup_account_type_title">"Legg til ny e-postkonto"</string>
<string name="account_setup_account_type_instructions">"Hva slags konto er dette?"</string>
<string name="account_setup_account_type_pop_action">"POP3-konto"</string>
<string name="account_setup_account_type_imap_action">"IMAP-konto"</string>
<string name="account_setup_incoming_title">"Tjenerinnstillinger for inngående e-post"</string>
<string name="account_setup_incoming_username_label">"Brukernavn"</string>
<string name="account_setup_incoming_password_label">"Passord"</string>
<string name="account_setup_incoming_pop_server_label">"POP3-tjener"</string>
<string name="account_setup_incoming_imap_server_label">"IMAP-tjener"</string>
<string name="account_setup_incoming_port_label">"Port"</string>
<string name="account_setup_incoming_security_label">"Sikkerhetstype"</string>
<string name="account_setup_incoming_security_none_label">"Ingen"</string>
<string name="account_setup_incoming_security_ssl_optional_label">"SSL (hvis tilgjengelig)"</string>
<string name="account_setup_incoming_security_ssl_label">"SSL (alltid)"</string>
<string name="account_setup_incoming_security_tls_optional_label">"TLS (hvis tilgjengelig)"</string>
<string name="account_setup_incoming_security_tls_label">"TLS (alltid)"</string>
<string name="account_setup_incoming_delete_policy_label">"Slett e-post fra tjener"</string>
<string name="account_setup_incoming_delete_policy_never_label">"Aldri"</string>
<string name="account_setup_incoming_delete_policy_7days_label">"Etter en uke"</string>
<string name="account_setup_incoming_delete_policy_delete_label">"Når jeg sletter den fra innboksen"</string>
<string name="account_setup_incoming_imap_path_prefix_label">"IMAP-stiprefiks"</string>
<string name="account_setup_incoming_imap_path_prefix_hint">"Valgfritt"</string>
<string name="account_setup_outgoing_title">"Tjenerinnstillinger for utgående e-post"</string>
<string name="account_setup_outgoing_smtp_server_label">"SMTP-tjener"</string>
<string name="account_setup_outgoing_port_label">"Port"</string>
<string name="account_setup_outgoing_security_label">"Sikkerhetstype"</string>
<string name="account_setup_outgoing_require_login_label">"Krev innlogging."</string>
<string name="account_setup_outgoing_username_label">"Brukernavn"</string>
<string name="account_setup_outgoing_password_label">"Passord"</string>
<string name="account_setup_options_title">"Kontoinnstillinger"</string>
<string name="account_setup_options_mail_check_frequency_label">"Hvor ofte e-post skal sjekkes"</string>
<string name="account_setup_options_mail_check_frequency_never">"Aldri"</string>
<string name="account_setup_options_mail_check_frequency_5min">"Hvert 5. minutt"</string>
<string name="account_setup_options_mail_check_frequency_10min">"Hvert 10. minutt"</string>
<string name="account_setup_options_mail_check_frequency_15min">"Hvert 15. minutt"</string>
<string name="account_setup_options_mail_check_frequency_30min">"Hvert 30. minutt"</string>
<string name="account_setup_options_mail_check_frequency_1hour">"Hver time"</string>
<string name="account_setup_options_default_label">"Bruk denne kontoen som standard for utgående e-post."</string>
<string name="account_setup_options_notify_label">"Varsle når det kommer e-post."</string>
<string name="account_setup_failed_dlg_title">"Kunne ikke fullføre oppsettet"</string>
<string name="account_setup_failed_dlg_auth_message">"Feil brukernavn eller passord."</string>
<string name="account_setup_failed_dlg_auth_message_fmt">"Feil brukernavn eller passord."\n"(<xliff:g id="ERROR">%s</xliff:g>)"</string>
<string name="account_setup_failed_dlg_certificate_message">"Kan ikke åpne en sikker tilkobling til tjeneren."</string>
<string name="account_setup_failed_dlg_certificate_message_fmt">"Kan ikke åpne en sikker tilkobling til tjeneren."\n"(<xliff:g id="ERROR">%s</xliff:g>)"</string>
<string name="account_setup_failed_dlg_server_message">"Kan ikke koble til tjeneren."</string>
<string name="account_setup_failed_dlg_server_message_fmt">"Kan ikke koble til tjeneren."\n"(<xliff:g id="ERROR">%s</xliff:g>)"</string>
<string name="account_setup_failed_tls_required">"TLS påkrevd, men tjeneren støtter det ikke."</string>
<string name="account_setup_failed_auth_required">"Tjeneren støtter ikke de påkrevde autentiseringsmetodene."</string>
<string name="account_setup_failed_security">"Kunne ikke koble til tjeneren på grunn av sikkerhetsfeil."</string>
<string name="account_setup_failed_ioerror">"Kunne ikke koble til tjeneren."</string>
<string name="account_setup_failed_dlg_edit_details_action">"Rediger detaljer"</string>
<string name="account_settings_title_fmt">"Generelle innstillinger"</string>
<string name="account_settings_default_label">"Standardkonto"</string>
<string name="account_settings_default_summary">"Bruk denne kontoen som standard for utgående e-post."</string>
<string name="account_settings_notify_label">"Varsling om e-post"</string>
<string name="account_settings_notify_summary">"Varsle i statusfeltet når det kommer e-post"</string>
<string name="account_settings_mail_check_frequency_label">"Hvor ofte det skal sjekkes etter e-post"</string>
<string name="account_settings_incoming_label">"Inngående innstillinger"</string>
<string name="account_settings_outgoing_label">"Utgående innstillinger"</string>
<string name="account_settings_add_account_label">"Legg til en annen konto"</string>
<string name="account_settings_description_label">"Kontonavn"</string>
<string name="account_settings_name_label">"Ditt navn"</string>
<string name="account_settings_notifications">"Innstillinger for varsling"</string>
<string name="account_settings_vibrate_enable">"Vibrer"</string>
<string name="account_settings_vibrate_summary">"Vibrer når det kommer e-post"</string>
<string name="account_settings_ringtone">"Velg ringetone"</string>
<string name="account_settings_servers">"Innstillinger for tjener"</string>
<string name="account_delete_dlg_title">"Fjern"</string>
<string name="account_delete_dlg_instructions_fmt">"Kontoen \\\\\\\"<xliff:g id="ACCOUNT">%s</xliff:g>\\\\\\\" vil bli fjernet fra e-postapplikasjonen."</string>
<string name="provider_note_yahoo">"E-posttilgang er ikke støttet for enkelte typer Yahoo!-e-postkontoer. Hvis du har problemer med å koble til, besøk yahoo.com for mer informasjon."</string>
<string name="provider_note_yahoo_uk">"Før du setter opp denne e-postkontoen, må du gå til Yahoo!-nettsiden og slå på POP3-tilgang for den."</string>
<string name="provider_note_live">"Bare noen \\\\\\\"pluss-kontoer tilbyr POP-tilgangBREAK_0 som dette programmet trenger for å koble til. Hvis du ikke klarer å logge innBREAK_1 med riktig e-postadresse og passord, kan det være du ikke har en betaltBREAK_2 \\\\\\\"pluss-tilgang. Start nettleseren for å få tilgang til slike e-postkontoer."</string>
<string name="provider_note_t_online">"Før du setter opp denne e-postkontoen, besøk T-Online-nettsiden og velg et passord for e-posttilgang via POP3."</string>
</resources>

View File

@ -1,172 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright (C) 2009 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<resources xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="read_attachment_label">"Bijlages van e-mail lezen"</string>
<string name="read_attachment_desc">"Staat deze toepassing toe om je E-mail-bijlages te lezen."</string>
<string name="app_name">"E-mail"</string>
<string name="accounts_title">"Je accounts"</string>
<string name="compose_title">"Opstellen"</string>
<string name="debug_title">"Foutopsporing"</string>
<string name="next_action">"Volgende"</string>
<string name="okay_action">"OK"</string>
<string name="cancel_action">"Annuleren"</string>
<string name="send_action">"Verzenden"</string>
<string name="reply_action">"Beantwoorden"</string>
<string name="reply_all_action">"Allen beantwoorden"</string>
<string name="delete_action">"Verwijderen"</string>
<string name="forward_action">"Doorsturen"</string>
<string name="done_action">"Gereed"</string>
<string name="discard_action">"Verwijderen"</string>
<string name="save_draft_action">"Opslaan als concept"</string>
<string name="refresh_action">"Vernieuwen"</string>
<string name="add_account_action">"Account toevoegen"</string>
<string name="compose_action">"Opstellen"</string>
<string name="search_action">"Zoeken"</string>
<string name="open_action">"Openen"</string>
<string name="account_settings_action">"Accountinstellingen"</string>
<string name="remove_account_action">"Account verwijderen"</string>
<string name="accounts_action">"Accounts"</string>
<string name="mark_as_read_action">"Markeren als gelezen"</string>
<string name="mark_as_unread_action">"Markeren als ongelezen"</string>
<string name="add_cc_bcc_action">"Cc/Bcc toevoegen"</string>
<string name="add_attachment_action">"Bijlage toevoegen"</string>
<string name="dump_settings_action">"Dumpinstellingen"</string>
<string name="accounts_context_menu_title">"Acountopties"</string>
<string name="status_loading_more">"Berichten laden..."</string>
<string name="status_network_error">"Verbindingsfout"</string>
<string name="status_loading_more_failed">"Probeer opnieuw meer berichten te laden"</string>
<string name="notification_new_title">"Nieuwe e-mail"</string>
<string name="notification_new_one_account_fmt">"<xliff:g id="UNREAD_MESSAGE_COUNT">%d</xliff:g> ongelezen (<xliff:g id="ACCOUNT">%s</xliff:g>)"</string>
<string name="notification_new_multi_account_fmt">"in <xliff:g id="NUMBER_ACCOUNTS">%d</xliff:g> accounts"</string>
<string name="special_mailbox_name_inbox">"Postvak IN"</string>
<string name="accounts_welcome">"Welkom bij E-mail instellen."\n\n"Je kunt elke account gebruiken met E-mail."\n\n"De meest populaire e-mailaccounts kunnen in twee stappen worden ingesteld."</string>
<string name="debug_version_fmt">"Versie: <xliff:g id="VERSION">%s</xliff:g>"</string>
<string name="debug_enable_debug_logging_label">"Extra logboek voor probleemoplossing bij gevoelige informatie maken?"</string>
<string name="debug_enable_sensitive_logging_label">"Probleemoplossing bij gevoelige informatie vastleggen? (Mogelijk worden er wachtwoorden weergegeven in de logboeken.)"</string>
<string name="message_list_load_more_messages_action">"Meer berichten laden"</string>
<string name="message_compose_to_hint">"Aan"</string>
<string name="message_compose_cc_hint">"Cc"</string>
<string name="message_compose_bcc_hint">"Bcc"</string>
<string name="message_compose_subject_hint">"Onderwerp"</string>
<string name="message_compose_fwd_header_fmt">\n\n"-------- Oorspronkelijk bericht --------"\n"Onderwerp: <xliff:g id="SUBJECT">%s</xliff:g>"\n"Van: <xliff:g id="SENDER">%s</xliff:g>"\n"Aan: <xliff:g id="TO">%s</xliff:g>"\n"Cc: <xliff:g id="CC_0">%s</xliff:g>"\n\n</string>
<string name="message_compose_reply_header_fmt">\n\n"<xliff:g id="SENDER">%s</xliff:g>schreef:"\n\n</string>
<string name="message_compose_quoted_text_label">"Geciteerde tekst"</string>
<string name="message_compose_error_no_recipients">"Je moet minstens één ontvanger toevoegen."</string>
<string name="message_compose_attachments_skipped_toast">"Sommige bijlages kunnen niet worden doorgestuurd omdat ze niet zijn gedownload."</string>
<string name="message_view_to_label">"Aan:"</string>
<string name="message_view_cc_label">"Cc:"</string>
<string name="message_view_attachment_view_action">"Openen"</string>
<string name="message_view_attachment_download_action">"Opslaan"</string>
<string name="message_view_prev_action">"Vorig bericht"</string>
<string name="message_view_next_action">"Volgend bericht"</string>
<string name="message_view_status_attachment_saved">"Bijlage opgeslagen op SD-kaart als <xliff:g id="FILENAME">%s</xliff:g>."</string>
<string name="message_view_status_attachment_not_saved">"Kan bijlage niet opslaan op SD-kaart."</string>
<string name="message_view_show_pictures_instructions">"Selecteer Afbeeldingen weergeven om ingevoegde afbeeldingen weer te geven."</string>
<string name="message_view_show_pictures_action">"Afbeeldingen weergeven"</string>
<string name="message_view_fetching_attachment_toast">"Bijlage wordt opgehaald."</string>
<string name="message_deleted_toast">"Bericht verwijderd."</string>
<string name="message_discarded_toast">"Bericht genegeerd"</string>
<string name="message_saved_toast">"Bericht opgeslagen als concept."</string>
<string name="account_setup_basics_title">"E-mail instellen"</string>
<string name="account_setup_basics_instructions">"Typ het e-mailadres van je account:"</string>
<string name="account_setup_basics_email_hint">"E-mailadres"</string>
<string name="account_setup_basics_password_hint">"Wachtwoord"</string>
<string name="account_setup_basics_default_label">"E-mail standaard vanaf deze account versturen"</string>
<string name="account_setup_basics_manual_setup_action">"Handmatig instellen"</string>
<string name="account_setup_username_password_toast">"Typ een geldig e-mailadres en wachtwoord"</string>
<string name="account_setup_check_settings_retr_info_msg">"Accountinformatie ophalen..."</string>
<string name="account_setup_check_settings_check_incoming_msg">"Serverinstellingen voor binnenkomende e-mail controleren..."</string>
<string name="account_setup_check_settings_check_outgoing_msg">"Serverinstellingen voor uitgaande e-mail controleren..."</string>
<string name="account_setup_check_settings_canceling_msg">"Annuleren..."</string>
<string name="account_setup_names_title">"E-mail instellen"</string>
<string name="account_setup_names_instructions">"Je account is ingesteld en er is e-mail onderweg."</string>
<string name="account_setup_names_account_name_label">"Geef deze account een naam (optioneel)"</string>
<string name="account_setup_names_user_name_label">"Je naam (wordt weergegeven in uitgaande berichten)"</string>
<string name="account_setup_account_type_title">"Nieuwe e-mailaccount toevoegen"</string>
<string name="account_setup_account_type_instructions">"Welk type account is dit?"</string>
<string name="account_setup_account_type_pop_action">"POP3-account"</string>
<string name="account_setup_account_type_imap_action">"IMAP-account"</string>
<string name="account_setup_incoming_title">"Serverinstellingen voor binnenkomende e-mail"</string>
<string name="account_setup_incoming_username_label">"Gebruikersnaam"</string>
<string name="account_setup_incoming_password_label">"Wachtwoord"</string>
<string name="account_setup_incoming_pop_server_label">"POP3-server"</string>
<string name="account_setup_incoming_imap_server_label">"IMAP-server"</string>
<string name="account_setup_incoming_port_label">"Port"</string>
<string name="account_setup_incoming_security_label">"Beveiligingstype"</string>
<string name="account_setup_incoming_security_none_label">"Geen"</string>
<string name="account_setup_incoming_security_ssl_optional_label">"SSL (indien beschikbaar)"</string>
<string name="account_setup_incoming_security_ssl_label">"SSL (altijd)"</string>
<string name="account_setup_incoming_security_tls_optional_label">"TLS (indien beschikbaar)"</string>
<string name="account_setup_incoming_security_tls_label">"TLS (altijd)"</string>
<string name="account_setup_incoming_delete_policy_label">"E-mail verwijderen van server"</string>
<string name="account_setup_incoming_delete_policy_never_label">"Nooit"</string>
<string name="account_setup_incoming_delete_policy_7days_label">"Na 7 dagen"</string>
<string name="account_setup_incoming_delete_policy_delete_label">"Als ik verwijder uit mijn Postvak IN"</string>
<string name="account_setup_incoming_imap_path_prefix_label">"Voorvoegsel IMAP-pad"</string>
<string name="account_setup_incoming_imap_path_prefix_hint">"Optioneel"</string>
<string name="account_setup_outgoing_title">"Serverinstellingen voor uitgaande e-mail"</string>
<string name="account_setup_outgoing_smtp_server_label">"SMTP-server"</string>
<string name="account_setup_outgoing_port_label">"Poort"</string>
<string name="account_setup_outgoing_security_label">"Beveiligingstype"</string>
<string name="account_setup_outgoing_require_login_label">"Aanmelden vereist"</string>
<string name="account_setup_outgoing_username_label">"Gebruikersnaam"</string>
<string name="account_setup_outgoing_password_label">"Wachtwoord"</string>
<string name="account_setup_options_title">"Accountopties"</string>
<string name="account_setup_options_mail_check_frequency_label">"Frequentie voor het controleren op nieuwe berichten"</string>
<string name="account_setup_options_mail_check_frequency_never">"Nooit"</string>
<string name="account_setup_options_mail_check_frequency_5min">"Elke 5 minuten"</string>
<string name="account_setup_options_mail_check_frequency_10min">"Elke 10 minuten"</string>
<string name="account_setup_options_mail_check_frequency_15min">"Elke 15 minuten"</string>
<string name="account_setup_options_mail_check_frequency_30min">"Elke 30 minuten"</string>
<string name="account_setup_options_mail_check_frequency_1hour">"Elk uur"</string>
<string name="account_setup_options_default_label">"E-mail standaard vanaf deze account versturen"</string>
<string name="account_setup_options_notify_label">"Stuur me een melding wanneer er e-mail binnenkomt."</string>
<string name="account_setup_failed_dlg_title">"Instellen is niet voltooid"</string>
<string name="account_setup_failed_dlg_auth_message">"Gebruikersnaam of wachtwoord onjuist"</string>
<string name="account_setup_failed_dlg_auth_message_fmt">"Gebruikersnaam of wachtwoord is onjuist."\n"(<xliff:g id="ERROR">%s</xliff:g>)"</string>
<string name="account_setup_failed_dlg_certificate_message">"Kan geen veilige verbinding met de server maken."</string>
<string name="account_setup_failed_dlg_certificate_message_fmt">"Kan geen veilige verbinding met de server tot stand brengen."\n"(<xliff:g id="ERROR">%s</xliff:g>)"</string>
<string name="account_setup_failed_dlg_server_message">"Kan geen verbinding maken met de server."</string>
<string name="account_setup_failed_dlg_server_message_fmt">"Kan geen verbinding maken met de server."\n"(<xliff:g id="ERROR">%s</xliff:g>)"</string>
<string name="account_setup_failed_tls_required">"TLS is vereist maar wordt niet ondersteund door de server."</string>
<string name="account_setup_failed_auth_required">"Verificatiemethoden worden niet ondersteund door de server."</string>
<string name="account_setup_failed_security">"Kan geen verbinding maken met de server wegens een beveiligingsfout."</string>
<string name="account_setup_failed_ioerror">"Kan geen verbinding met de server maken."</string>
<string name="account_setup_failed_dlg_edit_details_action">"Details bewerken"</string>
<string name="account_settings_title_fmt">"Algemene instellingen"</string>
<string name="account_settings_default_label">"Standaardaccount"</string>
<string name="account_settings_default_summary">"E-mail standaard vanaf deze account versturen"</string>
<string name="account_settings_notify_label">"Meldingen via e-mail"</string>
<string name="account_settings_notify_summary">"Melding in statusbalk wanneer er e-mail binnenkomt"</string>
<string name="account_settings_mail_check_frequency_label">"Frequentie voor het controleren op nieuwe e-mail"</string>
<string name="account_settings_incoming_label">"Instellingen voor binnenkomende e-mail"</string>
<string name="account_settings_outgoing_label">"Instellingen voor uitgaande e-mail"</string>
<string name="account_settings_add_account_label">"Nieuwe account toevoegen"</string>
<string name="account_settings_description_label">"Accountnaam"</string>
<string name="account_settings_name_label">"Je naam"</string>
<string name="account_settings_notifications">"Instellingen voor meldingen"</string>
<string name="account_settings_vibrate_enable">"Trillen"</string>
<string name="account_settings_vibrate_summary">"Ook trillen bij ontvangst van e-mail"</string>
<string name="account_settings_ringtone">"Beltoon selecteren"</string>
<string name="account_settings_servers">"Serverinstellingen"</string>
<string name="account_delete_dlg_title">"Account verwijderen"</string>
<string name="account_delete_dlg_instructions_fmt">"De account <xliff:g id="ACCOUNT">%s</xliff:g> wordt verwijderd van E-mail"</string>
<string name="provider_note_yahoo">"Toegang tot postvakken wordt niet ondersteund door sommige typen Yahoo!-mailaccounts. Als er problemen ontstaan bij het verbinden, ga je naar yahoo.com voor meer informatie."</string>
<string name="provider_note_yahoo_uk">"Ga voordat je deze e-mailaccount instelt naar de website van Yahoo! en schakel toegang met POP3 in voor deze account."</string>
<string name="provider_note_live">"Alleen sommige Plus-accounts hebben POP-toegang waarmee dit programma verbinding kan maken. Als je je niet kunt aanmelden met het juiste e-mailadres en wachtwoord, heb je mogelijk niet betaald voor je Plus-account. Start de webbrowser voor toegang tot deze e-mailaccounts."</string>
<string name="provider_note_t_online">"Voordat je deze e-mailaccount instelt, ga je naar de website van T-Online en maak je een wachtwoord voor toegang tot e-mail via POP3."</string>
</resources>

View File

@ -1,172 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright (C) 2009 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<resources xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="read_attachment_label">"odczyt załączników w wiadomościach e-mail"</string>
<string name="read_attachment_desc">"Umożliwia tej aplikacji odczyt załączników poczty e-mail."</string>
<string name="app_name">"Poczta e-mail"</string>
<string name="accounts_title">"Twoje konta"</string>
<string name="compose_title">"Utwórz"</string>
<string name="debug_title">"Debuguj"</string>
<string name="next_action">"Dalej"</string>
<string name="okay_action">"OK"</string>
<string name="cancel_action">"Anuluj"</string>
<string name="send_action">"Wyślij"</string>
<string name="reply_action">"Odpowiedz"</string>
<string name="reply_all_action">"Odpowiedz wszystkim"</string>
<string name="delete_action">"Usuń"</string>
<string name="forward_action">"Przekaż dalej"</string>
<string name="done_action">"Gotowe"</string>
<string name="discard_action">"Odrzuć"</string>
<string name="save_draft_action">"Zapisz jako wersję roboczą"</string>
<string name="refresh_action">"Odśwież"</string>
<string name="add_account_action">"Dodaj konto"</string>
<string name="compose_action">"Utwórz"</string>
<string name="search_action">"Szukaj"</string>
<string name="open_action">"Otwórz"</string>
<string name="account_settings_action">"Ustawienia konta"</string>
<string name="remove_account_action">"Usuń konto"</string>
<string name="accounts_action">"Konta"</string>
<string name="mark_as_read_action">"Oznacz jako przeczytane"</string>
<string name="mark_as_unread_action">"Oznacz jako nieprzeczytane"</string>
<string name="add_cc_bcc_action">"Dodaj DW/UDW"</string>
<string name="add_attachment_action">"Dodaj załącznik"</string>
<string name="dump_settings_action">"Zrzut ustawień"</string>
<string name="accounts_context_menu_title">"Opcje konta"</string>
<string name="status_loading_more">"Ładowanie wiadomości…"</string>
<string name="status_network_error">"Błąd połączenia"</string>
<string name="status_loading_more_failed">"Ponów próbę załadowania większej liczby wiadomości"</string>
<string name="notification_new_title">"Nowa wiadomość e-mail"</string>
<string name="notification_new_one_account_fmt">"Nieprzeczytane: <xliff:g id="UNREAD_MESSAGE_COUNT">%d</xliff:g> (<xliff:g id="ACCOUNT">%s</xliff:g>)"</string>
<string name="notification_new_multi_account_fmt">"na <xliff:g id="NUMBER_ACCOUNTS">%d</xliff:g> kontach"</string>
<string name="special_mailbox_name_inbox">"Odebrane"</string>
<string name="accounts_welcome">"Witamy w konfiguracji poczty e-mail!"\n\n"W tej usłudze można korzystać z dowolnego konta e-mail."\n\n"Konfiguracja najpopularniejszych kont e-mail składa się z tylko 2 etapów."</string>
<string name="debug_version_fmt">"Wersja: <xliff:g id="VERSION">%s</xliff:g>"</string>
<string name="debug_enable_debug_logging_label">"Czy włączyć dodatkowe rejestrowanie na potrzeby debugowania?"</string>
<string name="debug_enable_sensitive_logging_label">"Czy chcesz włączyć rejestrowanie poufnych informacji na potrzeby debugowania? (Może to spowodować uwzględnianie haseł w dziennikach)."</string>
<string name="message_list_load_more_messages_action">"Załaduj więcej wiadomości"</string>
<string name="message_compose_to_hint">"Do"</string>
<string name="message_compose_cc_hint">"DW"</string>
<string name="message_compose_bcc_hint">"UDW"</string>
<string name="message_compose_subject_hint">"Temat"</string>
<string name="message_compose_fwd_header_fmt">\n\n"-------- Wiadomość oryginalna --------"\n"Temat: <xliff:g id="SUBJECT">%s</xliff:g>"\n"Od: <xliff:g id="SENDER">%s</xliff:g>"\n"Do: <xliff:g id="TO">%s</xliff:g>"\n"DW: <xliff:g id="CC_0">%s</xliff:g>"\n\n</string>
<string name="message_compose_reply_header_fmt">\n\n"Użytkownik <xliff:g id="SENDER">%s</xliff:g> napisał:"\n\n</string>
<string name="message_compose_quoted_text_label">"Cytowany tekst"</string>
<string name="message_compose_error_no_recipients">"Musisz dodać co najmniej jednego adresata."</string>
<string name="message_compose_attachments_skipped_toast">"Nie można przekazać dalej niektórych załączników, ponieważ nie zostały one pobrane."</string>
<string name="message_view_to_label">"Do:"</string>
<string name="message_view_cc_label">"DW:"</string>
<string name="message_view_attachment_view_action">"Otwórz"</string>
<string name="message_view_attachment_download_action">"Zapisz"</string>
<string name="message_view_prev_action">"Poprzednia wiadomość"</string>
<string name="message_view_next_action">"Następna wiadomość"</string>
<string name="message_view_status_attachment_saved">"Załącznik został zapisany na karcie SD jako <xliff:g id="FILENAME">%s</xliff:g>."</string>
<string name="message_view_status_attachment_not_saved">"Nie można zapisać załącznika na karcie SD."</string>
<string name="message_view_show_pictures_instructions">"Wybierz opcję Pokaż obrazy, aby wyświetlić osadzone obrazy."</string>
<string name="message_view_show_pictures_action">"Pokaż obrazy"</string>
<string name="message_view_fetching_attachment_toast">"Pobieranie załącznika."</string>
<string name="message_deleted_toast">"Wiadomość została usunięta."</string>
<string name="message_discarded_toast">"Wiadomość została odrzucona."</string>
<string name="message_saved_toast">"Wiadomość została zapisana jako wersja robocza."</string>
<string name="account_setup_basics_title">"Skonfiguruj konto e-mail"</string>
<string name="account_setup_basics_instructions">"Podaj adres e-mail swojego konta:"</string>
<string name="account_setup_basics_email_hint">"Adres e-mail"</string>
<string name="account_setup_basics_password_hint">"Hasło"</string>
<string name="account_setup_basics_default_label">"Domyślnie wysyłaj wiadomości e-mail z tego konta"</string>
<string name="account_setup_basics_manual_setup_action">"Konfiguracja ręczna"</string>
<string name="account_setup_username_password_toast">"Podaj prawidłowy adres e-mail i hasło."</string>
<string name="account_setup_check_settings_retr_info_msg">"Pobieranie informacji o koncie…"</string>
<string name="account_setup_check_settings_check_incoming_msg">"Sprawdzanie ustawień serwera poczty przychodzącej…"</string>
<string name="account_setup_check_settings_check_outgoing_msg">"Sprawdzanie ustawień serwera poczty wychodzącej…"</string>
<string name="account_setup_check_settings_canceling_msg">"Anulowanie…"</string>
<string name="account_setup_names_title">"Konfiguracja konta e-mail"</string>
<string name="account_setup_names_instructions">"Konto zostało skonfigurowane, a wiadomości e-mail są w drodze!"</string>
<string name="account_setup_names_account_name_label">"Nazwa konta (opcjonalnie)"</string>
<string name="account_setup_names_user_name_label">"Twoje nazwisko (wyświetlane w wiadomościach wychodzących)"</string>
<string name="account_setup_account_type_title">"Dodaj nowe konto e-mail"</string>
<string name="account_setup_account_type_instructions">"Jakiego typu jest to konto?"</string>
<string name="account_setup_account_type_pop_action">"Konto POP3"</string>
<string name="account_setup_account_type_imap_action">"Konto IMAP"</string>
<string name="account_setup_incoming_title">"Ustawienia serwera poczty przychodzącej"</string>
<string name="account_setup_incoming_username_label">"Nazwa użytkownika"</string>
<string name="account_setup_incoming_password_label">"Hasło"</string>
<string name="account_setup_incoming_pop_server_label">"Serwer POP3"</string>
<string name="account_setup_incoming_imap_server_label">"Serwer IMAP"</string>
<string name="account_setup_incoming_port_label">"Port"</string>
<string name="account_setup_incoming_security_label">"Typ zabezpieczeń"</string>
<string name="account_setup_incoming_security_none_label">"Brak"</string>
<string name="account_setup_incoming_security_ssl_optional_label">"SSL (jeśli dostępne)"</string>
<string name="account_setup_incoming_security_ssl_label">"SSL (zawsze)"</string>
<string name="account_setup_incoming_security_tls_optional_label">"TLS (jeśli dostępne)"</string>
<string name="account_setup_incoming_security_tls_label">"TLS (zawsze)"</string>
<string name="account_setup_incoming_delete_policy_label">"Usuń wiadomości e-mail z serwera"</string>
<string name="account_setup_incoming_delete_policy_never_label">"Nigdy"</string>
<string name="account_setup_incoming_delete_policy_7days_label">"Po 7 dniach"</string>
<string name="account_setup_incoming_delete_policy_delete_label">"Po usunięciu z folderu Odebrane"</string>
<string name="account_setup_incoming_imap_path_prefix_label">"Prefiks ścieżki IMAP"</string>
<string name="account_setup_incoming_imap_path_prefix_hint">"Opcjonalnie"</string>
<string name="account_setup_outgoing_title">"Ustawienia serwera poczty wychodzącej"</string>
<string name="account_setup_outgoing_smtp_server_label">"Serwer SMTP"</string>
<string name="account_setup_outgoing_port_label">"Port"</string>
<string name="account_setup_outgoing_security_label">"Typ zabezpieczeń"</string>
<string name="account_setup_outgoing_require_login_label">"Wymagaj zalogowania się."</string>
<string name="account_setup_outgoing_username_label">"Nazwa użytkownika"</string>
<string name="account_setup_outgoing_password_label">"Hasło"</string>
<string name="account_setup_options_title">"Opcje konta"</string>
<string name="account_setup_options_mail_check_frequency_label">"Częstotliwość sprawdzania poczty e-mail"</string>
<string name="account_setup_options_mail_check_frequency_never">"Nigdy"</string>
<string name="account_setup_options_mail_check_frequency_5min">"Co 5 minut"</string>
<string name="account_setup_options_mail_check_frequency_10min">"Co 10 minut"</string>
<string name="account_setup_options_mail_check_frequency_15min">"Co 15 minut"</string>
<string name="account_setup_options_mail_check_frequency_30min">"Co 30 minut"</string>
<string name="account_setup_options_mail_check_frequency_1hour">"Co godzinę"</string>
<string name="account_setup_options_default_label">"Domyślnie wysyłaj wiadomości e-mail z tego konta"</string>
<string name="account_setup_options_notify_label">"Powiadom mnie o odebranej poczcie e-mail."</string>
<string name="account_setup_failed_dlg_title">"Nie można zakończyć konfiguracji"</string>
<string name="account_setup_failed_dlg_auth_message">"Nieprawidłowa nazwa użytkownika lub hasło."</string>
<string name="account_setup_failed_dlg_auth_message_fmt">"Nieprawidłowa nazwa użytkownika lub hasło."\n"(<xliff:g id="ERROR">%s</xliff:g>)"</string>
<string name="account_setup_failed_dlg_certificate_message">"Nie można nawiązać bezpiecznego połączenia z serwerem."</string>
<string name="account_setup_failed_dlg_certificate_message_fmt">"Nie można nawiązać bezpiecznego połączenia z serwerem."\n"(<xliff:g id="ERROR">%s</xliff:g>)"</string>
<string name="account_setup_failed_dlg_server_message">"Nie można nawiązać połączenia z serwerem."</string>
<string name="account_setup_failed_dlg_server_message_fmt">"Nie można nawiązać połączenia z serwerem."\n"(<xliff:g id="ERROR">%s</xliff:g>)"</string>
<string name="account_setup_failed_tls_required">"Wymagane połączenie TLS nie jest obsługiwane przez serwer."</string>
<string name="account_setup_failed_auth_required">"Serwer nie obsługuje metod uwierzytelniania."</string>
<string name="account_setup_failed_security">"Nie można nawiązać połączenia z serwerem z powodu błędu zabezpieczeń."</string>
<string name="account_setup_failed_ioerror">"Nie można nawiązać połączenia z serwerem."</string>
<string name="account_setup_failed_dlg_edit_details_action">"Edytuj szczegóły"</string>
<string name="account_settings_title_fmt">"Ustawienia ogólne"</string>
<string name="account_settings_default_label">"Domyślne konto"</string>
<string name="account_settings_default_summary">"Domyślnie wysyłaj wiadomości e-mail z tego konta"</string>
<string name="account_settings_notify_label">"Powiadomienia e-mail"</string>
<string name="account_settings_notify_summary">"Wyświetl powiadomienie na pasku stanu po otrzymaniu wiadomości e-mail"</string>
<string name="account_settings_mail_check_frequency_label">"Częstotliwość sprawdzania poczty e-mail"</string>
<string name="account_settings_incoming_label">"Ustawienia poczty przychodzącej"</string>
<string name="account_settings_outgoing_label">"Ustawienia poczty wychodzącej"</string>
<string name="account_settings_add_account_label">"Dodaj kolejne konto"</string>
<string name="account_settings_description_label">"Nazwa konta"</string>
<string name="account_settings_name_label">"Imię i nazwisko"</string>
<string name="account_settings_notifications">"Ustawienia powiadomień"</string>
<string name="account_settings_vibrate_enable">"Wibracje"</string>
<string name="account_settings_vibrate_summary">"Sygnalizuj wibracjami otrzymanie wiadomości e-mail"</string>
<string name="account_settings_ringtone">"Wybierz dzwonek"</string>
<string name="account_settings_servers">"Ustawienia serwera"</string>
<string name="account_delete_dlg_title">"Usuń konto"</string>
<string name="account_delete_dlg_instructions_fmt">"Konto <xliff:g id="ACCOUNT">%s</xliff:g> zostanie usunięte z usługi poczty e-mail."</string>
<string name="provider_note_yahoo">"Dostęp do skrzynki pocztowej nie jest obsługiwany w przypadku kilku typów kont pocztowych w usłudze Yahoo! Jeśli podczas nawiązywania połączenia występują problemy, odwiedź witrynę yahoo.com w celu uzyskania dodatkowych informacji."</string>
<string name="provider_note_yahoo_uk">"Przed skonfigurowaniem tego konta e-mail odwiedź witrynę usługi Yahoo! i włącz dostęp do poczty POP3."</string>
<string name="provider_note_live">"Tylko niektóre konta typu Plus zawierają funkcję dostępu POP, która umożliwia nawiązywanie połączenia za pomocą tego programu. Jeśli nie możesz zalogować się przy użyciu poprawnego adresu e-mail i hasła, to być może nie posiadasz płatnego konta typu Plus. Uruchom przeglądarkę internetową, aby uzyskać dostęp do tych kont pocztowych."</string>
<string name="provider_note_t_online">"Przed skonfigurowaniem tego konta e-mail odwiedź witrynę usługi T-Online i utwórz hasło na potrzeby dostępu do poczty POP3."</string>
</resources>

View File

@ -1,172 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright (C) 2009 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<resources xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="read_attachment_label">"чтение почтовых приложений"</string>
<string name="read_attachment_desc">"Позволяет данной программе читать ваши почтовые приложения."</string>
<string name="app_name">"Электронная почта"</string>
<string name="accounts_title">"Ваши аккаунты"</string>
<string name="compose_title">"Написать письмо"</string>
<string name="debug_title">"Отладка"</string>
<string name="next_action">"Далее"</string>
<string name="okay_action">"ОК"</string>
<string name="cancel_action">"Отмена"</string>
<string name="send_action">"Отправить"</string>
<string name="reply_action">"Ответить"</string>
<string name="reply_all_action">"Ответить всем"</string>
<string name="delete_action">"Удалить"</string>
<string name="forward_action">"Переслать"</string>
<string name="done_action">"Готово"</string>
<string name="discard_action">"Отменить"</string>
<string name="save_draft_action">"Сохранить как черновик"</string>
<string name="refresh_action">"Обновить"</string>
<string name="add_account_action">"Добавить аккаунт"</string>
<string name="compose_action">"Написать письмо"</string>
<string name="search_action">"Поиск"</string>
<string name="open_action">"Открыть"</string>
<string name="account_settings_action">"Настройки аккаунта"</string>
<string name="remove_account_action">"Удалить аккаунт"</string>
<string name="accounts_action">"Аккаунты"</string>
<string name="mark_as_read_action">"Отметить как прочитанное"</string>
<string name="mark_as_unread_action">"Отметить как непрочитанное"</string>
<string name="add_cc_bcc_action">"Добавить копии/скрытые копии"</string>
<string name="add_attachment_action">"Добавить приложение"</string>
<string name="dump_settings_action">"Настройки сброса"</string>
<string name="accounts_context_menu_title">"Параметры аккаунта"</string>
<string name="status_loading_more">"Загрузка писем..."</string>
<string name="status_network_error">"Ошибка подключения"</string>
<string name="status_loading_more_failed">"Повторить попытку загрузки остальных писем"</string>
<string name="notification_new_title">"Новое письмо"</string>
<string name="notification_new_one_account_fmt">"Непрочитанных: <xliff:g id="UNREAD_MESSAGE_COUNT">%d</xliff:g> (<xliff:g id="ACCOUNT">%s</xliff:g>)"</string>
<string name="notification_new_multi_account_fmt">"в нескольких (<xliff:g id="NUMBER_ACCOUNTS">%d</xliff:g>) аккаунтах"</string>
<string name="special_mailbox_name_inbox">"Входящие"</string>
<string name="accounts_welcome">"Добро пожаловать на страницу настройки электронной почты."\n\n"С нашей почтовой системой можно использовать любой аккаунт электронной почты."\n\n"Самые распространенные аккаунты электронной почты можно настроить за 2 шага."</string>
<string name="debug_version_fmt">"Версия: <xliff:g id="VERSION">%s</xliff:g>"</string>
<string name="debug_enable_debug_logging_label">"Включить ведение журнала расширенной отладки?"</string>
<string name="debug_enable_sensitive_logging_label">"Включить ведение журнала отладки для конфиденциальной информации? (В журналах могут быть показаны пароли.)"</string>
<string name="message_list_load_more_messages_action">"Загрузить еще письма"</string>
<string name="message_compose_to_hint">"Кому"</string>
<string name="message_compose_cc_hint">"Копия"</string>
<string name="message_compose_bcc_hint">"Скрытая"</string>
<string name="message_compose_subject_hint">"Тема"</string>
<string name="message_compose_fwd_header_fmt">\n\n"-------- Исходное сообщение --------"\n"Тема: <xliff:g id="SUBJECT">%s</xliff:g>"\n"От: <xliff:g id="SENDER">%s</xliff:g>"\n"Кому: <xliff:g id="TO">%s</xliff:g>"\n"Копия: <xliff:g id="CC_0">%s</xliff:g>"\n\n</string>
<string name="message_compose_reply_header_fmt">\n\n"<xliff:g id="SENDER">%s</xliff:g> написал(а):"\n\n</string>
<string name="message_compose_quoted_text_label">"Цитируемый текст"</string>
<string name="message_compose_error_no_recipients">"Необходимо добавить хотя бы одного получателя."</string>
<string name="message_compose_attachments_skipped_toast">"Некоторые приложения нельзя переслать, поскольку они не загружены."</string>
<string name="message_view_to_label">"Кому:"</string>
<string name="message_view_cc_label">"Копия:"</string>
<string name="message_view_attachment_view_action">"Открыть"</string>
<string name="message_view_attachment_download_action">"Сохранить"</string>
<string name="message_view_prev_action">"Пред. письмо"</string>
<string name="message_view_next_action">"След. письмо"</string>
<string name="message_view_status_attachment_saved">"Приложение сохранено на SD-карту как <xliff:g id="FILENAME">%s</xliff:g>."</string>
<string name="message_view_status_attachment_not_saved">"Не удается сохранить приложение на SD-карту."</string>
<string name="message_view_show_pictures_instructions">"Выберите \"Показать картинки\", чтобы показать встроенную графику."</string>
<string name="message_view_show_pictures_action">"Показать картинки"</string>
<string name="message_view_fetching_attachment_toast">"Загрузка приложения."</string>
<string name="message_deleted_toast">"Письмо удалено."</string>
<string name="message_discarded_toast">"Письмо не сохранено."</string>
<string name="message_saved_toast">"Письмо сохранено как черновик."</string>
<string name="account_setup_basics_title">"Настройка электронной почты"</string>
<string name="account_setup_basics_instructions">"Укажите почтовый адрес своего аккаунта:"</string>
<string name="account_setup_basics_email_hint">"Адрес электронной почты"</string>
<string name="account_setup_basics_password_hint">"Пароль"</string>
<string name="account_setup_basics_default_label">"По умолчанию отправлять почту с данного аккаунта."</string>
<string name="account_setup_basics_manual_setup_action">"Ручная настройка"</string>
<string name="account_setup_username_password_toast">"Укажите правильные адрес электронной почты и пароль."</string>
<string name="account_setup_check_settings_retr_info_msg">"Получение информации об аккаунте..."</string>
<string name="account_setup_check_settings_check_incoming_msg">"Проверка настроек сервера входящей почты..."</string>
<string name="account_setup_check_settings_check_outgoing_msg">"Проверка настроек сервера исходящей почты..."</string>
<string name="account_setup_check_settings_canceling_msg">"Отмена..."</string>
<string name="account_setup_names_title">"Настройка электронной почты"</string>
<string name="account_setup_names_instructions">"Ваш аккаунт настроен, электронная почта работает."</string>
<string name="account_setup_names_account_name_label">"Указать название этого аккаунта (необязательно)"</string>
<string name="account_setup_names_user_name_label">"Ваше имя (отображается в исходящих письмах)"</string>
<string name="account_setup_account_type_title">"Добавить новый аккаунт электронной почты"</string>
<string name="account_setup_account_type_instructions">"К какому типу принадлежит этот аккаунт?"</string>
<string name="account_setup_account_type_pop_action">"Аккаунт POP3"</string>
<string name="account_setup_account_type_imap_action">"Аккаунт IMAP"</string>
<string name="account_setup_incoming_title">"Настройки сервера входящей почты"</string>
<string name="account_setup_incoming_username_label">"Имя пользователя"</string>
<string name="account_setup_incoming_password_label">"Пароль"</string>
<string name="account_setup_incoming_pop_server_label">"Сервер POP3"</string>
<string name="account_setup_incoming_imap_server_label">"Сервер IMAP"</string>
<string name="account_setup_incoming_port_label">"Порт"</string>
<string name="account_setup_incoming_security_label">"Тип безопасности"</string>
<string name="account_setup_incoming_security_none_label">"Нет"</string>
<string name="account_setup_incoming_security_ssl_optional_label">"SSL (если доступен)"</string>
<string name="account_setup_incoming_security_ssl_label">"SSL (всегда)"</string>
<string name="account_setup_incoming_security_tls_optional_label">"TLS (если доступно)"</string>
<string name="account_setup_incoming_security_tls_label">"TLS (всегда)"</string>
<string name="account_setup_incoming_delete_policy_label">"Удалить письмо с сервера"</string>
<string name="account_setup_incoming_delete_policy_never_label">"Никогда"</string>
<string name="account_setup_incoming_delete_policy_7days_label">"Через 7 дней"</string>
<string name="account_setup_incoming_delete_policy_delete_label">"При удалении письма из папки \"Входящие\""</string>
<string name="account_setup_incoming_imap_path_prefix_label">"Префикс пути IMAP"</string>
<string name="account_setup_incoming_imap_path_prefix_hint">"Необязательно"</string>
<string name="account_setup_outgoing_title">"Настройки сервера исходящей почты"</string>
<string name="account_setup_outgoing_smtp_server_label">"Сервер SMTP"</string>
<string name="account_setup_outgoing_port_label">"Порт"</string>
<string name="account_setup_outgoing_security_label">"Тип безопасности"</string>
<string name="account_setup_outgoing_require_login_label">"Требовать входа в систему."</string>
<string name="account_setup_outgoing_username_label">"Имя пользователя"</string>
<string name="account_setup_outgoing_password_label">"Пароль"</string>
<string name="account_setup_options_title">"Параметры аккаунта"</string>
<string name="account_setup_options_mail_check_frequency_label">"Частота проверки электронной почты"</string>
<string name="account_setup_options_mail_check_frequency_never">"Никогда"</string>
<string name="account_setup_options_mail_check_frequency_5min">"Каждые 5 минут"</string>
<string name="account_setup_options_mail_check_frequency_10min">"Каждые 10 минут"</string>
<string name="account_setup_options_mail_check_frequency_15min">"Каждые 15 минут"</string>
<string name="account_setup_options_mail_check_frequency_30min">"Каждые 30 минут"</string>
<string name="account_setup_options_mail_check_frequency_1hour">"Каждый час"</string>
<string name="account_setup_options_default_label">"По умолчанию отправлять почту с данного аккаунта."</string>
<string name="account_setup_options_notify_label">"Оповещать меня при получении почты."</string>
<string name="account_setup_failed_dlg_title">"Не удается завершить установку"</string>
<string name="account_setup_failed_dlg_auth_message">"Неверное имя пользователя или неверный пароль."</string>
<string name="account_setup_failed_dlg_auth_message_fmt">"Неверное имя пользователя или неверный пароль."\n"(<xliff:g id="ERROR">%s</xliff:g>)"</string>
<string name="account_setup_failed_dlg_certificate_message">"Не удается установить защищенное соединение с сервером."</string>
<string name="account_setup_failed_dlg_certificate_message_fmt">"Не удается установить защищенное соединение с сервером."\n"(<xliff:g id="ERROR">%s</xliff:g>)"</string>
<string name="account_setup_failed_dlg_server_message">"Не удается подключиться к серверу."</string>
<string name="account_setup_failed_dlg_server_message_fmt">"Не удается подключиться к серверу."\n"(<xliff:g id="ERROR">%s</xliff:g>)"</string>
<string name="account_setup_failed_tls_required">"TLS требуется, но не поддерживается сервером."</string>
<string name="account_setup_failed_auth_required">"Сервер не поддерживает методы аутентификации."</string>
<string name="account_setup_failed_security">"Не удается установить соединение с сервером из-за ошибки безопасности."</string>
<string name="account_setup_failed_ioerror">"Не удается установить соединение с сервером."</string>
<string name="account_setup_failed_dlg_edit_details_action">"Изменить подробную информацию"</string>
<string name="account_settings_title_fmt">"Общие настройки"</string>
<string name="account_settings_default_label">"Аккаунт по умолчанию"</string>
<string name="account_settings_default_summary">"По умолчанию отправлять почту с данного аккаунта"</string>
<string name="account_settings_notify_label">"Оповещения о получении почты"</string>
<string name="account_settings_notify_summary">"При получении почты показывать оповещение в строке состояния"</string>
<string name="account_settings_mail_check_frequency_label">"Частота проверки электронной почты"</string>
<string name="account_settings_incoming_label">"Настройки входящей почты"</string>
<string name="account_settings_outgoing_label">"Настройки исходящей почты"</string>
<string name="account_settings_add_account_label">"Добавить другой аккаунт"</string>
<string name="account_settings_description_label">"Название аккаунта"</string>
<string name="account_settings_name_label">"Ваше имя"</string>
<string name="account_settings_notifications">"Настройки оповещения"</string>
<string name="account_settings_vibrate_enable">"Вибрация"</string>
<string name="account_settings_vibrate_summary">"Также включить вибрацию при получении почты"</string>
<string name="account_settings_ringtone">"Выбрать мелодию"</string>
<string name="account_settings_servers">"Настройки сервера"</string>
<string name="account_delete_dlg_title">"Удалить аккаунт"</string>
<string name="account_delete_dlg_instructions_fmt">"Аккаунт \"<xliff:g id="ACCOUNT">%s</xliff:g>\" будет удален из системы электронной почты."</string>
<string name="provider_note_yahoo">"Доступ к почтовому ящику для некоторых типов почтовых аккаунтов Yahoo! не поддерживается. Если при подключении возникли проблемы, см. дополнительные сведения на yahoo.com."</string>
<string name="provider_note_yahoo_uk">"Чтобы настроить этот аккаунт электронной почты, перейдите на веб-сайт Yahoo! и включите для этого аккаунта доступ по протоколу POP3."</string>
<string name="provider_note_live">"Только некоторые аккаунты \"Plus\" поддерживают доступ по протоколу POP, который требуется данной программе для подключения. Если вам не удается войти в систему с верным адресом электронной почты и паролем, возможно, у вас нет платного аккаунта \"Plus\". Откройте веб-браузер, чтобы получить доступ к этим почтовым аккаунтам."</string>
<string name="provider_note_t_online">"Чтобы настроить этот аккаунт электронной почты, перейдите на веб-сайт T-Online и создайте пароль для доступа к электронной почте по протоколу POP3."</string>
</resources>

View File

@ -1,172 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright (C) 2009 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<resources xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="read_attachment_label">"读取电子邮件附件"</string>
<string name="read_attachment_desc">"允许此应用程序读取您的电子邮件附件。"</string>
<string name="app_name">"电子邮件"</string>
<string name="accounts_title">"您的帐户"</string>
<string name="compose_title">"撰写"</string>
<string name="debug_title">"调试"</string>
<string name="next_action">"下一步"</string>
<string name="okay_action">"确定"</string>
<string name="cancel_action">"取消"</string>
<string name="send_action">"发送"</string>
<string name="reply_action">"回复"</string>
<string name="reply_all_action">"回复所有人"</string>
<string name="delete_action">"删除"</string>
<string name="forward_action">"转发"</string>
<string name="done_action">"完成"</string>
<string name="discard_action">"取消"</string>
<string name="save_draft_action">"另存为草稿"</string>
<string name="refresh_action">"刷新"</string>
<string name="add_account_action">"添加帐户"</string>
<string name="compose_action">"撰写"</string>
<string name="search_action">"搜索"</string>
<string name="open_action">"打开"</string>
<string name="account_settings_action">"帐户设置"</string>
<string name="remove_account_action">"删除帐户"</string>
<string name="accounts_action">"帐户"</string>
<string name="mark_as_read_action">"标记为已读"</string>
<string name="mark_as_unread_action">"标记为未读"</string>
<string name="add_cc_bcc_action">"添加抄送/密送对象"</string>
<string name="add_attachment_action">"添加附件"</string>
<string name="dump_settings_action">"转存设置"</string>
<string name="accounts_context_menu_title">"帐户选项"</string>
<string name="status_loading_more">"正在载入邮件..."</string>
<string name="status_network_error">"连接错误"</string>
<string name="status_loading_more_failed">"重新尝试载入更多邮件"</string>
<string name="notification_new_title">"新电子邮件"</string>
<string name="notification_new_one_account_fmt">"有 <xliff:g id="UNREAD_MESSAGE_COUNT">%d</xliff:g> 封未读邮件 (<xliff:g id="ACCOUNT">%s</xliff:g>)"</string>
<string name="notification_new_multi_account_fmt">"在 <xliff:g id="NUMBER_ACCOUNTS">%d</xliff:g> 个帐户中"</string>
<string name="special_mailbox_name_inbox">"收件箱"</string>
<string name="accounts_welcome">"欢迎设置电子邮件!"\n\n"在此可使用任意电子邮件帐户。"\n\n"大多数常见的电子邮件帐户通过 2 步即可完成设置!"</string>
<string name="debug_version_fmt">"版本:<xliff:g id="VERSION">%s</xliff:g>"</string>
<string name="debug_enable_debug_logging_label">"启用额外的调试日志记录?"</string>
<string name="debug_enable_sensitive_logging_label">"启用敏感信息调试日志记录(可能会在记录中显示密码)?"</string>
<string name="message_list_load_more_messages_action">"载入更多邮件"</string>
<string name="message_compose_to_hint">"收件人"</string>
<string name="message_compose_cc_hint">"抄送"</string>
<string name="message_compose_bcc_hint">"密送"</string>
<string name="message_compose_subject_hint">"主题"</string>
<string name="message_compose_fwd_header_fmt">\n\n"-------- 原始邮件 --------"\n"主题:<xliff:g id="SUBJECT">%s</xliff:g>"\n"发件人:<xliff:g id="SENDER">%s</xliff:g>"\n"收件人:<xliff:g id="TO">%s</xliff:g>"\n"抄送:<xliff:g id="CC_0">%s</xliff:g>"\n\n</string>
<string name="message_compose_reply_header_fmt">\n\n"<xliff:g id="SENDER">%s</xliff:g>写道:"\n\n</string>
<string name="message_compose_quoted_text_label">"引用文字"</string>
<string name="message_compose_error_no_recipients">"您必须至少添加一个收件人。"</string>
<string name="message_compose_attachments_skipped_toast">"某些附件尚未下载,因此无法转发。"</string>
<string name="message_view_to_label">"收件人:"</string>
<string name="message_view_cc_label">"抄送:"</string>
<string name="message_view_attachment_view_action">"打开"</string>
<string name="message_view_attachment_download_action">"保存"</string>
<string name="message_view_prev_action">"上一封邮件"</string>
<string name="message_view_next_action">"下一封邮件"</string>
<string name="message_view_status_attachment_saved">"附件已保存到 SD 卡中,文件名为 <xliff:g id="FILENAME">%s</xliff:g>。"</string>
<string name="message_view_status_attachment_not_saved">"无法将附件保存到 SD 卡。"</string>
<string name="message_view_show_pictures_instructions">"选择“显示图片”可显示嵌入的图片。"</string>
<string name="message_view_show_pictures_action">"显示图片"</string>
<string name="message_view_fetching_attachment_toast">"正在提取附件。"</string>
<string name="message_deleted_toast">"邮件已删除。"</string>
<string name="message_discarded_toast">"邮件已取消。"</string>
<string name="message_saved_toast">"邮件已另存为草稿。"</string>
<string name="account_setup_basics_title">"设置电子邮件"</string>
<string name="account_setup_basics_instructions">"键入您的帐户电子邮件地址:"</string>
<string name="account_setup_basics_email_hint">"电子邮件地址"</string>
<string name="account_setup_basics_password_hint">"密码"</string>
<string name="account_setup_basics_default_label">"默认情况下从该帐户发送电子邮件。"</string>
<string name="account_setup_basics_manual_setup_action">"手动设置"</string>
<string name="account_setup_username_password_toast">"请键入有效的电子邮件地址和密码。"</string>
<string name="account_setup_check_settings_retr_info_msg">"正在检索帐户信息..."</string>
<string name="account_setup_check_settings_check_incoming_msg">"正在检查接收服务器设置..."</string>
<string name="account_setup_check_settings_check_outgoing_msg">"正在检查外发服务器设置..."</string>
<string name="account_setup_check_settings_canceling_msg">"正在取消..."</string>
<string name="account_setup_names_title">"设置电子邮件"</string>
<string name="account_setup_names_instructions">"您的帐户设置完毕,可以收发电子邮件了!"</string>
<string name="account_setup_names_account_name_label">"为此帐户提供一个名称(可选)"</string>
<string name="account_setup_names_user_name_label">"您的姓名(显示在发出的邮件中)"</string>
<string name="account_setup_account_type_title">"添加新的电子邮件帐户"</string>
<string name="account_setup_account_type_instructions">"这是什么类型的帐户?"</string>
<string name="account_setup_account_type_pop_action">"POP3 帐户"</string>
<string name="account_setup_account_type_imap_action">"IMAP 帐户"</string>
<string name="account_setup_incoming_title">"收件服务器的设置"</string>
<string name="account_setup_incoming_username_label">"用户名"</string>
<string name="account_setup_incoming_password_label">"密码"</string>
<string name="account_setup_incoming_pop_server_label">"POP3 服务器"</string>
<string name="account_setup_incoming_imap_server_label">"IMAP 服务器"</string>
<string name="account_setup_incoming_port_label">"端口"</string>
<string name="account_setup_incoming_security_label">"安全类型"</string>
<string name="account_setup_incoming_security_none_label">"无"</string>
<string name="account_setup_incoming_security_ssl_optional_label">"SSL如果可以使用的话"</string>
<string name="account_setup_incoming_security_ssl_label">"SSL始终"</string>
<string name="account_setup_incoming_security_tls_optional_label">"TLS如果可以使用的话"</string>
<string name="account_setup_incoming_security_tls_label">"TLS始终"</string>
<string name="account_setup_incoming_delete_policy_label">"从服务器删除电子邮件"</string>
<string name="account_setup_incoming_delete_policy_never_label">"从不"</string>
<string name="account_setup_incoming_delete_policy_7days_label">"7 天后"</string>
<string name="account_setup_incoming_delete_policy_delete_label">"从收件箱中删除邮件时"</string>
<string name="account_setup_incoming_imap_path_prefix_label">"IMAP 路径前缀"</string>
<string name="account_setup_incoming_imap_path_prefix_hint">"可选"</string>
<string name="account_setup_outgoing_title">"外发服务器设置"</string>
<string name="account_setup_outgoing_smtp_server_label">"SMTP 服务器"</string>
<string name="account_setup_outgoing_port_label">"端口"</string>
<string name="account_setup_outgoing_security_label">"安全类型"</string>
<string name="account_setup_outgoing_require_login_label">"需要登录。"</string>
<string name="account_setup_outgoing_username_label">"用户名"</string>
<string name="account_setup_outgoing_password_label">"密码"</string>
<string name="account_setup_options_title">"帐户选项"</string>
<string name="account_setup_options_mail_check_frequency_label">"电子邮件查收频率"</string>
<string name="account_setup_options_mail_check_frequency_never">"从不"</string>
<string name="account_setup_options_mail_check_frequency_5min">"每隔 5 分钟"</string>
<string name="account_setup_options_mail_check_frequency_10min">"每隔 10 分钟"</string>
<string name="account_setup_options_mail_check_frequency_15min">"每隔 15 分钟"</string>
<string name="account_setup_options_mail_check_frequency_30min">"每隔 30 分钟"</string>
<string name="account_setup_options_mail_check_frequency_1hour">"每隔一小时"</string>
<string name="account_setup_options_default_label">"默认情况下从该帐户发送电子邮件。"</string>
<string name="account_setup_options_notify_label">"收到电子邮件时通知我。"</string>
<string name="account_setup_failed_dlg_title">"无法完成设置"</string>
<string name="account_setup_failed_dlg_auth_message">"用户名或密码不正确。"</string>
<string name="account_setup_failed_dlg_auth_message_fmt">"用户名或密码不正确。"\n"<xliff:g id="ERROR">%s</xliff:g>"</string>
<string name="account_setup_failed_dlg_certificate_message">"无法安全地连接到服务器。"</string>
<string name="account_setup_failed_dlg_certificate_message_fmt">"无法安全地连接到服务器。"\n"<xliff:g id="ERROR">%s</xliff:g>"</string>
<string name="account_setup_failed_dlg_server_message">"无法连接到服务器。"</string>
<string name="account_setup_failed_dlg_server_message_fmt">"无法连接到服务器。"\n"<xliff:g id="ERROR">%s</xliff:g>"</string>
<string name="account_setup_failed_tls_required">"必须使用 TLS但服务器不支持它。"</string>
<string name="account_setup_failed_auth_required">"身份验证方法不受服务器支持。"</string>
<string name="account_setup_failed_security">"出现安全错误,导致无法与服务器建立连接。"</string>
<string name="account_setup_failed_ioerror">"无法与服务器建立连接。"</string>
<string name="account_setup_failed_dlg_edit_details_action">"编辑详细信息"</string>
<string name="account_settings_title_fmt">"常规设置"</string>
<string name="account_settings_default_label">"默认帐户"</string>
<string name="account_settings_default_summary">"默认情况下从该帐户发送电子邮件"</string>
<string name="account_settings_notify_label">"电子邮件通知"</string>
<string name="account_settings_notify_summary">"收到电子邮件时在状态栏中显示通知"</string>
<string name="account_settings_mail_check_frequency_label">"电子邮件查收频率"</string>
<string name="account_settings_incoming_label">"接收设置"</string>
<string name="account_settings_outgoing_label">"外发设置"</string>
<string name="account_settings_add_account_label">"添加其他帐户"</string>
<string name="account_settings_description_label">"帐户名称"</string>
<string name="account_settings_name_label">"您的姓名"</string>
<string name="account_settings_notifications">"通知设置"</string>
<string name="account_settings_vibrate_enable">"振动"</string>
<string name="account_settings_vibrate_summary">"收到电子邮件时发出振动"</string>
<string name="account_settings_ringtone">"选择铃声"</string>
<string name="account_settings_servers">"服务器设置"</string>
<string name="account_delete_dlg_title">"删除帐户"</string>
<string name="account_delete_dlg_instructions_fmt">"帐户“<xliff:g id="ACCOUNT">%s</xliff:g>”将从电子邮件中删除。"</string>
<string name="provider_note_yahoo">"某些类型的 Yahoo! 邮件帐户不支持邮箱访问。如果您在连接时遇到问题,请访问 yahoo.com 了解更多信息。"</string>
<string name="provider_note_yahoo_uk">"在设置此电子邮件帐户之前,请访问 Yahoo! 网站,并为此帐户启用 POP3 电子邮件服务。"</string>
<string name="provider_note_live">"只有部分“增强版”帐户能使用 POP可让此程序进行连接。如果您使用正确的电子邮件地址和密码也无法登录则可能是因为您没有付费的“增强版”帐户。请启动网络浏览器以获取此类邮件帐户。"</string>
<string name="provider_note_t_online">"在设置此电子邮件帐户之前,请访问 T-Online 网站,并创建密码以便通过 POP3 使用邮件服务。"</string>
</resources>

View File

@ -1,172 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright (C) 2009 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<resources xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="read_attachment_label">"讀取電子郵件附件"</string>
<string name="read_attachment_desc">"允許此應用程式讀取您的電子郵件附件。"</string>
<string name="app_name">"電子郵件"</string>
<string name="accounts_title">"您的帳戶"</string>
<string name="compose_title">"撰寫郵件"</string>
<string name="debug_title">"偵錯"</string>
<string name="next_action">"下一步"</string>
<string name="okay_action">"確定"</string>
<string name="cancel_action">"取消"</string>
<string name="send_action">"傳送"</string>
<string name="reply_action">"回覆"</string>
<string name="reply_all_action">"全部回覆"</string>
<string name="delete_action">"刪除"</string>
<string name="forward_action">"轉寄"</string>
<string name="done_action">"完成"</string>
<string name="discard_action">"捨棄"</string>
<string name="save_draft_action">"儲存為草稿"</string>
<string name="refresh_action">"重新整理"</string>
<string name="add_account_action">"新增帳戶"</string>
<string name="compose_action">"撰寫郵件"</string>
<string name="search_action">"搜尋"</string>
<string name="open_action">"開啟"</string>
<string name="account_settings_action">"帳戶設定"</string>
<string name="remove_account_action">"移除帳戶"</string>
<string name="accounts_action">"帳戶"</string>
<string name="mark_as_read_action">"標示為已讀取"</string>
<string name="mark_as_unread_action">"標示為未讀取"</string>
<string name="add_cc_bcc_action">"新增副本/密件副本"</string>
<string name="add_attachment_action">"新增附件"</string>
<string name="dump_settings_action">"傾印設定"</string>
<string name="accounts_context_menu_title">"帳戶選項"</string>
<string name="status_loading_more">"正在載入郵件..."</string>
<string name="status_network_error">"連線錯誤"</string>
<string name="status_loading_more_failed">"重新載入更多郵件"</string>
<string name="notification_new_title">"新電子郵件"</string>
<string name="notification_new_one_account_fmt">"<xliff:g id="UNREAD_MESSAGE_COUNT">%d</xliff:g> 封未讀取的郵件 (<xliff:g id="ACCOUNT">%s</xliff:g>)"</string>
<string name="notification_new_multi_account_fmt">"在 <xliff:g id="NUMBER_ACCOUNTS">%d</xliff:g> 個帳戶中"</string>
<string name="special_mailbox_name_inbox">"收件匣"</string>
<string name="accounts_welcome">"歡迎使用 [電子郵件] 設定!"\n\n"[電子郵件] 設定可讓您使用各種電子郵件帳戶!"\n\n"大部分常見的電子郵件只需要兩個步驟就能設定完成!"</string>
<string name="debug_version_fmt">"版本:<xliff:g id="VERSION">%s</xliff:g>"</string>
<string name="debug_enable_debug_logging_label">"要啟用附加的偵錯記錄嗎?"</string>
<string name="debug_enable_sensitive_logging_label">"要啟用敏感資訊偵錯記錄嗎 (該記錄中可能會顯示密碼)"</string>
<string name="message_list_load_more_messages_action">"載入更多郵件"</string>
<string name="message_compose_to_hint">"收件者"</string>
<string name="message_compose_cc_hint">"副本"</string>
<string name="message_compose_bcc_hint">"密件副本"</string>
<string name="message_compose_subject_hint">"主旨"</string>
<string name="message_compose_fwd_header_fmt">\n\n"--------原始郵件 --------"\n"主旨:<xliff:g id="SUBJECT">%s</xliff:g>"\n"寄件者:<xliff:g id="SENDER">%s</xliff:g>"\n"收件者:<xliff:g id="TO">%s</xliff:g>"\n"副本:<xliff:g id="CC_0">%s</xliff:g>"\n\n</string>
<string name="message_compose_reply_header_fmt">\n\n"<xliff:g id="SENDER">%s</xliff:g>提到:"\n\n</string>
<string name="message_compose_quoted_text_label">"引用的文字"</string>
<string name="message_compose_error_no_recipients">"您必須新增至少一位收件者。"</string>
<string name="message_compose_attachments_skipped_toast">"尚未下載部分附件,因此無法予以轉寄。"</string>
<string name="message_view_to_label">"收件者:"</string>
<string name="message_view_cc_label">"副本:"</string>
<string name="message_view_attachment_view_action">"開啟"</string>
<string name="message_view_attachment_download_action">"儲存"</string>
<string name="message_view_prev_action">"上一封郵件"</string>
<string name="message_view_next_action">"下一封郵件"</string>
<string name="message_view_status_attachment_saved">"已將附件儲存至 SD 記憶卡,檔名為 <xliff:g id="FILENAME">%s</xliff:g>。"</string>
<string name="message_view_status_attachment_not_saved">"無法將附件儲存至 SD 記憶卡。"</string>
<string name="message_view_show_pictures_instructions">"選取 [顯示圖片] 即可顯示內嵌的圖片。"</string>
<string name="message_view_show_pictures_action">"顯示圖片"</string>
<string name="message_view_fetching_attachment_toast">"正在取得附件。"</string>
<string name="message_deleted_toast">"已刪除郵件。"</string>
<string name="message_discarded_toast">"已捨棄郵件。"</string>
<string name="message_saved_toast">"已儲存郵件草稿。"</string>
<string name="account_setup_basics_title">"設定電子郵件"</string>
<string name="account_setup_basics_instructions">"請輸入您帳戶的電子郵件地址:"</string>
<string name="account_setup_basics_email_hint">"電子郵件地址"</string>
<string name="account_setup_basics_password_hint">"密碼"</string>
<string name="account_setup_basics_default_label">"預設使用這個帳戶傳送電子郵件。"</string>
<string name="account_setup_basics_manual_setup_action">"手動設定"</string>
<string name="account_setup_username_password_toast">"請輸入有效的電子郵件地址和密碼。"</string>
<string name="account_setup_check_settings_retr_info_msg">"正在擷取帳戶資訊..."</string>
<string name="account_setup_check_settings_check_incoming_msg">"正在檢查內收伺服器設定..."</string>
<string name="account_setup_check_settings_check_outgoing_msg">"正在檢查外寄伺服器設定..."</string>
<string name="account_setup_check_settings_canceling_msg">"取消中..."</string>
<string name="account_setup_names_title">"設定電子郵件"</string>
<string name="account_setup_names_instructions">"帳戶已設定完成,您可以收發電子郵件了!"</string>
<string name="account_setup_names_account_name_label">"為此帳戶命名 (選用)"</string>
<string name="account_setup_names_user_name_label">"您的名稱 (顯示於外寄郵件)"</string>
<string name="account_setup_account_type_title">"新增電子郵件帳戶"</string>
<string name="account_setup_account_type_instructions">"帳戶類型為何?"</string>
<string name="account_setup_account_type_pop_action">"POP3 帳戶"</string>
<string name="account_setup_account_type_imap_action">"IMAP 帳戶"</string>
<string name="account_setup_incoming_title">"內收伺服器設定"</string>
<string name="account_setup_incoming_username_label">"使用者名稱"</string>
<string name="account_setup_incoming_password_label">"密碼"</string>
<string name="account_setup_incoming_pop_server_label">"POP3 伺服器"</string>
<string name="account_setup_incoming_imap_server_label">"IMAP 伺服器"</string>
<string name="account_setup_incoming_port_label">"通訊埠"</string>
<string name="account_setup_incoming_security_label">"安全性類型"</string>
<string name="account_setup_incoming_security_none_label">"無"</string>
<string name="account_setup_incoming_security_ssl_optional_label">"SSL (如果可用)"</string>
<string name="account_setup_incoming_security_ssl_label">"SSL (永遠啟用)"</string>
<string name="account_setup_incoming_security_tls_optional_label">"TLS (如果可用)"</string>
<string name="account_setup_incoming_security_tls_label">"TLS (永遠)"</string>
<string name="account_setup_incoming_delete_policy_label">"從伺服器中刪除電子郵件"</string>
<string name="account_setup_incoming_delete_policy_never_label">"永不刪除"</string>
<string name="account_setup_incoming_delete_policy_7days_label">"7 天後刪除"</string>
<string name="account_setup_incoming_delete_policy_delete_label">"當我從收件匣刪除時"</string>
<string name="account_setup_incoming_imap_path_prefix_label">"IMAP 路徑字首"</string>
<string name="account_setup_incoming_imap_path_prefix_hint">"選用"</string>
<string name="account_setup_outgoing_title">"外寄伺服器設定"</string>
<string name="account_setup_outgoing_smtp_server_label">"SMTP 伺服器"</string>
<string name="account_setup_outgoing_port_label">"通訊埠"</string>
<string name="account_setup_outgoing_security_label">"安全性類型"</string>
<string name="account_setup_outgoing_require_login_label">"必須登入。"</string>
<string name="account_setup_outgoing_username_label">"使用者名稱"</string>
<string name="account_setup_outgoing_password_label">"密碼"</string>
<string name="account_setup_options_title">"帳戶選項"</string>
<string name="account_setup_options_mail_check_frequency_label">"檢查電子郵件的頻率"</string>
<string name="account_setup_options_mail_check_frequency_never">"不要檢查"</string>
<string name="account_setup_options_mail_check_frequency_5min">"每 5 分鐘檢查一次"</string>
<string name="account_setup_options_mail_check_frequency_10min">"每 10 分鐘檢查一次"</string>
<string name="account_setup_options_mail_check_frequency_15min">"每 15 分鐘檢查一次"</string>
<string name="account_setup_options_mail_check_frequency_30min">"每 30 分鐘檢查一次"</string>
<string name="account_setup_options_mail_check_frequency_1hour">"每小時檢查一次"</string>
<string name="account_setup_options_default_label">"預設使用這個帳戶傳送電子郵件。"</string>
<string name="account_setup_options_notify_label">"收到電子郵件時通知我。"</string>
<string name="account_setup_failed_dlg_title">"無法完成設定"</string>
<string name="account_setup_failed_dlg_auth_message">"使用者名稱或密碼不正確。"</string>
<string name="account_setup_failed_dlg_auth_message_fmt">"使用者名稱或密碼不正確。"\n"(<xliff:g id="ERROR">%s</xliff:g>)"</string>
<string name="account_setup_failed_dlg_certificate_message">"無法安全地連線至伺服器。"</string>
<string name="account_setup_failed_dlg_certificate_message_fmt">"無法安全地連線至伺服器。"\n"(<xliff:g id="ERROR">%s</xliff:g>)"</string>
<string name="account_setup_failed_dlg_server_message">"無法連線至伺服器。"</string>
<string name="account_setup_failed_dlg_server_message_fmt">"無法連線至伺服器。"\n"(<xliff:g id="ERROR">%s</xliff:g>)"</string>
<string name="account_setup_failed_tls_required">"必須使用 TLS但此伺服器不支援。"</string>
<string name="account_setup_failed_auth_required">"伺服器不支援這些驗證方法。"</string>
<string name="account_setup_failed_security">"發生安全性錯誤,無法連線至伺服器。"</string>
<string name="account_setup_failed_ioerror">"無法連線至伺服器。"</string>
<string name="account_setup_failed_dlg_edit_details_action">"編輯詳細資訊"</string>
<string name="account_settings_title_fmt">"一般設定"</string>
<string name="account_settings_default_label">"預設帳戶"</string>
<string name="account_settings_default_summary">"預設使用這個帳戶傳送電子郵件"</string>
<string name="account_settings_notify_label">"電子郵件通知"</string>
<string name="account_settings_notify_summary">"收到電子郵件時,在狀態列中顯示通知"</string>
<string name="account_settings_mail_check_frequency_label">"檢查電子郵件的頻率"</string>
<string name="account_settings_incoming_label">"內收設定"</string>
<string name="account_settings_outgoing_label">"外寄設定"</string>
<string name="account_settings_add_account_label">"新增其他帳戶"</string>
<string name="account_settings_description_label">"帳戶名稱"</string>
<string name="account_settings_name_label">"您的名稱"</string>
<string name="account_settings_notifications">"通知設定"</string>
<string name="account_settings_vibrate_enable">"振動"</string>
<string name="account_settings_vibrate_summary">"收到電子郵件時也振動"</string>
<string name="account_settings_ringtone">"選取鈴聲"</string>
<string name="account_settings_servers">"伺服器設定"</string>
<string name="account_delete_dlg_title">"移除帳戶"</string>
<string name="account_delete_dlg_instructions_fmt">"系統將從 [電子郵件] 中移除帳戶「<xliff:g id="ACCOUNT">%s</xliff:g>」。"</string>
<string name="provider_note_yahoo">"不支援某些類型的 Yahoo! 郵件帳戶信箱。如果您無法順利連線,請造訪 yahoo.com 以取得詳細資訊。"</string>
<string name="provider_note_yahoo_uk">"在設定此電子郵件帳戶前,請先造訪 Yahoo! 網站,並啟用這個帳戶的 POP3 電子郵件收發功能。"</string>
<string name="provider_note_live">"只有部分包含 POP 存取功能的「Plus」帳戶能與這個程式連線。如果您輸入的電子郵件地址和密碼無誤卻仍無法登入表示您可能尚未購買「Plus」帳戶。請啟動網頁瀏覽器以存取這些電子郵件帳戶。"</string>
<string name="provider_note_t_online">"在設定此電子郵件帳戶前,請先造訪 T-Online 網站,並設定 POP3 電子郵件收發功能的密碼。"</string>
</resources>

View File

@ -1,42 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2008 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<resources>
<!-- Do not change any of the values in this array without checking/changing -->
<!-- related values in: AccountSetupBasics.java & AccountSetupOptions.java -->
<!-- In particular, 15 minutes is hardcoded as the default for new accounts. -->
<string-array name="account_settings_check_frequency_entries">
<item>@string/account_setup_options_mail_check_frequency_never</item>
<item>@string/account_setup_options_mail_check_frequency_5min</item>
<item>@string/account_setup_options_mail_check_frequency_10min</item>
<item>@string/account_setup_options_mail_check_frequency_15min</item>
<item>@string/account_setup_options_mail_check_frequency_30min</item>
<item>@string/account_setup_options_mail_check_frequency_1hour</item>
</string-array>
<string-array name="account_settings_check_frequency_values" translatable="false">
<item>-1</item>
<item>5</item>
<item>10</item>
<item>15</item>
<item>30</item>
<item>60</item>
</string-array>
</resources>

View File

@ -1,19 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2008 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<resources>
<string name="build_number" translatable="false">20080722-0001</string>
</resources>

View File

@ -1,19 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2008 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<resources>
<color name="folder_message_list_child_background">#3B3B3B</color>
</resources>

View File

@ -1,19 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2008 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<resources>
<dimen name="button_minWidth">100sp</dimen>
</resources>

View File

@ -1,366 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2008 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Permissions label -->
<string name="read_attachment_label">read Email attachments</string>
<!-- Permissions description -->
<string name="read_attachment_desc">Allows this application to read your Email attachments.</string>
<!-- Name of application on Home screen -->
<string name="app_name">Email</string>
<!-- Title of Accounts screen -->
<string name="accounts_title">Your accounts</string>
<!-- Title of compose screen -->
<string name="compose_title">Compose</string>
<!-- Title of debug screen -->
<string name="debug_title">Debug</string>
<!-- Actions will be used as buttons and in menu items -->
<skip />
<!-- Used as part of a multi-step process -->
<string name="next_action">Next</string>
<!-- Button name used to confirm acceptance of dialog boxes, warnings, errors, etc. -->
<string name="okay_action">OK</string>
<!-- Button name used to cancel out of dialog boxes -->
<string name="cancel_action">Cancel</string>
<!-- Menu item/button name -->
<string name="send_action">Send</string>
<!-- Menu item/button name -->
<string name="reply_action">Reply</string>
<!-- Menu item/button name -->
<string name="reply_all_action">Reply all</string>
<!-- Menu item/button name -->
<string name="delete_action">Delete</string>
<!-- Menu item/button name -->
<string name="forward_action">Forward</string>
<!-- Button name used to complete a multi-step process -->
<string name="done_action">Done</string>
<!-- Menu item/button name -->
<string name="discard_action">Discard</string>
<!-- Menu item/button name -->
<string name="save_draft_action">Save as draft</string>
<!-- Menu item -->
<string name="refresh_action">Refresh</string>
<!-- Menu item -->
<string name="add_account_action">Add account</string>
<!-- Menu item -->
<string name="compose_action">Compose</string>
<!-- Menu item/button name -->
<string name="search_action">Search</string>
<!-- Menu item/button name -->
<string name="open_action">Open</string>
<!-- Menu item -->
<string name="account_settings_action">Account settings</string>
<!-- Menu item -->
<string name="remove_account_action">Remove account</string>
<!-- Menu item -->
<string name="accounts_action">Accounts</string>
<!-- Menu item -->
<string name="mark_as_read_action">Mark as read</string>
<!-- Menu item -->
<string name="mark_as_unread_action">Mark as unread</string>
<!-- Menu item -->
<string name="add_cc_bcc_action">Add Cc/Bcc</string>
<!-- Menu item -->
<string name="add_attachment_action">Add attachment</string>
<!-- Menu item (debug screen) -->
<string name="dump_settings_action">Dump settings</string>
<!-- Title of account context menu -->
<string name="accounts_context_menu_title">Account options</string>
<!-- Appears in message list view while messages are being loaded -->
<string name="status_loading_more">Loading messages\u2026</string>
<!-- Appears in message list view when there's a network error. -->
<!-- Also appears in a toast, in the message viewer, when there's a network error. -->
<string name="status_network_error">Connection error</string>
<!-- Appears in message list view when error when trying to "Load more messages". -->
<string name="status_loading_more_failed">Retry loading more messages</string>
<!-- Notification title in status bar -->
<string name="notification_new_title">New email</string>
<!-- Notification message in notifications window and one account has new mail; e.g, "279 unread (someone@google.com)" -->
<string name="notification_new_one_account_fmt"><xliff:g id="unread_message_count">%d</xliff:g> unread (<xliff:g id="account">%s</xliff:g>)</string>
<!-- Notification message in notifications window and 2+ accounts has new mail; e.g, "in 3 accounts" -->
<string name="notification_new_multi_account_fmt">in <xliff:g id="number_accounts">%d</xliff:g> accounts</string>
<!-- In the folder list view, the inbox will be displayed with this name -->
<string name="special_mailbox_name_inbox">Inbox</string>
<!-- Do Not Translate. This is the name of the "outbox" folder, on the server. -->
<string name="special_mailbox_name_outbox">Outbox</string>
<!-- Do Not Translate. This is the name of the "drafts" folder, on the server. -->
<string name="special_mailbox_name_drafts">Drafts</string>
<!-- Do Not Translate. This is the name of the "trash" folder, on the server. -->
<string name="special_mailbox_name_trash">Trash</string>
<!-- Do Not Translate. This is the name of the "sent" folder, on the server. -->
<string name="special_mailbox_name_sent">Sent</string>
<!-- Text on screen when you don't have any external email accounts set up -->
<string name="accounts_welcome">Welcome to Email setup!\n\nUse any email account with Email.\n\nMost popular email accounts can be set up in 2 steps!</string>
<!-- Version number, shown only on debug screen -->
<string name="debug_version_fmt">Version: <xliff:g id="version">%s</xliff:g></string>
<!-- Checkbox label, shown only on debug screen -->
<string name="debug_enable_debug_logging_label">Enable extra debug logging?</string>
<!-- Checkbox label, shown only on debug screen -->
<string name="debug_enable_sensitive_logging_label">Enable sensitive information debug logging? (May show passwords in logs.)</string>
<!-- Appears at the bottom of list of messages; user selects to load more messages from that folder. -->
<string name="message_list_load_more_messages_action">Load more messages</string>
<!-- Hint text in To field -->
<string name="message_compose_to_hint">To</string>
<!-- Hint text in Cc field -->
<string name="message_compose_cc_hint">Cc</string>
<!-- Hint text in Bcc field -->
<string name="message_compose_bcc_hint">Bcc</string>
<!-- Hint text in Subject field -->
<string name="message_compose_subject_hint">Subject</string>
<!-- Header for forwarded original messages -->
<string name="message_compose_fwd_header_fmt">\n\n-------- Original Message --------\nSubject: <xliff:g id="subject">%s</xliff:g>\nFrom: <xliff:g id="sender">%s</xliff:g>\nTo: <xliff:g id="to">%s</xliff:g>\nCC: <xliff:g id="cc">%s</xliff:g>\n\n</string>
<!-- Header for replied-to messages -->
<string name="message_compose_reply_header_fmt">\n\n<xliff:g id="sender">%s</xliff:g> wrote:\n\n</string>
<!-- Heading that appears before forwarded text -->
<string name="message_compose_quoted_text_label">Quoted text</string>
<!-- Toast that appears if you try to send with no recipients. -->
<string name="message_compose_error_no_recipients">You must add at least one recipient.</string>
<!-- Toast that appears in the context of forwarding a message with attachment(s) -->
<string name="message_compose_attachments_skipped_toast">Some attachments cannot be forwarded because they have not downloaded.</string>
<!-- Label for To field in read message view -->
<string name="message_view_to_label">To:</string>
<!-- Label for CC field in read message view -->
<string name="message_view_cc_label">Cc:</string>
<!-- Menu item -->
<string name="message_view_attachment_view_action">Open</string>
<!-- Button name -->
<string name="message_view_attachment_download_action">Save</string>
<!-- Button name on read email screen -->
<string name="message_view_prev_action">Prev message</string>
<!-- Button name on read email screen -->
<string name="message_view_next_action">Next message</string>
<!-- Toast after saving attachment -->
<string name="message_view_status_attachment_saved">Attachment saved to SD card as <xliff:g id="filename">%s</xliff:g>.</string>
<!-- Toast after attachment could not be saved-->
<string name="message_view_status_attachment_not_saved">Unable to save attachment to SD card.</string>
<!-- Displayed in message view -->
<string name="message_view_show_pictures_instructions">Select \"Show pictures\" to display embedded pictures.</string>
<!-- Button on email opened for reading -->
<string name="message_view_show_pictures_action">Show pictures</string>
<!-- Toast while fetching attachment -->
<string name="message_view_fetching_attachment_toast">Fetching attachment.</string>
<!-- Toast shown briefly while deleting a message -->
<string name="message_deleted_toast">Message deleted.</string>
<!-- Toast shown briefly while deleting an unsent (draft) message -->
<string name="message_discarded_toast">Message discarded.</string>
<!-- Toast shown briefly while saving a draft -->
<string name="message_saved_toast">Message saved as draft.</string>
<!-- Title of screen when setting up new email account -->
<string name="account_setup_basics_title">Set up email</string>
<!-- On "Set up email" screen, brief instructions -->
<string name="account_setup_basics_instructions">Type your account email address:</string>
<!-- On "Set up email" screen, hint for account email address text field -->
<string name="account_setup_basics_email_hint">Email address</string>
<!-- On "Set up email" screen, hint for account email password text field -->
<string name="account_setup_basics_password_hint">Password</string>
<!-- On "Set up email" screen, checkbox label for making this the new account be the default account -->
<string name="account_setup_basics_default_label">Send email from this account by default.</string>
<!-- Button name on "Set up email" screen -->
<string name="account_setup_basics_manual_setup_action">Manual setup</string>
<!-- Toast when we can't build a URI from the given email & password -->
<!-- Note, the error message in the toast is purposefully vague, because I *don't* know exactly what's wrong. -->
<string name="account_setup_username_password_toast">Please type a valid email address and password.</string>
<!-- Do Not Translate. Activity Title for check-settings screen -->
<string name="account_setup_check_settings_title"></string>
<!-- On check-settings screen, this is the initially-displayed message. -->
<string name="account_setup_check_settings_retr_info_msg">Retrieving account information\u2026</string>
<!-- Appears on screen while system is checking incoming server settings -->
<string name="account_setup_check_settings_check_incoming_msg">Checking incoming server settings\u2026</string>
<!-- Appears on screen while system is checking outgoing server settings -->
<string name="account_setup_check_settings_check_outgoing_msg">Checking outgoing server settings\u2026</string>
<!-- On check-settings screen, displayed briefly when user cancels the operation. -->
<string name="account_setup_check_settings_canceling_msg">Canceling\u2026</string>
<!-- Title of "Set up email" screen after success -->
<string name="account_setup_names_title">Set up email</string>
<!-- Text that appears on top of "Set up email" screen after successfully setting up an account -->
<string name="account_setup_names_instructions">Your account is set up, and email is on its way!</string>
<!-- On "Set up email" screen, label of text field -->
<string name="account_setup_names_account_name_label">Give this account a name (optional)</string>
<!-- On "Set up email" screen, label of text field -->
<string name="account_setup_names_user_name_label">Your name (displayed on outgoing messages)</string>
<!-- Activity Title for the first screen in manual setup (where you select IMAP or POP3) -->
<string name="account_setup_account_type_title">Add new email account</string>
<!-- "Add new email account" screen, text that appears on screen -->
<string name="account_setup_account_type_instructions">What type of account is this?</string>
<!-- "Add new email account" screen, button name in response to what type of account this is -->
<string name="account_setup_account_type_pop_action">POP3 account</string>
<!-- "Add new email account" screen, button name in response to what type of account this is -->
<string name="account_setup_account_type_imap_action">IMAP account</string>
<!-- "Incoming server settings" screen, label for text field -->
<string name="account_setup_incoming_title">Incoming server settings</string>
<!-- "Incoming server settings" screen, label for text field -->
<string name="account_setup_incoming_username_label">Username</string>
<!-- "Incoming server settings" screen, label for text field -->
<string name="account_setup_incoming_password_label">Password</string>
<!-- "Incoming server settings" screen, label for text field -->
<string name="account_setup_incoming_pop_server_label">POP3 server</string>
<!-- "Incoming server settings" screen, label for text field -->
<string name="account_setup_incoming_imap_server_label">IMAP server</string>
<!-- "Incoming server settings" screen, label for text field -->
<string name="account_setup_incoming_port_label">Port</string>
<!-- "Incoming server settings" screen, label for pop-up menu -->
<string name="account_setup_incoming_security_label">Security type</string>
<!-- "Incoming server settings" screen, options for "Security type" pop-up menu -->
<string name="account_setup_incoming_security_none_label">None</string>
<!-- "Incoming server settings" screen, options for "Security type" pop-up menu -->
<string name="account_setup_incoming_security_ssl_optional_label">SSL (if available)</string>
<!-- "Incoming server settings" screen, options for "Security type" pop-up menu -->
<string name="account_setup_incoming_security_ssl_label">SSL (always)</string>
<!-- "Incoming server settings" screen, options for "Security type" pop-up menu -->
<string name="account_setup_incoming_security_tls_optional_label">TLS (if available)</string>
<!-- "Incoming server settings" screen, options for "Security type" pop-up menu -->
<string name="account_setup_incoming_security_tls_label">TLS (always)</string>
<!-- "Incoming server settings" screen, label for pop-up menu -->
<string name="account_setup_incoming_delete_policy_label">Delete email from server</string>
<!-- "Incoming server settings" screen, options in pop-up menu for Delete email from server: -->
<!-- "Incoming server settings" screen, options in pop-up menu for Delete email from server: -->
<string name="account_setup_incoming_delete_policy_never_label">Never</string>
<!-- "Incoming server settings" screen, options in pop-up menu for Delete email from server: -->
<string name="account_setup_incoming_delete_policy_7days_label">After 7 days</string>
<!-- "Incoming server settings" screen, options in pop-up menu for Delete email from server: -->
<string name="account_setup_incoming_delete_policy_delete_label">When I delete from Inbox</string>
<!-- "Incoming server settings" screen, label for setting IMAP path prefix: -->
<string name="account_setup_incoming_imap_path_prefix_label">IMAP path prefix</string>
<!-- "Incoming server settings" screen, hint for setting IMAP path prefix: -->
<string name="account_setup_incoming_imap_path_prefix_hint">Optional</string>
<!-- Title of "Outgoing server settings" screen -->
<string name="account_setup_outgoing_title">Outgoing server settings</string>
<!-- On "Outgoing server settings" screen, label for text field -->
<string name="account_setup_outgoing_smtp_server_label">SMTP server</string>
<!-- On "Outgoing server settings" screen, label for text field -->
<string name="account_setup_outgoing_port_label">Port</string>
<!-- On "Outgoing server settings" screen, label for pop-up menu -->
<string name="account_setup_outgoing_security_label">Security type</string>
<!-- On "Outgoing server settings" screen, label for check box -->
<string name="account_setup_outgoing_require_login_label">Require sign-in.</string>
<!-- On "Outgoing server settings" screen, label for text field -->
<string name="account_setup_outgoing_username_label">Username</string>
<!-- On "Outgoing server settings" screen, label for text field -->
<string name="account_setup_outgoing_password_label">Password</string>
<!-- In Account setup options screen, Activity title -->
<string name="account_setup_options_title">Account options</string>
<!-- In Account setup options screen, label for email check frequency selector -->
<string name="account_setup_options_mail_check_frequency_label">Email checking frequency</string>
<!-- In Account setup options & Account Settings screens, label for email check frequency option -->
<string name="account_setup_options_mail_check_frequency_never">Never</string>
<!-- In Account setup options & Account Settings screens, email check frequency option -->
<string name="account_setup_options_mail_check_frequency_5min">Every 5 minutes</string>
<!-- In Account setup options & Account Settings screens, email check frequency option -->
<string name="account_setup_options_mail_check_frequency_10min">Every 10 minutes</string>
<!-- In Account setup options & Account Settings screens, email check frequency option -->
<string name="account_setup_options_mail_check_frequency_15min">Every 15 minutes</string>
<!-- In Account setup options & Account Settings screens, email check frequency option -->
<string name="account_setup_options_mail_check_frequency_30min">Every 30 minutes</string>
<!-- In Account setup options & Account Settings screens, email check frequency option -->
<string name="account_setup_options_mail_check_frequency_1hour">Every hour</string>
<!-- Check box label on "Set up email" screen to make this the default account -->
<!-- Note, this should usually match the default account summary preference string -->
<string name="account_setup_options_default_label">Send email from this account by default.</string>
<!-- In Account setup options & Account Settings screens, check box for new-mail notification -->
<string name="account_setup_options_notify_label">Notify me when email arrives.</string>
<!-- Dialog title when "setup" could not finish -->
<string name="account_setup_failed_dlg_title">Setup could not finish</string>
<!-- "Setup could not finish" dialog text; e.g., Username or password incorrect -->
<string name="account_setup_failed_dlg_auth_message">Username or password incorrect.</string>
<!-- "Setup could not finish" dialog text; e.g., Username or password incorrect\n(ERR01 Account does not exist) -->
<string name="account_setup_failed_dlg_auth_message_fmt">Username or password incorrect.\n(<xliff:g id="error">%s</xliff:g>)</string>
<!-- "Setup could not finish" dialog text; e.g., Cannot safely connect to server -->
<string name="account_setup_failed_dlg_certificate_message">Cannot safely connect to server.</string>
<!-- "Setup could not finish" dialog text; e.g., Cannot safely connect to server\n(TLS Not Supported) -->
<string name="account_setup_failed_dlg_certificate_message_fmt">Cannot safely connect to server.\n(<xliff:g id="error">%s</xliff:g>)</string>
<!-- "Setup could not finish" dialog text; e.g., Cannot connect to server -->
<string name="account_setup_failed_dlg_server_message">Cannot connect to server.</string>
<!-- "Setup could not finish" dialog text; e.g., Cannot connect to server\n(Connection timed out) -->
<string name="account_setup_failed_dlg_server_message_fmt">Cannot connect to server.\n(<xliff:g id="error">%s</xliff:g>)</string>
<!-- Additional diagnostic text when TLS was required but the server doesn't support it -->
<string name="account_setup_failed_tls_required">TLS required but not supported by server.</string>
<!-- Additional diagnostic text when server does not support any of our authentication methods -->
<string name="account_setup_failed_auth_required">Authentication methods are not supported by server.</string>
<!-- Additional diagnostic text when server connection failed due to security error -->
<string name="account_setup_failed_security">Unable to open connection to server due to security error.</string>
<!-- Additional diagnostic text when server connection failed due to io error (connection) -->
<string name="account_setup_failed_ioerror">Unable to open connection to server.</string>
<!-- "Setup could not finish" dialog action button -->
<string name="account_setup_failed_dlg_edit_details_action">Edit details</string>
<!-- On Settings screen, section heading -->
<string name="account_settings_title_fmt">General settings</string>
<!-- On Settings screen, setting option name -->
<string name="account_settings_default_label">Default account</string>
<!-- Check box "summary" label on "Account options" screen to make this the default account -->
<!-- Note, this should usually match the default account account setup checkbox string -->
<string name="account_settings_default_summary">Send email from this account by default</string>
<!-- On Settings screen, setting option name -->
<string name="account_settings_notify_label">Email notifications</string>
<!-- On Settings screen, setting summary text -->
<string name="account_settings_notify_summary">Notify in status bar when email arrives</string>
<!-- On Settings screen, setting option name and title of dialog box that opens -->
<string name="account_settings_mail_check_frequency_label">Email check frequency</string>
<!-- On Settings screen, setting option name -->
<string name="account_settings_incoming_label">Incoming settings</string>
<!-- On Settings screen, setting option name -->
<string name="account_settings_outgoing_label">Outgoing settings</string>
<!-- On Settings screen, setting option name -->
<string name="account_settings_add_account_label">Add another account</string>
<!-- On Settings screen, setting option name -->
<string name="account_settings_description_label">Account name</string>
<!-- On Settings screen, setting option name -->
<string name="account_settings_name_label">Your name</string>
<!-- On Settings screen, section heading -->
<string name="account_settings_notifications">Notification settings</string>
<!-- On Settings screen, setting check box label -->
<string name="account_settings_vibrate_enable">Vibrate</string>
<!-- On Settings screen, setting summary text -->
<string name="account_settings_vibrate_summary">Also vibrate when email arrives</string>
<!-- On Settings screen, setting option name -->
<string name="account_settings_ringtone">Select ringtone</string>
<!-- On Settings screen, section heading -->
<string name="account_settings_servers">Server settings</string>
<!-- Title of Remove account confirmation dialog box -->
<string name="account_delete_dlg_title">Remove account</string>
<!-- Message of Remove account confirmation dialog box -->
<string name="account_delete_dlg_instructions_fmt">The account \"<xliff:g id="account">%s</xliff:g>\" will be removed from Email.</string>
<!-- Message that appears when user adds a Yahoo mail account. This alert has no title. -->
<string name="provider_note_yahoo">Mailbox access is not supported for some types of
Yahoo! mail accounts. If you have trouble connecting, visit yahoo.com for more
information.</string>
<!-- Message that appears when user adds a Yahoo UK mail account. -->
<string name="provider_note_yahoo_uk">Before setting up this email account, please visit the
Yahoo! web site and enable POP3 email access for this account.</string>
<!-- Message that appears when adding a Windows Live Hotmail Plus account -->
<string name="provider_note_live">Only some \"Plus\" accounts include POP access
allowing this program to connect. If you are not able to sign in with
your correct email address and password, you may not have a paid
\"Plus\" account. Please launch the Web browser to gain access to
these mail accounts.</string>
<!-- Message that appears when adding a T-Online account -->
<string name="provider_note_t_online">Before setting up this email account, please visit the T-Online Web site and create a password for POP3 email access.</string>
</resources>

View File

@ -1,90 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2008 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceCategory
android:key="account_settings">
<EditTextPreference
android:key="account_description"
android:title="@string/account_settings_description_label"
android:summary=""
android:dialogTitle="@string/account_settings_description_label" />
<EditTextPreference
android:key="account_name"
android:title="@string/account_settings_name_label"
android:summary=""
android:dialogTitle="@string/account_settings_name_label" />
<ListPreference
android:key="account_check_frequency"
android:title="@string/account_settings_mail_check_frequency_label"
android:entries="@array/account_settings_check_frequency_entries"
android:entryValues="@array/account_settings_check_frequency_values"
android:dialogTitle="@string/account_settings_mail_check_frequency_label" />
<CheckBoxPreference
android:key="account_default"
android:title="@string/account_settings_default_label"
android:summary="@string/account_settings_default_summary" />
</PreferenceCategory>
<PreferenceCategory android:title="@string/account_settings_notifications">
<CheckBoxPreference
android:key="account_notify"
android:title="@string/account_settings_notify_label"
android:defaultValue="true"
android:summary="@string/account_settings_notify_summary" />
<RingtonePreference
android:layout="?android:attr/preferenceLayoutChild"
android:dependency="account_notify"
android:key="account_ringtone"
android:title="@string/account_settings_ringtone"
android:ringtoneType="notification"
android:defaultValue="content://settings/system/notification_sound" />
<CheckBoxPreference
android:layout="?android:attr/preferenceLayoutChild"
android:dependency="account_notify"
android:key="account_vibrate"
android:defaultValue="false"
android:title="@string/account_settings_vibrate_enable"
android:summary="@string/account_settings_vibrate_summary" />
</PreferenceCategory>
<PreferenceCategory android:title="@string/account_settings_servers">
<PreferenceScreen
android:key="incoming"
android:title="@string/account_settings_incoming_label" />
<PreferenceScreen
android:key="outgoing"
android:title="@string/account_settings_outgoing_label" />
<PreferenceScreen
android:key="add_account"
android:title="@string/account_settings_add_account_label" />
</PreferenceCategory>
</PreferenceScreen>

Some files were not shown because too many files have changed in this diff Show More