From 1d9a89d0b35c8176a043697fc9a2b32ad27a3aaf Mon Sep 17 00:00:00 2001 From: M66B Date: Fri, 7 Sep 2018 11:08:20 +0000 Subject: [PATCH] Added rate menu --- FAQ.md | 3 ++ .../java/eu/faircode/email/ActivityView.java | 40 ++++++++++++++++++- app/src/main/res/values-af/strings.xml | 4 ++ app/src/main/res/values-ar-rBH/strings.xml | 4 ++ app/src/main/res/values-ar-rEG/strings.xml | 4 ++ app/src/main/res/values-ar-rSA/strings.xml | 4 ++ app/src/main/res/values-ar-rYE/strings.xml | 4 ++ app/src/main/res/values-ar/strings.xml | 4 ++ app/src/main/res/values-ca/strings.xml | 4 ++ app/src/main/res/values-cs/strings.xml | 4 ++ app/src/main/res/values-da/strings.xml | 4 ++ app/src/main/res/values-de/strings.xml | 4 ++ app/src/main/res/values-el/strings.xml | 4 ++ app/src/main/res/values-en/strings.xml | 4 ++ app/src/main/res/values-es-rES/strings.xml | 4 ++ app/src/main/res/values-fi/strings.xml | 4 ++ app/src/main/res/values-fr/strings.xml | 4 ++ app/src/main/res/values-he/strings.xml | 4 ++ app/src/main/res/values-hu/strings.xml | 4 ++ app/src/main/res/values-it/strings.xml | 4 ++ app/src/main/res/values-iw/strings.xml | 4 ++ app/src/main/res/values-ja/strings.xml | 4 ++ app/src/main/res/values-ko/strings.xml | 4 ++ app/src/main/res/values-nb/strings.xml | 4 ++ app/src/main/res/values-nl/strings.xml | 4 ++ app/src/main/res/values-no/strings.xml | 4 ++ app/src/main/res/values-pl/strings.xml | 4 ++ app/src/main/res/values-pt-rBR/strings.xml | 4 ++ app/src/main/res/values-pt-rPT/strings.xml | 4 ++ app/src/main/res/values-ro/strings.xml | 4 ++ app/src/main/res/values-ru/strings.xml | 4 ++ app/src/main/res/values-sr/strings.xml | 4 ++ app/src/main/res/values-sv-rSE/strings.xml | 4 ++ app/src/main/res/values-tr/strings.xml | 4 ++ app/src/main/res/values-uk/strings.xml | 4 ++ app/src/main/res/values-vi/strings.xml | 4 ++ app/src/main/res/values-zh-rCN/strings.xml | 4 ++ app/src/main/res/values-zh-rTW/strings.xml | 4 ++ app/src/main/res/values/strings.xml | 5 +++ 39 files changed, 191 insertions(+), 1 deletion(-) diff --git a/FAQ.md b/FAQ.md index ca2ab288..66858599 100644 --- a/FAQ.md +++ b/FAQ.md @@ -2,6 +2,8 @@ If you have a feature request or found a bug, you can report it [as an issue](https://github.com/M66B/open-source-email/issues). +If you have a question, please check the frequently asked questions below first. At the bottom you can find how you can ask other questions. + ## Frequently Asked Questions @@ -130,3 +132,4 @@ See [here](https://support.microsoft.com/en-us/help/12409/microsoft-account-app-
If you have another question, you can use [this forum](https://forum.xda-developers.com/android/apps-games/source-email-t3824168). +Registration is free. diff --git a/app/src/main/java/eu/faircode/email/ActivityView.java b/app/src/main/java/eu/faircode/email/ActivityView.java index 960562eb..6b321fde 100644 --- a/app/src/main/java/eu/faircode/email/ActivityView.java +++ b/app/src/main/java/eu/faircode/email/ActivityView.java @@ -22,6 +22,7 @@ package eu.faircode.email; import android.app.Activity; import android.content.BroadcastReceiver; import android.content.Context; +import android.content.DialogInterface; import android.content.Intent; import android.content.IntentFilter; import android.content.res.Configuration; @@ -60,6 +61,7 @@ import javax.mail.Address; import androidx.annotation.NonNull; import androidx.annotation.Nullable; import androidx.appcompat.app.ActionBarDrawerToggle; +import androidx.appcompat.app.AlertDialog; import androidx.drawerlayout.widget.DrawerLayout; import androidx.fragment.app.FragmentManager; import androidx.fragment.app.FragmentTransaction; @@ -148,6 +150,9 @@ public class ActivityView extends ActivityBilling implements FragmentManager.OnB case R.string.menu_about: onMenuAbout(); break; + case R.string.menu_rate: + onMenuRate(); + break; case R.string.menu_other: onMenuOtherApps(); break; @@ -202,6 +207,9 @@ public class ActivityView extends ActivityBilling implements FragmentManager.OnB drawerArray.add(new DrawerItem(ActivityView.this, R.layout.item_drawer, R.drawable.baseline_info_24, R.string.menu_about)); + if (getIntentRate().resolveActivity(getPackageManager()) != null) + drawerArray.add(new DrawerItem(ActivityView.this, R.layout.item_drawer, R.drawable.baseline_star_24, R.string.menu_rate)); + if (getIntentOtherApps().resolveActivity(getPackageManager()) != null) drawerArray.add(new DrawerItem(ActivityView.this, R.layout.item_drawer, R.drawable.baseline_get_app_24, R.string.menu_other)); @@ -452,6 +460,13 @@ public class ActivityView extends ActivityBilling implements FragmentManager.OnB return intent; } + private Intent getIntentRate() { + Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=" + BuildConfig.APPLICATION_ID)); + if (intent.resolveActivity(getPackageManager()) == null) + intent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://play.google.com/store/apps/details?id=" + BuildConfig.APPLICATION_ID)); + return intent; + } + private Intent getIntentOtherApps() { Intent intent = new Intent(Intent.ACTION_VIEW); intent.setData(Uri.parse("https://play.google.com/store/apps/dev?id=8420080860664580239")); @@ -514,6 +529,30 @@ public class ActivityView extends ActivityBilling implements FragmentManager.OnB fragmentTransaction.commit(); } + private void onMenuRate() { + Intent faq = getIntentFAQ(); + if (faq.resolveActivity(getPackageManager()) == null) + startActivity(getIntentRate()); + else { + AlertDialog.Builder builder = new AlertDialog.Builder(this); + builder + .setMessage(R.string.title_issue) + .setPositiveButton(R.string.title_yes, new DialogInterface.OnClickListener() { + @Override + public void onClick(DialogInterface dialog, int which) { + startActivity(getIntentFAQ()); + } + }) + .setNegativeButton(R.string.title_no, new DialogInterface.OnClickListener() { + @Override + public void onClick(DialogInterface dialog, int which) { + startActivity(getIntentRate()); + } + }) + .show(); + } + } + private void onMenuOtherApps() { startActivity(getIntentOtherApps()); } @@ -665,7 +704,6 @@ public class ActivityView extends ActivityBilling implements FragmentManager.OnB startActivityForResult(create, REQUEST_ATTACHMENT); } - @Override protected void onActivityResult(int requestCode, int resultCode, Intent data) { Log.i(Helper.TAG, "View onActivityResult request=" + requestCode + " result=" + resultCode + " data=" + data); diff --git a/app/src/main/res/values-af/strings.xml b/app/src/main/res/values-af/strings.xml index 0bf85ecb..a395d028 100644 --- a/app/src/main/res/values-af/strings.xml +++ b/app/src/main/res/values-af/strings.xml @@ -30,6 +30,7 @@ Pro features Privacy About + Rate this app Other apps End-user license agreement I agree @@ -176,6 +177,9 @@ Closing Swipe left to trash; swipe right to archive (if available); long press to mark read/unread Understood + Do you have a question or problem? + Yes + No This is a pro feature List of pro features Buy diff --git a/app/src/main/res/values-ar-rBH/strings.xml b/app/src/main/res/values-ar-rBH/strings.xml index 60d91ab4..628e7c55 100644 --- a/app/src/main/res/values-ar-rBH/strings.xml +++ b/app/src/main/res/values-ar-rBH/strings.xml @@ -46,6 +46,7 @@ Pro features Privacy About + Rate this app Other apps End-user license agreement I agree @@ -192,6 +193,9 @@ Closing Swipe left to trash; swipe right to archive (if available); long press to mark read/unread Understood + Do you have a question or problem? + Yes + No This is a pro feature List of pro features Buy diff --git a/app/src/main/res/values-ar-rEG/strings.xml b/app/src/main/res/values-ar-rEG/strings.xml index 60d91ab4..628e7c55 100644 --- a/app/src/main/res/values-ar-rEG/strings.xml +++ b/app/src/main/res/values-ar-rEG/strings.xml @@ -46,6 +46,7 @@ Pro features Privacy About + Rate this app Other apps End-user license agreement I agree @@ -192,6 +193,9 @@ Closing Swipe left to trash; swipe right to archive (if available); long press to mark read/unread Understood + Do you have a question or problem? + Yes + No This is a pro feature List of pro features Buy diff --git a/app/src/main/res/values-ar-rSA/strings.xml b/app/src/main/res/values-ar-rSA/strings.xml index 60d91ab4..628e7c55 100644 --- a/app/src/main/res/values-ar-rSA/strings.xml +++ b/app/src/main/res/values-ar-rSA/strings.xml @@ -46,6 +46,7 @@ Pro features Privacy About + Rate this app Other apps End-user license agreement I agree @@ -192,6 +193,9 @@ Closing Swipe left to trash; swipe right to archive (if available); long press to mark read/unread Understood + Do you have a question or problem? + Yes + No This is a pro feature List of pro features Buy diff --git a/app/src/main/res/values-ar-rYE/strings.xml b/app/src/main/res/values-ar-rYE/strings.xml index 60d91ab4..628e7c55 100644 --- a/app/src/main/res/values-ar-rYE/strings.xml +++ b/app/src/main/res/values-ar-rYE/strings.xml @@ -46,6 +46,7 @@ Pro features Privacy About + Rate this app Other apps End-user license agreement I agree @@ -192,6 +193,9 @@ Closing Swipe left to trash; swipe right to archive (if available); long press to mark read/unread Understood + Do you have a question or problem? + Yes + No This is a pro feature List of pro features Buy diff --git a/app/src/main/res/values-ar/strings.xml b/app/src/main/res/values-ar/strings.xml index 60d91ab4..628e7c55 100644 --- a/app/src/main/res/values-ar/strings.xml +++ b/app/src/main/res/values-ar/strings.xml @@ -46,6 +46,7 @@ Pro features Privacy About + Rate this app Other apps End-user license agreement I agree @@ -192,6 +193,9 @@ Closing Swipe left to trash; swipe right to archive (if available); long press to mark read/unread Understood + Do you have a question or problem? + Yes + No This is a pro feature List of pro features Buy diff --git a/app/src/main/res/values-ca/strings.xml b/app/src/main/res/values-ca/strings.xml index 0bf85ecb..a395d028 100644 --- a/app/src/main/res/values-ca/strings.xml +++ b/app/src/main/res/values-ca/strings.xml @@ -30,6 +30,7 @@ Pro features Privacy About + Rate this app Other apps End-user license agreement I agree @@ -176,6 +177,9 @@ Closing Swipe left to trash; swipe right to archive (if available); long press to mark read/unread Understood + Do you have a question or problem? + Yes + No This is a pro feature List of pro features Buy diff --git a/app/src/main/res/values-cs/strings.xml b/app/src/main/res/values-cs/strings.xml index 3b52f92b..c5ccb411 100644 --- a/app/src/main/res/values-cs/strings.xml +++ b/app/src/main/res/values-cs/strings.xml @@ -38,6 +38,7 @@ Pro features Privacy About + Rate this app Other apps End-user license agreement I agree @@ -184,6 +185,9 @@ Closing Swipe left to trash; swipe right to archive (if available); long press to mark read/unread Understood + Do you have a question or problem? + Yes + No This is a pro feature List of pro features Buy diff --git a/app/src/main/res/values-da/strings.xml b/app/src/main/res/values-da/strings.xml index b7bf8dee..56477616 100644 --- a/app/src/main/res/values-da/strings.xml +++ b/app/src/main/res/values-da/strings.xml @@ -30,6 +30,7 @@ Pro funktioner Privatliv Om + Rate this app Andre apps Slutbrugerlicensaftale Jeg accepterer @@ -176,6 +177,9 @@ Lukker Swipe left to trash; swipe right to archive (if available); long press to mark read/unread Forstået + Do you have a question or problem? + Yes + No Dette er en pro funktion Liste over pro funktioner Køb diff --git a/app/src/main/res/values-de/strings.xml b/app/src/main/res/values-de/strings.xml index 9e6e1b05..893188f1 100644 --- a/app/src/main/res/values-de/strings.xml +++ b/app/src/main/res/values-de/strings.xml @@ -30,6 +30,7 @@ Pro-Funktionen Datenschutz Über + Rate this app Weitere Apps Endbenutzer-Lizenzvereinbarung Ich stimme zu @@ -176,6 +177,9 @@ Schließen Nach links wischen, um in den Papierkorb zu werfen; nach rechts wischen zum archivieren (sofern verfügbar); langes drücken, um als gelesen/ungelesen zu markieren Verstanden + Do you have a question or problem? + Yes + No Dies ist eine Pro-Funktion Liste der Pro-Funktionen Kaufen diff --git a/app/src/main/res/values-el/strings.xml b/app/src/main/res/values-el/strings.xml index 0bf85ecb..a395d028 100644 --- a/app/src/main/res/values-el/strings.xml +++ b/app/src/main/res/values-el/strings.xml @@ -30,6 +30,7 @@ Pro features Privacy About + Rate this app Other apps End-user license agreement I agree @@ -176,6 +177,9 @@ Closing Swipe left to trash; swipe right to archive (if available); long press to mark read/unread Understood + Do you have a question or problem? + Yes + No This is a pro feature List of pro features Buy diff --git a/app/src/main/res/values-en/strings.xml b/app/src/main/res/values-en/strings.xml index 0bf85ecb..a395d028 100644 --- a/app/src/main/res/values-en/strings.xml +++ b/app/src/main/res/values-en/strings.xml @@ -30,6 +30,7 @@ Pro features Privacy About + Rate this app Other apps End-user license agreement I agree @@ -176,6 +177,9 @@ Closing Swipe left to trash; swipe right to archive (if available); long press to mark read/unread Understood + Do you have a question or problem? + Yes + No This is a pro feature List of pro features Buy diff --git a/app/src/main/res/values-es-rES/strings.xml b/app/src/main/res/values-es-rES/strings.xml index 0bf85ecb..a395d028 100644 --- a/app/src/main/res/values-es-rES/strings.xml +++ b/app/src/main/res/values-es-rES/strings.xml @@ -30,6 +30,7 @@ Pro features Privacy About + Rate this app Other apps End-user license agreement I agree @@ -176,6 +177,9 @@ Closing Swipe left to trash; swipe right to archive (if available); long press to mark read/unread Understood + Do you have a question or problem? + Yes + No This is a pro feature List of pro features Buy diff --git a/app/src/main/res/values-fi/strings.xml b/app/src/main/res/values-fi/strings.xml index 0bf85ecb..a395d028 100644 --- a/app/src/main/res/values-fi/strings.xml +++ b/app/src/main/res/values-fi/strings.xml @@ -30,6 +30,7 @@ Pro features Privacy About + Rate this app Other apps End-user license agreement I agree @@ -176,6 +177,9 @@ Closing Swipe left to trash; swipe right to archive (if available); long press to mark read/unread Understood + Do you have a question or problem? + Yes + No This is a pro feature List of pro features Buy diff --git a/app/src/main/res/values-fr/strings.xml b/app/src/main/res/values-fr/strings.xml index 5102561e..413795ec 100644 --- a/app/src/main/res/values-fr/strings.xml +++ b/app/src/main/res/values-fr/strings.xml @@ -30,6 +30,7 @@ Fonctionnalités Pro Confidentialité À propos + Rate this app Autres applications Contrat de licence d\'utilisateur final J\'accepte @@ -176,6 +177,9 @@ Fermeture en cours Balayer vers la gauche pour supprimer ; balayer vers la droite pour archiver (si disponible) ; appuyer longtemps pour marquer lu/non lu Compris + Do you have a question or problem? + Yes + No Il s’agit d’une fonctionnalité Pro Liste des fonctionnalités Pro Acheter diff --git a/app/src/main/res/values-he/strings.xml b/app/src/main/res/values-he/strings.xml index 09865ef8..46ebfe5b 100644 --- a/app/src/main/res/values-he/strings.xml +++ b/app/src/main/res/values-he/strings.xml @@ -38,6 +38,7 @@ Pro features Privacy About + Rate this app Other apps End-user license agreement I agree @@ -184,6 +185,9 @@ Closing Swipe left to trash; swipe right to archive (if available); long press to mark read/unread Understood + Do you have a question or problem? + Yes + No This is a pro feature List of pro features Buy diff --git a/app/src/main/res/values-hu/strings.xml b/app/src/main/res/values-hu/strings.xml index 0bf85ecb..a395d028 100644 --- a/app/src/main/res/values-hu/strings.xml +++ b/app/src/main/res/values-hu/strings.xml @@ -30,6 +30,7 @@ Pro features Privacy About + Rate this app Other apps End-user license agreement I agree @@ -176,6 +177,9 @@ Closing Swipe left to trash; swipe right to archive (if available); long press to mark read/unread Understood + Do you have a question or problem? + Yes + No This is a pro feature List of pro features Buy diff --git a/app/src/main/res/values-it/strings.xml b/app/src/main/res/values-it/strings.xml index 75f14a12..a891e12b 100644 --- a/app/src/main/res/values-it/strings.xml +++ b/app/src/main/res/values-it/strings.xml @@ -30,6 +30,7 @@ Pro features Privacy Info + Rate this app Altre app Contratto di licenza con l\'utente finale Accetto @@ -176,6 +177,9 @@ Chiusura Swipe left to trash; swipe right to archive (if available); long press to mark read/unread Understood + Do you have a question or problem? + Yes + No This is a pro feature List of pro features Buy diff --git a/app/src/main/res/values-iw/strings.xml b/app/src/main/res/values-iw/strings.xml index 09865ef8..46ebfe5b 100644 --- a/app/src/main/res/values-iw/strings.xml +++ b/app/src/main/res/values-iw/strings.xml @@ -38,6 +38,7 @@ Pro features Privacy About + Rate this app Other apps End-user license agreement I agree @@ -184,6 +185,9 @@ Closing Swipe left to trash; swipe right to archive (if available); long press to mark read/unread Understood + Do you have a question or problem? + Yes + No This is a pro feature List of pro features Buy diff --git a/app/src/main/res/values-ja/strings.xml b/app/src/main/res/values-ja/strings.xml index ad2d0ea9..b400cc84 100644 --- a/app/src/main/res/values-ja/strings.xml +++ b/app/src/main/res/values-ja/strings.xml @@ -26,6 +26,7 @@ Pro features Privacy About + Rate this app Other apps End-user license agreement I agree @@ -172,6 +173,9 @@ Closing Swipe left to trash; swipe right to archive (if available); long press to mark read/unread Understood + Do you have a question or problem? + Yes + No This is a pro feature List of pro features Buy diff --git a/app/src/main/res/values-ko/strings.xml b/app/src/main/res/values-ko/strings.xml index ad2d0ea9..b400cc84 100644 --- a/app/src/main/res/values-ko/strings.xml +++ b/app/src/main/res/values-ko/strings.xml @@ -26,6 +26,7 @@ Pro features Privacy About + Rate this app Other apps End-user license agreement I agree @@ -172,6 +173,9 @@ Closing Swipe left to trash; swipe right to archive (if available); long press to mark read/unread Understood + Do you have a question or problem? + Yes + No This is a pro feature List of pro features Buy diff --git a/app/src/main/res/values-nb/strings.xml b/app/src/main/res/values-nb/strings.xml index 0bf85ecb..a395d028 100644 --- a/app/src/main/res/values-nb/strings.xml +++ b/app/src/main/res/values-nb/strings.xml @@ -30,6 +30,7 @@ Pro features Privacy About + Rate this app Other apps End-user license agreement I agree @@ -176,6 +177,9 @@ Closing Swipe left to trash; swipe right to archive (if available); long press to mark read/unread Understood + Do you have a question or problem? + Yes + No This is a pro feature List of pro features Buy diff --git a/app/src/main/res/values-nl/strings.xml b/app/src/main/res/values-nl/strings.xml index 0bf85ecb..a395d028 100644 --- a/app/src/main/res/values-nl/strings.xml +++ b/app/src/main/res/values-nl/strings.xml @@ -30,6 +30,7 @@ Pro features Privacy About + Rate this app Other apps End-user license agreement I agree @@ -176,6 +177,9 @@ Closing Swipe left to trash; swipe right to archive (if available); long press to mark read/unread Understood + Do you have a question or problem? + Yes + No This is a pro feature List of pro features Buy diff --git a/app/src/main/res/values-no/strings.xml b/app/src/main/res/values-no/strings.xml index 0bf85ecb..a395d028 100644 --- a/app/src/main/res/values-no/strings.xml +++ b/app/src/main/res/values-no/strings.xml @@ -30,6 +30,7 @@ Pro features Privacy About + Rate this app Other apps End-user license agreement I agree @@ -176,6 +177,9 @@ Closing Swipe left to trash; swipe right to archive (if available); long press to mark read/unread Understood + Do you have a question or problem? + Yes + No This is a pro feature List of pro features Buy diff --git a/app/src/main/res/values-pl/strings.xml b/app/src/main/res/values-pl/strings.xml index 30f72b21..2f539ecb 100644 --- a/app/src/main/res/values-pl/strings.xml +++ b/app/src/main/res/values-pl/strings.xml @@ -38,6 +38,7 @@ Funkcje pro Prywatność O programie + Rate this app Inne aplikacje Umowa licencyjna użytkownika końcowego Zgadzam się @@ -184,6 +185,9 @@ Zamykanie Przesuń w lewo do kosza; przesuń w prawo do archiwum (jeśli są dostępne); długie naciśnięcie, aby oznaczyć przeczytane/nieprzeczytane Rozumiem + Do you have a question or problem? + Yes + No Jest to funkcja pro List funkcji pro Kup diff --git a/app/src/main/res/values-pt-rBR/strings.xml b/app/src/main/res/values-pt-rBR/strings.xml index 8499e958..34380ea7 100644 --- a/app/src/main/res/values-pt-rBR/strings.xml +++ b/app/src/main/res/values-pt-rBR/strings.xml @@ -30,6 +30,7 @@ Pro features Privacy Sobre + Rate this app Other apps End-user license agreement Eu concordo @@ -176,6 +177,9 @@ Closing Swipe left to trash; swipe right to archive (if available); long press to mark read/unread Understood + Do you have a question or problem? + Yes + No This is a pro feature List of pro features Buy diff --git a/app/src/main/res/values-pt-rPT/strings.xml b/app/src/main/res/values-pt-rPT/strings.xml index 0bf85ecb..a395d028 100644 --- a/app/src/main/res/values-pt-rPT/strings.xml +++ b/app/src/main/res/values-pt-rPT/strings.xml @@ -30,6 +30,7 @@ Pro features Privacy About + Rate this app Other apps End-user license agreement I agree @@ -176,6 +177,9 @@ Closing Swipe left to trash; swipe right to archive (if available); long press to mark read/unread Understood + Do you have a question or problem? + Yes + No This is a pro feature List of pro features Buy diff --git a/app/src/main/res/values-ro/strings.xml b/app/src/main/res/values-ro/strings.xml index 43003a49..f7601164 100644 --- a/app/src/main/res/values-ro/strings.xml +++ b/app/src/main/res/values-ro/strings.xml @@ -34,6 +34,7 @@ Caracteristici versiune Pro Confidențialitate Despre + Rate this app Alte aplicații Licența de utilizare Sunt de acord @@ -180,6 +181,9 @@ Închidere Glisare la stânga pentru gunoi; glisare la dreapta pentru arhivare (dacă este disponibilă); atingeți lung pentru a marca citit/necitit Am înțeles + Do you have a question or problem? + Yes + No Aceasta este o caracteristică Pro Lista de caracteristici Pro Cumpără diff --git a/app/src/main/res/values-ru/strings.xml b/app/src/main/res/values-ru/strings.xml index 3b52f92b..c5ccb411 100644 --- a/app/src/main/res/values-ru/strings.xml +++ b/app/src/main/res/values-ru/strings.xml @@ -38,6 +38,7 @@ Pro features Privacy About + Rate this app Other apps End-user license agreement I agree @@ -184,6 +185,9 @@ Closing Swipe left to trash; swipe right to archive (if available); long press to mark read/unread Understood + Do you have a question or problem? + Yes + No This is a pro feature List of pro features Buy diff --git a/app/src/main/res/values-sr/strings.xml b/app/src/main/res/values-sr/strings.xml index 1e5bee28..1254baa8 100644 --- a/app/src/main/res/values-sr/strings.xml +++ b/app/src/main/res/values-sr/strings.xml @@ -34,6 +34,7 @@ Pro features Privacy About + Rate this app Other apps End-user license agreement I agree @@ -180,6 +181,9 @@ Closing Swipe left to trash; swipe right to archive (if available); long press to mark read/unread Understood + Do you have a question or problem? + Yes + No This is a pro feature List of pro features Buy diff --git a/app/src/main/res/values-sv-rSE/strings.xml b/app/src/main/res/values-sv-rSE/strings.xml index 0bf85ecb..a395d028 100644 --- a/app/src/main/res/values-sv-rSE/strings.xml +++ b/app/src/main/res/values-sv-rSE/strings.xml @@ -30,6 +30,7 @@ Pro features Privacy About + Rate this app Other apps End-user license agreement I agree @@ -176,6 +177,9 @@ Closing Swipe left to trash; swipe right to archive (if available); long press to mark read/unread Understood + Do you have a question or problem? + Yes + No This is a pro feature List of pro features Buy diff --git a/app/src/main/res/values-tr/strings.xml b/app/src/main/res/values-tr/strings.xml index 22250ee0..a0f2cae9 100644 --- a/app/src/main/res/values-tr/strings.xml +++ b/app/src/main/res/values-tr/strings.xml @@ -30,6 +30,7 @@ Pro özellikleri Gizlilik Hakkında + Rate this app Diğer uygulamalar Son Kullanıcı Lisans Sözleşmesi Kabul ediyorum @@ -176,6 +177,9 @@ Kapatılıyor Silmek için sola kaydırın; arşivlemek (mümkün ise) için sağa kaydırın; okundu/okunmadı işaretlemek için uzun basın Anlaşıldı + Do you have a question or problem? + Yes + No Bu Pro özelliğidir Pro özelliklerin listesi Satın al diff --git a/app/src/main/res/values-uk/strings.xml b/app/src/main/res/values-uk/strings.xml index 3b52f92b..c5ccb411 100644 --- a/app/src/main/res/values-uk/strings.xml +++ b/app/src/main/res/values-uk/strings.xml @@ -38,6 +38,7 @@ Pro features Privacy About + Rate this app Other apps End-user license agreement I agree @@ -184,6 +185,9 @@ Closing Swipe left to trash; swipe right to archive (if available); long press to mark read/unread Understood + Do you have a question or problem? + Yes + No This is a pro feature List of pro features Buy diff --git a/app/src/main/res/values-vi/strings.xml b/app/src/main/res/values-vi/strings.xml index ad2d0ea9..b400cc84 100644 --- a/app/src/main/res/values-vi/strings.xml +++ b/app/src/main/res/values-vi/strings.xml @@ -26,6 +26,7 @@ Pro features Privacy About + Rate this app Other apps End-user license agreement I agree @@ -172,6 +173,9 @@ Closing Swipe left to trash; swipe right to archive (if available); long press to mark read/unread Understood + Do you have a question or problem? + Yes + No This is a pro feature List of pro features Buy diff --git a/app/src/main/res/values-zh-rCN/strings.xml b/app/src/main/res/values-zh-rCN/strings.xml index 9791a438..de0e5aa6 100644 --- a/app/src/main/res/values-zh-rCN/strings.xml +++ b/app/src/main/res/values-zh-rCN/strings.xml @@ -26,6 +26,7 @@ 专业版 隐私政策 关于 + Rate this app 其他应用 最终用户许可协议 我同意 @@ -172,6 +173,9 @@ 正在结束 向左滑掷入垃圾桶,向右滑存档(如果可用),长按切换已读状态 理解了 + Do you have a question or problem? + Yes + No 这是专业版功能 专业版功能列表 购买 diff --git a/app/src/main/res/values-zh-rTW/strings.xml b/app/src/main/res/values-zh-rTW/strings.xml index ad2d0ea9..b400cc84 100644 --- a/app/src/main/res/values-zh-rTW/strings.xml +++ b/app/src/main/res/values-zh-rTW/strings.xml @@ -26,6 +26,7 @@ Pro features Privacy About + Rate this app Other apps End-user license agreement I agree @@ -172,6 +173,9 @@ Closing Swipe left to trash; swipe right to archive (if available); long press to mark read/unread Understood + Do you have a question or problem? + Yes + No This is a pro feature List of pro features Buy diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index af5ac704..6fefadf5 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -39,6 +39,7 @@ Pro features Privacy About + Rate this app Other apps End-user license agreement @@ -207,6 +208,10 @@ Swipe left to trash; swipe right to archive (if available); long press to mark read/unread Understood + Do you have a question or problem? + Yes + No + This is a pro feature List of pro features Buy