diff --git a/app/build.gradle b/app/build.gradle
index 0558cf54..0f4c3400 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -56,7 +56,7 @@ android {
}
dependencies {
- implementation 'com.github.SimpleMobileTools:Simple-Commons:ee14aec731'
+ implementation 'com.github.SimpleMobileTools:Simple-Commons:addc442133'
implementation 'joda-time:joda-time:2.10.3'
implementation 'com.googlecode.ez-vcard:ez-vcard:0.10.5'
implementation 'com.github.tibbi:IndicatorFastScroll:c3de1d040a'
diff --git a/app/src/main/kotlin/com/simplemobiletools/contacts/pro/activities/ViewContactActivity.kt b/app/src/main/kotlin/com/simplemobiletools/contacts/pro/activities/ViewContactActivity.kt
index 78d4b0f4..b73e5db7 100644
--- a/app/src/main/kotlin/com/simplemobiletools/contacts/pro/activities/ViewContactActivity.kt
+++ b/app/src/main/kotlin/com/simplemobiletools/contacts/pro/activities/ViewContactActivity.kt
@@ -10,12 +10,12 @@ import android.provider.ContactsContract
import android.view.View
import android.view.WindowManager
import android.widget.RelativeLayout
+import com.simplemobiletools.commons.dialogs.CallConfirmationDialog
import com.simplemobiletools.commons.dialogs.ConfirmationDialog
import com.simplemobiletools.commons.dialogs.SelectAlarmSoundDialog
import com.simplemobiletools.commons.extensions.*
import com.simplemobiletools.commons.helpers.*
import com.simplemobiletools.contacts.pro.R
-import com.simplemobiletools.contacts.pro.dialogs.CallConfirmationDialog
import com.simplemobiletools.contacts.pro.dialogs.ChooseSocialDialog
import com.simplemobiletools.contacts.pro.extensions.*
import com.simplemobiletools.contacts.pro.helpers.*
@@ -173,8 +173,10 @@ class ViewContactActivity : ContactActivity() {
}
val textColor = config.textColor
- arrayOf(contact_name_image, contact_numbers_image, contact_emails_image, contact_addresses_image, contact_events_image, contact_source_image,
- contact_notes_image, contact_ringtone_image, contact_organization_image, contact_websites_image, contact_groups_image).forEach {
+ arrayOf(
+ contact_name_image, contact_numbers_image, contact_emails_image, contact_addresses_image, contact_events_image, contact_source_image,
+ contact_notes_image, contact_ringtone_image, contact_organization_image, contact_websites_image, contact_groups_image
+ ).forEach {
it.applyColorFilter(textColor)
}
@@ -599,11 +601,17 @@ class ViewContactActivity : ContactActivity() {
startActivityForResult(ringtonePickerIntent, INTENT_SELECT_RINGTONE)
} catch (e: Exception) {
val currentRingtone = contact!!.ringtone ?: getDefaultAlarmSound(RingtoneManager.TYPE_RINGTONE).uri
- SelectAlarmSoundDialog(this@ViewContactActivity, currentRingtone, AudioManager.STREAM_RING, PICK_RINGTONE_INTENT_ID, RingtoneManager.TYPE_RINGTONE, true,
+ SelectAlarmSoundDialog(this@ViewContactActivity,
+ currentRingtone,
+ AudioManager.STREAM_RING,
+ PICK_RINGTONE_INTENT_ID,
+ RingtoneManager.TYPE_RINGTONE,
+ true,
onAlarmPicked = {
contact_ringtone.text = it?.title
ringtoneUpdated(it?.uri)
- }, onAlarmSoundDeleted = {}
+ },
+ onAlarmSoundDeleted = {}
)
}
}
diff --git a/app/src/main/kotlin/com/simplemobiletools/contacts/pro/dialogs/CallConfirmationDialog.kt b/app/src/main/kotlin/com/simplemobiletools/contacts/pro/dialogs/CallConfirmationDialog.kt
deleted file mode 100644
index 75e82337..00000000
--- a/app/src/main/kotlin/com/simplemobiletools/contacts/pro/dialogs/CallConfirmationDialog.kt
+++ /dev/null
@@ -1,32 +0,0 @@
-package com.simplemobiletools.contacts.pro.dialogs
-
-import android.view.animation.AnimationUtils
-import androidx.appcompat.app.AlertDialog
-import com.simplemobiletools.commons.activities.BaseSimpleActivity
-import com.simplemobiletools.commons.extensions.applyColorFilter
-import com.simplemobiletools.commons.extensions.setupDialogStuff
-import com.simplemobiletools.contacts.pro.R
-import com.simplemobiletools.contacts.pro.extensions.config
-import kotlinx.android.synthetic.main.dialog_call_confirmation.view.*
-
-class CallConfirmationDialog(val activity: BaseSimpleActivity, val callee: String, private val callback: () -> Unit) {
- private var view = activity.layoutInflater.inflate(R.layout.dialog_call_confirmation, null)
-
- init {
- view.call_confirm_phone.applyColorFilter(activity.config.textColor)
- AlertDialog.Builder(activity)
- .setNegativeButton(R.string.cancel, null)
- .create().apply {
- val title = String.format(activity.getString(R.string.call_person), callee)
- activity.setupDialogStuff(view, this, titleText = title) {
- view.call_confirm_phone.apply {
- startAnimation(AnimationUtils.loadAnimation(activity, R.anim.pulsing_animation))
- setOnClickListener {
- callback.invoke()
- dismiss()
- }
- }
- }
- }
- }
-}
diff --git a/app/src/main/kotlin/com/simplemobiletools/contacts/pro/extensions/Activity.kt b/app/src/main/kotlin/com/simplemobiletools/contacts/pro/extensions/Activity.kt
index 077435cd..92278317 100644
--- a/app/src/main/kotlin/com/simplemobiletools/contacts/pro/extensions/Activity.kt
+++ b/app/src/main/kotlin/com/simplemobiletools/contacts/pro/extensions/Activity.kt
@@ -5,6 +5,7 @@ import android.net.Uri
import android.provider.ContactsContract.CommonDataKinds.BaseTypes
import android.provider.ContactsContract.CommonDataKinds.Phone
import com.simplemobiletools.commons.activities.BaseSimpleActivity
+import com.simplemobiletools.commons.dialogs.CallConfirmationDialog
import com.simplemobiletools.commons.dialogs.RadioGroupDialog
import com.simplemobiletools.commons.extensions.*
import com.simplemobiletools.commons.helpers.PERMISSION_CALL_PHONE
@@ -12,7 +13,6 @@ import com.simplemobiletools.commons.models.RadioItem
import com.simplemobiletools.contacts.pro.BuildConfig
import com.simplemobiletools.contacts.pro.R
import com.simplemobiletools.contacts.pro.activities.SimpleActivity
-import com.simplemobiletools.contacts.pro.dialogs.CallConfirmationDialog
import com.simplemobiletools.contacts.pro.helpers.*
import com.simplemobiletools.contacts.pro.models.Contact
@@ -118,15 +118,17 @@ fun SimpleActivity.getPhoneNumberTypeText(type: Int, label: String): String {
return if (type == BaseTypes.TYPE_CUSTOM) {
label
} else {
- getString(when (type) {
- Phone.TYPE_MOBILE -> R.string.mobile
- Phone.TYPE_HOME -> R.string.home
- Phone.TYPE_WORK -> R.string.work
- Phone.TYPE_MAIN -> R.string.main_number
- Phone.TYPE_FAX_WORK -> R.string.work_fax
- Phone.TYPE_FAX_HOME -> R.string.home_fax
- Phone.TYPE_PAGER -> R.string.pager
- else -> R.string.other
- })
+ getString(
+ when (type) {
+ Phone.TYPE_MOBILE -> R.string.mobile
+ Phone.TYPE_HOME -> R.string.home
+ Phone.TYPE_WORK -> R.string.work
+ Phone.TYPE_MAIN -> R.string.main_number
+ Phone.TYPE_FAX_WORK -> R.string.work_fax
+ Phone.TYPE_FAX_HOME -> R.string.home_fax
+ Phone.TYPE_PAGER -> R.string.pager
+ else -> R.string.other
+ }
+ )
}
}
diff --git a/app/src/main/res/anim/pulsing_animation.xml b/app/src/main/res/anim/pulsing_animation.xml
deleted file mode 100644
index 119d4b04..00000000
--- a/app/src/main/res/anim/pulsing_animation.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
diff --git a/app/src/main/res/layout/dialog_call_confirmation.xml b/app/src/main/res/layout/dialog_call_confirmation.xml
deleted file mode 100644
index c51c4d08..00000000
--- a/app/src/main/res/layout/dialog_call_confirmation.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
-
-
-
diff --git a/app/src/main/res/values-ar/strings.xml b/app/src/main/res/values-ar/strings.xml
index a04362e7..69885a20 100644
--- a/app/src/main/res/values-ar/strings.xml
+++ b/app/src/main/res/values-ar/strings.xml
@@ -12,7 +12,6 @@
ارسال بريد الكتروني الى جهات الاتصال
ارسال رسالة الى مجموعة
ارسال بريد الكتروني الى مجموعة
- Call %s
إنشاء جهة إتصال
إضافة إلى جهة موجودة
@@ -50,7 +49,6 @@
عرض تفاصيل جهة الاتصال
إدارة حقول جهات الاتصال المعروضة
جهات الاتصال
- إظهار مربع حوار تأكيد الاتصال قبل بدء مكالمة
إظهار جهات الإتصال التي لديها أرقام هواتف فقط
Show private contacts to Simple Dialer, Simple SMS Messenger and Simple Calendar Pro
diff --git a/app/src/main/res/values-az/strings.xml b/app/src/main/res/values-az/strings.xml
index 51342cb3..01aa0847 100644
--- a/app/src/main/res/values-az/strings.xml
+++ b/app/src/main/res/values-az/strings.xml
@@ -12,7 +12,6 @@
Kontaktlara e-poçt göndər
Grupa SMS göndər
Grupa e-poçt göndər
- %s şəxsinə zng et
Create new contact
Add to an existing contact
@@ -50,7 +49,6 @@
Kontakt detallarına bax
Göstərilən kontakt sahəsini idarə et
Kontaktlar
- Zəngə başlamazdan əvvəl zəng təsdiq pəncərəsi göstər
Show only contacts with phone numbers
Show private contacts to Simple Dialer, Simple SMS Messenger and Simple Calendar Pro
diff --git a/app/src/main/res/values-cs/strings.xml b/app/src/main/res/values-cs/strings.xml
index 5aeffe0e..1f0239a5 100644
--- a/app/src/main/res/values-cs/strings.xml
+++ b/app/src/main/res/values-cs/strings.xml
@@ -12,7 +12,6 @@
Poslat kontaktům e-mail
Poslat skupině SMS
Poslat skupině e-mail
- Zavolat %s
Vytvořit nový kontakt
Přidat k existujícímu kontaktu
@@ -50,7 +49,6 @@
Zobrazit údaje kontaktu
Spravovat zobrazená pole kontaktů
Kontakty
- Před zahájením hovoru zobrazit potvrzovací dialog
Zobrazit jen kontakty s telefonními čísly
Show private contacts to Simple Dialer, Simple SMS Messenger and Simple Calendar Pro
diff --git a/app/src/main/res/values-cy/strings.xml b/app/src/main/res/values-cy/strings.xml
index 6ff58cc1..51be0175 100644
--- a/app/src/main/res/values-cy/strings.xml
+++ b/app/src/main/res/values-cy/strings.xml
@@ -12,7 +12,6 @@
Anfon e-bost at gysylltiadau
Anfon SMS at grŵp
Anfon ebost at grŵp
- Galw %s
Creu cyswllt newydd
Ychwanegu at gyswllt sy\'n bodoli
@@ -50,7 +49,6 @@
Gweld manylion cyswllt
Rheoli pa feysydd cyswllt i\'w dangos
Cysylltiadau
- Dangos deialog i gadarnhau cyn gwneud galwad
Dangos dim ond cysylltiadau gyda rhifau ffôn
Show private contacts to Simple Dialer, Simple SMS Messenger and Simple Calendar Pro
diff --git a/app/src/main/res/values-da/strings.xml b/app/src/main/res/values-da/strings.xml
index ece47eeb..46dffe95 100644
--- a/app/src/main/res/values-da/strings.xml
+++ b/app/src/main/res/values-da/strings.xml
@@ -12,7 +12,6 @@
Send email til kontakter
Send SMS til gruppe
Send email til gruppe
- Ring til %s
Opret ny kontakt
Tilføj til en eksisterende kontakt
@@ -50,7 +49,6 @@
Vis kontakt detaljer
Administrer viste kontaktfelter
Kontakter
- Vis en opkaldsbekræftelsesdialog før du starter et opkald
Vis kun kontakter med telefonnumre
Show private contacts to Simple Dialer, Simple SMS Messenger and Simple Calendar Pro
diff --git a/app/src/main/res/values-de/strings.xml b/app/src/main/res/values-de/strings.xml
index 1bb9b46f..6578677e 100644
--- a/app/src/main/res/values-de/strings.xml
+++ b/app/src/main/res/values-de/strings.xml
@@ -12,7 +12,6 @@
E-Mail an Kontakte senden
SMS an Gruppe senden
E-Mail an Gruppe senden
- %s anrufen
Neuen Kontakt erstellen
Zu einem existierenden Kontakt hinzufügen
@@ -50,7 +49,6 @@
Kontaktdetails anzeigen
Sichtbare Kontaktfelder bearbeiten
Kontakte
- Bestätigungsdialog zeigen, bevor ein Anruf durchgeführt wird
Nur Kontakte mit Telefonnummern anzeigen
Zeige private Kontakte in Schlichtem Telefon, SMS Messenger und Kalender Pro
diff --git a/app/src/main/res/values-el/strings.xml b/app/src/main/res/values-el/strings.xml
index 00d0cac1..3f6c40ec 100644
--- a/app/src/main/res/values-el/strings.xml
+++ b/app/src/main/res/values-el/strings.xml
@@ -12,7 +12,6 @@
Αποστολή email σε επαφές
Αποστολή SMS σε ομάδες
Αποστολή email σε ομάδες
- Κλήση %s
Δημιουργία νέας Επαφής
Προσθήκη σε μια υπάρχουσα Επαφή
@@ -50,7 +49,6 @@
Εμφάνιση λεπτομερειών επαφής
Διαχείριση εμφανιζόμενων πεδίων επαφής
Επαφές
- Εμφάνιση διαλόγου επιβεβαίωσης πριν από την έναρξη μιας κλήσης
Προβολή όλων των Επαφών με αριθμούς τηλεφώνου
Εμφάνιση ιδιωτικών επαφών σε Απλή Κλήση, Απλός SMS Messenger και Απλό Ημερολόγιο Pro
diff --git a/app/src/main/res/values-es/strings.xml b/app/src/main/res/values-es/strings.xml
index c5b95bbb..572e8379 100644
--- a/app/src/main/res/values-es/strings.xml
+++ b/app/src/main/res/values-es/strings.xml
@@ -12,7 +12,6 @@
Enviar correo electrónico a contactos
Enviar SMS a grupo
Enviar correo electrónico a grupo
- Llamar a %s
Crear nuevo contacto
Añadir a un contacto existente
@@ -50,7 +49,6 @@
Ver detalles del contacto
Administrar campos del contacto mostrados
Contactos
- Mostrar un cuadro de confirmación antes de iniciar una llamada
Solo mostrar contactos con números telefónicos
Mostrar contactos privados a Marcador Simple, Mensajería SMS Simple y Calendario Simple Pro
diff --git a/app/src/main/res/values-eu/strings.xml b/app/src/main/res/values-eu/strings.xml
index f7229a65..0ee3ec8e 100644
--- a/app/src/main/res/values-eu/strings.xml
+++ b/app/src/main/res/values-eu/strings.xml
@@ -12,7 +12,6 @@
Bidali emaila kontaktuei
Bidali SMSa taldera
Bidali emaila taldeari
- %s deitu
Create new contact
Add to an existing contact
@@ -50,7 +49,6 @@
Ikusi kontaktu detaileak
Kudeatu erakutsitako kontaktu eremuak
Kontaktuak
- Erakutsi egiaztatze mezua dei bat hasi baino lehen
Show only contacts with phone numbers
Show private contacts to Simple Dialer, Simple SMS Messenger and Simple Calendar Pro
diff --git a/app/src/main/res/values-fi/strings.xml b/app/src/main/res/values-fi/strings.xml
index bcdc809c..997c6f55 100644
--- a/app/src/main/res/values-fi/strings.xml
+++ b/app/src/main/res/values-fi/strings.xml
@@ -12,7 +12,6 @@
Lähetä sähköposti yhteystiedoille
Lähetä tekstiviesti ryhmälle
Lähetä sähköposti ryhmälle
- Soita %s
Luo uusi yhteystieto
Lisää olemassa olevaan yhteystietoon
@@ -50,7 +49,6 @@
Näytä yhteystieto
Valitse, mitkä yhteystietojen kentät näytetään
Yhteystiedot
- Näytä soiton vahvistusruutu ennen soittoa
Näytä ainoastaan numerolliset yhteystiedot
Näytä yksityiset yhteystiedot sovelluksissa Simple Dialer, Simple SMS Messenger ja Simple Calendar Pro
diff --git a/app/src/main/res/values-fr/strings.xml b/app/src/main/res/values-fr/strings.xml
index 6403e229..1a62d607 100644
--- a/app/src/main/res/values-fr/strings.xml
+++ b/app/src/main/res/values-fr/strings.xml
@@ -12,7 +12,6 @@
Envoyer un courriel aux contacts
Envoyer un texto au groupe
Envoyer un courriel au groupe
- Appeler %s
Créer un nouveau contact
Ajouter à un contact existant
@@ -48,7 +47,6 @@
Afficher les détails du contact
Gérér l\’affichage des champs des contacts
Contacts
- Afficher une confirmation avant de faire un appel
N\’afficher que les contacts avec un numéro de téléphone
Présenter les contacts privés à Simple composeur, Simple SMS Messenger et Simple Calendar Pro
diff --git a/app/src/main/res/values-hi-rIN/strings.xml b/app/src/main/res/values-hi-rIN/strings.xml
index 78ed4f60..f120ff97 100644
--- a/app/src/main/res/values-hi-rIN/strings.xml
+++ b/app/src/main/res/values-hi-rIN/strings.xml
@@ -12,7 +12,6 @@
Send email to contacts
Send SMS to group
Send email to group
- Call %s
Create new contact
Add to an existing contact
@@ -50,7 +49,6 @@
View contact details
Manage shown contact fields
Contacts
- Show a call confirmation dialog before initiating a call
Show only contacts with phone numbers
Show private contacts to Simple Dialer, Simple SMS Messenger and Simple Calendar Pro
diff --git a/app/src/main/res/values-hr/strings.xml b/app/src/main/res/values-hr/strings.xml
index 777d4c6f..bb780071 100644
--- a/app/src/main/res/values-hr/strings.xml
+++ b/app/src/main/res/values-hr/strings.xml
@@ -12,7 +12,6 @@
Pošalji e-poštu kontaktima
Pošalji SMS grupi
Pošalji e-poštu grupi
- Nazovi %s
Stvori novi kontakt
Dodaj postojećem kontaktu
@@ -50,7 +49,6 @@
Prikaži pojedinosti o kontaktu
Upravljaj prikazanim poljima kontakta
Kontakti
- Pokažite dijaloški okvir za potvrdu poziva prije pokretanja poziva
Prikaži samo kontakte s telefonskim brojevima
Show private contacts to Simple Dialer, Simple SMS Messenger and Simple Calendar Pro
diff --git a/app/src/main/res/values-hu/strings.xml b/app/src/main/res/values-hu/strings.xml
index 9e1db325..3a05f867 100644
--- a/app/src/main/res/values-hu/strings.xml
+++ b/app/src/main/res/values-hu/strings.xml
@@ -12,7 +12,6 @@
Email küldése
SMS küldése csoportnak
Email küldése csoportnak
- %s hívása
Új névjegy hozzáadása
Hozzáadás meglévő névjegyhez
@@ -50,7 +49,6 @@
Részletek megjelenítése
A megjelenő mezők kiválasztása
Névjegyek
- Jóváhagyás kérése telefonhívás indítása előtt
Csak telefonszámot tartalmazó névjegyek kijelzése
Show private contacts to Simple Dialer, Simple SMS Messenger and Simple Calendar Pro
diff --git a/app/src/main/res/values-id/strings.xml b/app/src/main/res/values-id/strings.xml
index e7ea74e2..4a41e73a 100644
--- a/app/src/main/res/values-id/strings.xml
+++ b/app/src/main/res/values-id/strings.xml
@@ -12,7 +12,6 @@
Kirim surel ke kontak
Kirim SMS ke grup
Kirim surel ke grup
- Panggil %s
Buat kontak baru
Tambah ke kontak yang ada
@@ -50,7 +49,6 @@
Lihat detail kontak
Kelola ruas kontak yang ditampilkan
Kontak
- Tampilkan dialog konfirmasi panggilan sebelum melakukan panggilan
Hanya tampilkan kontak dengan nomor telepon
Show private contacts to Simple Dialer, Simple SMS Messenger and Simple Calendar Pro
diff --git a/app/src/main/res/values-in/strings.xml b/app/src/main/res/values-in/strings.xml
index e7ea74e2..4a41e73a 100644
--- a/app/src/main/res/values-in/strings.xml
+++ b/app/src/main/res/values-in/strings.xml
@@ -12,7 +12,6 @@
Kirim surel ke kontak
Kirim SMS ke grup
Kirim surel ke grup
- Panggil %s
Buat kontak baru
Tambah ke kontak yang ada
@@ -50,7 +49,6 @@
Lihat detail kontak
Kelola ruas kontak yang ditampilkan
Kontak
- Tampilkan dialog konfirmasi panggilan sebelum melakukan panggilan
Hanya tampilkan kontak dengan nomor telepon
Show private contacts to Simple Dialer, Simple SMS Messenger and Simple Calendar Pro
diff --git a/app/src/main/res/values-it/strings.xml b/app/src/main/res/values-it/strings.xml
index 0c5b8a75..b6a620bb 100644
--- a/app/src/main/res/values-it/strings.xml
+++ b/app/src/main/res/values-it/strings.xml
@@ -12,7 +12,6 @@
Invia un\'email ai contatti
Invia un SMS al gruppo
Invia un\'email al gruppo
- Chiama %s
Crea un nuovo contatto
Aggiungi a un contatto esistente
@@ -50,7 +49,6 @@
Visualizza i dettagli del contatto
Gestisci i campi mostrati
Contatti
- Mostra un messaggio di conferma prima di iniziare una chiamata
Mostra solamente i contatti con almeno un numero telefonico
Show private contacts to Simple Dialer, Simple SMS Messenger and Simple Calendar Pro
diff --git a/app/src/main/res/values-ja/strings.xml b/app/src/main/res/values-ja/strings.xml
index a27eef41..76650463 100644
--- a/app/src/main/res/values-ja/strings.xml
+++ b/app/src/main/res/values-ja/strings.xml
@@ -12,7 +12,6 @@
連絡先にメールを送信
グループにSMSを送信
グループにメールを送信
- %sに発信
新しい連絡先を作成
既存の連絡先に追加
@@ -50,7 +49,6 @@
連絡先の詳細を表示
連絡先に表示するフィールドを管理
連絡先
- 発信する前に確認ダイアログを表示する
電話番号が登録された連絡先のみ表示する
Simpleダイヤラー、Simpleショートメール、SimpleカレンダーProに個人の連絡先を表示
diff --git a/app/src/main/res/values-ko-rKR/strings.xml b/app/src/main/res/values-ko-rKR/strings.xml
index 4d5e2989..8892102a 100644
--- a/app/src/main/res/values-ko-rKR/strings.xml
+++ b/app/src/main/res/values-ko-rKR/strings.xml
@@ -12,7 +12,6 @@
Send email to contacts
Send SMS to group
Send email to group
- Call %s
Create new contact
Add to an existing contact
@@ -50,7 +49,6 @@
View contact details
Manage shown contact fields
Contacts
- Show a call confirmation dialog before initiating a call
Show only contacts with phone numbers
Show private contacts to Simple Dialer, Simple SMS Messenger and Simple Calendar Pro
diff --git a/app/src/main/res/values-lt/strings.xml b/app/src/main/res/values-lt/strings.xml
index b89231a9..26e1bed6 100644
--- a/app/src/main/res/values-lt/strings.xml
+++ b/app/src/main/res/values-lt/strings.xml
@@ -12,7 +12,6 @@
Send email to contacts
Send SMS to group
Send email to group
- Call %s
Create new contact
Add to an existing contact
@@ -50,7 +49,6 @@
Žiūrėti kontakto detales
Manage shown contact fields
Contacts
- Show a call confirmation dialog before initiating a call
Show only contacts with phone numbers
Show private contacts to Simple Dialer, Simple SMS Messenger and Simple Calendar Pro
diff --git a/app/src/main/res/values-ml/strings.xml b/app/src/main/res/values-ml/strings.xml
index db109989..e27e5451 100644
--- a/app/src/main/res/values-ml/strings.xml
+++ b/app/src/main/res/values-ml/strings.xml
@@ -12,7 +12,6 @@
കോൺടാക്റ്റുകളിലേക്ക് ഇമെയിൽ അയയ്ക്കുക
ഗ്രൂപ്പിലേക്ക് SMS അയയ്ക്കുക
ഗ്രൂപ്പിലേക്ക് ഇമെയിൽ അയയ്ക്കുക
- വിളിക്കുക %s
പുതിയ കോൺടാക്റ്റ് സൃഷ്ടിക്കുക
നിലവിലുള്ള കോൺടാക്റ്റിലേക്ക് ചേർക്കുക
@@ -50,7 +49,6 @@
കോൺടാക്റ്റ് വിശദാംശങ്ങൾ കാണുക
കോൺടാക്റ്റ് ഫീൽഡുകൾ കാണിക്കുന്നത് നിയന്ത്രിക്കുക
കോണ്ടാക്ടുകൾ
- ഒരു കോൾ ആരംഭിക്കുന്നതിന് മുമ്പ്, കോൾ സ്ഥിരീകരണ ഡയലോഗ് കാണിക്കുക
ഫോൺ നമ്പറുകളുള്ള കോൺടാക്റ്റുകൾ മാത്രം കാണിക്കുക
Simple Dialer-ലേക്കും Simple Messenger-ലേക്കും സ്വകാര്യ കോൺടാക്റ്റുകൾ കാണിക്കുക
diff --git a/app/src/main/res/values-nl/strings.xml b/app/src/main/res/values-nl/strings.xml
index 9930bd15..3edbc6ef 100644
--- a/app/src/main/res/values-nl/strings.xml
+++ b/app/src/main/res/values-nl/strings.xml
@@ -12,7 +12,6 @@
E-mail naar contacten sturen
SMS naar groep sturen
E-mail naar groep sturen
- %s bellen
Nieuw contact
Aan bestaand contact toevoegen
@@ -50,7 +49,6 @@
Details tonen
Contactvelden tonen/verbergen
Contacten
- Om bevestiging vragen voor het bellen
Alleen contacten met telefoonnummers tonen
Privécontacten in Eenvoudige Telefoon, Eenvoudige Berichten tonen en Eenvoudige Agenda Pro
diff --git a/app/src/main/res/values-pl/strings.xml b/app/src/main/res/values-pl/strings.xml
index 946a599d..bb681f76 100644
--- a/app/src/main/res/values-pl/strings.xml
+++ b/app/src/main/res/values-pl/strings.xml
@@ -12,7 +12,6 @@
Wyślij e-mail do kontaktów
Wyślij SMS-a do grupy
Wyślij e-mail do grupy
- Zadzwoń do: %s
Utwórz nowy kontakt
Dodaj do istniejącego kontaktu
@@ -50,7 +49,6 @@
Pokaż szczegóły kontaktu
Zarządzaj pokazywanymi polami kontaktu
Kontakty
- Pokazuj okno potwierdzenia zadzwonienia przed zainicjowaniem połączenia
Pokazuj wyłącznie kontakty z numerami telefonów
Pokazuj prywatne kontakty Prostemu telefonowi, Prostym wiadomościom SMS i Prostemu kalendarzowi Pro
diff --git a/app/src/main/res/values-pt-rBR/strings.xml b/app/src/main/res/values-pt-rBR/strings.xml
index da50e49e..636a3d3d 100644
--- a/app/src/main/res/values-pt-rBR/strings.xml
+++ b/app/src/main/res/values-pt-rBR/strings.xml
@@ -12,7 +12,6 @@
Enviar e-mail aos contatos
Enviar SMS ao grupo
Enviar e-mail ao grupo
- Ligar para %s
Criar novo contato
Adicionar um contato existente
@@ -50,7 +49,6 @@
Exibir detalhes do contato
Gerenciar os campos visíveis
Contatos
- Mostrar diálogo para confirmar a chamada antes de ligar
Mostar apenas os contatos com número de telefone
Show private contacts to Simple Dialer, Simple SMS Messenger and Simple Calendar Pro
diff --git a/app/src/main/res/values-pt/strings.xml b/app/src/main/res/values-pt/strings.xml
index 331d73fb..eba1607f 100644
--- a/app/src/main/res/values-pt/strings.xml
+++ b/app/src/main/res/values-pt/strings.xml
@@ -12,7 +12,6 @@
Enviar e-mail aos contactos
Enviar SMS para o grupo
Enviar e-mail para o grupo
- Ligar a %s
Criar novo contacto
Adicionar a um contacto existente
@@ -50,7 +49,6 @@
Ver detalhes
Gerir campos a mostrar
Contactos
- Mostrar diálogo para confirmar a chamada
Mostrar apenas contactos com número de telefone
Mostrar contactos privados em Simple Dialer, Simple SMS Messenger e em Simple Calendar Pro
diff --git a/app/src/main/res/values-ru/strings.xml b/app/src/main/res/values-ru/strings.xml
index 63d4d590..b5a3a7ac 100644
--- a/app/src/main/res/values-ru/strings.xml
+++ b/app/src/main/res/values-ru/strings.xml
@@ -12,7 +12,6 @@
Отправить письмо контактам
Отправить SMS группе
Отправить письмо группе
- Вызов %s
Создать новый контакт
Добавить к существующему контакту
@@ -50,7 +49,6 @@
Просмотр подробностей
Управление отображаемыми полями контактов
Контакты
- Показывать диалог подтверждения вызова
Показывать только контакты с номерами телефонов
Показывать личные контакты в Simple Dialer, Simple SMS Messenger и Simple Calendar Pro
diff --git a/app/src/main/res/values-sk/strings.xml b/app/src/main/res/values-sk/strings.xml
index 3753951d..2fcb8b28 100644
--- a/app/src/main/res/values-sk/strings.xml
+++ b/app/src/main/res/values-sk/strings.xml
@@ -12,7 +12,6 @@
Poslať kontaktom email
Poslať skupine SMS
Poslať skupine email
- Zavolať %s
Vytvoriť nový kontakt
Pridať k existujúcemu kontaktu
@@ -50,7 +49,6 @@
Zobraziť údaje kontaktu
Spravovať zobrazené polia kontaktov
Kontakty
- Zobraziť pred spustením hovoru okno na jeho potvrdenie
Zobraziť iba kontakty s telefónnymi číslami
Zobraziť súkromné kontakty Jednoduchému Telefónu, Jednoduchému SMS Správcovi a Jednoduchému Kalendáru Pro
diff --git a/app/src/main/res/values-sv/strings.xml b/app/src/main/res/values-sv/strings.xml
index 6d7e3a7a..2c075034 100644
--- a/app/src/main/res/values-sv/strings.xml
+++ b/app/src/main/res/values-sv/strings.xml
@@ -12,7 +12,6 @@
Skicka e-post till kontakter
Skicka sms till grupp
Skicka e-post till grupp
- Ring %s
Skapa ny kontakt
Lägg till i en befintlig kontakt
@@ -50,7 +49,6 @@
Visa kontaktuppgifter
Välj vilka kontaktfält som ska visas
Kontakter
- Visa en bekräftelsedialogruta före uppringning
Visa bara kontakter med telefonnummer
Show private contacts to Simple Dialer, Simple SMS Messenger and Simple Calendar Pro
diff --git a/app/src/main/res/values-tr/strings.xml b/app/src/main/res/values-tr/strings.xml
index a9ee1dde..8f6b8fc0 100644
--- a/app/src/main/res/values-tr/strings.xml
+++ b/app/src/main/res/values-tr/strings.xml
@@ -12,7 +12,6 @@
Kişilere e-posta gönder
Gruba SMS gönder
Gruba e-posta gönder
- %s kişisini ara
Yeni kişi oluştur
Mevcut bir kişiye ekle
@@ -50,7 +49,6 @@
Kişi bilgilerini göster
Görüntülenecek kişi alanlarını yönet
Kişiler
- Arama başlatmadan önce arama onayı penceresi göster
Sadece telefon numaralarını içeren kişileri göster
Özel kişileri Basit Çevirici, Basit SMS Messenger ve Basit Takvim Pro\'a göster
diff --git a/app/src/main/res/values-uk/strings.xml b/app/src/main/res/values-uk/strings.xml
index 52c34d43..bf2db768 100644
--- a/app/src/main/res/values-uk/strings.xml
+++ b/app/src/main/res/values-uk/strings.xml
@@ -12,7 +12,6 @@
Надіслати електронний лист контактам
Надіслати SMS групі контактів
Надіслати електронний лист групі контактів
- Телефонувати %s
Створити новий контакт
Додати до існуючого контакту
@@ -50,7 +49,6 @@
Переглянути деталі контакту
Керування полями контактів, що відображаються
Контакти
- Показувати діалог підтвердження виклику
Показувати лише контакти з телефонними номерами
Show private contacts to Simple Dialer, Simple SMS Messenger and Simple Calendar Pro
diff --git a/app/src/main/res/values-zh-rCN/strings.xml b/app/src/main/res/values-zh-rCN/strings.xml
index 391c54b6..c2530bc9 100644
--- a/app/src/main/res/values-zh-rCN/strings.xml
+++ b/app/src/main/res/values-zh-rCN/strings.xml
@@ -12,7 +12,6 @@
发送电子邮件给联系人
发送短信给群组
发送电子邮件给群组
- 打电话给 %s
建立新联系人
添加至已存在的联系人
@@ -50,7 +49,6 @@
显示联系人资料
管理显示的联系人字段
联系人
- 开始通话前显示通话确认框
只显示含有电话话码的联系人
显示私密联系人给简易拨号器和简易短信
diff --git a/app/src/main/res/values-zh-rTW/strings.xml b/app/src/main/res/values-zh-rTW/strings.xml
index fa861d1f..73c0147d 100644
--- a/app/src/main/res/values-zh-rTW/strings.xml
+++ b/app/src/main/res/values-zh-rTW/strings.xml
@@ -12,7 +12,6 @@
發送電子郵件給聯絡人
發送簡訊給群組
發送電子郵件給群組
- 打電話給 %s
建立新聯絡人
添加至已存在的聯絡人
@@ -50,7 +49,6 @@
顯示聯絡人資料
管理顯示的聯絡人欄位
聯絡人
- 開始通話前顯示通話確認框
只顯示含有電話話碼的聯絡人
Show private contacts to Simple Dialer, Simple SMS Messenger and Simple Calendar Pro
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index 78ed4f60..f120ff97 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -12,7 +12,6 @@
Send email to contacts
Send SMS to group
Send email to group
- Call %s
Create new contact
Add to an existing contact
@@ -50,7 +49,6 @@
View contact details
Manage shown contact fields
Contacts
- Show a call confirmation dialog before initiating a call
Show only contacts with phone numbers
Show private contacts to Simple Dialer, Simple SMS Messenger and Simple Calendar Pro
diff --git a/build.gradle b/build.gradle
index 550f9fcb..d483b72a 100644
--- a/build.gradle
+++ b/build.gradle
@@ -9,7 +9,7 @@ buildscript {
}
dependencies {
- classpath 'com.android.tools.build:gradle:4.2.1'
+ classpath 'com.android.tools.build:gradle:4.2.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong