mirror of
https://github.com/SimpleMobileTools/Simple-Dialer.git
synced 2025-02-19 13:00:37 +01:00
Changed enable to disable
This commit is contained in:
parent
f0fda44685
commit
fa79c1484e
@ -98,11 +98,13 @@ class CallActivity : SimpleActivity() {
|
||||
}
|
||||
|
||||
private fun initButtons() {
|
||||
if (config.enableSwipeToAnswer) {
|
||||
if (!config.disableSwipeToAnswer) {
|
||||
handleSwipe()
|
||||
} else {
|
||||
call_draggable.beGone()
|
||||
call_draggable_background.beGone()
|
||||
call_left_arrow.beGone()
|
||||
call_right_arrow.beGone()
|
||||
|
||||
call_decline.setOnClickListener {
|
||||
endCall()
|
||||
@ -183,6 +185,9 @@ class CallActivity : SimpleActivity() {
|
||||
leftArrowTranslation = -call_decline.x
|
||||
rightArrowTranslation = call_decline.x
|
||||
|
||||
call_left_arrow.applyColorFilter(getColor(R.color.md_red_400))
|
||||
call_right_arrow.applyColorFilter(getColor(R.color.md_green_400))
|
||||
|
||||
startArrowAnimation(call_left_arrow, initialLeftArrowX, initialLeftArrowScaleX, initialLeftArrowScaleY, leftArrowTranslation)
|
||||
startArrowAnimation(call_right_arrow, initialRightArrowX, initialRightArrowScaleX, initialRightArrowScaleY, rightArrowTranslation)
|
||||
}
|
||||
|
@ -40,7 +40,7 @@ class SettingsActivity : SimpleActivity() {
|
||||
setupStartNameWithSurname()
|
||||
setupShowCallConfirmation()
|
||||
setupDisableProximitySensor()
|
||||
setupEnableSwipeToAnswer()
|
||||
setupDisableSwipeToAnswer()
|
||||
updateTextColors(settings_holder)
|
||||
invalidateOptionsMenu()
|
||||
|
||||
@ -222,11 +222,11 @@ class SettingsActivity : SimpleActivity() {
|
||||
}
|
||||
}
|
||||
|
||||
private fun setupEnableSwipeToAnswer() {
|
||||
settings_enable_swipe_to_answer.isChecked = config.enableSwipeToAnswer
|
||||
settings_enable_swipe_to_answer_holder.setOnClickListener {
|
||||
settings_enable_swipe_to_answer.toggle()
|
||||
config.enableSwipeToAnswer = settings_enable_swipe_to_answer.isChecked
|
||||
private fun setupDisableSwipeToAnswer() {
|
||||
settings_disable_swipe_to_answer.isChecked = config.disableSwipeToAnswer
|
||||
settings_disable_swipe_to_answer_holder.setOnClickListener {
|
||||
settings_disable_swipe_to_answer.toggle()
|
||||
config.disableSwipeToAnswer = settings_disable_swipe_to_answer.isChecked
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -52,9 +52,9 @@ class Config(context: Context) : BaseConfig(context) {
|
||||
get() = prefs.getBoolean(DISABLE_PROXIMITY_SENSOR, false)
|
||||
set(disableProximitySensor) = prefs.edit().putBoolean(DISABLE_PROXIMITY_SENSOR, disableProximitySensor).apply()
|
||||
|
||||
var enableSwipeToAnswer: Boolean
|
||||
get() = prefs.getBoolean(ENABLE_SWIPE_TO_ANSWER, false)
|
||||
set(enableSwipeToAnswer) = prefs.edit().putBoolean(ENABLE_SWIPE_TO_ANSWER, enableSwipeToAnswer).apply()
|
||||
var disableSwipeToAnswer: Boolean
|
||||
get() = prefs.getBoolean(DISABLE_SWIPE_TO_ANSWER, false)
|
||||
set(disableSwipeToAnswer) = prefs.edit().putBoolean(DISABLE_SWIPE_TO_ANSWER, disableSwipeToAnswer).apply()
|
||||
|
||||
var showTabs: Int
|
||||
get() = prefs.getInt(SHOW_TABS, ALL_TABS_MASK)
|
||||
|
@ -10,7 +10,7 @@ const val REMEMBER_SIM_PREFIX = "remember_sim_"
|
||||
const val GROUP_SUBSEQUENT_CALLS = "group_subsequent_calls"
|
||||
const val OPEN_DIAL_PAD_AT_LAUNCH = "open_dial_pad_at_launch"
|
||||
const val DISABLE_PROXIMITY_SENSOR = "disable_proximity_sensor"
|
||||
const val ENABLE_SWIPE_TO_ANSWER = "enable_swipe_to_answer"
|
||||
const val DISABLE_SWIPE_TO_ANSWER = "disable_swipe_to_answer"
|
||||
const val SHOW_TABS = "show_tabs"
|
||||
|
||||
const val ALL_TABS_MASK = TAB_CONTACTS or TAB_FAVORITES or TAB_CALL_HISTORY
|
||||
|
@ -315,18 +315,18 @@
|
||||
</RelativeLayout>
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/settings_enable_swipe_to_answer_holder"
|
||||
android:id="@+id/settings_disable_swipe_to_answer_holder"
|
||||
style="@style/SettingsHolderCheckboxStyle"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:background="@drawable/ripple_bottom_corners">
|
||||
|
||||
<com.simplemobiletools.commons.views.MyAppCompatCheckbox
|
||||
android:id="@+id/settings_enable_swipe_to_answer"
|
||||
android:id="@+id/settings_disable_swipe_to_answer"
|
||||
style="@style/SettingsCheckboxStyle"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/enable_swipe_to_answer" />
|
||||
android:text="@string/disable_swipe_to_answer" />
|
||||
|
||||
</RelativeLayout>
|
||||
</LinearLayout>
|
||||
|
@ -51,7 +51,7 @@
|
||||
<string name="group_subsequent_calls">Seskupte další hovory se stejným číslem v protokolu hovorů</string>
|
||||
<string name="open_dialpad_by_default">Open the dialpad by default when the app opens</string>
|
||||
<string name="disable_proximity_sensor">Disable proximity sensor during calls</string>
|
||||
<string name="enable_swipe_to_answer">Enable swipe to answer an incoming call</string>
|
||||
<string name="disable_swipe_to_answer">Replace swiping at responding to incoming calls with clicking</string>
|
||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||
<!-- App title has to have less than 50 characters. If you cannot squeeze it, just remove a part of it -->
|
||||
<string name="app_title">Simple Dialer - Spravujte své telefonní hovory snadno</string>
|
||||
|
@ -56,7 +56,7 @@
|
||||
<string name="group_subsequent_calls">Gruppér efterfølgende opkald med samme nummer i opkaldsloggen</string>
|
||||
<string name="open_dialpad_by_default">Åben det numeriske tastatur som standard når appen åbner</string>
|
||||
<string name="disable_proximity_sensor">Deaktivér nærhedssensor under opkald</string>
|
||||
<string name="enable_swipe_to_answer">Enable swipe to answer an incoming call</string>
|
||||
<string name="disable_swipe_to_answer">Replace swiping at responding to incoming calls with clicking</string>
|
||||
|
||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||
<!-- App title has to have less than 50 characters. If you cannot squeeze it, just remove a part of it -->
|
||||
|
@ -51,7 +51,7 @@
|
||||
<string name="group_subsequent_calls">In der Anrufliste aufeinanderfolgende Anrufe mit derselben Nummer gruppieren</string>
|
||||
<string name="open_dialpad_by_default">Öffnen Sie die Wähltastatur als Standard, wenn die App geöffnet wird</string>
|
||||
<string name="disable_proximity_sensor">Näherungssensor bei Anrufen deaktivieren</string>
|
||||
<string name="enable_swipe_to_answer">Enable swipe to answer an incoming call</string>
|
||||
<string name="disable_swipe_to_answer">Replace swiping at responding to incoming calls with clicking</string>
|
||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||
<!-- App title has to have less than 50 characters. If you cannot squeeze it, just remove a part of it -->
|
||||
<string name="app_title">Schlichtes Telefon – Verwalten Sie Ihre Anrufe ganz einfach</string>
|
||||
|
@ -56,7 +56,7 @@
|
||||
<string name="group_subsequent_calls">Ομαδοποίηση των επόμενων κλήσεων του ίδιου αριθμού στο αρχείο καταγραφής κλήσεων</string>
|
||||
<string name="open_dialpad_by_default">Ανοίξτε το πληκτρολόγιο από προεπιλογή όταν ανοίγει η εφαρμογή</string>
|
||||
<string name="disable_proximity_sensor">Απενεργοποίηση του αισθητήρα εγγύτητας κατά τη διάρκεια κλήσεων</string>
|
||||
<string name="enable_swipe_to_answer">Enable swipe to answer an incoming call</string>
|
||||
<string name="disable_swipe_to_answer">Replace swiping at responding to incoming calls with clicking</string>
|
||||
|
||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||
<!-- App title has to have less than 50 characters. If you cannot squeeze it, just remove a part of it -->
|
||||
|
@ -56,7 +56,7 @@
|
||||
<string name="group_subsequent_calls">Agrupar llamadas subsecuentes con el mísmo número en el registro de llamadas</string>
|
||||
<string name="open_dialpad_by_default">Abrir el teclado de marcado de forma predeterminada al abrir la aplicación</string>
|
||||
<string name="disable_proximity_sensor">Deshabilitar el sensor de proximidad durante las llamadas</string>
|
||||
<string name="enable_swipe_to_answer">Enable swipe to answer an incoming call</string>
|
||||
<string name="disable_swipe_to_answer">Replace swiping at responding to incoming calls with clicking</string>
|
||||
|
||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||
<!-- App title has to have less than 50 characters. If you cannot squeeze it, just remove a part of it -->
|
||||
|
@ -51,6 +51,7 @@
|
||||
<string name="group_subsequent_calls">Rühmita kõnelogis samale numbrile tehtud järjest kõned</string>
|
||||
<string name="open_dialpad_by_default">Rakenduse avamisel näita vaikimisi numbriklahvistikku</string>
|
||||
<string name="disable_proximity_sensor">Kõnede ajaks lülita lähedusandur välja</string>
|
||||
<string name="disable_swipe_to_answer">Replace swiping at responding to incoming calls with clicking</string>
|
||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||
<!-- App title has to have less than 50 characters. If you cannot squeeze it, just remove a part of it -->
|
||||
<string name="app_title">Lihtne telefon - halda mugavalt oma telefonikõnesid</string>
|
||||
@ -84,4 +85,4 @@
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
|
@ -51,7 +51,7 @@
|
||||
<string name="group_subsequent_calls">Ryhmitä saman numeron peräkkäiset puhelut puheluhistoriassa</string>
|
||||
<string name="open_dialpad_by_default">Avaa numeronäppäimistö, kun sovellus avataan</string>
|
||||
<string name="disable_proximity_sensor">Poista läheisyysanturi käytöstä puheluiden aikana</string>
|
||||
<string name="enable_swipe_to_answer">Enable swipe to answer an incoming call</string>
|
||||
<string name="disable_swipe_to_answer">Replace swiping at responding to incoming calls with clicking</string>
|
||||
|
||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||
<!-- App title has to have less than 50 characters. If you cannot squeeze it, just remove a part of it -->
|
||||
@ -63,4 +63,4 @@
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
|
@ -51,7 +51,7 @@
|
||||
<string name="group_subsequent_calls">Regrouper les appels suivants avec le même numéro dans le journal des appels</string>
|
||||
<string name="open_dialpad_by_default">Ouvrir le pavé numérique par défaut à l\'ouverture de l\'application</string>
|
||||
<string name="disable_proximity_sensor">Désactiver le capteur de proximité pendant les appels</string>
|
||||
<string name="enable_swipe_to_answer">Enable swipe to answer an incoming call</string>
|
||||
<string name="disable_swipe_to_answer">Replace swiping at responding to incoming calls with clicking</string>
|
||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||
<!-- App title has to have less than 50 characters. If you cannot squeeze it, just remove a part of it -->
|
||||
<string name="app_title">Simple Téléphone – Gérez facilement vos appels</string>
|
||||
|
@ -56,7 +56,7 @@
|
||||
<string name="group_subsequent_calls">Agrupar, no rexisto, as chamadas para o mesmo contacto</string>
|
||||
<string name="open_dialpad_by_default">Open the dialpad by default when the app opens</string>
|
||||
<string name="disable_proximity_sensor">Disable proximity sensor during calls</string>
|
||||
<string name="enable_swipe_to_answer">Enable swipe to answer an incoming call</string>
|
||||
<string name="disable_swipe_to_answer">Replace swiping at responding to incoming calls with clicking</string>
|
||||
|
||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||
<!-- App title has to have less than 50 characters. If you cannot squeeze it, just remove a part of it -->
|
||||
|
@ -51,7 +51,7 @@
|
||||
<string name="group_subsequent_calls">Ugyanazon szám egymást követő hívásainak csoportosítása a hívásnaplóban</string>
|
||||
<string name="open_dialpad_by_default">Tárcsázó alapértelmezett kinyitása az alkalmazás megnyitásakor</string>
|
||||
<string name="disable_proximity_sensor">Közelségérzékelő kikapcsolása a hívások során</string>
|
||||
<string name="enable_swipe_to_answer">Enable swipe to answer an incoming call</string>
|
||||
<string name="disable_swipe_to_answer">Replace swiping at responding to incoming calls with clicking</string>
|
||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||
<!-- App title has to have less than 50 characters. If you cannot squeeze it, just remove a part of it -->
|
||||
<string name="app_title">Simple Dialer – Telefonhívások kezelése egyszerűen</string>
|
||||
|
@ -56,7 +56,7 @@
|
||||
<string name="group_subsequent_calls">Kelompokkan panggilan berikutnya dengan nomor yang sama di log panggilan</string>
|
||||
<string name="open_dialpad_by_default">Open the dialpad by default when the app opens</string>
|
||||
<string name="disable_proximity_sensor">Disable proximity sensor during calls</string>
|
||||
<string name="enable_swipe_to_answer">Enable swipe to answer an incoming call</string>
|
||||
<string name="disable_swipe_to_answer">Replace swiping at responding to incoming calls with clicking</string>
|
||||
|
||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||
<!-- App title has to have less than 50 characters. If you cannot squeeze it, just remove a part of it -->
|
||||
|
@ -51,7 +51,7 @@
|
||||
<string name="group_subsequent_calls">Raggruppa chiamate successive con lo stesso numero nel registro delle chiamate</string>
|
||||
<string name="open_dialpad_by_default">Apri il tastierino per impostazione predefinita quando l\'app si apre</string>
|
||||
<string name="disable_proximity_sensor">Disattiva il sensore di prossimità durante le chiamate</string>
|
||||
<string name="enable_swipe_to_answer">Enable swipe to answer an incoming call</string>
|
||||
<string name="disable_swipe_to_answer">Replace swiping at responding to incoming calls with clicking</string>
|
||||
|
||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||
<!-- App title has to have less than 50 characters. If you cannot squeeze it, just remove a part of it -->
|
||||
@ -86,4 +86,4 @@
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
||||
</resources>
|
||||
|
@ -56,7 +56,7 @@
|
||||
<string name="group_subsequent_calls">後続の通話をコールログの同じ番号でグループ化する</string>
|
||||
<string name="open_dialpad_by_default">Open the dialpad by default when the app opens</string>
|
||||
<string name="disable_proximity_sensor">Disable proximity sensor during calls</string>
|
||||
<string name="enable_swipe_to_answer">Enable swipe to answer an incoming call</string>
|
||||
<string name="disable_swipe_to_answer">Replace swiping at responding to incoming calls with clicking</string>
|
||||
|
||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||
<!-- App title has to have less than 50 characters. If you cannot squeeze it, just remove a part of it -->
|
||||
|
@ -57,6 +57,7 @@
|
||||
<string name="group_subsequent_calls">Group subsequent calls with the same number at the call log</string>
|
||||
<string name="open_dialpad_by_default">Open the dialpad by default when the app opens</string>
|
||||
<string name="disable_proximity_sensor">Disable proximity sensor during calls</string>
|
||||
<string name="disable_swipe_to_answer">Replace swiping at responding to incoming calls with clicking</string>
|
||||
|
||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||
<!-- App title has to have less than 50 characters. If you cannot squeeze it, just remove a part of it -->
|
||||
|
@ -56,7 +56,7 @@
|
||||
<string name="group_subsequent_calls">കോൾ ലോഗിൽ അതേ നമ്പറുള്ള കോളുകൾ ഗ്രൂപ്പുചെയ്യുക</string>
|
||||
<string name="open_dialpad_by_default">Open the dialpad by default when the app opens</string>
|
||||
<string name="disable_proximity_sensor">Disable proximity sensor during calls</string>
|
||||
<string name="enable_swipe_to_answer">Enable swipe to answer an incoming call an incoming call</string>
|
||||
<string name="disable_swipe_to_answer">Replace swiping at responding to incoming calls with clicking an incoming call</string>
|
||||
|
||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||
<!-- App title has to have less than 50 characters. If you cannot squeeze it, just remove a part of it -->
|
||||
|
@ -56,7 +56,7 @@
|
||||
<string name="group_subsequent_calls">Oproepgeschiedenis: opeenvolgende items van hetzelfde nummer groeperen</string>
|
||||
<string name="open_dialpad_by_default">Standaard het toetsenblok openen bij starten</string>
|
||||
<string name="disable_proximity_sensor">Nabijheidssensor uitschakelen tijdens bellen</string>
|
||||
<string name="enable_swipe_to_answer">Enable swipe to answer an incoming call</string>
|
||||
<string name="disable_swipe_to_answer">Replace swiping at responding to incoming calls with clicking</string>
|
||||
|
||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||
<!-- App title has to have less than 50 characters. If you cannot squeeze it, just remove a part of it -->
|
||||
|
@ -51,7 +51,7 @@
|
||||
<string name="group_subsequent_calls">Grupuj kolejne połączenia z tym samym numerem w rejestrze połączeń</string>
|
||||
<string name="open_dialpad_by_default">Otwieraj panel wybierania numeru domyślnie przy uruchomieniu aplikacji</string>
|
||||
<string name="disable_proximity_sensor">Wyłączaj czujnik zbliżeniowy podczas połączeń</string>
|
||||
<string name="enable_swipe_to_answer">Włącz gest przesunięcia do odpowiadania na połączenia przychodzące</string>
|
||||
<string name="disable_swipe_to_answer">Zastąp naciśnięciem gest przesunięcia do odpowiadania na połączenia przychodzące</string>
|
||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||
<!-- App title has to have less than 50 characters. If you cannot squeeze it, just remove a part of it -->
|
||||
<string name="app_title">Prosty telefon - Łatwe połączenia telefoniczne</string>
|
||||
|
@ -56,7 +56,7 @@
|
||||
<string name="group_subsequent_calls">Agrupar, no registo, as chamadas para o mesmo contacto</string>
|
||||
<string name="open_dialpad_by_default">Mostrar teclado de marcação ao abrir a aplicação</string>
|
||||
<string name="disable_proximity_sensor">Desativar sensor de proximidade durante as chamadas</string>
|
||||
<string name="enable_swipe_to_answer">Enable swipe to answer an incoming call</string>
|
||||
<string name="disable_swipe_to_answer">Replace swiping at responding to incoming calls with clicking</string>
|
||||
|
||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||
<!-- App title has to have less than 50 characters. If you cannot squeeze it, just remove a part of it -->
|
||||
|
@ -56,6 +56,7 @@
|
||||
<string name="group_subsequent_calls">Grupaţi apelurile ulterioare cu același număr în jurnalul de apeluri</string>
|
||||
<string name="open_dialpad_by_default">Deschideți în mod implicit tastatura telefonică la deschiderea aplicației</string>
|
||||
<string name="disable_proximity_sensor">Dezactivați senzorul de proximitate în timpul apelurilor</string>
|
||||
<string name="disable_swipe_to_answer">Replace swiping at responding to incoming calls with clicking</string>
|
||||
|
||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||
<!-- App title has to have less than 50 characters. If you cannot squeeze it, just remove a part of it -->
|
||||
|
@ -51,7 +51,7 @@
|
||||
<string name="group_subsequent_calls">Группировать последующие вызовы с тем же номером в журнале вызовов</string>
|
||||
<string name="open_dialpad_by_default">По умолчанию открывать номеронабиратель при запуске приложения</string>
|
||||
<string name="disable_proximity_sensor">Отключать датчик приближения во время вызовов</string>
|
||||
<string name="enable_swipe_to_answer">Enable swipe to answer an incoming call</string>
|
||||
<string name="disable_swipe_to_answer">Replace swiping at responding to incoming calls with clicking</string>
|
||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||
<!-- App title has to have less than 50 characters. If you cannot squeeze it, just remove a part of it -->
|
||||
<string name="app_title">Simple Dialer - управление телефонными звонками</string>
|
||||
|
@ -56,7 +56,7 @@
|
||||
<string name="group_subsequent_calls">Zoskupiť susedné volania s rovnakým číslom v histórií volaní</string>
|
||||
<string name="open_dialpad_by_default">Otvoriť číselník po spustení apky</string>
|
||||
<string name="disable_proximity_sensor">Vypnúť počas hovorov senzor priblíženia</string>
|
||||
<string name="enable_swipe_to_answer">Enable swipe to answer an incoming call</string>
|
||||
<string name="disable_swipe_to_answer">Replace swiping at responding to incoming calls with clicking</string>
|
||||
|
||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||
<!-- App title has to have less than 50 characters. If you cannot squeeze it, just remove a part of it -->
|
||||
|
@ -56,7 +56,7 @@
|
||||
<string name="group_subsequent_calls">Gruppera samtal till och från samma nummer i samtalshistoriken</string>
|
||||
<string name="open_dialpad_by_default">Open the dialpad by default when the app opens</string>
|
||||
<string name="disable_proximity_sensor">Disable proximity sensor during calls</string>
|
||||
<string name="enable_swipe_to_answer">Enable swipe to answer an incoming call</string>
|
||||
<string name="disable_swipe_to_answer">Replace swiping at responding to incoming calls with clicking</string>
|
||||
|
||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||
<!-- App title has to have less than 50 characters. If you cannot squeeze it, just remove a part of it -->
|
||||
|
@ -51,7 +51,7 @@
|
||||
<string name="group_subsequent_calls">Arama kaydında aynı numaraya sahip sonraki aramaları gruplandır</string>
|
||||
<string name="open_dialpad_by_default">Uygulama açıldığında varsayılan olarak tuş takımını aç</string>
|
||||
<string name="disable_proximity_sensor">Aramalar sırasında yakınlık sensörünü devre dışı bırak</string>
|
||||
<string name="enable_swipe_to_answer">Enable swipe to answer an incoming call</string>
|
||||
<string name="disable_swipe_to_answer">Replace swiping at responding to incoming calls with clicking</string>
|
||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||
<!-- App title has to have less than 50 characters. If you cannot squeeze it, just remove a part of it -->
|
||||
<string name="app_title">Basit Çevirici - Aramaları kolayca yönetin</string>
|
||||
|
@ -56,7 +56,7 @@
|
||||
<string name="group_subsequent_calls">Group subsequent calls with the same number at the call log</string>
|
||||
<string name="open_dialpad_by_default">Open the dialpad by default when the app opens</string>
|
||||
<string name="disable_proximity_sensor">Disable proximity sensor during calls</string>
|
||||
<string name="enable_swipe_to_answer">Enable swipe to answer an incoming call</string>
|
||||
<string name="disable_swipe_to_answer">Replace swiping at responding to incoming calls with clicking</string>
|
||||
|
||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||
<!-- App title has to have less than 50 characters. If you cannot squeeze it, just remove a part of it -->
|
||||
|
@ -51,7 +51,7 @@
|
||||
<string name="group_subsequent_calls">在通话记录中将同一号码的后续呼叫合并为一组</string>
|
||||
<string name="open_dialpad_by_default">应用程序打开时默认打开拨号盘</string>
|
||||
<string name="disable_proximity_sensor">在通话期间禁用接近传感器</string>
|
||||
<string name="enable_swipe_to_answer">Enable swipe to answer an incoming call</string>
|
||||
<string name="disable_swipe_to_answer">Replace swiping at responding to incoming calls with clicking</string>
|
||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||
<!-- App title has to have less than 50 characters. If you cannot squeeze it, just remove a part of it -->
|
||||
<string name="app_title">简易拨号器 - 轻松管理您的手机通话</string>
|
||||
|
@ -56,7 +56,7 @@
|
||||
<string name="group_subsequent_calls">Group subsequent calls with the same number at the call log</string>
|
||||
<string name="open_dialpad_by_default">Open the dialpad by default when the app opens</string>
|
||||
<string name="disable_proximity_sensor">Disable proximity sensor during calls</string>
|
||||
<string name="enable_swipe_to_answer">Enable swipe to answer an incoming call</string>
|
||||
<string name="disable_swipe_to_answer">Replace swiping at responding to incoming calls with clicking</string>
|
||||
|
||||
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
|
||||
<!-- App title has to have less than 50 characters. If you cannot squeeze it, just remove a part of it -->
|
||||
|
Loading…
x
Reference in New Issue
Block a user