Skip to content
Commits on Source (54)
......@@ -13,5 +13,5 @@ plugins:
- assets:
- CHANGELOG.md
- app/build.gradle
message: "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
message: "chore(release): v${nextRelease.version}\n\n${nextRelease.notes}"
- "@semantic-release/gitlab"
......@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [1.2.1](https://framagit.org/dystopia-project/simple-email/compare/v1.2.0...v1.2.1) (2018-11-23)
### Bug Fixes
* check compatibility on notification settings ([36b3e25](https://framagit.org/dystopia-project/simple-email/commit/36b3e25))
* crash on public notification without color ([4bc5d9a](https://framagit.org/dystopia-project/simple-email/commit/4bc5d9a))
# [1.2.0](https://framagit.org/dystopia-project/simple-email/compare/v1.1.2...v1.2.0) (2018-11-20)
......
......@@ -9,7 +9,7 @@ are preferred in the form of [pull requests][pull-requests]).
## Translations
* You can translate the in-app texts of SimpleEmail please open a [pull requests][pull-requests] (looking for a web service).
* SimpleEmail can be translated via [Weblate](https://hosted.weblate.org/projects/simple-email/). You can log in there to help or open a [pull requests][pull-requests].
* If your language is not listed, please open a [issue][] or send a message through [email](distopico@riseup.net)
## Source code
......
![logo](/assets/icon_small.png)
# SimpleEmail
An [Free Software][free-software], minimalistic and privacy friendly email app for Android.
A [Free Software][free-software], minimalistic and privacy friendly email app for Android.
<a href="https://f-droid.org/packages/org.dystopia.email"><img src="https://f-droid.org/badge/get-it-on.png" alt="Get it on F-Droid" height="75"></a>
......@@ -15,24 +15,14 @@ Alternatively, you can download directly from GitLab [Releases][gitlab-releases]
* Privacy friendly
* Simple design
*This project has been forked from [FairEmail](https://github.com/M66B/open-source-email).*
## Why?
This email app might be for you if your current email app:
* takes long to receive or show messages
* can manage only one email address
* cannot show conversations
* cannot work offline
* looks outdated
* is not maintained
* stores your email on their servers
* is closed source, potentially violating your privacy
* has "pro" features for basic things and hasn't transparent way to purchase that features
The focus of SimpleEmail is be a privacy-friendly email app with a good UX/UI and with a community development model.
SimpleEmail is minimalistic by design, so you can concentrate on reading and writing messages, it starts a foreground
service with a low priority status bar notification to make sure you'll never miss new email.
service with a low priority status bar notification to make sure you'll never miss a new email.
*This project has been forked from [FairEmail](https://framagit.org/dystopia-project/simple-email/blob/master/docs/FAQ.md#what-is-the-difference-between-simpleemail-and-fairemail).*
## Features
......@@ -49,6 +39,7 @@ service with a low priority status bar notification to make sure you'll never mi
* Signatures
* Dark theme
* Account colors
* Search on server
* Encryption/decryption
* Export settings
......@@ -91,9 +82,6 @@ SHA256: A7:A9:0A:5F:14:ED:00:57:56:49:9A:53:4A:13:1A:F0:64:0A:C4:DF:62:2F:76:35:
SimpleEmail requires at least Android 6 Marshmallow.
SimpleEmail might occasionally crash on Motorola/Lenovo devices with Android 7 Nougat or earlier
because of a [bug in Android](https://issuetracker.google.com/issues/63377371).
## Frequently asked questions
See [here][faqs] for a list of often asked questions.
......@@ -103,6 +91,13 @@ See [here][faqs] for a list of often asked questions.
* For support on SimpleEmail, please open a [issue][]
* For support on authorizing accounts you should contact your provider.
## Contributing
Whether you have ideas, translations, features you think are missing, design or code changes, help is always welcome!.
You can submit [pull requests][pull-requests] to this repository, or submit translations using Weblate.
To get started, take a look at [CONTRIBUTING.md](https://framagit.org/dystopia-project/simple-email/blob/develop/CONTRIBUTING.md)
## Attribution
SimpleEmail uses:
......@@ -118,7 +113,7 @@ SimpleEmail uses:
## License
[GNU General Public License version 3](https://framagit.org/dystopia-project/simple-email/blob/master/LICENSE)
[![GNU General Public License version 3](https://www.gnu.org/graphics/gplv3-127x51.png)](https://framagit.org/dystopia-project/simple-email/blob/master/LICENSE)
Copyright 2018, Marcel Bokhorst (M66B)
Copyright 2018, Distopico (dystopia project) and contributors
......
......@@ -7,8 +7,8 @@ android {
applicationId "org.dystopia.email"
minSdkVersion 23
targetSdkVersion 28
versionCode 113
versionName "1.2.0"
versionCode 114
versionName "1.2.1"
archivesBaseName = "SimpleEmail-v$versionName"
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
......
......@@ -65,6 +65,8 @@ import java.text.SimpleDateFormat;
import java.util.Arrays;
import java.util.Date;
import java.util.List;
import java.util.Locale;
import org.json.JSONArray;
import org.json.JSONObject;
......@@ -529,8 +531,8 @@ public class FragmentSetup extends FragmentEx {
intent.putExtra(
Intent.EXTRA_TITLE,
"simpleemail_backup_"
+ new SimpleDateFormat("yyyyMMdd").format(new Date().getTime())
+ ".json");
+ new SimpleDateFormat("yyyyMMdd", Locale.getDefault()).format(new Date().getTime())
+ ".json");
return intent;
}
......@@ -542,10 +544,18 @@ public class FragmentSetup extends FragmentEx {
}
private static Intent getIntentNotifications(Context context) {
return new Intent(Settings.ACTION_APP_NOTIFICATION_SETTINGS)
.putExtra("app_package", context.getPackageName())
.putExtra("app_uid", context.getApplicationInfo().uid)
.putExtra(Settings.EXTRA_APP_PACKAGE, context.getPackageName());
Intent intent = new Intent();
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
intent = new Intent(Settings.ACTION_APP_NOTIFICATION_SETTINGS);
intent.putExtra(Settings.EXTRA_APP_PACKAGE, context.getPackageName());
} else {
intent.setAction("android.settings.APP_NOTIFICATION_SETTINGS");
}
intent.putExtra("app_package", context.getPackageName())
.putExtra("app_uid", context.getApplicationInfo().uid);
return intent;
}
private void handleExport(Intent data) {
......
......@@ -483,7 +483,7 @@ public class ServiceSynchronize extends LifecycleService {
getResources().getQuantityString(R.plurals.title_notification_unseen, size, size);
// Summary notification
Notification.Builder pbuilder = getNotificationPublic(accountName, accountColor, size);
Notification.Builder pbuilder = getNotificationPublic(accountName, groupColor, size);
Notification.Builder gbuilder = Helper.getNotificationBuilder(this, channelId);
gbuilder.setSmallIcon(R.drawable.ic_mail_icon).setContentTitle(summaryText)
......
<?xml version="1.0" encoding="utf-8"?>
<?xml version='1.0' encoding='UTF-8'?>
<resources>
<string name="app_copyright">Copyright &#x24B8; 2018 by M. Bokhorst\nCopyright &#x24B8; 2018 by Distopico (dystopia project) and contributors</string>
<string name="app_copyright">Copyright 2018 by M. Bokhorst\nCopyright 2018 by Distopico (dystopia project) and contributors</string>
<string name="channel_service">Service</string>
<string name="channel_notification">Notifications</string>
<string name="channel_error">Errors</string>
<plurals name="title_notification_synchronizing">
<item quantity="one">Synchronizing %1$d account</item>
<item quantity="other">Synchronizing %1$d accounts</item>
</plurals>
<item quantity="one">Synchronizing %1$d account</item>
<item quantity="other">Synchronizing %1$d accounts</item>
</plurals>
<plurals name="title_notification_operations">
<item quantity="one">%1$d operation pending</item>
<item quantity="other">%1$d operations pending</item>
......@@ -71,7 +70,7 @@
<string name="title_advanced_swipe">Swipe actions</string>
<string name="title_advanced_compact">Compact message view</string>
<string name="title_advanced_debug">Debug mode</string>
<string name="title_select">Select &#8230;</string>
<string name="title_select">Select </string>
<string name="title_identity_name">Your name</string>
<string name="title_identity_email">Your email address</string>
<string name="title_identity_reply_to">Reply to address</string>
......@@ -95,7 +94,7 @@
<string name="title_user">User name</string>
<string name="title_password">Password</string>
<string name="title_authorize">Select account</string>
<string name="title_authorizing">Authorizing account &#8230;</string>
<string name="title_authorizing">Authorizing account </string>
<string name="title_setup_advanced">Advanced</string>
<string name="title_store_sent">Store sent messages (normally not needed)</string>
<string name="title_synchronize_account">Synchronize (receive messages)</string>
......@@ -115,15 +114,15 @@
<string name="title_no_primary_archive">No primary account or no archive folder</string>
<string name="title_no_idle">This provider does not support push messages. This will delay reception of new messages and increase battery usage.</string>
<string name="title_no_uidplus">IMAP UIDPLUS not supported, see the FAQ</string>
<string name="title_account_delete">Delete this account permanently?</string>
<string name="title_identity_delete">Delete this identity permanently?</string>
<string name="title_account_delete">Delete this account permanently\?</string>
<string name="title_identity_delete">Delete this identity permanently\?</string>
<string name="title_pop">POP is not supported</string>
<string name="title_insecure">Insecure connections are not supported</string>
<string name="title_synchronize_now">Synchronize now</string>
<string name="title_delete_local">Delete local messages</string>
<string name="title_empty_trash">Empty trash</string>
<string name="title_edit_properties">Edit properties</string>
<string name="title_empty_trash_ask">Delete all trashed messages permanently?</string>
<string name="title_empty_trash_ask">Delete all trashed messages permanently\?</string>
<string name="title_folder_name">Folder name</string>
<string name="title_display_name">Display name</string>
<string name="title_hide_folder">Hide from list</string>
......@@ -133,7 +132,7 @@
<string name="title_unified_folder">Show in unified inbox</string>
<string name="title_after">Synchronize (days)</string>
<string name="title_folder_exists">Folder %1$s exists</string>
<string name="title_folder_delete">Delete folder permanently?</string>
<string name="title_folder_delete">Delete folder permanently\?</string>
<string name="title_folder_unified">Unified inbox</string>
<string name="title_folder_inbox">Inbox</string>
<string name="title_folder_outbox">Outbox</string>
......@@ -169,10 +168,10 @@
<string name="title_no_answers">No reply templates defined</string>
<string name="title_no_viewer">No viewer app available for %1$s</string>
<string name="title_attachment_saved">Attachment saved</string>
<string name="title_attachment_unavailable">Some attachments are not downloaded and will not be forwarded, continue?</string>
<string name="title_ask_delete">Delete message permanently?</string>
<string name="title_ask_discard">Discard draft?</string>
<string name="title_ask_spam">Report message as spam?</string>
<string name="title_attachment_unavailable">Some attachments are not downloaded and will not be forwarded, continue\?</string>
<string name="title_ask_delete">Delete message permanently\?</string>
<string name="title_ask_discard">Discard draft\?</string>
<string name="title_ask_spam">Report message as spam\?</string>
<string name="title_fix">Fix</string>
<string name="title_compose">Compose</string>
<string name="title_from">From:</string>
......@@ -240,7 +239,7 @@
<string name="title_hint_sync">Downloading messages can take some time, depending on the number of messages, the speed of your internet connection and your email provider</string>
<string name="title_open_link">Open link</string>
<string name="title_updated">There is an update to version %1$s available</string>
<string name="title_issue">Do you have a question or problem?</string>
<string name="title_issue">Do you have a question or problem\?</string>
<string name="title_yes">Yes</string>
<string name="title_no">No</string>
<string name="title_undo">Undo</string>
......
<?xml version="1.0" encoding="utf-8"?>
<?xml version='1.0' encoding='UTF-8'?>
<resources>
<string name="app_copyright">حقوق النشر بواسطه M. Bokhorst</string>
<string name="channel_service">خدمة</string>
<string name="channel_notification">الاشعارات</string>
<string name="channel_error">خطاء</string>
<plurals name="title_notification_synchronizing">
<item quantity="zero">مزامنة حسابات %1$d</item>
<item quantity="one">مزامنة حسابات %1$d</item>
<item quantity="two">Synchronizing %1$d accounts</item>
<item quantity="few">Synchronizing %1$d accounts</item>
<item quantity="many">Synchronizing %1$d accounts</item>
<item quantity="other">Synchronizing %1$d accounts</item>
</plurals>
<item quantity="zero">مزامنة حسابات %1$d</item>
<item quantity="one">مزامنة حسابات %1$d</item>
<item quantity="two">Synchronizing %1$d accounts</item>
<item quantity="few">Synchronizing %1$d accounts</item>
<item quantity="many">Synchronizing %1$d accounts</item>
<item quantity="other">Synchronizing %1$d accounts</item>
</plurals>
<plurals name="title_notification_operations">
<item quantity="zero">%1$d operations pending</item>
<item quantity="one">%1$d العملية معلقة</item>
<item quantity="two">%1$d operations pending</item>
<item quantity="few">%1$d operations pending</item>
<item quantity="many">%1$d operations pending</item>
<item quantity="other">%1$d operations pending</item>
</plurals>
<item quantity="zero">%1$d operations pending</item>
<item quantity="one">%1$d العملية معلقة</item>
<item quantity="two">%1$d operations pending</item>
<item quantity="few">%1$d operations pending</item>
<item quantity="many">%1$d operations pending</item>
<item quantity="other">%1$d operations pending</item>
</plurals>
<plurals name="title_notification_unseen">
<item quantity="zero">%1$d new messages</item>
<item quantity="one">%1$d new message</item>
<item quantity="two">%1$d new messages</item>
<item quantity="few">%1$d new messages</item>
<item quantity="many">%1$d new messages</item>
<item quantity="other">رسائل جديدة</item>
</plurals>
<item quantity="zero">%1$d new messages</item>
<item quantity="one">%1$d new message</item>
<item quantity="two">%1$d new messages</item>
<item quantity="few">%1$d new messages</item>
<item quantity="many">%1$d new messages</item>
<item quantity="other">رسائل جديدة</item>
</plurals>
<plurals name="title_notification_unsent">
<item quantity="zero">%1$d unsent messages</item>
<item quantity="one">%1$d unsent message</item>
<item quantity="two">%1$d unsent messages</item>
<item quantity="few">%1$d unsent messages</item>
<item quantity="many">%1$d unsent messages</item>
<item quantity="other">رسائل غير مرسله</item>
</plurals>
<item quantity="zero">%1$d unsent messages</item>
<item quantity="one">%1$d unsent message</item>
<item quantity="two">%1$d unsent messages</item>
<item quantity="few">%1$d unsent messages</item>
<item quantity="many">%1$d unsent messages</item>
<item quantity="other">رسائل غير مرسله</item>
</plurals>
<string name="title_notification_failed">\'%1$s\' فشل</string>
<string name="menu_setup">اعداد</string>
<string name="menu_answers">Reply templates</string>
......@@ -87,7 +86,7 @@
<string name="title_advanced_swipe">Swipe actions</string>
<string name="title_advanced_compact">Compact message view</string>
<string name="title_advanced_debug">Debug mode</string>
<string name="title_select">Select &#8230;</string>
<string name="title_select">Select </string>
<string name="title_identity_name">Your name</string>
<string name="title_identity_email">Your email address</string>
<string name="title_identity_reply_to">Reply to address</string>
......@@ -111,7 +110,7 @@
<string name="title_user">User name</string>
<string name="title_password">Password</string>
<string name="title_authorize">Select account</string>
<string name="title_authorizing">Authorizing account &#8230;</string>
<string name="title_authorizing">Authorizing account </string>
<string name="title_setup_advanced">Advanced</string>
<string name="title_store_sent">Store sent messages (normally not needed)</string>
<string name="title_synchronize_account">Synchronize (receive messages)</string>
......@@ -131,15 +130,15 @@
<string name="title_no_primary_archive">No primary account or no archive folder</string>
<string name="title_no_idle">This provider does not support push messages. This will delay reception of new messages and increase battery usage.</string>
<string name="title_no_uidplus">IMAP UIDPLUS not supported, see the FAQ</string>
<string name="title_account_delete">Delete this account permanently?</string>
<string name="title_identity_delete">Delete this identity permanently?</string>
<string name="title_account_delete">Delete this account permanently\?</string>
<string name="title_identity_delete">Delete this identity permanently\?</string>
<string name="title_pop">POP is not supported</string>
<string name="title_insecure">Insecure connections are not supported</string>
<string name="title_synchronize_now">Synchronize now</string>
<string name="title_delete_local">Delete local messages</string>
<string name="title_empty_trash">Empty trash</string>
<string name="title_edit_properties">Edit properties</string>
<string name="title_empty_trash_ask">Delete all trashed messages permanently?</string>
<string name="title_empty_trash_ask">Delete all trashed messages permanently\?</string>
<string name="title_folder_name">Folder name</string>
<string name="title_display_name">Display name</string>
<string name="title_hide_folder">Hide from list</string>
......@@ -185,9 +184,9 @@
<string name="title_no_answers">No reply templates defined</string>
<string name="title_no_viewer">لا يوجد عارض التطبيق متاح ل %1$s</string>
<string name="title_attachment_saved">حفظ المرفقات</string>
<string name="title_attachment_unavailable">Some attachments are not downloaded and will not be forwarded, continue?</string>
<string name="title_attachment_unavailable">Some attachments are not downloaded and will not be forwarded, continue\?</string>
<string name="title_ask_delete">هل تريد حذف الرسالة بشكل دائم؟</string>
<string name="title_ask_discard">Discard draft?</string>
<string name="title_ask_discard">Discard draft\?</string>
<string name="title_ask_spam">رسالة التقرير كالبريد المزعج؟</string>
<string name="title_fix">Fix</string>
<string name="title_compose">إنشاء</string>
......@@ -256,7 +255,7 @@
<string name="title_hint_sync">Downloading messages can take some time, depending on the number of messages, the speed of your internet connection and your email provider</string>
<string name="title_open_link">Open link</string>
<string name="title_updated">There is an update to version %1$s available</string>
<string name="title_issue">Do you have a question or problem?</string>
<string name="title_issue">Do you have a question or problem\?</string>
<string name="title_yes">Yes</string>
<string name="title_no">No</string>
<string name="title_undo">التراجع عن</string>
......
<?xml version="1.0" encoding="utf-8"?>
<?xml version='1.0' encoding='UTF-8'?>
<resources>
<string name="app_copyright">حقوق النشر بواسطه M. Bokhorst</string>
<string name="channel_service">خدمة</string>
<string name="channel_notification">الاشعارات</string>
<string name="channel_error">خطاء</string>
<plurals name="title_notification_synchronizing">
<item quantity="zero">مزامنة حسابات %1$d</item>
<item quantity="one">مزامنة حسابات %1$d</item>
<item quantity="two">Synchronizing %1$d accounts</item>
<item quantity="few">Synchronizing %1$d accounts</item>
<item quantity="many">Synchronizing %1$d accounts</item>
<item quantity="other">Synchronizing %1$d accounts</item>
</plurals>
<item quantity="zero">مزامنة حسابات %1$d</item>
<item quantity="one">مزامنة حسابات %1$d</item>
<item quantity="two">Synchronizing %1$d accounts</item>
<item quantity="few">Synchronizing %1$d accounts</item>
<item quantity="many">Synchronizing %1$d accounts</item>
<item quantity="other">Synchronizing %1$d accounts</item>
</plurals>
<plurals name="title_notification_operations">
<item quantity="zero">%1$d operations pending</item>
<item quantity="one">%1$d العملية معلقة</item>
<item quantity="two">%1$d operations pending</item>
<item quantity="few">%1$d operations pending</item>
<item quantity="many">%1$d operations pending</item>
<item quantity="other">%1$d operations pending</item>
</plurals>
<item quantity="zero">%1$d operations pending</item>
<item quantity="one">%1$d العملية معلقة</item>
<item quantity="two">%1$d operations pending</item>
<item quantity="few">%1$d operations pending</item>
<item quantity="many">%1$d operations pending</item>
<item quantity="other">%1$d operations pending</item>
</plurals>
<plurals name="title_notification_unseen">
<item quantity="zero">%1$d new messages</item>
<item quantity="one">%1$d new message</item>
<item quantity="two">%1$d new messages</item>
<item quantity="few">%1$d new messages</item>
<item quantity="many">%1$d new messages</item>
<item quantity="other">رسائل جديدة</item>
</plurals>
<item quantity="zero">%1$d new messages</item>
<item quantity="one">%1$d new message</item>
<item quantity="two">%1$d new messages</item>
<item quantity="few">%1$d new messages</item>
<item quantity="many">%1$d new messages</item>
<item quantity="other">رسائل جديدة</item>
</plurals>
<plurals name="title_notification_unsent">
<item quantity="zero">%1$d unsent messages</item>
<item quantity="one">%1$d unsent message</item>
<item quantity="two">%1$d unsent messages</item>
<item quantity="few">%1$d unsent messages</item>
<item quantity="many">%1$d unsent messages</item>
<item quantity="other">رسائل غير مرسله</item>
</plurals>
<item quantity="zero">%1$d unsent messages</item>
<item quantity="one">%1$d unsent message</item>
<item quantity="two">%1$d unsent messages</item>
<item quantity="few">%1$d unsent messages</item>
<item quantity="many">%1$d unsent messages</item>
<item quantity="other">رسائل غير مرسله</item>
</plurals>
<string name="title_notification_failed">\'%1$s\' فشل</string>
<string name="menu_setup">اعداد</string>
<string name="menu_answers">Reply templates</string>
......@@ -87,7 +86,7 @@
<string name="title_advanced_swipe">Swipe actions</string>
<string name="title_advanced_compact">Compact message view</string>
<string name="title_advanced_debug">Debug mode</string>
<string name="title_select">Select &#8230;</string>
<string name="title_select">Select </string>
<string name="title_identity_name">Your name</string>
<string name="title_identity_email">Your email address</string>
<string name="title_identity_reply_to">Reply to address</string>
......@@ -111,7 +110,7 @@
<string name="title_user">User name</string>
<string name="title_password">Password</string>
<string name="title_authorize">Select account</string>
<string name="title_authorizing">Authorizing account &#8230;</string>
<string name="title_authorizing">Authorizing account </string>
<string name="title_setup_advanced">Advanced</string>
<string name="title_store_sent">Store sent messages (normally not needed)</string>
<string name="title_synchronize_account">Synchronize (receive messages)</string>
......@@ -131,15 +130,15 @@
<string name="title_no_primary_archive">No primary account or no archive folder</string>
<string name="title_no_idle">This provider does not support push messages. This will delay reception of new messages and increase battery usage.</string>
<string name="title_no_uidplus">IMAP UIDPLUS not supported, see the FAQ</string>
<string name="title_account_delete">Delete this account permanently?</string>
<string name="title_identity_delete">Delete this identity permanently?</string>
<string name="title_account_delete">Delete this account permanently\?</string>
<string name="title_identity_delete">Delete this identity permanently\?</string>
<string name="title_pop">POP is not supported</string>
<string name="title_insecure">Insecure connections are not supported</string>
<string name="title_synchronize_now">Synchronize now</string>
<string name="title_delete_local">Delete local messages</string>
<string name="title_empty_trash">Empty trash</string>
<string name="title_edit_properties">Edit properties</string>
<string name="title_empty_trash_ask">Delete all trashed messages permanently?</string>
<string name="title_empty_trash_ask">Delete all trashed messages permanently\?</string>
<string name="title_folder_name">Folder name</string>
<string name="title_display_name">Display name</string>
<string name="title_hide_folder">Hide from list</string>
......@@ -185,9 +184,9 @@
<string name="title_no_answers">No reply templates defined</string>
<string name="title_no_viewer">لا يوجد عارض التطبيق متاح ل %1$s</string>
<string name="title_attachment_saved">حفظ المرفقات</string>
<string name="title_attachment_unavailable">Some attachments are not downloaded and will not be forwarded, continue?</string>
<string name="title_attachment_unavailable">Some attachments are not downloaded and will not be forwarded, continue\?</string>
<string name="title_ask_delete">هل تريد حذف الرسالة بشكل دائم؟</string>
<string name="title_ask_discard">Discard draft?</string>
<string name="title_ask_discard">Discard draft\?</string>
<string name="title_ask_spam">رسالة التقرير كالبريد المزعج؟</string>
<string name="title_fix">Fix</string>
<string name="title_compose">إنشاء</string>
......@@ -256,7 +255,7 @@
<string name="title_hint_sync">Downloading messages can take some time, depending on the number of messages, the speed of your internet connection and your email provider</string>
<string name="title_open_link">Open link</string>
<string name="title_updated">There is an update to version %1$s available</string>
<string name="title_issue">Do you have a question or problem?</string>
<string name="title_issue">Do you have a question or problem\?</string>
<string name="title_yes">Yes</string>
<string name="title_no">No</string>
<string name="title_undo">التراجع عن</string>
......
<?xml version="1.0" encoding="utf-8"?>
<?xml version='1.0' encoding='UTF-8'?>
<resources>
<string name="app_copyright">حقوق النشر بواسطه M. Bokhorst</string>
<string name="channel_service">خدمة</string>
<string name="channel_notification">الاشعارات</string>
<string name="channel_error">خطاء</string>
<plurals name="title_notification_synchronizing">
<item quantity="zero">مزامنة حسابات %1$d</item>
<item quantity="one">مزامنة حسابات %1$d</item>
<item quantity="two">Synchronizing %1$d accounts</item>
<item quantity="few">Synchronizing %1$d accounts</item>
<item quantity="many">Synchronizing %1$d accounts</item>
<item quantity="other">Synchronizing %1$d accounts</item>
</plurals>
<item quantity="zero">مزامنة حسابات %1$d</item>
<item quantity="one">مزامنة حسابات %1$d</item>
<item quantity="two">Synchronizing %1$d accounts</item>
<item quantity="few">Synchronizing %1$d accounts</item>
<item quantity="many">Synchronizing %1$d accounts</item>
<item quantity="other">Synchronizing %1$d accounts</item>
</plurals>
<plurals name="title_notification_operations">
<item quantity="zero">%1$d operations pending</item>
<item quantity="one">%1$d العملية معلقة</item>
<item quantity="two">%1$d operations pending</item>
<item quantity="few">%1$d operations pending</item>
<item quantity="many">%1$d operations pending</item>
<item quantity="other">%1$d operations pending</item>
</plurals>
<item quantity="zero">%1$d operations pending</item>
<item quantity="one">%1$d العملية معلقة</item>
<item quantity="two">%1$d operations pending</item>
<item quantity="few">%1$d operations pending</item>
<item quantity="many">%1$d operations pending</item>
<item quantity="other">%1$d operations pending</item>
</plurals>
<plurals name="title_notification_unseen">
<item quantity="zero">%1$d new messages</item>
<item quantity="one">%1$d new message</item>
<item quantity="two">%1$d new messages</item>
<item quantity="few">%1$d new messages</item>
<item quantity="many">%1$d new messages</item>
<item quantity="other">رسائل جديدة</item>
</plurals>
<item quantity="zero">%1$d new messages</item>
<item quantity="one">%1$d new message</item>
<item quantity="two">%1$d new messages</item>
<item quantity="few">%1$d new messages</item>
<item quantity="many">%1$d new messages</item>
<item quantity="other">رسائل جديدة</item>
</plurals>
<plurals name="title_notification_unsent">
<item quantity="zero">%1$d unsent messages</item>
<item quantity="one">%1$d unsent message</item>
<item quantity="two">%1$d unsent messages</item>
<item quantity="few">%1$d unsent messages</item>
<item quantity="many">%1$d unsent messages</item>
<item quantity="other">رسائل غير مرسله</item>
</plurals>
<item quantity="zero">%1$d unsent messages</item>
<item quantity="one">%1$d unsent message</item>
<item quantity="two">%1$d unsent messages</item>
<item quantity="few">%1$d unsent messages</item>
<item quantity="many">%1$d unsent messages</item>
<item quantity="other">رسائل غير مرسله</item>
</plurals>
<string name="title_notification_failed">\'%1$s\' فشل</string>
<string name="menu_setup">اعداد</string>
<string name="menu_answers">Reply templates</string>
......@@ -87,7 +86,7 @@
<string name="title_advanced_swipe">Swipe actions</string>
<string name="title_advanced_compact">Compact message view</string>
<string name="title_advanced_debug">Debug mode</string>
<string name="title_select">Select &#8230;</string>
<string name="title_select">Select </string>
<string name="title_identity_name">Your name</string>
<string name="title_identity_email">Your email address</string>
<string name="title_identity_reply_to">Reply to address</string>
......@@ -111,7 +110,7 @@
<string name="title_user">User name</string>
<string name="title_password">Password</string>
<string name="title_authorize">Select account</string>
<string name="title_authorizing">Authorizing account &#8230;</string>
<string name="title_authorizing">Authorizing account </string>
<string name="title_setup_advanced">Advanced</string>
<string name="title_store_sent">Store sent messages (normally not needed)</string>
<string name="title_synchronize_account">Synchronize (receive messages)</string>
......@@ -131,15 +130,15 @@
<string name="title_no_primary_archive">No primary account or no archive folder</string>
<string name="title_no_idle">This provider does not support push messages. This will delay reception of new messages and increase battery usage.</string>
<string name="title_no_uidplus">IMAP UIDPLUS not supported, see the FAQ</string>
<string name="title_account_delete">Delete this account permanently?</string>
<string name="title_identity_delete">Delete this identity permanently?</string>
<string name="title_account_delete">Delete this account permanently\?</string>
<string name="title_identity_delete">Delete this identity permanently\?</string>
<string name="title_pop">POP is not supported</string>
<string name="title_insecure">Insecure connections are not supported</string>
<string name="title_synchronize_now">Synchronize now</string>
<string name="title_delete_local">Delete local messages</string>
<string name="title_empty_trash">Empty trash</string>
<string name="title_edit_properties">Edit properties</string>
<string name="title_empty_trash_ask">Delete all trashed messages permanently?</string>
<string name="title_empty_trash_ask">Delete all trashed messages permanently\?</string>
<string name="title_folder_name">Folder name</string>
<string name="title_display_name">Display name</string>
<string name="title_hide_folder">Hide from list</string>
......@@ -185,9 +184,9 @@
<string name="title_no_answers">No reply templates defined</string>
<string name="title_no_viewer">لا يوجد عارض التطبيق متاح ل %1$s</string>
<string name="title_attachment_saved">حفظ المرفقات</string>
<string name="title_attachment_unavailable">Some attachments are not downloaded and will not be forwarded, continue?</string>
<string name="title_attachment_unavailable">Some attachments are not downloaded and will not be forwarded, continue\?</string>
<string name="title_ask_delete">هل تريد حذف الرسالة بشكل دائم؟</string>
<string name="title_ask_discard">Discard draft?</string>
<string name="title_ask_discard">Discard draft\?</string>
<string name="title_ask_spam">رسالة التقرير كالبريد المزعج؟</string>
<string name="title_fix">Fix</string>
<string name="title_compose">إنشاء</string>
......@@ -256,7 +255,7 @@
<string name="title_hint_sync">Downloading messages can take some time, depending on the number of messages, the speed of your internet connection and your email provider</string>
<string name="title_open_link">Open link</string>
<string name="title_updated">There is an update to version %1$s available</string>
<string name="title_issue">Do you have a question or problem?</string>
<string name="title_issue">Do you have a question or problem\?</string>
<string name="title_yes">Yes</string>
<string name="title_no">No</string>
<string name="title_undo">التراجع عن</string>
......
<?xml version="1.0" encoding="utf-8"?>
<?xml version='1.0' encoding='UTF-8'?>
<resources>
<string name="app_copyright">حقوق النشر بواسطه M. Bokhorst</string>
<string name="channel_service">خدمة</string>
<string name="channel_notification">الاشعارات</string>
<string name="channel_error">خطاء</string>
<plurals name="title_notification_synchronizing">
<item quantity="zero">مزامنة حسابات %1$d</item>
<item quantity="one">مزامنة حسابات %1$d</item>
<item quantity="two">Synchronizing %1$d accounts</item>
<item quantity="few">Synchronizing %1$d accounts</item>
<item quantity="many">Synchronizing %1$d accounts</item>
<item quantity="other">Synchronizing %1$d accounts</item>
</plurals>
<item quantity="zero">مزامنة حسابات %1$d</item>
<item quantity="one">مزامنة حسابات %1$d</item>
<item quantity="two">Synchronizing %1$d accounts</item>
<item quantity="few">Synchronizing %1$d accounts</item>
<item quantity="many">Synchronizing %1$d accounts</item>
<item quantity="other">Synchronizing %1$d accounts</item>
</plurals>
<plurals name="title_notification_operations">
<item quantity="zero">%1$d operations pending</item>
<item quantity="one">%1$d العملية معلقة</item>
<item quantity="two">%1$d operations pending</item>
<item quantity="few">%1$d operations pending</item>
<item quantity="many">%1$d operations pending</item>
<item quantity="other">%1$d operations pending</item>
</plurals>
<item quantity="zero">%1$d operations pending</item>
<item quantity="one">%1$d العملية معلقة</item>
<item quantity="two">%1$d operations pending</item>
<item quantity="few">%1$d operations pending</item>
<item quantity="many">%1$d operations pending</item>
<item quantity="other">%1$d operations pending</item>
</plurals>
<plurals name="title_notification_unseen">
<item quantity="zero">%1$d new messages</item>
<item quantity="one">%1$d new message</item>
<item quantity="two">%1$d new messages</item>
<item quantity="few">%1$d new messages</item>
<item quantity="many">%1$d new messages</item>
<item quantity="other">رسائل جديدة</item>
</plurals>
<item quantity="zero">%1$d new messages</item>
<item quantity="one">%1$d new message</item>
<item quantity="two">%1$d new messages</item>
<item quantity="few">%1$d new messages</item>
<item quantity="many">%1$d new messages</item>
<item quantity="other">رسائل جديدة</item>
</plurals>
<plurals name="title_notification_unsent">
<item quantity="zero">%1$d unsent messages</item>
<item quantity="one">%1$d unsent message</item>
<item quantity="two">%1$d unsent messages</item>
<item quantity="few">%1$d unsent messages</item>
<item quantity="many">%1$d unsent messages</item>
<item quantity="other">رسائل غير مرسله</item>
</plurals>
<item quantity="zero">%1$d unsent messages</item>
<item quantity="one">%1$d unsent message</item>
<item quantity="two">%1$d unsent messages</item>
<item quantity="few">%1$d unsent messages</item>
<item quantity="many">%1$d unsent messages</item>
<item quantity="other">رسائل غير مرسله</item>
</plurals>
<string name="title_notification_failed">\'%1$s\' فشل</string>
<string name="menu_setup">اعداد</string>
<string name="menu_answers">Reply templates</string>
......@@ -87,7 +86,7 @@
<string name="title_advanced_swipe">Swipe actions</string>
<string name="title_advanced_compact">Compact message view</string>
<string name="title_advanced_debug">Debug mode</string>
<string name="title_select">Select &#8230;</string>
<string name="title_select">Select </string>
<string name="title_identity_name">Your name</string>
<string name="title_identity_email">Your email address</string>
<string name="title_identity_reply_to">Reply to address</string>
......@@ -111,7 +110,7 @@
<string name="title_user">User name</string>
<string name="title_password">Password</string>
<string name="title_authorize">Select account</string>
<string name="title_authorizing">Authorizing account &#8230;</string>
<string name="title_authorizing">Authorizing account </string>
<string name="title_setup_advanced">Advanced</string>
<string name="title_store_sent">Store sent messages (normally not needed)</string>
<string name="title_synchronize_account">Synchronize (receive messages)</string>
......@@ -131,15 +130,15 @@
<string name="title_no_primary_archive">No primary account or no archive folder</string>
<string name="title_no_idle">This provider does not support push messages. This will delay reception of new messages and increase battery usage.</string>
<string name="title_no_uidplus">IMAP UIDPLUS not supported, see the FAQ</string>
<string name="title_account_delete">Delete this account permanently?</string>
<string name="title_identity_delete">Delete this identity permanently?</string>
<string name="title_account_delete">Delete this account permanently\?</string>
<string name="title_identity_delete">Delete this identity permanently\?</string>
<string name="title_pop">POP is not supported</string>
<string name="title_insecure">Insecure connections are not supported</string>
<string name="title_synchronize_now">Synchronize now</string>
<string name="title_delete_local">Delete local messages</string>
<string name="title_empty_trash">Empty trash</string>
<string name="title_edit_properties">Edit properties</string>
<string name="title_empty_trash_ask">Delete all trashed messages permanently?</string>
<string name="title_empty_trash_ask">Delete all trashed messages permanently\?</string>
<string name="title_folder_name">Folder name</string>
<string name="title_display_name">Display name</string>
<string name="title_hide_folder">Hide from list</string>
......@@ -185,9 +184,9 @@
<string name="title_no_answers">No reply templates defined</string>
<string name="title_no_viewer">لا يوجد عارض التطبيق متاح ل %1$s</string>
<string name="title_attachment_saved">حفظ المرفقات</string>
<string name="title_attachment_unavailable">Some attachments are not downloaded and will not be forwarded, continue?</string>
<string name="title_attachment_unavailable">Some attachments are not downloaded and will not be forwarded, continue\?</string>
<string name="title_ask_delete">هل تريد حذف الرسالة بشكل دائم؟</string>
<string name="title_ask_discard">Discard draft?</string>
<string name="title_ask_discard">Discard draft\?</string>
<string name="title_ask_spam">رسالة التقرير كالبريد المزعج؟</string>
<string name="title_fix">Fix</string>
<string name="title_compose">إنشاء</string>
......@@ -256,7 +255,7 @@
<string name="title_hint_sync">Downloading messages can take some time, depending on the number of messages, the speed of your internet connection and your email provider</string>
<string name="title_open_link">Open link</string>
<string name="title_updated">There is an update to version %1$s available</string>
<string name="title_issue">Do you have a question or problem?</string>
<string name="title_issue">Do you have a question or problem\?</string>
<string name="title_yes">Yes</string>
<string name="title_no">No</string>
<string name="title_undo">التراجع عن</string>
......
<?xml version="1.0" encoding="utf-8"?>
<?xml version='1.0' encoding='UTF-8'?>
<resources>
<string name="app_copyright">حقوق النشر بواسطه M. Bokhorst</string>
<string name="channel_service">خدمة</string>
<string name="channel_notification">الاشعارات</string>
<string name="channel_error">خطاء</string>
<plurals name="title_notification_synchronizing">
<item quantity="zero">مزامنة حسابات %1$d</item>
<item quantity="one">مزامنة حسابات %1$d</item>
<item quantity="two">Synchronizing %1$d accounts</item>
<item quantity="few">Synchronizing %1$d accounts</item>
<item quantity="many">Synchronizing %1$d accounts</item>
<item quantity="other">Synchronizing %1$d accounts</item>
</plurals>
<item quantity="zero">مزامنة حسابات %1$d</item>
<item quantity="one">مزامنة حسابات %1$d</item>
<item quantity="two">Synchronizing %1$d accounts</item>
<item quantity="few">Synchronizing %1$d accounts</item>
<item quantity="many">Synchronizing %1$d accounts</item>
<item quantity="other">Synchronizing %1$d accounts</item>
</plurals>
<plurals name="title_notification_operations">
<item quantity="zero">%1$d operations pending</item>
<item quantity="one">%1$d العملية معلقة</item>
<item quantity="two">%1$d operations pending</item>
<item quantity="few">%1$d operations pending</item>
<item quantity="many">%1$d operations pending</item>
<item quantity="other">%1$d operations pending</item>
</plurals>
<item quantity="zero">%1$d operations pending</item>
<item quantity="one">%1$d العملية معلقة</item>
<item quantity="two">%1$d operations pending</item>
<item quantity="few">%1$d operations pending</item>
<item quantity="many">%1$d operations pending</item>
<item quantity="other">%1$d operations pending</item>
</plurals>
<plurals name="title_notification_unseen">
<item quantity="zero">%1$d new messages</item>
<item quantity="one">%1$d new message</item>
<item quantity="two">%1$d new messages</item>
<item quantity="few">%1$d new messages</item>
<item quantity="many">%1$d new messages</item>
<item quantity="other">رسائل جديدة</item>
</plurals>
<item quantity="zero">%1$d new messages</item>
<item quantity="one">%1$d new message</item>
<item quantity="two">%1$d new messages</item>
<item quantity="few">%1$d new messages</item>
<item quantity="many">%1$d new messages</item>
<item quantity="other">رسائل جديدة</item>
</plurals>
<plurals name="title_notification_unsent">
<item quantity="zero">%1$d unsent messages</item>
<item quantity="one">%1$d unsent message</item>
<item quantity="two">%1$d unsent messages</item>
<item quantity="few">%1$d unsent messages</item>
<item quantity="many">%1$d unsent messages</item>
<item quantity="other">رسائل غير مرسله</item>
</plurals>
<item quantity="zero">%1$d unsent messages</item>
<item quantity="one">%1$d unsent message</item>
<item quantity="two">%1$d unsent messages</item>
<item quantity="few">%1$d unsent messages</item>
<item quantity="many">%1$d unsent messages</item>
<item quantity="other">رسائل غير مرسله</item>
</plurals>
<string name="title_notification_failed">\'%1$s\' فشل</string>
<string name="menu_setup">اعداد</string>
<string name="menu_answers">Reply templates</string>
......@@ -87,7 +86,7 @@
<string name="title_advanced_swipe">Swipe actions</string>
<string name="title_advanced_compact">Compact message view</string>
<string name="title_advanced_debug">Debug mode</string>
<string name="title_select">Select &#8230;</string>
<string name="title_select">Select </string>
<string name="title_identity_name">Your name</string>
<string name="title_identity_email">Your email address</string>
<string name="title_identity_reply_to">Reply to address</string>
......@@ -111,7 +110,7 @@
<string name="title_user">User name</string>
<string name="title_password">Password</string>
<string name="title_authorize">Select account</string>
<string name="title_authorizing">Authorizing account &#8230;</string>
<string name="title_authorizing">Authorizing account </string>
<string name="title_setup_advanced">Advanced</string>
<string name="title_store_sent">Store sent messages (normally not needed)</string>
<string name="title_synchronize_account">Synchronize (receive messages)</string>
......@@ -131,15 +130,15 @@
<string name="title_no_primary_archive">No primary account or no archive folder</string>
<string name="title_no_idle">This provider does not support push messages. This will delay reception of new messages and increase battery usage.</string>
<string name="title_no_uidplus">IMAP UIDPLUS not supported, see the FAQ</string>
<string name="title_account_delete">Delete this account permanently?</string>
<string name="title_identity_delete">Delete this identity permanently?</string>
<string name="title_account_delete">Delete this account permanently\?</string>
<string name="title_identity_delete">Delete this identity permanently\?</string>
<string name="title_pop">POP is not supported</string>
<string name="title_insecure">Insecure connections are not supported</string>
<string name="title_synchronize_now">Synchronize now</string>
<string name="title_delete_local">Delete local messages</string>
<string name="title_empty_trash">Empty trash</string>
<string name="title_edit_properties">Edit properties</string>
<string name="title_empty_trash_ask">Delete all trashed messages permanently?</string>
<string name="title_empty_trash_ask">Delete all trashed messages permanently\?</string>
<string name="title_folder_name">Folder name</string>
<string name="title_display_name">Display name</string>
<string name="title_hide_folder">Hide from list</string>
......@@ -185,9 +184,9 @@
<string name="title_no_answers">No reply templates defined</string>
<string name="title_no_viewer">لا يوجد عارض التطبيق متاح ل %1$s</string>
<string name="title_attachment_saved">حفظ المرفقات</string>
<string name="title_attachment_unavailable">Some attachments are not downloaded and will not be forwarded, continue?</string>
<string name="title_attachment_unavailable">Some attachments are not downloaded and will not be forwarded, continue\?</string>
<string name="title_ask_delete">هل تريد حذف الرسالة بشكل دائم؟</string>
<string name="title_ask_discard">Discard draft?</string>
<string name="title_ask_discard">Discard draft\?</string>
<string name="title_ask_spam">رسالة التقرير كالبريد المزعج؟</string>
<string name="title_fix">Fix</string>
<string name="title_compose">إنشاء</string>
......@@ -256,7 +255,7 @@
<string name="title_hint_sync">Downloading messages can take some time, depending on the number of messages, the speed of your internet connection and your email provider</string>
<string name="title_open_link">Open link</string>
<string name="title_updated">There is an update to version %1$s available</string>
<string name="title_issue">Do you have a question or problem?</string>
<string name="title_issue">Do you have a question or problem\?</string>
<string name="title_yes">Yes</string>
<string name="title_no">No</string>
<string name="title_undo">التراجع عن</string>
......
<?xml version="1.0" encoding="utf-8"?>
<?xml version='1.0' encoding='UTF-8'?>
<resources>
<string name="app_copyright">Müəllif hüquqları &#x24B8; 2018 M. Bokhorst-a məxsusdur</string>
<string name="app_copyright">Müəllif hüquqları 2018 M. Bokhorst-a məxsusdur</string>
<string name="channel_service">Xidmət</string>
<string name="channel_notification">Bildirişlər</string>
<string name="channel_error">Xətalar</string>
<plurals name="title_notification_synchronizing">
<item quantity="one">%1$d hesab eyniləşdirilir</item>
<item quantity="other">%1$d hesab eyniləşdirilir</item>
</plurals>
<item quantity="one">%1$d hesab eyniləşdirilir</item>
<item quantity="other">%1$d hesab eyniləşdirilir</item>
</plurals>
<plurals name="title_notification_operations">
<item quantity="one">%1$d əməliyyat gözləyir</item>
<item quantity="other">%1$d əməliyyat gözləyir</item>
</plurals>
<item quantity="one">%1$d əməliyyat gözləyir</item>
<item quantity="other">%1$d əməliyyat gözləyir</item>
</plurals>
<plurals name="title_notification_unseen">
<item quantity="one">%1$d yeni mesaj</item>
<item quantity="other">%1$d yeni mesaj</item>
</plurals>
<item quantity="one">%1$d yeni mesaj</item>
<item quantity="other">%1$d yeni mesaj</item>
</plurals>
<plurals name="title_notification_unsent">
<item quantity="one">%1$d göndərilməmiş mesaj</item>
<item quantity="other">%1$d göndərilməmiş mesaj</item>
</plurals>
<item quantity="one">%1$d göndərilməmiş mesaj</item>
<item quantity="other">%1$d göndərilməmiş mesaj</item>
</plurals>
<string name="title_notification_failed">\'%1$s\' uğursuz oldu</string>
<string name="menu_setup">Quraşdırma</string>
<string name="menu_answers">Cavab şablonları</string>
......@@ -71,7 +70,7 @@
<string name="title_advanced_swipe">Sürüşdürmə hərəkətləri</string>
<string name="title_advanced_compact">Yığcam mesaj görünüşü</string>
<string name="title_advanced_debug">Sazlama rejimi</string>
<string name="title_select">&#8230; seçin</string>
<string name="title_select"> seçin</string>
<string name="title_identity_name">Adınız</string>
<string name="title_identity_email">E-poçt ünvanınız</string>
<string name="title_identity_reply_to">Cavablama ünvanı</string>
......@@ -95,7 +94,7 @@
<string name="title_user">İstifadəçi adı</string>
<string name="title_password">Şifrə</string>
<string name="title_authorize">Hesab seç</string>
<string name="title_authorizing">Hesaba səlahiyyət verilir &#8230;</string>
<string name="title_authorizing">Hesaba səlahiyyət verilir </string>
<string name="title_setup_advanced">Qabaqcıl</string>
<string name="title_store_sent">Göndərilən mesajları saxla (normalda ehtiyac yoxdur)</string>
<string name="title_synchronize_account">Eyniləşdir (mesajları al)</string>
......
<?xml version="1.0" encoding="utf-8"?>
<?xml version='1.0' encoding='UTF-8'?>
<resources>
<string name="app_copyright">Copyright &#x24B8; 2018 de M. Bokhorst</string>
<string name="app_copyright">Copyright 2018 de M. Bokhorst</string>
<string name="channel_service">Servei</string>
<string name="channel_notification">Notificacions</string>
<string name="channel_error">Errors</string>
......@@ -71,7 +70,7 @@
<string name="title_advanced_swipe">Accions per lliscar</string>
<string name="title_advanced_compact">Compact message view</string>
<string name="title_advanced_debug">Mode de depuració</string>
<string name="title_select">Selecciona &#8230;</string>
<string name="title_select">Selecciona </string>
<string name="title_identity_name">El teu nom</string>
<string name="title_identity_email">La teva adreça de correu-e</string>
<string name="title_identity_reply_to">Respon a l’adreça</string>
......@@ -95,7 +94,7 @@
<string name="title_user">Nom d\'usuari</string>
<string name="title_password">Contrasenya</string>
<string name="title_authorize">Selecciona un compte</string>
<string name="title_authorizing">Autoritzant compte &#8230;</string>
<string name="title_authorizing">Autoritzant compte </string>
<string name="title_setup_advanced">Avançat</string>
<string name="title_store_sent">Emmagatzema missatges enviats (normalment no és necessari)</string>
<string name="title_synchronize_account">Sincronitza (rebre missatges)</string>
......
<?xml version="1.0" encoding="utf-8"?>
<?xml version='1.0' encoding='UTF-8'?>
<resources>
<string name="app_copyright">Copyright &#x24B8; 2018 by M. Bokhorst\nCopyright &#x24B8; 2018 by Distopico (dystopia project) and contributors</string>
<string name="app_copyright">Copyright 2018 by M. Bokhorst\nCopyright 2018 by Distopico (dystopia project) and contributors</string>
<string name="channel_service">Service</string>
<string name="channel_notification">Notifications</string>
<string name="channel_error">Errors</string>
<plurals name="title_notification_synchronizing">
<item quantity="one">Synchronizing %1$d account</item>
<item quantity="few">Synchronizing %1$d accounts</item>
<item quantity="many">Synchronizing %1$d accounts</item>
<item quantity="other">Synchronizing %1$d accounts</item>
</plurals>
<item quantity="one">Synchronizing %1$d account</item>
<item quantity="few">Synchronizing %1$d accounts</item>
<item quantity="other">Synchronizing %1$d accounts</item>
</plurals>
<plurals name="title_notification_operations">
<item quantity="one">%1$d operation pending</item>
<item quantity="few">%1$d operations pending</item>
<item quantity="many">%1$d operations pending</item>
<item quantity="other">%1$d operations pending</item>
</plurals>
<item quantity="one">%1$d operation pending</item>
<item quantity="few">%1$d operations pending</item>
<item quantity="other">%1$d operations pending</item>
</plurals>
<plurals name="title_notification_unseen">
<item quantity="one">%1$d new message</item>
<item quantity="few">%1$d new messages</item>
<item quantity="many">%1$d new messages</item>
<item quantity="other">%1$d new messages</item>
</plurals>
<item quantity="one">%1$d new message</item>
<item quantity="few">%1$d new messages</item>
<item quantity="other">%1$d new messages</item>
</plurals>
<plurals name="title_notification_unsent">
<item quantity="one">%1$d unsent message</item>
<item quantity="few">%1$d unsent messages</item>
<item quantity="many">%1$d unsent messages</item>
<item quantity="other">%1$d unsent messages</item>
</plurals>
<item quantity="one">%1$d unsent message</item>
<item quantity="few">%1$d unsent messages</item>
<item quantity="other">%1$d unsent messages</item>
</plurals>
<string name="title_notification_failed">\'%1$s\' failed</string>
<string name="menu_setup">Setup</string>
<string name="menu_answers">Reply templates</string>
......@@ -79,7 +74,7 @@
<string name="title_advanced_swipe">Swipe actions</string>
<string name="title_advanced_compact">Compact message view</string>
<string name="title_advanced_debug">Debug mode</string>
<string name="title_select">Select &#8230;</string>
<string name="title_select">Select </string>
<string name="title_identity_name">Your name</string>
<string name="title_identity_email">Your email address</string>
<string name="title_identity_reply_to">Reply to address</string>
......@@ -103,7 +98,7 @@
<string name="title_user">User name</string>
<string name="title_password">Password</string>
<string name="title_authorize">Select account</string>
<string name="title_authorizing">Authorizing account &#8230;</string>
<string name="title_authorizing">Authorizing account </string>
<string name="title_setup_advanced">Advanced</string>
<string name="title_store_sent">Store sent messages (normally not needed)</string>
<string name="title_synchronize_account">Synchronize (receive messages)</string>
......@@ -123,15 +118,15 @@
<string name="title_no_primary_archive">No primary account or no archive folder</string>
<string name="title_no_idle">This provider does not support push messages. This will delay reception of new messages and increase battery usage.</string>
<string name="title_no_uidplus">IMAP UIDPLUS not supported, see the FAQ</string>
<string name="title_account_delete">Delete this account permanently?</string>
<string name="title_identity_delete">Delete this identity permanently?</string>
<string name="title_account_delete">Delete this account permanently\?</string>
<string name="title_identity_delete">Delete this identity permanently\?</string>
<string name="title_pop">POP is not supported</string>
<string name="title_insecure">Insecure connections are not supported</string>
<string name="title_synchronize_now">Synchronize now</string>
<string name="title_delete_local">Delete local messages</string>
<string name="title_empty_trash">Empty trash</string>
<string name="title_edit_properties">Edit properties</string>
<string name="title_empty_trash_ask">Delete all trashed messages permanently?</string>
<string name="title_empty_trash_ask">Delete all trashed messages permanently\?</string>
<string name="title_folder_name">Folder name</string>
<string name="title_display_name">Display name</string>
<string name="title_hide_folder">Hide from list</string>
......@@ -141,7 +136,7 @@
<string name="title_unified_folder">Show in unified inbox</string>
<string name="title_after">Synchronize (days)</string>
<string name="title_folder_exists">Folder %1$s exists</string>
<string name="title_folder_delete">Delete folder permanently?</string>
<string name="title_folder_delete">Delete folder permanently\?</string>
<string name="title_folder_unified">Unified inbox</string>
<string name="title_folder_inbox">Inbox</string>
<string name="title_folder_outbox">Outbox</string>
......@@ -177,10 +172,10 @@
<string name="title_no_answers">No reply templates defined</string>
<string name="title_no_viewer">No viewer app available for %1$s</string>
<string name="title_attachment_saved">Attachment saved</string>
<string name="title_attachment_unavailable">Some attachments are not downloaded and will not be forwarded, continue?</string>
<string name="title_ask_delete">Delete message permanently?</string>
<string name="title_ask_discard">Discard draft?</string>
<string name="title_ask_spam">Report message as spam?</string>
<string name="title_attachment_unavailable">Some attachments are not downloaded and will not be forwarded, continue\?</string>
<string name="title_ask_delete">Delete message permanently\?</string>
<string name="title_ask_discard">Discard draft\?</string>
<string name="title_ask_spam">Report message as spam\?</string>
<string name="title_fix">Fix</string>
<string name="title_compose">Compose</string>
<string name="title_from">From:</string>
......@@ -248,7 +243,7 @@
<string name="title_hint_sync">Downloading messages can take some time, depending on the number of messages, the speed of your internet connection and your email provider</string>
<string name="title_open_link">Open link</string>
<string name="title_updated">There is an update to version %1$s available</string>
<string name="title_issue">Do you have a question or problem?</string>
<string name="title_issue">Do you have a question or problem\?</string>
<string name="title_yes">Yes</string>
<string name="title_no">No</string>
<string name="title_undo">Undo</string>
......
<?xml version="1.0" encoding="utf-8"?>
<?xml version='1.0' encoding='UTF-8'?>
<resources>
<string name="app_copyright">Copyright &#x24B8; 2018 af M. Bokhorst</string>
<string name="app_copyright">Copyright 2018 af M. Bokhorst</string>
<string name="channel_service">Service</string>
<string name="channel_notification">Notifikationer</string>
<string name="channel_error">Fejl</string>
......@@ -71,7 +70,7 @@
<string name="title_advanced_swipe">Swipe actions</string>
<string name="title_advanced_compact">Compact message view</string>
<string name="title_advanced_debug">Debug</string>
<string name="title_select">Vælg &#8230;</string>
<string name="title_select">Vælg </string>
<string name="title_identity_name">Dit navn</string>
<string name="title_identity_email">Din email adresse</string>
<string name="title_identity_reply_to">Svar til adresse</string>
......@@ -95,7 +94,7 @@
<string name="title_user">Brugernavn</string>
<string name="title_password">Adgangskode</string>
<string name="title_authorize">Vælg konto</string>
<string name="title_authorizing">Authorizing account &#8230;</string>
<string name="title_authorizing">Authorizing account </string>
<string name="title_setup_advanced">Advanced</string>
<string name="title_store_sent">Store sent messages (normally not needed)</string>
<string name="title_synchronize_account">Synkronisér (modtag meddelelser)</string>
......@@ -123,7 +122,7 @@
<string name="title_delete_local">Delete local messages</string>
<string name="title_empty_trash">Empty trash</string>
<string name="title_edit_properties">Edit properties</string>
<string name="title_empty_trash_ask">Delete all trashed messages permanently?</string>
<string name="title_empty_trash_ask">Delete all trashed messages permanently\?</string>
<string name="title_folder_name">Folder name</string>
<string name="title_display_name">Display name</string>
<string name="title_hide_folder">Hide from list</string>
......@@ -133,7 +132,7 @@
<string name="title_unified_folder">Show in unified inbox</string>
<string name="title_after">Synkronisér (dage)</string>
<string name="title_folder_exists">Folder %1$s exists</string>
<string name="title_folder_delete">Delete folder permanently?</string>
<string name="title_folder_delete">Delete folder permanently\?</string>
<string name="title_folder_unified">Samlet indbakke</string>
<string name="title_folder_inbox">Indbakke</string>
<string name="title_folder_outbox">Udbakke</string>
......@@ -169,9 +168,9 @@
<string name="title_no_answers">No reply templates defined</string>
<string name="title_no_viewer">Ingen viewer app til rådighed for %1$s</string>
<string name="title_attachment_saved">Vedhæftet fil gemt</string>
<string name="title_attachment_unavailable">Some attachments are not downloaded and will not be forwarded, continue?</string>
<string name="title_attachment_unavailable">Some attachments are not downloaded and will not be forwarded, continue\?</string>
<string name="title_ask_delete">Slet meddelelsen permanent?</string>
<string name="title_ask_discard">Discard draft?</string>
<string name="title_ask_discard">Discard draft\?</string>
<string name="title_ask_spam">Rapportér meddelelse som spam?</string>
<string name="title_fix">Fix</string>
<string name="title_compose">Ny meddelelse</string>
......@@ -240,7 +239,7 @@
<string name="title_hint_sync">Downloading messages can take some time, depending on the number of messages, the speed of your internet connection and your email provider</string>
<string name="title_open_link">Open link</string>
<string name="title_updated">There is an update to version %1$s available</string>
<string name="title_issue">Do you have a question or problem?</string>
<string name="title_issue">Do you have a question or problem\?</string>
<string name="title_yes">Yes</string>
<string name="title_no">No</string>
<string name="title_undo">Undo</string>
......
<?xml version="1.0" encoding="utf-8"?>
<?xml version='1.0' encoding='UTF-8'?>
<resources>
<string name="app_copyright">Copyright &#x24B8; 2018 by M. Bokhorst\nCopyright &#x24B8; 2018 by Distopico (dystopia project) and contributors</string>
<string name="app_copyright">Copyright 2018 by M. Bokhorst\nCopyright 2018 by Distopico (dystopia project) and contributors</string>
<string name="channel_service">Dienst</string>
<string name="channel_notification">Benachrichtigungen</string>
<string name="channel_error">Fehler</string>
......@@ -71,7 +70,7 @@
<string name="title_advanced_swipe">Wischgesten</string>
<string name="title_advanced_compact">Kompakte Nachrichtenansicht</string>
<string name="title_advanced_debug">Debuggen</string>
<string name="title_select">Wählen Sie &#8230;</string>
<string name="title_select">Wählen Sie </string>
<string name="title_identity_name">Ihr Name</string>
<string name="title_identity_email">Ihre E-Mail-Adresse</string>
<string name="title_identity_reply_to">Antwortadresse</string>
......@@ -95,7 +94,7 @@
<string name="title_user">Benutzername</string>
<string name="title_password">Passwort</string>
<string name="title_authorize">Konto wählen</string>
<string name="title_authorizing">Autorisieren Konto &#8230;</string>
<string name="title_authorizing">Autorisieren Konto </string>
<string name="title_setup_advanced">Erweitert</string>
<string name="title_store_sent">Gesendete E-Mails speichern (normalerweise nicht nötig)</string>
<string name="title_synchronize_account">Synchronisiere (empfange E-Mails)</string>
......@@ -197,7 +196,7 @@
<string name="title_attachments_missing">Anhänge werden noch geladen</string>
<string name="title_draft_deleted">Entwurf verworfen</string>
<string name="title_draft_saved">Entwurf gespeichert</string>
<string name="title_queued">Nachricht senden\u2026</string>
<string name="title_queued">Nachricht senden</string>
<string name="title_encrypt">Verschlüsseln</string>
<string name="title_decrypt">Entschlüsseln</string>
<string name="title_no_openpgp">OpenKeychain wurde nicht gefunden</string>
......
<?xml version="1.0" encoding="utf-8"?>
<?xml version='1.0' encoding='UTF-8'?>
<resources>
<string name="app_copyright">Copyright &#x24B8; 2018 by M. Bokhorst\nCopyright &#x24B8; 2018 by Distopico (dystopia project) and contributors</string>
<string name="app_copyright">Copyright 2018 by M. Bokhorst\nCopyright 2018 by Distopico (dystopia project) and contributors</string>
<string name="channel_service">Service</string>
<string name="channel_notification">Notifications</string>
<string name="channel_error">Errors</string>
<plurals name="title_notification_synchronizing">
<item quantity="one">Synchronizing %1$d account</item>
<item quantity="other">Synchronizing %1$d accounts</item>
</plurals>
<item quantity="one">Synchronizing %1$d account</item>
<item quantity="other">Synchronizing %1$d accounts</item>
</plurals>
<plurals name="title_notification_operations">
<item quantity="one">%1$d operation pending</item>
<item quantity="other">%1$d operations pending</item>
......@@ -71,7 +70,7 @@
<string name="title_advanced_swipe">Swipe actions</string>
<string name="title_advanced_compact">Compact message view</string>
<string name="title_advanced_debug">Debug mode</string>
<string name="title_select">Select &#8230;</string>
<string name="title_select">Select </string>
<string name="title_identity_name">Your name</string>
<string name="title_identity_email">Your email address</string>
<string name="title_identity_reply_to">Reply to address</string>
......@@ -95,7 +94,7 @@
<string name="title_user">User name</string>
<string name="title_password">Password</string>
<string name="title_authorize">Select account</string>
<string name="title_authorizing">Authorizing account &#8230;</string>
<string name="title_authorizing">Authorizing account </string>
<string name="title_setup_advanced">Advanced</string>
<string name="title_store_sent">Store sent messages (normally not needed)</string>
<string name="title_synchronize_account">Synchronize (receive messages)</string>
......@@ -115,15 +114,15 @@
<string name="title_no_primary_archive">No primary account or no archive folder</string>
<string name="title_no_idle">This provider does not support push messages. This will delay reception of new messages and increase battery usage.</string>
<string name="title_no_uidplus">IMAP UIDPLUS not supported, see the FAQ</string>
<string name="title_account_delete">Delete this account permanently?</string>
<string name="title_identity_delete">Delete this identity permanently?</string>
<string name="title_account_delete">Delete this account permanently\?</string>
<string name="title_identity_delete">Delete this identity permanently\?</string>
<string name="title_pop">POP is not supported</string>
<string name="title_insecure">Insecure connections are not supported</string>
<string name="title_synchronize_now">Synchronize now</string>
<string name="title_delete_local">Delete local messages</string>
<string name="title_empty_trash">Empty trash</string>
<string name="title_edit_properties">Edit properties</string>
<string name="title_empty_trash_ask">Delete all trashed messages permanently?</string>
<string name="title_empty_trash_ask">Delete all trashed messages permanently\?</string>
<string name="title_folder_name">Folder name</string>
<string name="title_display_name">Display name</string>
<string name="title_hide_folder">Hide from list</string>
......@@ -133,7 +132,7 @@
<string name="title_unified_folder">Show in unified inbox</string>
<string name="title_after">Synchronize (days)</string>
<string name="title_folder_exists">Folder %1$s exists</string>
<string name="title_folder_delete">Delete folder permanently?</string>
<string name="title_folder_delete">Delete folder permanently\?</string>
<string name="title_folder_unified">Unified inbox</string>
<string name="title_folder_inbox">Inbox</string>
<string name="title_folder_outbox">Outbox</string>
......@@ -169,10 +168,10 @@
<string name="title_no_answers">No reply templates defined</string>
<string name="title_no_viewer">No viewer app available for %1$s</string>
<string name="title_attachment_saved">Attachment saved</string>
<string name="title_attachment_unavailable">Some attachments are not downloaded and will not be forwarded, continue?</string>
<string name="title_ask_delete">Delete message permanently?</string>
<string name="title_ask_discard">Discard draft?</string>
<string name="title_ask_spam">Report message as spam?</string>
<string name="title_attachment_unavailable">Some attachments are not downloaded and will not be forwarded, continue\?</string>
<string name="title_ask_delete">Delete message permanently\?</string>
<string name="title_ask_discard">Discard draft\?</string>
<string name="title_ask_spam">Report message as spam\?</string>
<string name="title_fix">Fix</string>
<string name="title_compose">Compose</string>
<string name="title_from">From:</string>
......@@ -240,7 +239,7 @@
<string name="title_hint_sync">Downloading messages can take some time, depending on the number of messages, the speed of your internet connection and your email provider</string>
<string name="title_open_link">Open link</string>
<string name="title_updated">There is an update to version %1$s available</string>
<string name="title_issue">Do you have a question or problem?</string>
<string name="title_issue">Do you have a question or problem\?</string>
<string name="title_yes">Yes</string>
<string name="title_no">No</string>
<string name="title_undo">Undo</string>
......
<?xml version="1.0" encoding="utf-8"?>
<?xml version='1.0' encoding='UTF-8'?>
<resources>
<string name="app_copyright">Copyright &#x24B8; 2018 por M. Bokhorst</string>
<string name="app_copyright">Copyright 2018 por M. Bokhorst</string>
<string name="channel_service">Servicio</string>
<string name="channel_notification">Notificaciones</string>
<string name="channel_error">Errores</string>
......@@ -58,7 +57,7 @@
<string name="title_setup_data">Desactivar ahorro de datos</string>
<string name="title_setup_permissions">Conceder permisos</string>
<string name="title_setup_permissions_remark">Para obtener información de contactos (opcional)</string>
<string name="title_setup_notifications">Manage notifications</string>
<string name="title_setup_notifications">Gestionar notificaciones</string>
<string name="title_setup_to_do">Pendiente</string>
<string name="title_setup_done">Hecho</string>
<string name="title_setup_light_theme">Tema claro</string>
......@@ -71,7 +70,7 @@
<string name="title_advanced_swipe">Acciones al deslizar</string>
<string name="title_advanced_compact">Vista de mensajes compacta</string>
<string name="title_advanced_debug">Modo de depuración</string>
<string name="title_select">Seleccione &#8230;</string>
<string name="title_select">Seleccione </string>
<string name="title_identity_name">Su nombre</string>
<string name="title_identity_email">Su dirección de correo electrónico</string>
<string name="title_identity_reply_to">Dirección de Responder A</string>
......@@ -95,7 +94,7 @@
<string name="title_user">Nombre de usuario</string>
<string name="title_password">Contraseña</string>
<string name="title_authorize">Seleccione una cuenta</string>
<string name="title_authorizing">Autorizando cuenta &#8230;</string>
<string name="title_authorizing">Autorizando cuenta </string>
<string name="title_setup_advanced">Avanzado</string>
<string name="title_store_sent">Almacenar mensajes enviados (nomalmente no necesario)</string>
<string name="title_synchronize_account">Sincronizar (recibir mensajes)</string>
......@@ -149,7 +148,7 @@
<string name="title_no_messages">Sin mensajes</string>
<string name="title_show_images">Mostrar imágenes</string>
<string name="title_subject_reply">Re: %1$s</string>
<string name="title_subject_forward">Fwd: %1$s</string>
<string name="title_subject_forward">Renviado: %1$s</string>
<string name="title_seen">Marcar como leído</string>
<string name="title_unseen">Marcar como no leído</string>
<string name="title_flag">Marcar como favorito</string>
......@@ -198,9 +197,9 @@
<string name="title_draft_deleted">Borrador eliminado</string>
<string name="title_draft_saved">Borrador guardado</string>
<string name="title_queued">Enviando mensaje</string>
<string name="title_encrypt">Encrypt</string>
<string name="title_decrypt">Decrypt</string>
<string name="title_no_openpgp">OpenKeychain not found</string>
<string name="title_encrypt">Encriptar</string>
<string name="title_decrypt">Desencriptar</string>
<string name="title_no_openpgp">No se encontro OpenKeychain</string>
<string name="title_search">Buscar</string>
<string name="title_search_hint">Buscar en el servidor</string>
<string name="title_searching">Buscando \'%1$s\'</string>
......