Hide banner for xxx weeks

This commit is contained in:
M66B 2020-06-07 08:08:17 +02:00
parent 6e03cfcc85
commit 41663588cb
50 changed files with 137 additions and 134 deletions

View File

@ -80,6 +80,7 @@ public class FragmentPro extends FragmentBase implements SharedPreferences.OnSha
long banner_hidden = prefs.getLong("banner_hidden", 0);
cbHide.setChecked(banner_hidden > 0);
cbHide.setText(getString(R.string.title_pro_hide, ServiceUI.HIDE_BANNER));
cbHide.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override

View File

@ -62,6 +62,8 @@ public class ServiceUI extends IntentService {
static final int PI_SYNC = 13;
static final int PI_BANNER = 14;
static final int HIDE_BANNER = 2; // weeks
public ServiceUI() {
this(ServiceUI.class.getName());
}
@ -552,7 +554,7 @@ public class ServiceUI extends IntentService {
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
if (set) {
long now = new Date().getTime();
long interval = AlarmManager.INTERVAL_DAY * 14;
long interval = AlarmManager.INTERVAL_DAY * HIDE_BANNER * 7;
long due = interval - (now % interval);
long trigger = now + due;
Log.i("Set banner alarm at " + new Date(trigger) + " due=" + due);

View File

@ -1114,7 +1114,7 @@
To make FairEmail sustainable in the long term, some convenience and advanced features are not free to use.
FairEmail displays a small message to remind you of this, which will be removed if you purchase the pro features.
</string>
<string name="title_pro_hide">Hide small message for two weeks</string>
<string name="title_pro_hide">Hide small message for %1$d weeks</string>
<string name="title_pro_hint">Buying pro features will allow you to use all current and future pro features, will keep this app maintained, and supported.</string>
<string name="title_pro_price">Please see <a href="https://github.com/M66B/FairEmail/blob/master/FAQ.md#user-content-faq19">this FAQ</a> about the price of the pro features</string>
<string name="title_pro_pending">Purchase pending</string>
@ -1242,7 +1242,7 @@
<item>At the start</item>
<item>In the middle</item>
<item>At the end</item>
<item>Show completely</item>
<item>Show untruncated</item>
</string-array>
<string-array name="priorityNames">
<item>Low</item>

View File

@ -1158,7 +1158,7 @@
To make FairEmail sustainable in the long term, some convenience and advanced features are not free to use.
FairEmail displays a small message to remind you of this, which will be removed if you purchase the pro features.
</string>
<string name="title_pro_hide">Hide small message for two weeks</string>
<string name="title_pro_hide">Hide small message for %1$d weeks</string>
<string name="title_pro_hint">Buying pro features will allow you to use all current and future pro features, will keep this app maintained, and supported.</string>
<string name="title_pro_price">Please see <a href="https://github.com/M66B/FairEmail/blob/master/FAQ.md#user-content-faq19">this FAQ</a> about the price of the pro features</string>
<string name="title_pro_pending">Purchase pending</string>
@ -1290,7 +1290,7 @@
<item>At the start</item>
<item>In the middle</item>
<item>At the end</item>
<item>Show completely</item>
<item>Show untruncated</item>
</string-array>
<string-array name="priorityNames">
<item>Low</item>

View File

@ -1158,7 +1158,7 @@
To make FairEmail sustainable in the long term, some convenience and advanced features are not free to use.
FairEmail displays a small message to remind you of this, which will be removed if you purchase the pro features.
</string>
<string name="title_pro_hide">Hide small message for two weeks</string>
<string name="title_pro_hide">Hide small message for %1$d weeks</string>
<string name="title_pro_hint">Buying pro features will allow you to use all current and future pro features, will keep this app maintained, and supported.</string>
<string name="title_pro_price">Please see <a href="https://github.com/M66B/FairEmail/blob/master/FAQ.md#user-content-faq19">this FAQ</a> about the price of the pro features</string>
<string name="title_pro_pending">Purchase pending</string>
@ -1290,7 +1290,7 @@
<item>At the start</item>
<item>In the middle</item>
<item>At the end</item>
<item>Show completely</item>
<item>Show untruncated</item>
</string-array>
<string-array name="priorityNames">
<item>Low</item>

View File

@ -1158,7 +1158,7 @@
To make FairEmail sustainable in the long term, some convenience and advanced features are not free to use.
FairEmail displays a small message to remind you of this, which will be removed if you purchase the pro features.
</string>
<string name="title_pro_hide">Hide small message for two weeks</string>
<string name="title_pro_hide">Hide small message for %1$d weeks</string>
<string name="title_pro_hint">Buying pro features will allow you to use all current and future pro features, will keep this app maintained, and supported.</string>
<string name="title_pro_price">Please see <a href="https://github.com/M66B/FairEmail/blob/master/FAQ.md#user-content-faq19">this FAQ</a> about the price of the pro features</string>
<string name="title_pro_pending">Purchase pending</string>
@ -1290,7 +1290,7 @@
<item>At the start</item>
<item>In the middle</item>
<item>At the end</item>
<item>Show completely</item>
<item>Show untruncated</item>
</string-array>
<string-array name="priorityNames">
<item>Low</item>

View File

@ -1158,7 +1158,7 @@
To make FairEmail sustainable in the long term, some convenience and advanced features are not free to use.
FairEmail displays a small message to remind you of this, which will be removed if you purchase the pro features.
</string>
<string name="title_pro_hide">Hide small message for two weeks</string>
<string name="title_pro_hide">Hide small message for %1$d weeks</string>
<string name="title_pro_hint">Buying pro features will allow you to use all current and future pro features, will keep this app maintained, and supported.</string>
<string name="title_pro_price">Please see <a href="https://github.com/M66B/FairEmail/blob/master/FAQ.md#user-content-faq19">this FAQ</a> about the price of the pro features</string>
<string name="title_pro_pending">Purchase pending</string>
@ -1290,7 +1290,7 @@
<item>At the start</item>
<item>In the middle</item>
<item>At the end</item>
<item>Show completely</item>
<item>Show untruncated</item>
</string-array>
<string-array name="priorityNames">
<item>Low</item>

View File

@ -1114,7 +1114,7 @@
To make FairEmail sustainable in the long term, some convenience and advanced features are not free to use.
FairEmail displays a small message to remind you of this, which will be removed if you purchase the pro features.
</string>
<string name="title_pro_hide">Hide small message for two weeks</string>
<string name="title_pro_hide">Hide small message for %1$d weeks</string>
<string name="title_pro_hint">Pro xüsusiyyətlərinin alınması sizə, mövcud və gələcəkdəki pro xüsusiyyətləri istifadə etməyinizə icazə verəcək və tətbiqin uzunömürlü olması üçün bizə dəstək olacaq</string>
<string name="title_pro_price">Zəhmət olmasa pro xüsusiyyətlərin qiyməti haqqında <a href="https://github.com/M66B/open-source-email/blob/master/FAQ.md#user-content-faq19">bu TSS</a> səhifəsinə baxın</string>
<string name="title_pro_pending">Purchase pending</string>
@ -1242,7 +1242,7 @@
<item>At the start</item>
<item>In the middle</item>
<item>At the end</item>
<item>Show completely</item>
<item>Show untruncated</item>
</string-array>
<string-array name="priorityNames">
<item>Low</item>

View File

@ -1114,7 +1114,7 @@
За да бъде FairEmail устойчив в дългосрочен план, някои удобства и разширени функции не са безплатни.
FairEmail показва малко съобщение, което да ви напомня за това, което ще бъде премахнато, ако закупите pro функциите.
</string>
<string name="title_pro_hide">Скрийте малко съобщения за две седмици</string>
<string name="title_pro_hide">Hide small message for %1$d weeks</string>
<string name="title_pro_hint">Купуването на професионалните функции ще ви позволи да използвате всички настоящи и бъдещи професионални функции, ще поддържа това приложение поддържано.</string>
<string name="title_pro_price">Моля вижте <a href="https://github.com/M66B/FairEmail/blob/master/FAQ.md#user-content-faq19">ЧЗВ</a> за цената на PRO функциите</string>
<string name="title_pro_pending">Чакащо плащане</string>
@ -1242,7 +1242,7 @@
<item>В началото</item>
<item>По средата</item>
<item>Към края</item>
<item>Show completely</item>
<item>Show untruncated</item>
</string-array>
<string-array name="priorityNames">
<item>Нисък</item>

View File

@ -1114,7 +1114,7 @@
To make FairEmail sustainable in the long term, some convenience and advanced features are not free to use.
FairEmail displays a small message to remind you of this, which will be removed if you purchase the pro features.
</string>
<string name="title_pro_hide">Hide small message for two weeks</string>
<string name="title_pro_hide">Hide small message for %1$d weeks</string>
<string name="title_pro_hint">Buying pro features will allow you to use all current and future pro features, will keep this app maintained, and supported.</string>
<string name="title_pro_price">Please see <a href="https://github.com/M66B/FairEmail/blob/master/FAQ.md#user-content-faq19">this FAQ</a> about the price of the pro features</string>
<string name="title_pro_pending">Purchase pending</string>
@ -1242,7 +1242,7 @@
<item>At the start</item>
<item>In the middle</item>
<item>At the end</item>
<item>Show completely</item>
<item>Show untruncated</item>
</string-array>
<string-array name="priorityNames">
<item>Low</item>

View File

@ -1114,7 +1114,7 @@
To make FairEmail sustainable in the long term, some convenience and advanced features are not free to use.
FairEmail displays a small message to remind you of this, which will be removed if you purchase the pro features.
</string>
<string name="title_pro_hide">Hide small message for two weeks</string>
<string name="title_pro_hide">Hide small message for %1$d weeks</string>
<string name="title_pro_hint">Buying pro features will allow you to use all current and future pro features, will keep this app maintained, and supported.</string>
<string name="title_pro_price">Please see <a href="https://github.com/M66B/FairEmail/blob/master/FAQ.md#user-content-faq19">this FAQ</a> about the price of the pro features</string>
<string name="title_pro_pending">Purchase pending</string>
@ -1242,7 +1242,7 @@
<item>At the start</item>
<item>In the middle</item>
<item>At the end</item>
<item>Show completely</item>
<item>Show untruncated</item>
</string-array>
<string-array name="priorityNames">
<item>Low</item>

View File

@ -1114,7 +1114,7 @@
Perquè FairEmail sigui sostenible a llarg termini, algunes comoditats i funcions avançades no són gratuïtes dutilitzar.
FairEmail mostra un petit missatge per recordar-lo, que se suprimirà si adquiriu les funcions professionals.
</string>
<string name="title_pro_hide">Hide small message for two weeks</string>
<string name="title_pro_hide">Hide small message for %1$d weeks</string>
<string name="title_pro_hint">Comprar característiques Pro et permet utilitzar tota la funcionalitat Pro actual i futura i mantindrà el desenvolupament de l\'aplicació</string>
<string name="title_pro_price">Dona un cop d\'ull <a href="https://github.com/M66B/FairEmail/blob/master/FAQ.md#user-content-faq19">a les preguntes freqüents</a> per saber el preu de les característiques Pro</string>
<string name="title_pro_pending">Compra pendent</string>
@ -1242,7 +1242,7 @@
<item>Al començament</item>
<item>Al mig</item>
<item>Al final</item>
<item>Show completely</item>
<item>Show untruncated</item>
</string-array>
<string-array name="priorityNames">
<item>Baixa</item>

View File

@ -1135,7 +1135,7 @@
<string name="title_pro_info"> Vývoj FairEmail trval doslova tisíce hodin a i přesto lze většinu funkcí používat volně.
Abychom učinili FairEmail dlouhodobě udržitelným, některé pokročilé funkce a usnadnění nejsou volně k dispozici.
Jako připomínku téhož zobrazuje FairEmail stručnou zprávu, jež bude odstraněna, zakoupíte-li si funkce Pro. </string>
<string name="title_pro_hide">Skrýt stručnou zprávu na dva týdny</string>
<string name="title_pro_hide">Hide small message for %1$d weeks</string>
<string name="title_pro_hint">Zakoupením Pro funkcí získáte přístup ke všem současným i budoucím Pro funkcím a pomůžete zachovat tuto aplikaci udržovanou a podporovanou</string>
<string name="title_pro_price">Pro odůvodnění ceny Pro funkcí si prosím přečtěte <a href="https://github.com/M66B/open-source-email/blob/master/FAQ.md#user-content-faq19">časté dotazy</a></string>
<string name="title_pro_pending">Probíhá nákup</string>
@ -1265,7 +1265,7 @@
<item>Na začátku</item>
<item>Uprostřed</item>
<item>Na konci</item>
<item>Show completely</item>
<item>Zobrazit nezkrácené</item>
</string-array>
<string-array name="priorityNames">
<item>Nízká</item>

View File

@ -1113,7 +1113,7 @@
<string name="title_pro_info">Udvikling af FairEmail tog bogstaveligt talt tusinder af timer, også selvom de fleste funktioner er gratis at benytte.
         For at gøre FairEmail bæredygtig langsigtet, er visse bekvemmeligheds- og avancerede funktioner ikke gratis at bruge.
         FairEmail viser en lille besked for at minde dig om dette. Denne fjernes, hvis du køber Pro-funktionerne. </string>
<string name="title_pro_hide">Skjul små beskeder i to uger</string>
<string name="title_pro_hide">Hide small message for %1$d weeks</string>
<string name="title_pro_hint">Køb af Pro-funktioner vil tillade brug alle aktuelle og fremtidige Pro-funktioner samt sikre denne apps vedligeholdelse og understøttelse</string>
<string name="title_pro_price">Se venligst <a href="https://github.com/M66B/open-source-email/blob/master/FAQ.md#user-content-faq19">denne FAQ</a> ang. prisen for Pro-funktionerne</string>
<string name="title_pro_pending">Afventende køb</string>
@ -1241,7 +1241,7 @@
<item>I starten</item>
<item>I midten</item>
<item>Ved slutningen</item>
<item>Vis uforkortet</item>
<item>Show untruncated</item>
</string-array>
<string-array name="priorityNames">
<item>Lav</item>

View File

@ -1112,7 +1112,7 @@ Protokolle, die dem Standard nicht entsprechen, wie „Microsoft Exchange Web Se
Um FairEmail langfristig mit Support verfügbar zu halten, sind einige Komfort- und erweiterte Funktionen nicht kostenlos.
Zur Erinnerung zeigt FairEmail ein kleines Banner an, dies verschwindet beim Kauf der Pro-Funktionen.
</string>
<string name="title_pro_hide">Kleine Hinweisnachricht für zwei Wochen ausblenden</string>
<string name="title_pro_hide">Hide small message for %1$d weeks</string>
<string name="title_pro_hint">Der Erwerb der Pro-Funktionen erlaubt es Ihnen alle momentan und zukünftig verfügbaren Pro-Funktionen zu nutzen und ermöglicht die Weiterentwicklung und Pflege der App.</string>
<string name="title_pro_price">Informationen zum Preis der Pro-Funktionen finden Sie in der <a href="https://github.com/M66B/open-source-email/blob/master/FAQ.md#user-content-faq19">Hilfe</a></string>
<string name="title_pro_pending">Kauf ausstehend</string>
@ -1240,7 +1240,7 @@ Protokolle, die dem Standard nicht entsprechen, wie „Microsoft Exchange Web Se
<item>Am Anfang</item>
<item>In der Mitte</item>
<item>Am Ende</item>
<item>Vollständig anzeigen</item>
<item>Ungekürzt anzeigen</item>
</string-array>
<string-array name="priorityNames">
<item>Niedrig</item>

View File

@ -1112,7 +1112,7 @@
To make FairEmail sustainable in the long term, some convenience and advanced features are not free to use.
FairEmail displays a small message to remind you of this, which will be removed if you purchase the pro features.
</string>
<string name="title_pro_hide">Hide small message for two weeks</string>
<string name="title_pro_hide">Hide small message for %1$d weeks</string>
<string name="title_pro_hint">Buying pro features will allow you to use all current and future pro features, will keep this app maintained, and supported.</string>
<string name="title_pro_price">Please see <a href="https://github.com/M66B/FairEmail/blob/master/FAQ.md#user-content-faq19">this FAQ</a> about the price of the pro features</string>
<string name="title_pro_pending">Purchase pending</string>
@ -1240,7 +1240,7 @@
<item>At the start</item>
<item>In the middle</item>
<item>At the end</item>
<item>Show completely</item>
<item>Show untruncated</item>
</string-array>
<string-array name="priorityNames">
<item>Low</item>

View File

@ -1114,7 +1114,7 @@
To make FairEmail sustainable in the long term, some convenience and advanced features are not free to use.
FairEmail displays a small message to remind you of this, which will be removed if you purchase the pro features.
</string>
<string name="title_pro_hide">Hide small message for two weeks</string>
<string name="title_pro_hide">Hide small message for %1$d weeks</string>
<string name="title_pro_hint">Buying pro features will allow you to use all current and future pro features, will keep this app maintained, and supported.</string>
<string name="title_pro_price">Please see <a href="https://github.com/M66B/FairEmail/blob/master/FAQ.md#user-content-faq19">this FAQ</a> about the price of the pro features</string>
<string name="title_pro_pending">Purchase pending</string>
@ -1242,7 +1242,7 @@
<item>At the start</item>
<item>In the middle</item>
<item>At the end</item>
<item>Show completely</item>
<item>Show untruncated</item>
</string-array>
<string-array name="priorityNames">
<item>Low</item>

View File

@ -1115,7 +1115,7 @@
Para hacer a Fairemail sostenible en el largo plazo, algunas funciones de conveniencia y avanzadas no son de uso libre.
FairEmail muestra un pequeño mensaje para recordarte esto, que dejará de mostrarse si compras las funciones avanzadas.
</string>
<string name="title_pro_hide">Ocultar mensaje pequeño durante dos semanas</string>
<string name="title_pro_hide">Hide small message for %1$d weeks</string>
<string name="title_pro_hint">La compra de características Pro le permitirá usar todas las características Pro actuales y futuras, y ayudará al mantenimiento y desarrollo de esta aplicación</string>
<string name="title_pro_price">Por favor vea <a href="https://github.com/M66B/open-source-email/blob/master/FAQ.md#user-content-faq19">estas Preguntas Frecuentes</a> acerca del precio de las características Pro</string>
<string name="title_pro_pending">Compra pendiente</string>
@ -1243,7 +1243,7 @@
<item>Al principio</item>
<item>En el medio</item>
<item>Al final</item>
<item>Show completely</item>
<item>Show untruncated</item>
</string-array>
<string-array name="priorityNames">
<item>Baja</item>

View File

@ -1112,7 +1112,7 @@ Honekin aldeko eta kontrako botoen arteko oreka mantenduko da.
FairEmail epe luzera mantengarria izan dadin, erosotasun funtzio batzuk edo funtzio aurreratu batzuk ordainpekokoak dira.
FairEmail-ek mezu txiki bat bistaratzen du hau gogorarazteko, ordainpeko ezaugarriak erosiz gero mezua desagertzen da.
</string>
<string name="title_pro_hide">Ezkutatu mezu txikia bi astez</string>
<string name="title_pro_hide">Hide small message for %1$d weeks</string>
<string name="title_pro_hint">Ordainpeko ezaugarriak erostean oraingo eta etorkizuneko ordainpeko ezaugarri guztiak erabiltzeko eskubidea ematen dizu, eta aplikazio hau mantentzen lagunduko du.</string>
<string name="title_pro_price">Begiratu <a href="https://github.com/M66B/FairEmail/blob/master/FAQ.md#user-content-faq19">maiz egindako galderak</a> ordainpeko ezaugarrien salneurriari buruz</string>
<string name="title_pro_pending">Erosketa egiteke</string>
@ -1240,7 +1240,7 @@ Honekin aldeko eta kontrako botoen arteko oreka mantenduko da.
<item>Hasieran</item>
<item>Erdian</item>
<item>Amaieran</item>
<item>Show completely</item>
<item>Show untruncated</item>
</string-array>
<string-array name="priorityNames">
<item>Baxua</item>

View File

@ -92,7 +92,7 @@
<string name="menu_faq">پشتیبانی</string>
<string name="menu_translate">کمک به ترجمه</string>
<string name="menu_issue">گزارش اشکال</string>
<string name="menu_attribution">Attribution</string>
<string name="menu_attribution">انتساب‌ها</string>
<string name="menu_privacy">حریم خصوصی</string>
<string name="menu_about">درباره</string>
<string name="menu_pro">ویژگی‌ نسخه‌ی حرفه‌ای</string>
@ -126,10 +126,10 @@
<string name="title_setup_wizard_remark">برای رفتن به صندوق ورودی به عقب بروید</string>
<string name="title_setup_other">ارائه دهنده دیگر</string>
<string name="title_setup_gmail_support">حساب های گوگل فقط در نسخه‌های رسمی مجاز می‌شوند چون اندروید امضای برنامه را بررسی می‌کند</string>
<string name="title_setup_gmail_rationale">Please grant permissions to select an account and read your name</string>
<string name="title_setup_gmail_rationale">لطفا مجوز برای انتخاب حساب و خواندن نام شما را اعطا کنید</string>
<string name="title_setup_gmail_permissions">Google will ask for permissions to read, compose, send and permanently delete all your email. FairEmail will never delete your messages without your explicit consent.</string>
<string name="title_setup_gmail_drafts">اگر پوشه پیش‌نویس‌ها به‌وسیله IMAP قابل دسترسی نیست، می‌توان آن را در تنظیمات برچسب‌های جیمیل درست کرد</string>
<string name="title_setup_oauth_rationale">Authorize access to your %1$s account</string>
<string name="title_setup_oauth_rationale">برای دسترسی به %1$s حسابتان اجازه دهید</string>
<string name="title_setup_oauth_authorize">اجازه دهید</string>
<string name="title_setup_select_account">انتخاب حساب</string>
<string name="title_setup_instructions">دستورالعمل های راه‌اندازی</string>
@ -234,7 +234,7 @@
<string name="title_advanced_prefix_once">Prefix subject only once on replying or forwarding</string>
<string name="title_advanced_extended_reply">Use extended reply/forward header</string>
<string name="title_advanced_quote_reply">متن پاسخ نقل قول شده</string>
<string name="title_advanced_resize_reply">Resize images in replied text</string>
<string name="title_advanced_resize_reply">تغییر اندازه تصاویر در متن پاسخ داده شده</string>
<string name="title_advanced_signature_location">موقعیت امضاء</string>
<string name="title_advanced_signature_end">Add signature after quoted/forwarded message</string>
<string name="title_advanced_plain_only">فقط متن ساده را به صورت پیشفرض بفرست</string>
@ -277,28 +277,28 @@
<string name="title_advanced_circular">نمایش آیکون‌های گرد</string>
<string name="title_advanced_color_saturation">اشباع</string>
<string name="title_advanced_color_value">روشنایی</string>
<string name="title_advanced_color_threshold">Threshold letter color</string>
<string name="title_advanced_name_email">Show names and email addresses</string>
<string name="title_advanced_color_threshold">رنگ نویسه آستانه</string>
<string name="title_advanced_name_email">نام‌ها و نشانی‌های ایمیل را نمایش بده</string>
<string name="title_advanced_replace_name">Prefer a contact name over a sent name</string>
<string name="title_advanced_distinguish_contacts">Underline the sender when the sender is known as local \'to\' contact</string>
<string name="title_advanced_show_recipients">Show recipients in message header</string>
<string name="title_advanced_show_recipients">گیرندگان را در سرتیتر نمایش بده</string>
<string name="title_advanced_font_size_sender">اندازه قلم فرستنده</string>
<string name="title_advanced_font_size_subject">اندازه قلم موضوع</string>
<string name="title_advanced_subject_top">نمایش موضوع در بالای فرستنده</string>
<string name="title_advanced_subject_italic">نمایش موضوع به‌صورت italic</string>
<string name="title_advanced_subject_elipsed">When needed, shorten the subject</string>
<string name="title_advanced_keywords">Show keywords in message header</string>
<string name="title_advanced_subject_elipsed">هنگامی که نیاز باشد، موضوع را کوچک‌تر کن</string>
<string name="title_advanced_keywords">کلیدواژه‌ها را در سرتیتر پیام نمایش بده</string>
<string name="title_advanced_flags">نمایش ستاره‌ها</string>
<string name="title_advanced_flags_background">Show colored background instead of colored stars</string>
<string name="title_advanced_flags_background">به‌جای ستاره‌های رنگی، پس‌زمینه رنگی را نمایش بده</string>
<string name="title_advanced_preview">نمایش دادن پیش‌نمایش پیام</string>
<string name="title_advanced_preview_italic">Show message preview in italics</string>
<string name="title_advanced_preview_italic">پیش‌نمایش پیام را به‌صورت ایتالیک نمایش بده</string>
<string name="title_advanced_preview_lines">شمار خط‌های پیش‌نمایش</string>
<string name="title_advanced_archive_trash">نمایش دکمه‌ها برای بایگانی یا حذف پیام</string>
<string name="title_advanced_move">نمایش دکمه برای انتقال پیام</string>
<string name="title_advanced_addresses">نمایش جزئیات آدرس به صورت پیش‌فرض</string>
<string name="title_advanced_attachments_alt">نمایش پیوست‌ها بعد از متن پیام</string>
<string name="title_advanced_contrast">Use high contrast for message text</string>
<string name="title_advanced_monospaced">Use monospaced font for message text</string>
<string name="title_advanced_contrast">از کنتراست زیاد برای متن پیام استفاده کن</string>
<string name="title_advanced_monospaced">از فونت monospaced(تک پهنه) برای متن پیام استفاده کن</string>
<string name="title_advanced_text_color">تنظیم رنگ‌های متن</string>
<string name="title_advanced_text_size">نمایش متن‌های کوچک و بزرگ</string>
<string name="title_advanced_text_align">Show left/center/right aligned texts</string>
@ -365,7 +365,7 @@
<string name="title_advanced_tracking">Automatically recognize and disable tracking images</string>
<string name="title_advanced_hide_timezone">Send messages without timezone data</string>
<string name="title_advanced_display_hidden">نمایش متن پیام‌های پنهان</string>
<string name="title_advanced_secure">Hide from recent apps screen and prevent taking screenshots</string>
<string name="title_advanced_secure">از صفحه برنامه های اخیر پنهان شو و از گرفتن اسکرین‌شات جلوگیری کن</string>
<string name="title_advanced_pin">پین</string>
<string name="title_advanced_biometrics_timeout">وقفه تایید هویت بیومتریک</string>
<string name="title_advanced_sign_default">امضاء به‌صورت پیشفرض</string>
@ -384,7 +384,7 @@
<string name="title_advanced_conversation_actions_replies">پیشنهاد متن‌های پاسخ</string>
<string name="title_advanced_language_detection">تشخیص زبان متن پیام</string>
<string name="title_advanced_fts">ساخت شاخص جستجو</string>
<string name="title_advanced_fts_indexed">%1$d / %2$d messages indexed (%3$s)</string>
<string name="title_advanced_fts_indexed">%1$d / %2$d پیام ایندکس شد (%3$s)</string>
<string name="title_advanced_english">استفاده از تنظیمات کشور آمریکا</string>
<string name="title_advanced_watchdog">بطور دوره ای بررسی کن که آیا FairEmail هنوز فعال است یا خیر</string>
<string name="title_advanced_optimize">به‌طور خودکار تنظیمات را بهینه‌سازی کن</string>
@ -408,7 +408,7 @@
<string name="title_advanced_deleted_unseen">When disabled, unread messages are kept on the device forever</string>
<string name="title_advanced_sync_kept_hint">This will transfer extra data and consume extra battery power, especially if a lot of messages are stored on the device</string>
<string name="title_advanced_sync_folders_hint">Disabling this will reduce data and battery usage somewhat, but will disable updating the list of folders too</string>
<string name="title_advanced_sync_delay_hint">This will slow down synchronizing messages</string>
<string name="title_advanced_sync_delay_hint">این سرعت همگام‌سازی پیام‌ها را کاهش خواهد داد</string>
<string name="title_advanced_suggest_local_hint">In addition to contacts provided by Android. Contact data will be stored for newly sent or received messages only when enabled.</string>
<string name="title_advanced_usenet_hint">بین متن و امضا \'-- \' درج کنید</string>
<string name="title_advanced_send_reminders_hint">Show a warning when the message text or the subject is empty or when an attachment might be missing</string>
@ -442,7 +442,7 @@
<string name="title_advanced_display_harmful_hint">Disabling this option might be harmful to your privacy</string>
<string name="title_advanced_display_hidden_hint">This can result in odd looking and double texts</string>
<string name="title_advanced_display_pin_hint">A PIN takes precedence over biometrics authentication</string>
<string name="title_advanced_badge_hint">Only available on supported launchers</string>
<string name="title_advanced_badge_hint">تنها روی راه‌اندازهای پشتیبانی‌شده در دسترس است</string>
<string name="title_advanced_notify_action_hint">حداکثر سه کنش نشان داده خواهد شد</string>
<string name="title_advanced_notify_remove_hint">New message notifications will always be removed on being swiped away and on marking messages read</string>
<string name="title_advanced_notify_manage_hint">Tap on the channel name to set the channel properties</string>
@ -550,14 +550,14 @@
<string name="title_synchronize_more">Synchronize more messages</string>
<string name="title_synchronize_enabled">همگام‌سازی</string>
<string name="title_delete_local">حذف پیام های داخلی</string>
<string name="title_delete_browsed">Delete browsed/searched messages</string>
<string name="title_delete_browsed">حذف پیام‌های مرور شده/جستجو شده</string>
<string name="title_empty_trash">خالی کردن زباله‌دان</string>
<string name="title_empty_spam">خالی کردن هرزنامه</string>
<string name="title_edit_properties">ویرایش ویژگی‌ها</string>
<string name="title_edit_rules">ویرایش دستورات</string>
<string name="title_create_channel">Create notification channel</string>
<string name="title_edit_channel">Edit notification channel</string>
<string name="title_delete_channel">Delete notification channel</string>
<string name="title_create_channel">کانال اعلان بساز</string>
<string name="title_edit_channel">ویرایش کانال اعلان</string>
<string name="title_delete_channel">حذف کانال اعلان</string>
<string name="title_insert_contact">افزودن مخاطب</string>
<string name="title_edit_contact">ویرایش مخاطب</string>
<string name="title_create_sub_folder">ساخت زیرپوشه</string>
@ -572,7 +572,7 @@
<string name="title_folder_name">نام پوشه</string>
<string name="title_display_name">نامی که نمایش داده می شود</string>
<string name="title_show_folders">نمایش پوشه‌های پنهان</string>
<string name="title_show_flagged">Show starred message count</string>
<string name="title_show_flagged">نمایش شمار پیام‌های ستاره‌دار</string>
<string name="title_subscribed_only">Subscribed only</string>
<string name="title_apply_to_all">Apply to all &#8230;</string>
<string name="title_hide_folder">پنهان‌سازی پوشه</string>
@ -616,7 +616,7 @@
<string name="title_filters_active">One or more filters active</string>
<string name="title_duplicate_in">Duplicate message in %1$s</string>
<string name="title_subject_reply">پاسخ: %1$s</string>
<string name="title_subject_forward">فوروارد: %1$s</string>
<string name="title_subject_forward">هدایت: %1$s</string>
<string name="title_seen">علامت زدن به عنوان خوانده شده</string>
<string name="title_unseen">علامت زدن به عنوان خوانده نشده</string>
<string name="title_hide">پنهان کردن</string>
@ -629,7 +629,7 @@
<string name="title_importance_normal">متوسط</string>
<string name="title_importance_high">بالا</string>
<string name="title_search_in_text">جستجو در متن &#8230;</string>
<string name="title_forward">فوروارد</string>
<string name="title_forward">هدایت</string>
<string name="title_new_message">پیام جدید</string>
<string name="title_editasnew">ویرایش به‌عنوان جدید</string>
<string name="title_create_rule">ساخت قانون &#8230;</string>
@ -743,7 +743,7 @@
<string name="title_send_at">ارسال در &#8230;</string>
<string name="title_send_encryption">رمزنگاری</string>
<string name="title_send_priority">اولويت</string>
<string name="title_no_server">No server found at \'%1$s\'</string>
<string name="title_no_server">هیچ سروری در \'%1$s\' یافت نشد</string>
<string name="title_style_bold">درشت</string>
<string name="title_style_italic">مورب</string>
<string name="title_style_underline">خط زیر</string>
@ -756,7 +756,7 @@
<string name="title_add_image_attach">پیوست</string>
<string name="title_add_image_resize">تغییر اندازه</string>
<string name="title_add_image_privacy">حذف موقعیت جغرافیایی</string>
<string name="title_add_resize_pixels">&lt; %1$d pixels</string>
<string name="title_add_resize_pixels">&lt;%1$d پیکسل</string>
<string name="title_add_image_select">انتخاب فایل</string>
<string name="title_add_attachment">افزودن پیوست</string>
<string name="title_attachment_file">پیوست فایل</string>
@ -772,7 +772,7 @@
<string name="title_edit_formatted_text">Edit as reformatted text</string>
<string name="title_select_certificate">انتخاب کلید عمومی</string>
<string name="title_certificate_missing">No public key for %1$s</string>
<string name="title_certificate_invalid">Public key of %1$s is invalid</string>
<string name="title_certificate_invalid">کلید عمومی %1$s نامعتبر است</string>
<string name="title_no_key">کلید خصوصی نیست</string>
<string name="title_invalid_key">کلید خصوصی بی اعتبار</string>
<string name="title_unknown_key">کلید خصوصی با هیچ کلید رمزنگاری همخوانی ندارد</string>
@ -786,14 +786,14 @@
<string name="title_subject_reminder">موضوع خالی است</string>
<string name="title_text_reminder">پیام خالی است</string>
<string name="title_attachment_keywords">attached,attachment,attachments,included</string>
<string name="title_attachment_reminder">Did you intend to add an attachment?</string>
<string name="title_attachment_reminder">آیا می‌خواستید که یک پیوست اضافه کنید؟</string>
<string name="title_attachments_missing">همه پیوست ها دانلود نشدند</string>
<string name="title_dialog_hint">This dialog can be enabled again via the three-dots menu in the top action bar</string>
<string name="title_draft_deleted">از پیش‌نویس صرف‌نظر شد</string>
<string name="title_draft_saved">پیش‌نویس ذخیره شد</string>
<string name="title_ask_send_via">ارسال پیام به %1$s از طریق %2$s?</string>
<string name="title_queued">درحال ارسال پیام</string>
<string name="title_queued_at">Message will be sent around %1$s</string>
<string name="title_queued_at">پیام دور و بر %1$s ارسال خواهد شد</string>
<string name="title_sign">امضا</string>
<string name="title_encrypt">رمزگذاری</string>
<string name="title_decrypt">رمزگشایی</string>
@ -801,7 +801,7 @@
<string name="title_no_openpgp">OpenKeychain یافت نشد</string>
<string name="title_user_interaction">در حال انتقال به OpenKeychain</string>
<string name="title_signed_data">Verify the signature to show the message text</string>
<string name="title_not_encrypted">Message is not signed or encrypted</string>
<string name="title_not_encrypted">پیام امضا یا رمزنگاری نشده</string>
<string name="title_no_sign_key">کلید امضائی انتخاب نشده</string>
<string name="title_reset_sign_key">بازنشانی کلید امضا</string>
<string name="title_signature_none">پیام امضا نشده</string>
@ -965,10 +965,10 @@
<string name="title_legend_primary">اصلی</string>
<string name="title_legend_subscribed">مشترک شده به</string>
<string name="title_legend_rule">دارای قوانین</string>
<string name="title_legend_similar">Search similar messages</string>
<string name="title_legend_similar">جستجوی پیام‌های مشابه</string>
<string name="title_legend_notify">آگاه‌سازی از پیام‌های جدید</string>
<string name="title_legend_sync_keep">تعداد روزهای همگام سازی / برای نگه داشتن پیام ها</string>
<string name="title_legend_download_fetch">Number of message downloaded / headers fetched</string>
<string name="title_legend_download_fetch">شمار پیام‌های بارگیری شده/ سرتیتر بدست آورده شده</string>
<string name="title_legend_stop">توقف پردازش دستورات</string>
<string name="title_legend_thread">گفتگو</string>
<string name="title_legend_zoom">تغییر اندازه متن</string>
@ -980,17 +980,17 @@
<string name="title_legend_signed">امضا شده</string>
<string name="title_legend_encrypted">رمزنگاری شده</string>
<string name="title_legend_auth">تأیید اعتبار ناموفق بود</string>
<string name="title_legend_found">Was found</string>
<string name="title_legend_found">یافت شد</string>
<string name="title_legend_snoozed">موقتا در حالت تعلیق است</string>
<string name="title_legend_browsed">مرور یا جستجو</string>
<string name="title_legend_answered">پاسخ داده شده است</string>
<string name="title_legend_forwarded">Was forwarded</string>
<string name="title_legend_forwarded">هدایت شده</string>
<string name="title_legend_plain_only">فقط متن ساده</string>
<string name="title_legend_receipt">Receipt was requested</string>
<string name="title_legend_attachment">پیوست دارد</string>
<string name="title_legend_flagged">مورد علاقه</string>
<string name="title_legend_contacts">مدیریت مخاطبین</string>
<string name="title_legend_search">Search for sender</string>
<string name="title_legend_search">جستجو برای فرستنده</string>
<string name="title_legend_view">مشاهده مخاطبین</string>
<string name="title_legend_hide">پنهان کردن محتوا</string>
<string name="title_legend_download">دریافت محتوا</string>
@ -1114,7 +1114,7 @@
To make FairEmail sustainable in the long term, some convenience and advanced features are not free to use.
FairEmail displays a small message to remind you of this, which will be removed if you purchase the pro features.
</string>
<string name="title_pro_hide">پنهان‌کردن پیام‌های کوچک برای دو هفته</string>
<string name="title_pro_hide">Hide small message for %1$d weeks</string>
<string name="title_pro_hint">خرید نسخه حرفه‌ای به شما اجازه استفاده از تمامی ویژگی‌های حرفه‌ای فعلی و آینده را خواهد داد. همچنین موجب حفظ و پشتیبانی آن می‌شود</string>
<string name="title_pro_price">لطفاً ببینید <a href="https://github.com/M66B/open-source-email/blob/master/FAQ.md#user-content-faq19">این پرسش و پاسخ</a> درباره ارزش و قیمت نسخه حرفه‌ای</string>
<string name="title_pro_pending">خرید در انتظار</string>
@ -1242,7 +1242,7 @@
<item>در شروع</item>
<item>در وسط</item>
<item>در پایان</item>
<item>Show completely</item>
<item>Show untruncated</item>
</string-array>
<string-array name="priorityNames">
<item>پایین</item>

View File

@ -263,7 +263,7 @@
<string name="title_advanced_cards">Käytä korttityyliä taulukkotyylin sijaan</string>
<string name="title_advanced_date_header">Ryhmittely päivämäärän mukaan</string>
<string name="title_advanced_threading">Keskustelujen ketjuttaminen</string>
<string name="title_advanced_threading_unread">Show number of unread messages in conversations</string>
<string name="title_advanced_threading_unread">Näytä lukemattomien viestien lukumäärä keskusteluissa</string>
<string name="title_advanced_indentation">Tasaa vastaanotetut/lähetetyt viestit keskusteluissa vasemmalle/oikealle</string>
<string name="title_advanced_highlight_unread">Korosta lukemattomat viestit</string>
<string name="title_advanced_highlight_subject">Korosta aihe</string>
@ -397,7 +397,7 @@
<string name="title_advanced_enabled_hint">Estä tai salli viestien vastaanotto globaalisti</string>
<string name="title_advanced_manual_hint">Jos automaattinen synkronointi on pois käytöstä, synkronoinnin voi tehdä manuaalisesti vetämällä alaspäin viestilistassa.</string>
<string name="title_advanced_poll_hint">Ajoittainen synkronointi vertaa paikallisia ja palvelimen viestejä joka kerta ja voi aiheuttaa ylimääräistä akun käyttöä varsinkin, kun synkronoitavia viestejä on paljon. Koko ajan synkronointi välttää tämän synkronoimalla jatkuvasti vain muutokset.</string>
<string name="title_advanced_optimized_hint">This option can be optimized automatically (miscellaneous settings)</string>
<string name="title_advanced_optimized_hint">Tämä valinta voidaan optimoida automaattisesti (sekaliset asetukset)</string>
<string name="title_advanced_schedule_hint">Napauta aikaa asettaaksesi sen</string>
<string name="title_advanced_check_mx">Tarkista lähettäjien sähköpostiosoitteet viestejä synkronoitaessa</string>
<string name="title_advanced_check_reply">Tarkista vastaussähköpostiosoitteet viestejä synkronoitaessa</string>
@ -724,7 +724,7 @@
<string name="title_reply_to">Vastausosoite:</string>
<string name="title_cc">Kopio:</string>
<string name="title_bcc">Piilokopio:</string>
<string name="title_recipients">%1$d recipients</string>
<string name="title_recipients">%1$d vastaanottajaa</string>
<string name="title_via_identity">Kautta:</string>
<string name="title_sent">Lähetetty:</string>
<string name="title_received">Vastaanotettu:</string>
@ -1112,7 +1112,7 @@
Jotta FairEmailin kehittäminen olisi mahdollista, jotkin mukavuutta tuovat ja edistyneemmät ominaisuudet eivät ole ilmaisia.
FairEmail näyttää pienen viestin muistuttaakseen sinua tästä. Viesti poistuu, jos ostat pro-ominaisuudet.
</string>
<string name="title_pro_hide">Piilota pieni viesti kahden viikon ajaksi</string>
<string name="title_pro_hide">Hide small message for %1$d weeks</string>
<string name="title_pro_hint">Pro-ominaisuuksien ostaminen antaa oikeudet käyttää nykyisiä ja tulevia pro-ominaisuuksia sekä auttaa ylläpitämään ja tukemaan tätä sovellusta</string>
<string name="title_pro_price">Katso <a href="https://github.com/M66B/open-source-email/blob/master/FAQ.md#user-content-faq19">nämä usein kysytyt kysymykset</a> pro-ominaisuuksien hinnasta</string>
<string name="title_pro_pending">Ostos odottaa vahvistusta</string>
@ -1240,7 +1240,7 @@
<item>Alusta</item>
<item>Keskeltä</item>
<item>Lopusta</item>
<item>Show completely</item>
<item>Show untruncated</item>
</string-array>
<string-array name="priorityNames">
<item>Alhainen</item>

View File

@ -1114,7 +1114,7 @@
Pour rendre FairEmail durable à long terme, certaines fonctionnalités pratiques et avancées ne sont pas gratuites.
FairEmail affiche une bannière pour vous le rappeler, laquelle sera retirée si vous achetez les fonctionnalités pro.
</string>
<string name="title_pro_hide">Masquer la bannière pendant deux semaines</string>
<string name="title_pro_hide">Hide small message for %1$d weeks</string>
<string name="title_pro_hint">Lachat des fonctionnalités pro vous autorisera à utiliser toutes les fonctionnalités Pro actuelles et futures et permettra de maintenir et de soutenir cette application.</string>
<string name="title_pro_price">Veuillez voir <a href="https://github.com/M66B/open-source-email/blob/master/FAQ.md#user-content-faq19">cette FAQ</a> à propos du prix des fonctionnalités pro</string>
<string name="title_pro_pending">Achat en attente</string>
@ -1242,7 +1242,7 @@
<item>Au début</item>
<item>Au milieu</item>
<item>À la fin</item>
<item>Afficher en entier</item>
<item>Afficher non tronqué</item>
</string-array>
<string-array name="priorityNames">
<item>Basse</item>

View File

@ -1114,7 +1114,7 @@
Pour rendre FairEmail durable à long terme, certaines fonctionnalités pratiques et avancées ne sont pas gratuites.
FairEmail affiche une bannière pour vous le rappeler, laquelle sera retirée si vous achetez les fonctionnalités Pro.
</string>
<string name="title_pro_hide">Masquer la bannière pendant deux semaines</string>
<string name="title_pro_hide">Hide small message for %1$d weeks</string>
<string name="title_pro_hint">L\'achat des fonctionnalités Pro vous autorisera à utiliser toutes les fonctionnalités Pro actuelles et futures et permettra de maintenir et de soutenir cette application.</string>
<string name="title_pro_price">Veuillez voir <a href="https://github.com/M66B/open-source-email/blob/master/FAQ.md#user-content-faq19">cette FAQ</a> à propos du prix des fonctionnalités Pro</string>
<string name="title_pro_pending">Achat en attente</string>
@ -1242,7 +1242,7 @@
<item>Au début</item>
<item>Au milieu</item>
<item>À la fin</item>
<item>Afficher en entier</item>
<item>Afficher non tronqué</item>
</string-array>
<string-array name="priorityNames">
<item>Basse</item>

View File

@ -1114,7 +1114,7 @@
To make FairEmail sustainable in the long term, some convenience and advanced features are not free to use.
FairEmail displays a small message to remind you of this, which will be removed if you purchase the pro features.
</string>
<string name="title_pro_hide">Hide small message for two weeks</string>
<string name="title_pro_hide">Hide small message for %1$d weeks</string>
<string name="title_pro_hint">Buying pro features will allow you to use all current and future pro features, will keep this app maintained, and supported.</string>
<string name="title_pro_price">Sjoch asjebleaft <a href="https://github.com/M66B/FairEmail/blob/master/FAQ.md#user-content-faq19">dizze FAQ</a> oer de priis fan \'e pro-funksjes</string>
<string name="title_pro_pending">Purchase pending</string>
@ -1242,7 +1242,7 @@
<item>Oan it begjin</item>
<item>In the middle</item>
<item>Oan de ein</item>
<item>Show completely</item>
<item>Show untruncated</item>
</string-array>
<string-array name="priorityNames">
<item>Leech</item>

View File

@ -1114,7 +1114,7 @@
To make FairEmail sustainable in the long term, some convenience and advanced features are not free to use.
FairEmail displays a small message to remind you of this, which will be removed if you purchase the pro features.
</string>
<string name="title_pro_hide">Hide small message for two weeks</string>
<string name="title_pro_hide">Hide small message for %1$d weeks</string>
<string name="title_pro_hint">Buying pro features will allow you to use all current and future pro features, will keep this app maintained, and supported.</string>
<string name="title_pro_price">Please see <a href="https://github.com/M66B/FairEmail/blob/master/FAQ.md#user-content-faq19">this FAQ</a> about the price of the pro features</string>
<string name="title_pro_pending">Purchase pending</string>
@ -1242,7 +1242,7 @@
<item>At the start</item>
<item>In the middle</item>
<item>At the end</item>
<item>Show completely</item>
<item>Show untruncated</item>
</string-array>
<string-array name="priorityNames">
<item>Low</item>

View File

@ -1121,7 +1121,7 @@
<string name="title_pro_info">Razvoj FairEmaila trajao je doslovno tisuće sati i bez obzira na to što je većina značajki besplatna za korištenje.
Da bi FairEmail dugoročno bio održiv, neke pogodnosti i napredne značajke se ne mogu besplatno koristiti.
FairEmail prikazuje malu poruku koja vas podsjeća na to, a koja će biti uklonjena ako kupite profesionalne značajke. </string>
<string name="title_pro_hide">Hide small message for two weeks</string>
<string name="title_pro_hide">Hide small message for %1$d weeks</string>
<string name="title_pro_hint">Kupnja pro funkcija će vam omogućiti da koristite sve trenutne i buduće mogućnosti aplikacije i zadržat će ovu aplikaciju održavanu i podržanu</string>
<string name="title_pro_price">Pogledajte <a href="https://github.com/M66B/open-source-email/blob/master/FAQ.md#user-content-faq19"> ovaj FAQ </a> za cijenu pro funkcija</string>
<string name="title_pro_pending">Kupnja na čekanju</string>
@ -1250,7 +1250,7 @@
<item>Na početku</item>
<item>U sredini</item>
<item>Na kraju</item>
<item>Show completely</item>
<item>Show untruncated</item>
</string-array>
<string-array name="priorityNames">
<item>Nizak</item>

View File

@ -1114,7 +1114,7 @@ A szabályokkal kapcsolatos funkciók csak pro verzióban érhetők el.
Hogy a FairEmailt fenntarthatóvá tudjam tenni, néhány kényelem haladó beállítások nem ingyenesek.
A FairEmail egy kicsi üzenetet jelenít meg hogy emlékeztessen erről, ami el lesz távolítva ha megvásárolod a pro verziót.
</string>
<string name="title_pro_hide">A kicsi üzenet elrejtése két hétre</string>
<string name="title_pro_hide">Hide small message for %1$d weeks</string>
<string name="title_pro_hint">A pro funkciók megvásárlása engedélyezi neked hogy használd az összes jelenlegi és jövőbeli pro funkciót amellett hogy fenntartva és támogatva tartja az alkalmazást.</string>
<string name="title_pro_price">Kérlek lásd <a href="https://github.com/M66B/FairEmail/blob/master/FAQ.md#user-content-faq19">EZt a GYIK-et</a> a pro funkciók áráért</string>
<string name="title_pro_pending">A vásárlás folyamatban van</string>
@ -1242,7 +1242,7 @@ A szabályokkal kapcsolatos funkciók csak pro verzióban érhetők el.
<item>Az elején</item>
<item>A közepén</item>
<item>A végén</item>
<item>Show completely</item>
<item>Show untruncated</item>
</string-array>
<string-array name="priorityNames">
<item>Alacsony</item>

View File

@ -1113,7 +1113,7 @@
Per rendere FairEmail sostenibile a lungo termine, alcuni vantaggi e funzionalità avanzate non sono gratuiti.
FairEmail per ricordare questo mostra un piccolo messaggio, che verrà rimosso se acquisti le funzioni pro.
</string>
<string name="title_pro_hide">Nascondi un piccolo messaggio per due settimane</string>
<string name="title_pro_hide">Hide small message for %1$d weeks</string>
<string name="title_pro_hint">L\'acquisto di funzionalità a pagamento ti permetterà di utilizzare tutte le attuali e future funzioni, aiuterà il mantenimento e il supporto dell\'app</string>
<string name="title_pro_price">Consulta <a href="https://github.com/M66B/open-source-email/blob/master/FAQ.md#user-content-faq19">queste FAQ</a> riguardo il prezzo delle funzioni a pagamento</string>
<string name="title_pro_pending">Acquisto in sospeso</string>
@ -1241,7 +1241,7 @@
<item>All\'inizio</item>
<item>Nel mezzo</item>
<item>Alla fine</item>
<item>Show completely</item>
<item>Show untruncated</item>
</string-array>
<string-array name="priorityNames">
<item>Basso</item>

View File

@ -1136,7 +1136,7 @@
To make FairEmail sustainable in the long term, some convenience and advanced features are not free to use.
FairEmail displays a small message to remind you of this, which will be removed if you purchase the pro features.
</string>
<string name="title_pro_hide">Hide small message for two weeks</string>
<string name="title_pro_hide">Hide small message for %1$d weeks</string>
<string name="title_pro_hint">Buying pro features will allow you to use all current and future pro features, will keep this app maintained, and supported.</string>
<string name="title_pro_price">Please see <a href="https://github.com/M66B/FairEmail/blob/master/FAQ.md#user-content-faq19">this FAQ</a> about the price of the pro features</string>
<string name="title_pro_pending">Purchase pending</string>
@ -1266,7 +1266,7 @@
<item>At the start</item>
<item>In the middle</item>
<item>At the end</item>
<item>Show completely</item>
<item>Show untruncated</item>
</string-array>
<string-array name="priorityNames">
<item>Low</item>

View File

@ -1099,7 +1099,7 @@ PlayストアでFairEmailを評価できれば幸いです。
<string name="title_pro_info">FairEmailの開発には文字通り数千時間かかりましたが、殆どの機能は無料で使用出来ます。
FairEmailを長期的持続可能にする為、プロ機能課金が有ります。一部の便利な機能と高度な機能は無料では使用出来ません。
FairEmailは、Pro機能購入の為に上部に小さなメッセージを表示します。プロ機能を購入すると削除されます。</string>
<string name="title_pro_hide">Hide small message for two weeks</string>
<string name="title_pro_hide">Hide small message for %1$d weeks</string>
<string name="title_pro_hint">プロ機能を購入すると、現在及び将来全てのプロ機能を使用出来る様になりアプリとサポートが維持されます</string>
<string name="title_pro_price"><a href="https://github.com/M66B/FairEmail/blob/master/FAQ.md#user-content-faq19">このFAQ</a>をご覧ください。プロ機能の価格や購入法も有ります</string>
<string name="title_pro_pending">購入保留中</string>
@ -1226,7 +1226,7 @@ FairEmailは、Pro機能購入の為に上部に小さなメッセージを表
<item>開始時</item>
<item>途中</item>
<item>最後</item>
<item>Show completely</item>
<item>Show untruncated</item>
</string-array>
<string-array name="priorityNames">
<item></item>

View File

@ -1103,7 +1103,7 @@
To make FairEmail sustainable in the long term, some convenience and advanced features are not free to use.
FairEmail displays a small message to remind you of this, which will be removed if you purchase the pro features.
</string>
<string name="title_pro_hide">Hide small message for two weeks</string>
<string name="title_pro_hide">Hide small message for %1$d weeks</string>
<string name="title_pro_hint">Buying pro features will allow you to use all current and future pro features, will keep this app maintained, and supported.</string>
<string name="title_pro_price">Please see <a href="https://github.com/M66B/FairEmail/blob/master/FAQ.md#user-content-faq19">this FAQ</a> about the price of the pro features</string>
<string name="title_pro_pending">Purchase pending</string>
@ -1230,7 +1230,7 @@
<item>At the start</item>
<item>In the middle</item>
<item>At the end</item>
<item>Show completely</item>
<item>Show untruncated</item>
</string-array>
<string-array name="priorityNames">
<item>Low</item>

View File

@ -1136,7 +1136,7 @@
To make FairEmail sustainable in the long term, some convenience and advanced features are not free to use.
FairEmail displays a small message to remind you of this, which will be removed if you purchase the pro features.
</string>
<string name="title_pro_hide">Hide small message for two weeks</string>
<string name="title_pro_hide">Hide small message for %1$d weeks</string>
<string name="title_pro_hint">Buying pro features will allow you to use all current and future pro features, will keep this app maintained, and supported.</string>
<string name="title_pro_price">Please see <a href="https://github.com/M66B/FairEmail/blob/master/FAQ.md#user-content-faq19">this FAQ</a> about the price of the pro features</string>
<string name="title_pro_pending">Purchase pending</string>
@ -1266,7 +1266,7 @@
<item>At the start</item>
<item>In the middle</item>
<item>At the end</item>
<item>Show completely</item>
<item>Show untruncated</item>
</string-array>
<string-array name="priorityNames">
<item>Low</item>

View File

@ -1110,7 +1110,7 @@
<string name="title_pro_purchase">Koop</string>
<string name="title_pro_once">Eenmalig</string>
<string name="title_pro_info">Het ontwikkelen van FairEmail kostte letterlijk duizenden uren en ondanks dat zijn de meeste functies gratis te gebruiken. Om FairEmail op de lange termijn duurzaam te maken, zijn sommige gebruiksgemak en geavanceerde functies niet gratis te gebruiken. FairEmail geeft een klein bericht weer om u hieraan te herinneren, dat wordt verwijderd als u de pro functies aanschaft.</string>
<string name="title_pro_hide">Verberg het kleine bericht voor twee weken</string>
<string name="title_pro_hide">Verberg het kleine bericht voor %1$d weken</string>
<string name="title_pro_hint">Het kopen van pro functies geeft toegang tot alle huidige en toekomstige pro functies en zorgt voor onderhoud en ondersteuning van deze app.</string>
<string name="title_pro_price">Zie <a href="https://github.com/M66B/open-source-email/blob/master/FAQ.md#user-content-faq19">deze FAQ</a> over de prijs van de pro-functies</string>
<string name="title_pro_pending">Aankoop in behandeling</string>
@ -1238,7 +1238,7 @@
<item>Aan het begin</item>
<item>In het midden</item>
<item>Aan het einde</item>
<item>Toon volledig</item>
<item>Toon ongekort</item>
</string-array>
<string-array name="priorityNames">
<item>Laag</item>

View File

@ -1113,7 +1113,7 @@ Dette vil bidra til å opprettholde en balanse mellom ugunstige og gunstige anme
         For å gjøre FairEmail bærekraftig på lang sikt er det noe brukervennlighet og avanserte funksjoner som ikke er gratis å bruke.
         FairEmail viser en liten melding for å minne deg på dette, og som vil bli fjernet hvis du kjøper pro funksjonene.
</string>
<string name="title_pro_hide">Hide small message for two weeks</string>
<string name="title_pro_hide">Hide small message for %1$d weeks</string>
<string name="title_pro_hint">Ved å kjøpe pro-funksjoner kan du bruke alle aktuelle og fremtidige pro-funksjoner, og vil holde denne appen vedlikeholdt og støttet</string>
<string name="title_pro_price">Vennligst se <a href="https://github.com/M66B/open-source-email/blob/master/FAQ.md#user-content-faq19">denne FAQ</a> om pris på Pro-funksjonene</string>
<string name="title_pro_pending">Ventende kjøp</string>
@ -1241,7 +1241,7 @@ Dette vil bidra til å opprettholde en balanse mellom ugunstige og gunstige anme
<item>I begynnelsen</item>
<item>I midten</item>
<item>På slutten</item>
<item>Show completely</item>
<item>Show untruncated</item>
</string-array>
<string-array name="priorityNames">
<item>Lav</item>

View File

@ -1113,7 +1113,7 @@ Dette vil bidra til å opprettholde en balanse mellom ugunstige og gunstige anme
         For å gjøre FairEmail bærekraftig på lang sikt er det noe brukervennlighet og avanserte funksjoner som ikke er gratis å bruke.
         FairEmail viser en liten melding for å minne deg på dette, og som vil bli fjernet hvis du kjøper pro funksjonene.
</string>
<string name="title_pro_hide">Hide small message for two weeks</string>
<string name="title_pro_hide">Hide small message for %1$d weeks</string>
<string name="title_pro_hint">Ved å kjøpe pro-funksjoner kan du bruke alle aktuelle og fremtidige pro-funksjoner, og vil holde denne appen vedlikeholdt og støttet</string>
<string name="title_pro_price">Vennligst se <a href="https://github.com/M66B/open-source-email/blob/master/FAQ.md#user-content-faq19">denne FAQ</a> om pris på Pro-funksjonene</string>
<string name="title_pro_pending">Ventende kjøp</string>
@ -1241,7 +1241,7 @@ Dette vil bidra til å opprettholde en balanse mellom ugunstige og gunstige anme
<item>I begynnelsen</item>
<item>I midten</item>
<item>På slutten</item>
<item>Show completely</item>
<item>Show untruncated</item>
</string-array>
<string-array name="priorityNames">
<item>Lav</item>

View File

@ -1134,7 +1134,7 @@
<string name="title_pro_info">Opracowanie FairEmail zajęło dosłownie tysiące godzin i pomimo tego większość funkcji jest darmowea
W celu utrzymania FairEmail w dłuższej perspektywie, niektóre udogodnienia i zaawansowane funkcje nie są darmowe.
FairEmail wyświetla o tym małą wiadomość przypominającą, która zostanie usunięta, jeśli kupisz funkcje pro. </string>
<string name="title_pro_hide">Ukryj małą wiadomość na dwa tygodnie</string>
<string name="title_pro_hide">Hide small message for %1$d weeks</string>
<string name="title_pro_hint">Kupno funkcji pro pozwoli Ci używać wszystkich obecnych i przyszłych funkcji pro oraz będzie utrzymywać i wspierać aplikację</string>
<string name="title_pro_price">Zobacz <a href="https://github.com/M66B/open-source-email/blob/master/FAQ.md#user-content-faq19">ten FAQ</a> na temat cen funkcji pro</string>
<string name="title_pro_pending">Zakup w toku</string>
@ -1264,7 +1264,7 @@ FairEmail wyświetla o tym małą wiadomość przypominającą, która zostanie
<item>Na początku</item>
<item>W środku</item>
<item>Na końcu</item>
<item>Show completely</item>
<item>Show untruncated</item>
</string-array>
<string-array name="priorityNames">
<item>Niski</item>

View File

@ -1115,7 +1115,7 @@
Para tornar o FairEmail sustentável a longo prazo, algumas conveniências e recursos avançados não são gratuitos.
O FairEmail exibe uma pequena mensagem para lembrá-lo disso, que será removida se você comprar os recursos profissionais.
</string>
<string name="title_pro_hide">Ocultar mensagem pequena por duas semanas</string>
<string name="title_pro_hide">Hide small message for %1$d weeks</string>
<string name="title_pro_hint">Comprar recursos Pro permitirá que você use todas as funcionalidades atuais e futuras, ajudará na manutenção e suporte deste app</string>
<string name="title_pro_price">Por favor, veja <a href="https://github.com/M66B/open-source-email/blob/master/FAQ.md#user-content-faq19">este FAQ</a> sobre o preço dos recursos Pro</string>
<string name="title_pro_pending">Compra pendente</string>
@ -1243,7 +1243,7 @@
<item>No início</item>
<item>No meio</item>
<item>No final</item>
<item>Show completely</item>
<item>Show untruncated</item>
</string-array>
<string-array name="priorityNames">
<item>Baixa</item>

View File

@ -1114,7 +1114,7 @@
To make FairEmail sustainable in the long term, some convenience and advanced features are not free to use.
FairEmail displays a small message to remind you of this, which will be removed if you purchase the pro features.
</string>
<string name="title_pro_hide">Hide small message for two weeks</string>
<string name="title_pro_hide">Hide small message for %1$d weeks</string>
<string name="title_pro_hint">Buying pro features will allow you to use all current and future pro features, will keep this app maintained, and supported.</string>
<string name="title_pro_price">Please see <a href="https://github.com/M66B/FairEmail/blob/master/FAQ.md#user-content-faq19">this FAQ</a> about the price of the pro features</string>
<string name="title_pro_pending">Purchase pending</string>
@ -1242,7 +1242,7 @@
<item>At the start</item>
<item>In the middle</item>
<item>At the end</item>
<item>Show completely</item>
<item>Show untruncated</item>
</string-array>
<string-array name="priorityNames">
<item>Low</item>

View File

@ -1124,7 +1124,7 @@
Pentru a face FairEmail sustenabil pe termen lung, unele caracteristici avansate sau ce țin de comoditate nu se pot folosi gratuit.
FairEmail arată un mic mesaj care să vă reamintească de asta, care se poate ascunde dacă achiziționați caracteristicile Pro.
</string>
<string name="title_pro_hide">Ascunde micul mesaj timp de două săptămâni</string>
<string name="title_pro_hide">Hide small message for %1$d weeks</string>
<string name="title_pro_hint">Cumpărarea caracteristicilor Pro vă va permite să utilizați toate caracteristicile actuale cât și cele viitoare, și ajută la dezvoltarea acestei aplicații</string>
<string name="title_pro_price">Vizitați <a href="https://github.com/M66B/open-source-email/blob/master/FAQ.md#user-content-faq19">acestă pagină</a> pentru a afla despre prețurile caracteristicilor Pro</string>
<string name="title_pro_pending">Achiziție în așteptare</string>
@ -1253,7 +1253,7 @@
<item>La început</item>
<item>La mijloc</item>
<item>La sfârșit</item>
<item>Show completely</item>
<item>Show untruncated</item>
</string-array>
<string-array name="priorityNames">
<item>Redusă</item>

View File

@ -1136,7 +1136,7 @@
Чтобы сделать проект FairEmail устойчивым в долгосрочной перспективе, некоторые удобства и расширенные функции являются платными.
FairEmail показывает небольшое сообщение, чтобы напоминать вам об этом. Оно будет удалено, если вы приобретёте функционал Pro.
</string>
<string name="title_pro_hide">Скрыть маленькое сообщение на две недели</string>
<string name="title_pro_hide">Hide small message for %1$d weeks</string>
<string name="title_pro_hint">Покупка функций Pro позволит вам использовать все реализованные и будущие Pro-функции.</string>
<string name="title_pro_price">Ознакомьтесь с <a href="https://github.com/M66B/open-source-email/blob/master/FAQ.md#user-content-faq19">​​этим часто задаваемым вопросом</a> о цене функций Pro.</string>
<string name="title_pro_pending">Ожидание обработки покупки</string>
@ -1266,7 +1266,7 @@
<item>В начале</item>
<item>В середине</item>
<item>В конце</item>
<item>Показать полностью</item>
<item>Показать без сокращений</item>
</string-array>
<string-array name="priorityNames">
<item>Низкий</item>

View File

@ -1136,7 +1136,7 @@
To make FairEmail sustainable in the long term, some convenience and advanced features are not free to use.
FairEmail displays a small message to remind you of this, which will be removed if you purchase the pro features.
</string>
<string name="title_pro_hide">Hide small message for two weeks</string>
<string name="title_pro_hide">Hide small message for %1$d weeks</string>
<string name="title_pro_hint">Buying pro features will allow you to use all current and future pro features, will keep this app maintained, and supported.</string>
<string name="title_pro_price">Please see <a href="https://github.com/M66B/FairEmail/blob/master/FAQ.md#user-content-faq19">this FAQ</a> about the price of the pro features</string>
<string name="title_pro_pending">Purchase pending</string>
@ -1266,7 +1266,7 @@
<item>At the start</item>
<item>In the middle</item>
<item>At the end</item>
<item>Show completely</item>
<item>Show untruncated</item>
</string-array>
<string-array name="priorityNames">
<item>Low</item>

View File

@ -1136,7 +1136,7 @@
Zaradi vzdržljivosti FairEmaila na dolgi rok nekatere priročne in napredne značilnosti niso brezplačne.
FairEmail za ta namen prikaže majhno sporočilo, ki bo odstranjeno, če kupite značilnosti Pro.
</string>
<string name="title_pro_hide">Hide small message for two weeks</string>
<string name="title_pro_hide">Hide small message for %1$d weeks</string>
<string name="title_pro_hint">Nakup značilnosti Pro bo omogočil uporabo vseh trenutnih in prihodnjih značilnosti, vzdrževanje in podporo tega programa.</string>
<string name="title_pro_price">Oglejte si <a href="https://github.com/M66B/FairEmail/blob/master/FAQ.md#user-content-faq19">ta pogosta vprašanja</a> glede cene značilnosti Pro.</string>
<string name="title_pro_pending">Nakup je na čakanju.</string>
@ -1266,7 +1266,7 @@
<item>Na začetku</item>
<item>Na sredini</item>
<item>Na koncu</item>
<item>Show completely</item>
<item>Show untruncated</item>
</string-array>
<string-array name="priorityNames">
<item>Nizka</item>

View File

@ -1125,7 +1125,7 @@
Да би FairEmail био одржив на дуже стазе, неке погодности и напредне функционалности нису бесплатне.
FairEmail приказује малу поруку да Вас подсети на ово, која се може уклонити куповином премијум функционалности.
</string>
<string name="title_pro_hide">Hide small message for two weeks</string>
<string name="title_pro_hide">Hide small message for %1$d weeks</string>
<string name="title_pro_hint">Куповина премијум функционалности ће Вам дозволити да користите све тренутне и будуће премијум функције, и бринуће се да се апликација одржава и да буде подржана.</string>
<string name="title_pro_price">Видите ова <a href="https://github.com/M66B/FairEmail/blob/master/FAQ.md#user-content-faq19">често постављана питања</a> о цени премијум функционалности</string>
<string name="title_pro_pending">Куповина на чекању</string>
@ -1254,7 +1254,7 @@
<item>Са почетка</item>
<item>У средини</item>
<item>Са краја</item>
<item>Show completely</item>
<item>Show untruncated</item>
</string-array>
<string-array name="priorityNames">
<item>Низак</item>

View File

@ -1113,7 +1113,7 @@
För att göra FairEmail hållbar på lång sikt är vissa bekvämlighet och avancerade funktioner inte fria att använda.
FairEmail visar ett litet meddelande för att påminna dig om detta, som kommer att tas bort om du köper pro-funktionerna.
</string>
<string name="title_pro_hide">Dölj små meddelanden i två veckor</string>
<string name="title_pro_hide">Hide small message for %1$d weeks</string>
<string name="title_pro_hint">Att köpa pro-funktioner gör att du kan använda alla aktuella och framtida pro-funktioner, kommer att göra att denna app underhålls och stöds</string>
<string name="title_pro_price">Se <a href="https://github.com/M66B/open-source-email/blob/master/FAQ.md#user-content-faq19">dessa vanliga frågor</a> om pris på pro-funktionerna</string>
<string name="title_pro_pending">Väntande köp</string>
@ -1241,7 +1241,7 @@
<item>I början</item>
<item>I mitten</item>
<item>I slutet</item>
<item>Visa helt</item>
<item>Show untruncated</item>
</string-array>
<string-array name="priorityNames">
<item>Låg</item>

View File

@ -1114,7 +1114,7 @@
FairEmail\'i uzun vadede sürdürülebilir kılmak için, bazı kolaylıkların ve gelişmiş özelliklerin kullanımı ücretsiz değildir.
FairEmail size bunu hatırlatmak için, pro özellikleri satın alırsanız kaldırılacak olan küçük bir mesaj göstermektedir.
</string>
<string name="title_pro_hide">Hide small message for two weeks</string>
<string name="title_pro_hide">Hide small message for %1$d weeks</string>
<string name="title_pro_hint">Pro özelliklerin satın alınması, mevcut ve gelecekteki tüm pro özelliklerin kullanılmasına izin verecek ve bu uygulamayı ayakta tutup destekleyecek</string>
<string name="title_pro_price">Lütfen pro özelliklerin fiyatı için <a href="https://github.com/M66B/open-source-email/blob/master/FAQ.md#user-content-faq19">bu SSS sayfasını</a> görün</string>
<string name="title_pro_pending">Satın alma beklemede</string>
@ -1242,7 +1242,7 @@
<item>Başlangıçta</item>
<item>Ortada</item>
<item>Sonunda</item>
<item>Show completely</item>
<item>Show untruncated</item>
</string-array>
<string-array name="priorityNames">
<item>Düşük</item>

View File

@ -1136,7 +1136,7 @@
To make FairEmail sustainable in the long term, some convenience and advanced features are not free to use.
FairEmail displays a small message to remind you of this, which will be removed if you purchase the pro features.
</string>
<string name="title_pro_hide">Hide small message for two weeks</string>
<string name="title_pro_hide">Hide small message for %1$d weeks</string>
<string name="title_pro_hint">Buying pro features will allow you to use all current and future pro features, will keep this app maintained, and supported.</string>
<string name="title_pro_price">Please see <a href="https://github.com/M66B/FairEmail/blob/master/FAQ.md#user-content-faq19">this FAQ</a> about the price of the pro features</string>
<string name="title_pro_pending">Purchase pending</string>
@ -1266,7 +1266,7 @@
<item>At the start</item>
<item>In the middle</item>
<item>At the end</item>
<item>Show completely</item>
<item>Show untruncated</item>
</string-array>
<string-array name="priorityNames">
<item>Low</item>

View File

@ -1103,7 +1103,7 @@
To make FairEmail sustainable in the long term, some convenience and advanced features are not free to use.
FairEmail displays a small message to remind you of this, which will be removed if you purchase the pro features.
</string>
<string name="title_pro_hide">Hide small message for two weeks</string>
<string name="title_pro_hide">Hide small message for %1$d weeks</string>
<string name="title_pro_hint">Buying pro features will allow you to use all current and future pro features, will keep this app maintained, and supported.</string>
<string name="title_pro_price">Please see <a href="https://github.com/M66B/FairEmail/blob/master/FAQ.md#user-content-faq19">this FAQ</a> about the price of the pro features</string>
<string name="title_pro_pending">Purchase pending</string>
@ -1230,7 +1230,7 @@
<item>At the start</item>
<item>In the middle</item>
<item>At the end</item>
<item>Show completely</item>
<item>Show untruncated</item>
</string-array>
<string-array name="priorityNames">
<item>Low</item>

View File

@ -1102,7 +1102,7 @@
<string name="title_pro_info">毫不夸张地说我在开发FairEmail上花费了数千小时尽管如此多数功能依旧可免费使用。
为了让FairEmail开发维持下去免费版无法使用一些便利和高级的功能。
FairEmail会显示一条消息来提醒您这一点这条消息在您购买专业版后将被移除。</string>
<string name="title_pro_hide">将升级为 Pro 版横幅隐藏两周</string>
<string name="title_pro_hide">Hide small message for %1$d weeks</string>
<string name="title_pro_hint">购买专业版将获得现在以及未来更新中全部专业版功能,并将支持开发者维护这个应用</string>
<string name="title_pro_price">请参见<a href="https://github.com/M66B/open-source-email/blob/master/FAQ.md#user-content-faq19">常见问题</a>关于专业版的价格</string>
<string name="title_pro_pending">购买待处理</string>
@ -1229,7 +1229,7 @@ FairEmail会显示一条消息来提醒您这一点这条消息在您购买
<item>主题开头</item>
<item>主题中部</item>
<item>主题末尾</item>
<item>完整显示</item>
<item>显示未删节的</item>
</string-array>
<string-array name="priorityNames">
<item></item>

View File

@ -1103,7 +1103,7 @@
To make FairEmail sustainable in the long term, some convenience and advanced features are not free to use.
FairEmail displays a small message to remind you of this, which will be removed if you purchase the pro features.
</string>
<string name="title_pro_hide">Hide small message for two weeks</string>
<string name="title_pro_hide">Hide small message for %1$d weeks</string>
<string name="title_pro_hint">Buying pro features will allow you to use all current and future pro features, will keep this app maintained, and supported.</string>
<string name="title_pro_price">Please see <a href="https://github.com/M66B/FairEmail/blob/master/FAQ.md#user-content-faq19">this FAQ</a> about the price of the pro features</string>
<string name="title_pro_pending">Purchase pending</string>
@ -1230,7 +1230,7 @@
<item>At the start</item>
<item>In the middle</item>
<item>At the end</item>
<item>Show completely</item>
<item>Show untruncated</item>
</string-array>
<string-array name="priorityNames">
<item>Low</item>

View File

@ -1253,7 +1253,7 @@
To make FairEmail sustainable in the long term, some convenience and advanced features are not free to use.
FairEmail displays a small message to remind you of this, which will be removed if you purchase the pro features.
</string>
<string name="title_pro_hide">Hide small message for two weeks</string>
<string name="title_pro_hide">Hide small message for %1$d weeks</string>
<string name="title_pro_hint">Buying pro features will allow you to use all current and future pro features, will keep this app maintained, and supported.</string>
<string name="title_pro_price">Please see <a href="https://github.com/M66B/FairEmail/blob/master/FAQ.md#user-content-faq19">this FAQ</a> about the price of the pro features</string>
<string name="title_pro_pending">Purchase pending</string>