diff --git a/app/src/main/kotlin/com/simplemobiletools/dialer/activities/DialpadActivity.kt b/app/src/main/kotlin/com/simplemobiletools/dialer/activities/DialpadActivity.kt index e92e1e54..eeaf8ce6 100644 --- a/app/src/main/kotlin/com/simplemobiletools/dialer/activities/DialpadActivity.kt +++ b/app/src/main/kotlin/com/simplemobiletools/dialer/activities/DialpadActivity.kt @@ -17,6 +17,7 @@ import android.view.KeyEvent import android.view.MotionEvent import android.view.View import android.view.ViewConfiguration +import androidx.core.view.isVisible import com.reddit.indicatorfastscroll.FastScrollItemIndicator import com.simplemobiletools.commons.extensions.* import com.simplemobiletools.commons.helpers.* @@ -53,6 +54,21 @@ class DialpadActivity : SimpleActivity() { return } + if (config.hideDialpadNumbers) { + dialpad_1_holder.isVisible = false + dialpad_2_holder.isVisible = false + dialpad_3_holder.isVisible = false + dialpad_4_holder.isVisible = false + dialpad_5_holder.isVisible = false + dialpad_6_holder.isVisible = false + dialpad_7_holder.isVisible = false + dialpad_8_holder.isVisible = false + dialpad_9_holder.isVisible = false + dialpad_plus_holder.isVisible = true + dialpad_0_holder.visibility = View.INVISIBLE + } + + setupOptionsMenu() speedDialValues = config.getSpeedDialValues() privateCursor = getMyContactsCursor(favoritesOnly = false, withPhoneNumbersOnly = true) @@ -89,6 +105,7 @@ class DialpadActivity : SimpleActivity() { setupCharClick(dialpad_8_holder, '8') setupCharClick(dialpad_9_holder, '9') setupCharClick(dialpad_0_holder, '0') + setupCharClick(dialpad_plus_holder, '+', longClickable = false) setupCharClick(dialpad_asterisk_holder, '*', longClickable = false) setupCharClick(dialpad_hashtag_holder, '#', longClickable = false) diff --git a/app/src/main/kotlin/com/simplemobiletools/dialer/activities/SettingsActivity.kt b/app/src/main/kotlin/com/simplemobiletools/dialer/activities/SettingsActivity.kt index 7d6e339c..4cadae89 100644 --- a/app/src/main/kotlin/com/simplemobiletools/dialer/activities/SettingsActivity.kt +++ b/app/src/main/kotlin/com/simplemobiletools/dialer/activities/SettingsActivity.kt @@ -43,6 +43,7 @@ class SettingsActivity : SimpleActivity() { setupGroupSubsequentCalls() setupStartNameWithSurname() setupDialpadVibrations() + setupDialpadNumbers() setupDialpadBeeps() setupShowCallConfirmation() setupDisableProximitySensor() @@ -234,6 +235,14 @@ class SettingsActivity : SimpleActivity() { } } + private fun setupDialpadNumbers() { + settings_hide_dialpad_numbers.isChecked = config.hideDialpadNumbers + settings_hide_dialpad_numbers_holder.setOnClickListener { + settings_hide_dialpad_numbers.toggle() + config.hideDialpadNumbers = settings_hide_dialpad_numbers.isChecked + } + } + private fun setupDialpadBeeps() { settings_dialpad_beeps.isChecked = config.dialpadBeeps settings_dialpad_beeps_holder.setOnClickListener { diff --git a/app/src/main/kotlin/com/simplemobiletools/dialer/helpers/Config.kt b/app/src/main/kotlin/com/simplemobiletools/dialer/helpers/Config.kt index 6f31cc0c..bc85652d 100644 --- a/app/src/main/kotlin/com/simplemobiletools/dialer/helpers/Config.kt +++ b/app/src/main/kotlin/com/simplemobiletools/dialer/helpers/Config.kt @@ -76,6 +76,10 @@ class Config(context: Context) : BaseConfig(context) { get() = prefs.getBoolean(DIALPAD_VIBRATION, true) set(dialpadVibration) = prefs.edit().putBoolean(DIALPAD_VIBRATION, dialpadVibration).apply() + var hideDialpadNumbers: Boolean + get() = prefs.getBoolean(HIDE_DIALPAD_NUMBERS, false) + set(hideDialpadNumbers) = prefs.edit().putBoolean(HIDE_DIALPAD_NUMBERS, hideDialpadNumbers).apply() + var dialpadBeeps: Boolean get() = prefs.getBoolean(DIALPAD_BEEPS, true) set(dialpadBeeps) = prefs.edit().putBoolean(DIALPAD_BEEPS, dialpadBeeps).apply() diff --git a/app/src/main/kotlin/com/simplemobiletools/dialer/helpers/Constants.kt b/app/src/main/kotlin/com/simplemobiletools/dialer/helpers/Constants.kt index 7c970ed9..a1329979 100644 --- a/app/src/main/kotlin/com/simplemobiletools/dialer/helpers/Constants.kt +++ b/app/src/main/kotlin/com/simplemobiletools/dialer/helpers/Constants.kt @@ -17,6 +17,7 @@ const val FAVORITES_CUSTOM_ORDER_SELECTED = "favorites_custom_order_selected" const val WAS_OVERLAY_SNACKBAR_CONFIRMED = "was_overlay_snackbar_confirmed" const val DIALPAD_VIBRATION = "dialpad_vibration" const val DIALPAD_BEEPS = "dialpad_beeps" +const val HIDE_DIALPAD_NUMBERS = "hide_dialpad_numbers" const val ALWAYS_SHOW_FULLSCREEN = "always_show_fullscreen" const val ALL_TABS_MASK = TAB_CONTACTS or TAB_FAVORITES or TAB_CALL_HISTORY diff --git a/app/src/main/res/layout/activity_settings.xml b/app/src/main/res/layout/activity_settings.xml index 4c3df964..3ccbbf61 100644 --- a/app/src/main/res/layout/activity_settings.xml +++ b/app/src/main/res/layout/activity_settings.xml @@ -227,6 +227,22 @@ + + + + + + + + + + + + تعطيل مستشعر القرب أثناء المكالمات استبدل التمرير عند الرد على المكالمات الواردة بالنقر عرض المكالمات الواردة دائما في وضع ملء الشاشة + اخفي ارقام لوحت المفاتيح أسمع مكالمات واردة، ولكن الشاشة لا تعمل. ماذا أفعل؟ يمكن أن يكون لمثل هذه المشكلات العديد من الأسباب الخاصة بالجهاز والنظام ، والتي يصعب تحديدها بشكل عام. يجب أن تنظر حولك في إعدادات جهازك وتأكد من السماح للتطبيق بالظهور عندما يكون في الخلفية والسماح بالعرض فوق التطبيقات الأخرى. diff --git a/app/src/main/res/values-az/strings.xml b/app/src/main/res/values-az/strings.xml index 6c31e814..85331b8b 100644 --- a/app/src/main/res/values-az/strings.xml +++ b/app/src/main/res/values-az/strings.xml @@ -71,6 +71,8 @@ Disable proximity sensor during calls Replace swiping at responding to incoming calls with clicking Always display incoming calls on full screen + Hide dialpad numbers + I hear incoming calls, but the screen doesn\'t turn on. What can I do? Such issues can have many device and system specific reasons, hard to say in general. You should look around in your device settings and make sure that the app is allowed to pop up when in background and allow displaying over other apps. diff --git a/app/src/main/res/values-be/strings.xml b/app/src/main/res/values-be/strings.xml index a7e86b04..df099519 100644 --- a/app/src/main/res/values-be/strings.xml +++ b/app/src/main/res/values-be/strings.xml @@ -71,6 +71,8 @@ Адключаць датчык набліжэння падчас выклікаў Выкарыстоўваць націсканне замест перацягвання пры адказе на ўваходныя выклікі Заўсёды паказваць уваходныя выклікі ў поўнаэкранным рэжыме + Hide dialpad numbers + I hear incoming calls, but the screen doesn\'t turn on. What can I do? Such issues can have many device and system specific reasons, hard to say in general. You should look around in your device settings and make sure that the app is allowed to pop up when in background and allow displaying over other apps. diff --git a/app/src/main/res/values-bg/strings.xml b/app/src/main/res/values-bg/strings.xml index 7d57ade5..1e403163 100644 --- a/app/src/main/res/values-bg/strings.xml +++ b/app/src/main/res/values-bg/strings.xml @@ -71,6 +71,8 @@ Изключване на сензора за близост по време на обаждания Смяна на плъзгането с докосване при отговаряне на обаждания Always display incoming calls on full screen + Hide dialpad numbers + I hear incoming calls, but the screen doesn\'t turn on. What can I do? Such issues can have many device and system specific reasons, hard to say in general. You should look around in your device settings and make sure that the app is allowed to pop up when in background and allow displaying over other apps. diff --git a/app/src/main/res/values-ca/strings.xml b/app/src/main/res/values-ca/strings.xml index 576deb26..f61b15bf 100644 --- a/app/src/main/res/values-ca/strings.xml +++ b/app/src/main/res/values-ca/strings.xml @@ -71,6 +71,8 @@ Desactiva el sensor de proximitat durant les trucades Substitueix el lliscament en respondre a les trucades entrants per fer clic Mostra sempre les trucades entrants a pantalla completa + Hide dialpad numbers + Sento trucades entrants, però la pantalla no s\'encén. Què puc fer\? Aquests problemes poden tenir moltes raons específiques del dispositiu i del sistema, difícils de dir en general. Hauríeu de mirar per la configuració del dispositiu i assegurar-vos que l\'aplicació pugui aparèixer en segon pla i permetre que es mostri sobre altres aplicacions. @@ -78,4 +80,4 @@ Haven't found some strings? There's more at https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res --> - \ No newline at end of file + diff --git a/app/src/main/res/values-cs/strings.xml b/app/src/main/res/values-cs/strings.xml index 050ecfe2..10c55cc9 100644 --- a/app/src/main/res/values-cs/strings.xml +++ b/app/src/main/res/values-cs/strings.xml @@ -71,6 +71,8 @@ Vypnout senzor přiblížení během hovoru Nahradit přejetí prstem při odpovídání na příchozí hovory za klepnutí Vždy zobrazovat příchozí hovory na celou obrazovku + Hide dialpad numbers + Slyším příchozí hovor, ale obrazovka se nezapne. Co mohu dělat\? Takové problémy mohou mít mnoho důvodů specifických pro zařízení a systém, takže je těžké říci něco obecně. Měli byste zkontrolovat nastavení zařízení a ujistit se, že se aplikace může otevřít, když běží na pozadí, a umožnit zobrazení přes jiné aplikace. diff --git a/app/src/main/res/values-da/strings.xml b/app/src/main/res/values-da/strings.xml index c5fcb0f4..bfeee422 100644 --- a/app/src/main/res/values-da/strings.xml +++ b/app/src/main/res/values-da/strings.xml @@ -71,6 +71,8 @@ Deaktivér nærhedssensor under opkald Erstat swipe ved besvarelse af indgående opkald med at klikke på Always display incoming calls on full screen + Hide dialpad numbers + I hear incoming calls, but the screen doesn\'t turn on. What can I do? Such issues can have many device and system specific reasons, hard to say in general. You should look around in your device settings and make sure that the app is allowed to pop up when in background and allow displaying over other apps. diff --git a/app/src/main/res/values-de/strings.xml b/app/src/main/res/values-de/strings.xml index 9826ee6a..41614181 100644 --- a/app/src/main/res/values-de/strings.xml +++ b/app/src/main/res/values-de/strings.xml @@ -71,6 +71,8 @@ Näherungssensor bei Anrufen deaktivieren Anrufe durch Klicken statt durch Streichen annehmen Eingehende Anrufe immer im Vollbildmodus anzeigen + Hide dialpad numbers + Ich höre eingehende Anrufe, aber der Bildschirm schaltet sich nicht ein. Was kann ich tun\? Eine allgemeine Antwort auf die Frage ist schwer, denn solche Probleme können viele geräte- und systemspezifische Gründe haben. Du solltest dich in den Einstellungen des Geräts umsehen und sicherstellen, dass die App im Hintergrund angezeigt werden darf und die Einblendung über anderen Apps erlaubt ist. @@ -78,4 +80,4 @@ Haven't found some strings? There's more at https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res --> - \ No newline at end of file + diff --git a/app/src/main/res/values-el/strings.xml b/app/src/main/res/values-el/strings.xml index 56beb93a..b943b77a 100644 --- a/app/src/main/res/values-el/strings.xml +++ b/app/src/main/res/values-el/strings.xml @@ -71,6 +71,8 @@ Απενεργοποίηση του αισθητήρα εγγύτητας κατά τη διάρκεια κλήσεων Αντικατάσταση Σάρωσης με Κλικ στην απάντηση εισερχόμενων κλήσεων Να εμφανίζονται πάντα οι εισερχόμενες κλήσεις σε πλήρη οθόνη + Hide dialpad numbers + Ακούω εισερχόμενες κλήσεις, αλλά η οθόνη δεν ανάβει. Τι μπορώ να κάνω; Τέτοια θέματα μπορεί να έχουν πολλούς λόγους που σχετίζονται με τη συσκευή και το σύστημα, και είναι δύσκολο να ειπωθούν γενικά. Θα πρέπει να ψάξετε στις ρυθμίσεις της συσκευής σας και να βεβαιωθείτε ότι η εφαρμογή επιτρέπεται να εμφανίζεται όταν βρίσκεται στο παρασκήνιο και να επιτρέπει την εμφάνισή της πάνω από άλλες εφαρμογές. diff --git a/app/src/main/res/values-eo/strings.xml b/app/src/main/res/values-eo/strings.xml index 32e5011f..7a673dc6 100644 --- a/app/src/main/res/values-eo/strings.xml +++ b/app/src/main/res/values-eo/strings.xml @@ -71,6 +71,8 @@ Disable proximity sensor during calls Replace swiping at responding to incoming calls with clicking Always display incoming calls on full screen + Hide dialpad numbers + I hear incoming calls, but the screen doesn\'t turn on. What can I do? Such issues can have many device and system specific reasons, hard to say in general. You should look around in your device settings and make sure that the app is allowed to pop up when in background and allow displaying over other apps. diff --git a/app/src/main/res/values-es/strings.xml b/app/src/main/res/values-es/strings.xml index 845fb401..2a4738f0 100644 --- a/app/src/main/res/values-es/strings.xml +++ b/app/src/main/res/values-es/strings.xml @@ -71,6 +71,8 @@ Deshabilitar el sensor de proximidad durante las llamadas Reemplazar deslizar para responder llamadas entrantes a pulsar Siempre mostrar llamadas entrantes en pantalla completa + Hide dialpad numbers + Escucho las llamadas entrantes, pero la pantalla no se enciende. ¿Qué puedo hacer\? Estos problemas pueden deberse a muchas razones específicas del dispositivo y del sistema, es difícil decirlo en general. Deberías mirar en la configuración de tu dispositivo y asegurarte de que la aplicación tiene permiso para aparecer cuando está en segundo plano y permitir la aplicación se muestre sobre otras aplicaciones. @@ -78,4 +80,4 @@ Haven't found some strings? There's more at https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res --> - \ No newline at end of file + diff --git a/app/src/main/res/values-et/strings.xml b/app/src/main/res/values-et/strings.xml index 3a6ec054..68b30c8c 100644 --- a/app/src/main/res/values-et/strings.xml +++ b/app/src/main/res/values-et/strings.xml @@ -71,6 +71,8 @@ Kõnede ajaks lülita lähedusandur välja Kõnele vastamisel kasuta viipamise asemel klõpsimist Kuvage sissetulevad kõned alati täisekraanil + Hide dialpad numbers + Ma kuulen sissetulevaid kõnesid, kuid ekraan ei lülitu sisse. Mida ma saan teha\? Sellistel probleemidel võib olla palju seadme- ja süsteemispetsiifilisi põhjusi, raske öelda üldiselt. Peaksite oma seadme seadetes ringi vaatama ja veenduma, et rakendusel on lubatud taustal hüpata ja lubada kuvamist üle teiste rakenduste. @@ -78,4 +80,4 @@ Haven't found some strings? There's more at https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res --> - \ No newline at end of file + diff --git a/app/src/main/res/values-fi/strings.xml b/app/src/main/res/values-fi/strings.xml index 67b3c9de..9e4e459b 100644 --- a/app/src/main/res/values-fi/strings.xml +++ b/app/src/main/res/values-fi/strings.xml @@ -71,6 +71,8 @@ Poista läheisyysanturi käytöstä puheluiden aikana Vastaa puheluihin painalluksella pyyhkäisyn sijaan Näytä saapuvat puhelut aina koko näytöllä + Hide dialpad numbers + Kuulen saapuvat puhelut, mutta näyttö ei käynnisty. Mitä voin tehdä\? Tällaisiin ongelmiin voi olla monia laite- ja järjestelmäkohtaisia syitä, joita on vaikea sanoa yleisesti. Kannattaa tutkia laitteen asetuksia ja varmistaa, että sovelluksen on sallittu ponnahtaa esiin, kun se on taustalla, ja sallia sen näyttäminen muiden sovellusten yläpuolella. diff --git a/app/src/main/res/values-fr/strings.xml b/app/src/main/res/values-fr/strings.xml index 46a2457f..1724a9f3 100644 --- a/app/src/main/res/values-fr/strings.xml +++ b/app/src/main/res/values-fr/strings.xml @@ -71,6 +71,8 @@ Désactiver le capteur de proximité pendant les appels Remplacer le balayage pour répondre aux appels entrants par un clic Toujours afficher les appels entrants en plein écran + Hide dialpad numbers + J\'entends les appels entrants, mais l\'écran ne s\'allume pas. Que puis-je faire \? Ces problèmes peuvent avoir de nombreuses raisons spécifiques à l\'appareil et au système, il est difficile d\'en parler en général. Vous devriez consulter les paramètres de votre appareil et vous assurer que l\'application est autorisée à apparaître en arrière-plan et à s\'afficher au-dessus des autres applications. diff --git a/app/src/main/res/values-gl/strings.xml b/app/src/main/res/values-gl/strings.xml index 65192176..194479a5 100644 --- a/app/src/main/res/values-gl/strings.xml +++ b/app/src/main/res/values-gl/strings.xml @@ -71,6 +71,8 @@ Desactivar sensor de proximidade durante as chamadas Substituír o xesto de desprazar por un click para responder Mostrar sempre as chamadas entrantes a pantalla enteira + Hide dialpad numbers + Escoito chamadas entrantes, pero a pantalla non se acende. Que podo facer\? Estes problemas poden ter moitas razóns específicas do dispositivo e do sistema, difíciles de dicir en xeral. Debes mirar ao teu redor na configuración do teu dispositivo e asegurarte de que a aplicación pode aparecer cando está en segundo plano e permitir que se vexa sobre outras aplicacións. @@ -78,4 +80,4 @@ Haven't found some strings? There's more at https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res --> - \ No newline at end of file + diff --git a/app/src/main/res/values-hr/strings.xml b/app/src/main/res/values-hr/strings.xml index 2a84ca6c..049c0b74 100644 --- a/app/src/main/res/values-hr/strings.xml +++ b/app/src/main/res/values-hr/strings.xml @@ -71,6 +71,8 @@ Isključi senzor blizine tijekom poziva Zamijeni povlačenje prstom za odgovaranje na dolazne pozive pritiskom Uvijek prikaži dolazne pozive u cjeloekranskom prikazu + Hide dialpad numbers + Čujem dolazne pozive, ali ekran se ne uključuje. Što mogu učiniti\? Takvi problemi mogu imati mnogo razloga specifičnih za uređaj i sustav, koje je teško reći općenito. Trebali biste pogledati uokolo u postavkama svog uređaja i provjeriti je li aplikaciji dopušteno iskakanje u pozadini i dopuštenje prikazivanja preko drugih aplikacija. @@ -78,4 +80,4 @@ Haven't found some strings? There's more at https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res --> - \ No newline at end of file + diff --git a/app/src/main/res/values-hu/strings.xml b/app/src/main/res/values-hu/strings.xml index 7034882d..40b7905a 100644 --- a/app/src/main/res/values-hu/strings.xml +++ b/app/src/main/res/values-hu/strings.xml @@ -71,6 +71,8 @@ Közelségérzékelő kikapcsolása a hívások során Csúsztatás kattintásra cserélése a bejövő hívásoknál Bejövő hívások megjelenítése mindig teljes képernyőn + Hide dialpad numbers + Bejövő hívást hallok, de a képernyő nem kapcsol be. Mit tehetek\? Az ilyen problémáknak számos eszköz- és rendszerfüggő oka lehet, általánosságban nehéz megmondani. Nézzen körül az eszközbeállításokban, és győződjön meg róla, hogy az alkalmazás előbújhat-e a háttérből, és megjelenhet-e más alkalmazások felett. diff --git a/app/src/main/res/values-in/strings.xml b/app/src/main/res/values-in/strings.xml index 7f59d3c5..f1ff2c8e 100644 --- a/app/src/main/res/values-in/strings.xml +++ b/app/src/main/res/values-in/strings.xml @@ -71,6 +71,8 @@ Nonaktifkan sensor kedekatan saat ada di panggilan Ganti menggesek saat menanggapi panggilan masuk dengan mengklik Always display incoming calls on full screen + Hide dialpad numbers + I hear incoming calls, but the screen doesn\'t turn on. What can I do? Such issues can have many device and system specific reasons, hard to say in general. You should look around in your device settings and make sure that the app is allowed to pop up when in background and allow displaying over other apps. diff --git a/app/src/main/res/values-it/strings.xml b/app/src/main/res/values-it/strings.xml index ee3eb135..3c13442f 100644 --- a/app/src/main/res/values-it/strings.xml +++ b/app/src/main/res/values-it/strings.xml @@ -71,6 +71,8 @@ Disattiva il sensore di prossimità durante le chiamate Sostituisci lo scorrimento nel rispondere alle chiamate in arrivo con un clic Visualizza sempre le chiamate in arrivo a schermo intero + Hide dialpad numbers + Sento le chiamate in arrivo, ma lo schermo non si accende. Cosa posso fare\? Tali problemi possono avere molte ragioni specifiche per il dispositivo e il sistema, è difficile identificarle in generale. Dovresti dare un\'occhiata alle impostazioni del dispositivo e assicurarti che l\'app sia autorizzata a comparire quando è in background e che permetta la visualizzazione sopra le altre app. diff --git a/app/src/main/res/values-iw/strings.xml b/app/src/main/res/values-iw/strings.xml index 741bc827..b28701ec 100644 --- a/app/src/main/res/values-iw/strings.xml +++ b/app/src/main/res/values-iw/strings.xml @@ -71,6 +71,8 @@ השבת את חיישן הקרבה במהלך שיחות החלף החלקה בתגובה לשיחות נכנסות בלחיצה Always display incoming calls on full screen + Hide dialpad numbers + I hear incoming calls, but the screen doesn\'t turn on. What can I do? Such issues can have many device and system specific reasons, hard to say in general. You should look around in your device settings and make sure that the app is allowed to pop up when in background and allow displaying over other apps. diff --git a/app/src/main/res/values-ja/strings.xml b/app/src/main/res/values-ja/strings.xml index 1653dc9f..48a0d1fd 100644 --- a/app/src/main/res/values-ja/strings.xml +++ b/app/src/main/res/values-ja/strings.xml @@ -71,6 +71,8 @@ 通話中に近接センサーを無効にする 着信に応答する際のスワイプ操作をタップ操作に置き換える 常に着信通知を全画面に表示する + Hide dialpad numbers + 着信音は聞こえるのですが、画面がつきません。どうしたらよいですか? このような問題は、デバイスやシステム固有の理由が多く、一概には言えません。端末の設定を見て、アプリがバックグラウンドでポップアップすることを許可しているか、他のアプリの上に表示することを許可しているかを確認する必要があります。 diff --git a/app/src/main/res/values-lt/strings.xml b/app/src/main/res/values-lt/strings.xml index 73fd9b3d..9887c757 100644 --- a/app/src/main/res/values-lt/strings.xml +++ b/app/src/main/res/values-lt/strings.xml @@ -71,6 +71,8 @@ Skambučių metu išjungti artumo jutiklį Atsiliepiant į įeinančius skambučius perbraukimą pakeiskite paspaudimu Visada rodykite įeinančius skambučius per visą ekraną + Hide dialpad numbers + I hear incoming calls, but the screen doesn\'t turn on. What can I do? Such issues can have many device and system specific reasons, hard to say in general. You should look around in your device settings and make sure that the app is allowed to pop up when in background and allow displaying over other apps. diff --git a/app/src/main/res/values-ml/strings.xml b/app/src/main/res/values-ml/strings.xml index 9f7d15ed..b4e8ca64 100644 --- a/app/src/main/res/values-ml/strings.xml +++ b/app/src/main/res/values-ml/strings.xml @@ -71,6 +71,7 @@ കോളുകൾക്കിടയിൽ പ്രോക്സിമിറ്റി സെൻസർ പ്രവർത്തനരഹിതമാക്കുക ഇൻകമിംഗ് കോളുകളോട് പ്രതികരിക്കുമ്പോൾ സ്വൈപ്പിംഗ് മാറ്റി പകരം ഇൻകമിംഗ് കോളിൽ ക്ലിക്ക് ചെയ്യുക എല്ലായ്‌പ്പോഴും ഇൻകമിംഗ് കോളുകൾ പൂർണ്ണ സ്‌ക്രീനിൽ പ്രദർശിപ്പിക്കുക + Hide dialpad numbers ഞാൻ ഇൻകമിംഗ് കോളുകൾ കേൾക്കുന്നു, പക്ഷേ സ്ക്രീൻ ഓണാക്കുന്നില്ല. എനിക്ക് എന്ത് ചെയ്യാൻ കഴിയും\? അത്തരം പ്രശ്നങ്ങൾക്ക് ഉപകരണത്തിനും സിസ്റ്റത്തിനും പ്രത്യേക കാരണങ്ങളുണ്ടാകാം, പൊതുവായി പറയാൻ പ്രയാസമാണ്. നിങ്ങളുടെ ഉപകരണ ക്രമീകരണങ്ങളിൽ നിങ്ങൾ ചുറ്റും നോക്കുകയും പശ്ചാത്തലത്തിലായിരിക്കുമ്പോൾ ആപ്പ് പോപ്പ് അപ്പ് ചെയ്യാൻ അനുവദിക്കുകയും മറ്റ് ആപ്പുകളിൽ പ്രദർശിപ്പിക്കാൻ അനുവദിക്കുകയും വേണം. @@ -78,4 +79,4 @@ Haven't found some strings? There's more at https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res --> - \ No newline at end of file + diff --git a/app/src/main/res/values-nb-rNO/strings.xml b/app/src/main/res/values-nb-rNO/strings.xml index 31c43d6c..c82857f8 100644 --- a/app/src/main/res/values-nb-rNO/strings.xml +++ b/app/src/main/res/values-nb-rNO/strings.xml @@ -71,6 +71,8 @@ Deaktiver nærhetssensor under samtaler Erstatt sveiping ved å svare på innkommende anrop med å klikke Always display incoming calls on full screen + Hide dialpad numbers + I hear incoming calls, but the screen doesn\'t turn on. What can I do? Such issues can have many device and system specific reasons, hard to say in general. You should look around in your device settings and make sure that the app is allowed to pop up when in background and allow displaying over other apps. diff --git a/app/src/main/res/values-nl/strings.xml b/app/src/main/res/values-nl/strings.xml index 2cf3f63c..d4e198cf 100644 --- a/app/src/main/res/values-nl/strings.xml +++ b/app/src/main/res/values-nl/strings.xml @@ -71,6 +71,8 @@ Nabijheidssensor uitschakelen tijdens bellen Vervang vegen door klikken bij het aannemen van gesprekken Inkomende gesprekken altijd op volledig scherm tonen + Hide dialpad numbers + Ik hoor dat er een gesprek binnenkomt, maar het scherm gaat niet aan. Wat kan ik doen\? Dit soort problemen kan vele oorzaken hebben, specifiek voor bepaalde apparaten en software. Controleer in ieder geval of voor deze app in de systeeminstellingen \"Weergeven vóór andere apps\" is toegestaan en of bij meldingen voor inkomende gesprekken \"Weergeven op scherm\" is ingeschakeld. @@ -78,4 +80,4 @@ Haven't found some strings? There's more at https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res --> - \ No newline at end of file + diff --git a/app/src/main/res/values-pa-rPK/strings.xml b/app/src/main/res/values-pa-rPK/strings.xml index 48fc5449..a1a88fdb 100644 --- a/app/src/main/res/values-pa-rPK/strings.xml +++ b/app/src/main/res/values-pa-rPK/strings.xml @@ -71,6 +71,8 @@ Disable proximity sensor during calls Replace swiping at responding to incoming calls with clicking Always display incoming calls on full screen + Hide dialpad numbers + I hear incoming calls, but the screen doesn\'t turn on. What can I do\? Such issues can have many device and system specific reasons, hard to say in general. You should look around in your device settings and make sure that the app is allowed to pop up when in background and allow displaying over other apps. diff --git a/app/src/main/res/values-pl/strings.xml b/app/src/main/res/values-pl/strings.xml index 45778479..7ebf0cd0 100644 --- a/app/src/main/res/values-pl/strings.xml +++ b/app/src/main/res/values-pl/strings.xml @@ -71,6 +71,8 @@ Wyłączaj czujnik zbliżeniowy podczas połączeń Zastąp naciśnięciem gest przesunięcia do odpowiadania na połączenia przychodzące Zawsze wyświetlaj połączenia przychodzące na pełnym ekranie + Hide dialpad numbers + Słyszę połączenia przychodzące, ale ekran się nie włącza. Co mogę zrobić\? Takie problemy mogą mieć wiele przyczyn specyficznych dla urządzenia i systemu; ogólnie trudno powiedzieć. Powinieneś/powinnaś rozejrzeć się w ustawieniach swojego urządzenia i upewnić się, że aplikacja może pojawiać się, gdy jest w tle, i wyświetlać się nad innymi aplikacjami. @@ -78,4 +80,4 @@ Haven't found some strings? There's more at https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res --> - \ No newline at end of file + diff --git a/app/src/main/res/values-pt-rBR/strings.xml b/app/src/main/res/values-pt-rBR/strings.xml index 48daeaa5..bf3823e0 100644 --- a/app/src/main/res/values-pt-rBR/strings.xml +++ b/app/src/main/res/values-pt-rBR/strings.xml @@ -71,6 +71,8 @@ Desativar sensor de proximidade durante as chamadas Clicar em vez de deslizar para responder chamadas Always display incoming calls on full screen + Hide dialpad numbers + I hear incoming calls, but the screen doesn\'t turn on. What can I do? Such issues can have many device and system specific reasons, hard to say in general. You should look around in your device settings and make sure that the app is allowed to pop up when in background and allow displaying over other apps. diff --git a/app/src/main/res/values-pt/strings.xml b/app/src/main/res/values-pt/strings.xml index ff23f327..1949429c 100644 --- a/app/src/main/res/values-pt/strings.xml +++ b/app/src/main/res/values-pt/strings.xml @@ -71,6 +71,8 @@ Desativar sensor de proximidade durante as chamadas Clicar em vez de deslizar para atender Always display incoming calls on full screen + Hide dialpad numbers + I hear incoming calls, but the screen doesn\'t turn on. What can I do? Such issues can have many device and system specific reasons, hard to say in general. You should look around in your device settings and make sure that the app is allowed to pop up when in background and allow displaying over other apps. diff --git a/app/src/main/res/values-ro/strings.xml b/app/src/main/res/values-ro/strings.xml index 6961db59..462a11c9 100644 --- a/app/src/main/res/values-ro/strings.xml +++ b/app/src/main/res/values-ro/strings.xml @@ -71,6 +71,8 @@ Dezactivați senzorul de proximitate în timpul apelurilor Înlocuiți glisarea pentru a răspunde la apelurile primite cu o singură apăsare Afișați întotdeauna apelurile primite pe întreg ecranul + Hide dialpad numbers + Aud apelurile primite, dar ecranul nu se aprinde. Ce pot face\? Aceste probleme pot avea multe motive specifice dispozitivului și sistemului, fiind greu de spus în general. Ar trebui să vă uitați în setările dispozitivului și să vă asigurați că aplicația este permisă să apară atunci când este în fundal și că permite afișarea peste alte aplicații. diff --git a/app/src/main/res/values-ru/strings.xml b/app/src/main/res/values-ru/strings.xml index 3e11fd7c..566d0a28 100644 --- a/app/src/main/res/values-ru/strings.xml +++ b/app/src/main/res/values-ru/strings.xml @@ -71,6 +71,8 @@ Отключать датчик приближения во время вызовов Использовать нажатие вместо перетаскивания при ответе на входящие вызовы Всегда отображать входящие вызовы на полный экран + Hide dialpad numbers + Я слышу сигналы входящих вызовов, но экран не включается. Что можно сделать\? Такие проблемы могут иметь множество специфических для устройства и системы причин, о которых трудно говорить в общем. Следует проверить настройки устройства и убедиться, что приложению разрешено отображение всплывающих уведомлений в фоновом режиме и отображение поверх других приложений. @@ -78,4 +80,4 @@ Haven't found some strings? There's more at https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res --> - \ No newline at end of file + diff --git a/app/src/main/res/values-sk/strings.xml b/app/src/main/res/values-sk/strings.xml index 59463acd..15f85426 100644 --- a/app/src/main/res/values-sk/strings.xml +++ b/app/src/main/res/values-sk/strings.xml @@ -71,6 +71,8 @@ Vypnúť počas hovorov senzor priblíženia Nahradiť potiahnutie prstom pri odpovedaní na prichádzajúce hovory kliknutím Stále zobraziť prichádzajúce hovory na celú obrazovku + Hide dialpad numbers + Počujem prichádzajúce hovory, obrazovka sa ale nezapne. Čo s tým? Takéto problémy majú často dôvody špecifické pre dané zariadenie alebo systém, ťažko teda dať všeobecné riešenie. Mali by ste sa poobzerať v nasteniach zariadenia a uistiť sa, že apka má povolenie na zobrazovanie sa z pozadia a na zobrazovanie sa nad ostatnými apkami. diff --git a/app/src/main/res/values-sl/strings.xml b/app/src/main/res/values-sl/strings.xml index c78b2683..00aafa72 100644 --- a/app/src/main/res/values-sl/strings.xml +++ b/app/src/main/res/values-sl/strings.xml @@ -71,6 +71,8 @@ Onemogoči senzor bližine med klici Pri odzivanju na dohodne klice zamenjajte poteg s prstom na odziv s klikanjem Dohodne klice vedno prikaži na celotnem zaslonu + Hide dialpad numbers + Slišim dohodne klice, vendar se zaslon ne vklopi. Kaj lahko storim\? Takšne težave imajo lahko veliko razlogov, ki so specifični za napravo in sistem, zato jih je na splošno težko opredeliti. Oglejte si nastavitve naprave in se prepričajte, da je aplikaciji dovoljeno, da se prikaže, ko je v ozadju, in da omogoča prikaz nad drugimi aplikacijami. diff --git a/app/src/main/res/values-sr/strings.xml b/app/src/main/res/values-sr/strings.xml index 799e1455..bd40ac7a 100644 --- a/app/src/main/res/values-sr/strings.xml +++ b/app/src/main/res/values-sr/strings.xml @@ -71,7 +71,9 @@ Онемогућите сензор близине током позива Замените превлачење при одговарању на долазне позиве кликом Увек прикажи долазне позиве преко целог екрана + Hide dialpad numbers + Чујем долазне позиве, али екран се не укључује. Шта могу да урадим\? Такви проблеми могу имати много специфичних разлога за уређај и систем, што је уопштено тешко рећи. Требало би да погледате около у подешавањима уређаја и уверите се да је апликацији дозвољено да искаче када је у позадини и да дозволи приказивање преко других апликација. - \ No newline at end of file + diff --git a/app/src/main/res/values-sv/strings.xml b/app/src/main/res/values-sv/strings.xml index 0531c8bb..ddcf564e 100644 --- a/app/src/main/res/values-sv/strings.xml +++ b/app/src/main/res/values-sv/strings.xml @@ -71,6 +71,8 @@ Inaktivera närhetssensor under samtal Ersätt svepning vid besvarande av inkommande samtal med tryckning Visa alltid inkommande samtal i helskärm + Hide dialpad numbers + I hear incoming calls, but the screen doesn\'t turn on. What can I do? Such issues can have many device and system specific reasons, hard to say in general. You should look around in your device settings and make sure that the app is allowed to pop up when in background and allow displaying over other apps. diff --git a/app/src/main/res/values-th/strings.xml b/app/src/main/res/values-th/strings.xml index 6c31e814..85331b8b 100644 --- a/app/src/main/res/values-th/strings.xml +++ b/app/src/main/res/values-th/strings.xml @@ -71,6 +71,8 @@ Disable proximity sensor during calls Replace swiping at responding to incoming calls with clicking Always display incoming calls on full screen + Hide dialpad numbers + I hear incoming calls, but the screen doesn\'t turn on. What can I do? Such issues can have many device and system specific reasons, hard to say in general. You should look around in your device settings and make sure that the app is allowed to pop up when in background and allow displaying over other apps. diff --git a/app/src/main/res/values-tr/strings.xml b/app/src/main/res/values-tr/strings.xml index 13166885..4cd2a190 100644 --- a/app/src/main/res/values-tr/strings.xml +++ b/app/src/main/res/values-tr/strings.xml @@ -71,6 +71,8 @@ Aramalar sırasında yakınlık sensörünü devre dışı bırak Gelen aramalara yanıt vermek için kaydırmayı tıklamayla değiştir Gelen aramaları her zaman tam ekranda görüntüle + Hide dialpad numbers + Gelen aramaları duyuyorum ama ekran açılmıyor. Ne yapabilirim\? Bu tür sorunların aygıta ve sisteme özgü birçok nedeni olabilir, genel olarak söylemek zor. Aygıt ayarlarınıza bakmalı ve uygulamanın arka plandayken açılmasına ve diğer uygulamaların üzerinde görüntülenmesine izin verildiğinden emin olmalısınız. @@ -78,4 +80,4 @@ Bazı dizeleri bulamadınız mı? Burada daha fazlası var: https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res --> - \ No newline at end of file + diff --git a/app/src/main/res/values-uk/strings.xml b/app/src/main/res/values-uk/strings.xml index 6b23aadf..39365f9a 100644 --- a/app/src/main/res/values-uk/strings.xml +++ b/app/src/main/res/values-uk/strings.xml @@ -71,6 +71,8 @@ Вимикати датник наближення під час викликів Замінити перетягування на натискання під час відповіді на вхідні виклики Always display incoming calls on full screen + Hide dialpad numbers + I hear incoming calls, but the screen doesn\'t turn on. What can I do? Such issues can have many device and system specific reasons, hard to say in general. You should look around in your device settings and make sure that the app is allowed to pop up when in background and allow displaying over other apps. diff --git a/app/src/main/res/values-zh-rCN/strings.xml b/app/src/main/res/values-zh-rCN/strings.xml index 343d98ca..7e68a8d9 100644 --- a/app/src/main/res/values-zh-rCN/strings.xml +++ b/app/src/main/res/values-zh-rCN/strings.xml @@ -71,6 +71,8 @@ 在通话期间禁用接近传感器 用点击代替滑动来接听来电 始终全屏显示来电 + Hide dialpad numbers + 我听到来电声音,但屏幕不亮。我该怎么办\? 这样的问题可能有很多设备和系统的具体原因,很难笼统地说。你应该查看你的设备设置,确保应用在后台时被允许弹出,并允许其显示在其他应用上方。 @@ -78,4 +80,4 @@ Haven't found some strings? There's more at https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res --> - \ No newline at end of file + diff --git a/app/src/main/res/values-zh-rTW/strings.xml b/app/src/main/res/values-zh-rTW/strings.xml index d7d48227..83e9789b 100644 --- a/app/src/main/res/values-zh-rTW/strings.xml +++ b/app/src/main/res/values-zh-rTW/strings.xml @@ -71,6 +71,8 @@ Disable proximity sensor during calls Replace swiping at responding to incoming calls with clicking Always display incoming calls on full screen + Hide dialpad numbers + I hear incoming calls, but the screen doesn\'t turn on. What can I do? Such issues can have many device and system specific reasons, hard to say in general. You should look around in your device settings and make sure that the app is allowed to pop up when in background and allow displaying over other apps. diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 427f8749..42db4841 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -77,6 +77,7 @@ Disable proximity sensor during calls Replace swiping at responding to incoming calls with clicking Always display incoming calls on full screen + Hide dialpad numbers I hear incoming calls, but the screen doesn\'t turn on. What can I do?