moving the Call Confirmation dialog into Commons

This commit is contained in:
tibbi 2021-07-25 17:00:26 +02:00
parent 8ffd23f663
commit 4300eceb94
40 changed files with 28 additions and 148 deletions

View File

@ -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'

View File

@ -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 = {}
)
}
}

View File

@ -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()
}
}
}
}
}
}

View File

@ -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
}
)
}
}

View File

@ -1,14 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<scale
xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="1000"
android:fillAfter="false"
android:fromXScale="1.0"
android:fromYScale="1.0"
android:interpolator="@android:anim/accelerate_interpolator"
android:pivotX="50%"
android:pivotY="50%"
android:repeatCount="infinite"
android:repeatMode="reverse"
android:toXScale="1.2"
android:toYScale="1.2"/>

View File

@ -1,18 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/dialog_holder"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingTop="@dimen/activity_margin">
<ImageView
android:id="@+id/call_confirm_phone"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:background="?attr/selectableItemBackgroundBorderless"
android:padding="@dimen/activity_margin"
android:src="@drawable/ic_phone_vector"/>
</RelativeLayout>

View File

@ -12,7 +12,6 @@
<string name="send_email_to_contacts">ارسال بريد الكتروني الى جهات الاتصال</string>
<string name="send_sms_to_group">ارسال رسالة الى مجموعة</string>
<string name="send_email_to_group">ارسال بريد الكتروني الى مجموعة</string>
<string name="call_person">Call %s</string>
<string name="create_new_contact">إنشاء جهة إتصال</string>
<string name="add_to_existing_contact">إضافة إلى جهة موجودة</string>
@ -50,7 +49,6 @@
<string name="view_contact">عرض تفاصيل جهة الاتصال</string>
<string name="manage_shown_contact_fields">إدارة حقول جهات الاتصال المعروضة</string>
<string name="contacts">جهات الاتصال</string>
<string name="show_call_confirmation_dialog">إظهار مربع حوار تأكيد الاتصال قبل بدء مكالمة</string>
<string name="show_only_contacts_with_numbers">إظهار جهات الإتصال التي لديها أرقام هواتف فقط</string>
<string name="show_private_contacts">Show private contacts to Simple Dialer, Simple SMS Messenger and Simple Calendar Pro</string>

View File

@ -12,7 +12,6 @@
<string name="send_email_to_contacts">Kontaktlara e-poçt göndər</string>
<string name="send_sms_to_group">Grupa SMS göndər</string>
<string name="send_email_to_group">Grupa e-poçt göndər</string>
<string name="call_person">%s şəxsinə zng et</string>
<string name="create_new_contact">Create new contact</string>
<string name="add_to_existing_contact">Add to an existing contact</string>
@ -50,7 +49,6 @@
<string name="view_contact">Kontakt detallarına bax</string>
<string name="manage_shown_contact_fields">Göstərilən kontakt sahəsini idarə et</string>
<string name="contacts">Kontaktlar</string>
<string name="show_call_confirmation_dialog">Zəngə başlamazdan əvvəl zəng təsdiq pəncərəsi göstər</string>
<string name="show_only_contacts_with_numbers">Show only contacts with phone numbers</string>
<string name="show_private_contacts">Show private contacts to Simple Dialer, Simple SMS Messenger and Simple Calendar Pro</string>

View File

@ -12,7 +12,6 @@
<string name="send_email_to_contacts">Poslat kontaktům e-mail</string>
<string name="send_sms_to_group">Poslat skupině SMS</string>
<string name="send_email_to_group">Poslat skupině e-mail</string>
<string name="call_person">Zavolat %s</string>
<string name="create_new_contact">Vytvořit nový kontakt</string>
<string name="add_to_existing_contact">Přidat k existujícímu kontaktu</string>
@ -50,7 +49,6 @@
<string name="view_contact">Zobrazit údaje kontaktu</string>
<string name="manage_shown_contact_fields">Spravovat zobrazená pole kontaktů</string>
<string name="contacts">Kontakty</string>
<string name="show_call_confirmation_dialog">Před zahájením hovoru zobrazit potvrzovací dialog</string>
<string name="show_only_contacts_with_numbers">Zobrazit jen kontakty s telefonními čísly</string>
<string name="show_private_contacts">Show private contacts to Simple Dialer, Simple SMS Messenger and Simple Calendar Pro</string>

View File

@ -12,7 +12,6 @@
<string name="send_email_to_contacts">Anfon e-bost at gysylltiadau</string>
<string name="send_sms_to_group">Anfon SMS at grŵp</string>
<string name="send_email_to_group">Anfon ebost at grŵp</string>
<string name="call_person">Galw %s</string>
<string name="create_new_contact">Creu cyswllt newydd</string>
<string name="add_to_existing_contact">Ychwanegu at gyswllt sy\'n bodoli</string>
@ -50,7 +49,6 @@
<string name="view_contact">Gweld manylion cyswllt</string>
<string name="manage_shown_contact_fields">Rheoli pa feysydd cyswllt i\'w dangos</string>
<string name="contacts">Cysylltiadau</string>
<string name="show_call_confirmation_dialog">Dangos deialog i gadarnhau cyn gwneud galwad</string>
<string name="show_only_contacts_with_numbers">Dangos dim ond cysylltiadau gyda rhifau ffôn</string>
<string name="show_private_contacts">Show private contacts to Simple Dialer, Simple SMS Messenger and Simple Calendar Pro</string>

View File

@ -12,7 +12,6 @@
<string name="send_email_to_contacts">Send email til kontakter</string>
<string name="send_sms_to_group">Send SMS til gruppe</string>
<string name="send_email_to_group">Send email til gruppe</string>
<string name="call_person">Ring til %s</string>
<string name="create_new_contact">Opret ny kontakt</string>
<string name="add_to_existing_contact">Tilføj til en eksisterende kontakt</string>
@ -50,7 +49,6 @@
<string name="view_contact">Vis kontakt detaljer</string>
<string name="manage_shown_contact_fields">Administrer viste kontaktfelter</string>
<string name="contacts">Kontakter</string>
<string name="show_call_confirmation_dialog">Vis en opkaldsbekræftelsesdialog før du starter et opkald</string>
<string name="show_only_contacts_with_numbers">Vis kun kontakter med telefonnumre</string>
<string name="show_private_contacts">Show private contacts to Simple Dialer, Simple SMS Messenger and Simple Calendar Pro</string>

View File

@ -12,7 +12,6 @@
<string name="send_email_to_contacts">E-Mail an Kontakte senden</string>
<string name="send_sms_to_group">SMS an Gruppe senden</string>
<string name="send_email_to_group">E-Mail an Gruppe senden</string>
<string name="call_person">%s anrufen</string>
<string name="create_new_contact">Neuen Kontakt erstellen</string>
<string name="add_to_existing_contact">Zu einem existierenden Kontakt hinzufügen</string>
@ -50,7 +49,6 @@
<string name="view_contact">Kontaktdetails anzeigen</string>
<string name="manage_shown_contact_fields">Sichtbare Kontaktfelder bearbeiten</string>
<string name="contacts">Kontakte</string>
<string name="show_call_confirmation_dialog">Bestätigungsdialog zeigen, bevor ein Anruf durchgeführt wird</string>
<string name="show_only_contacts_with_numbers">Nur Kontakte mit Telefonnummern anzeigen</string>
<string name="show_private_contacts">Zeige private Kontakte in Schlichtem Telefon, SMS Messenger und Kalender Pro</string>

View File

@ -12,7 +12,6 @@
<string name="send_email_to_contacts">Αποστολή email σε επαφές</string>
<string name="send_sms_to_group">Αποστολή SMS σε ομάδες</string>
<string name="send_email_to_group">Αποστολή email σε ομάδες</string>
<string name="call_person">Κλήση %s</string>
<string name="create_new_contact">Δημιουργία νέας Επαφής</string>
<string name="add_to_existing_contact">Προσθήκη σε μια υπάρχουσα Επαφή</string>
@ -50,7 +49,6 @@
<string name="view_contact">Εμφάνιση λεπτομερειών επαφής</string>
<string name="manage_shown_contact_fields">Διαχείριση εμφανιζόμενων πεδίων επαφής</string>
<string name="contacts">Επαφές</string>
<string name="show_call_confirmation_dialog">Εμφάνιση διαλόγου επιβεβαίωσης πριν από την έναρξη μιας κλήσης</string>
<string name="show_only_contacts_with_numbers">Προβολή όλων των Επαφών με αριθμούς τηλεφώνου</string>
<string name="show_private_contacts">Εμφάνιση ιδιωτικών επαφών σε Απλή Κλήση, Απλός SMS Messenger και Απλό Ημερολόγιο Pro</string>

View File

@ -12,7 +12,6 @@
<string name="send_email_to_contacts">Enviar correo electrónico a contactos</string>
<string name="send_sms_to_group">Enviar SMS a grupo</string>
<string name="send_email_to_group">Enviar correo electrónico a grupo</string>
<string name="call_person">Llamar a %s</string>
<string name="create_new_contact">Crear nuevo contacto</string>
<string name="add_to_existing_contact">Añadir a un contacto existente</string>
@ -50,7 +49,6 @@
<string name="view_contact">Ver detalles del contacto</string>
<string name="manage_shown_contact_fields">Administrar campos del contacto mostrados</string>
<string name="contacts">Contactos</string>
<string name="show_call_confirmation_dialog">Mostrar un cuadro de confirmación antes de iniciar una llamada</string>
<string name="show_only_contacts_with_numbers">Solo mostrar contactos con números telefónicos</string>
<string name="show_private_contacts">Mostrar contactos privados a Marcador Simple, Mensajería SMS Simple y Calendario Simple Pro</string>

View File

@ -12,7 +12,6 @@
<string name="send_email_to_contacts">Bidali emaila kontaktuei</string>
<string name="send_sms_to_group">Bidali SMSa taldera</string>
<string name="send_email_to_group">Bidali emaila taldeari</string>
<string name="call_person">%s deitu</string>
<string name="create_new_contact">Create new contact</string>
<string name="add_to_existing_contact">Add to an existing contact</string>
@ -50,7 +49,6 @@
<string name="view_contact">Ikusi kontaktu detaileak</string>
<string name="manage_shown_contact_fields">Kudeatu erakutsitako kontaktu eremuak</string>
<string name="contacts">Kontaktuak</string>
<string name="show_call_confirmation_dialog">Erakutsi egiaztatze mezua dei bat hasi baino lehen</string>
<string name="show_only_contacts_with_numbers">Show only contacts with phone numbers</string>
<string name="show_private_contacts">Show private contacts to Simple Dialer, Simple SMS Messenger and Simple Calendar Pro</string>

View File

@ -12,7 +12,6 @@
<string name="send_email_to_contacts">Lähetä sähköposti yhteystiedoille</string>
<string name="send_sms_to_group">Lähetä tekstiviesti ryhmälle</string>
<string name="send_email_to_group">Lähetä sähköposti ryhmälle</string>
<string name="call_person">Soita %s</string>
<string name="create_new_contact">Luo uusi yhteystieto</string>
<string name="add_to_existing_contact">Lisää olemassa olevaan yhteystietoon</string>
@ -50,7 +49,6 @@
<string name="view_contact">Näytä yhteystieto</string>
<string name="manage_shown_contact_fields">Valitse, mitkä yhteystietojen kentät näytetään</string>
<string name="contacts">Yhteystiedot</string>
<string name="show_call_confirmation_dialog">Näytä soiton vahvistusruutu ennen soittoa</string>
<string name="show_only_contacts_with_numbers">Näytä ainoastaan numerolliset yhteystiedot</string>
<string name="show_private_contacts">Näytä yksityiset yhteystiedot sovelluksissa Simple Dialer, Simple SMS Messenger ja Simple Calendar Pro</string>

View File

@ -12,7 +12,6 @@
<string name="send_email_to_contacts">Envoyer un courriel aux contacts</string>
<string name="send_sms_to_group">Envoyer un texto au groupe</string>
<string name="send_email_to_group">Envoyer un courriel au groupe</string>
<string name="call_person">Appeler %s</string>
<string name="create_new_contact">Créer un nouveau contact</string>
<string name="add_to_existing_contact">Ajouter à un contact existant</string>
@ -48,7 +47,6 @@
<string name="view_contact">Afficher les détails du contact</string>
<string name="manage_shown_contact_fields">Gérér l\affichage des champs des contacts</string>
<string name="contacts">Contacts</string>
<string name="show_call_confirmation_dialog">Afficher une confirmation avant de faire un appel</string>
<string name="show_only_contacts_with_numbers">N\afficher que les contacts avec un numéro de téléphone</string>
<string name="show_private_contacts">Présenter les contacts privés à Simple composeur, Simple SMS Messenger et Simple Calendar Pro</string>

View File

@ -12,7 +12,6 @@
<string name="send_email_to_contacts">Send email to contacts</string>
<string name="send_sms_to_group">Send SMS to group</string>
<string name="send_email_to_group">Send email to group</string>
<string name="call_person">Call %s</string>
<string name="create_new_contact">Create new contact</string>
<string name="add_to_existing_contact">Add to an existing contact</string>
@ -50,7 +49,6 @@
<string name="view_contact">View contact details</string>
<string name="manage_shown_contact_fields">Manage shown contact fields</string>
<string name="contacts">Contacts</string>
<string name="show_call_confirmation_dialog">Show a call confirmation dialog before initiating a call</string>
<string name="show_only_contacts_with_numbers">Show only contacts with phone numbers</string>
<string name="show_private_contacts">Show private contacts to Simple Dialer, Simple SMS Messenger and Simple Calendar Pro</string>

View File

@ -12,7 +12,6 @@
<string name="send_email_to_contacts">Pošalji e-poštu kontaktima</string>
<string name="send_sms_to_group">Pošalji SMS grupi</string>
<string name="send_email_to_group">Pošalji e-poštu grupi</string>
<string name="call_person">Nazovi %s</string>
<string name="create_new_contact">Stvori novi kontakt</string>
<string name="add_to_existing_contact">Dodaj postojećem kontaktu</string>
@ -50,7 +49,6 @@
<string name="view_contact">Prikaži pojedinosti o kontaktu</string>
<string name="manage_shown_contact_fields">Upravljaj prikazanim poljima kontakta</string>
<string name="contacts">Kontakti</string>
<string name="show_call_confirmation_dialog">Pokažite dijaloški okvir za potvrdu poziva prije pokretanja poziva</string>
<string name="show_only_contacts_with_numbers">Prikaži samo kontakte s telefonskim brojevima</string>
<string name="show_private_contacts">Show private contacts to Simple Dialer, Simple SMS Messenger and Simple Calendar Pro</string>

View File

@ -12,7 +12,6 @@
<string name="send_email_to_contacts">Email küldése</string>
<string name="send_sms_to_group">SMS küldése csoportnak</string>
<string name="send_email_to_group">Email küldése csoportnak</string>
<string name="call_person">%s hívása</string>
<string name="create_new_contact">Új névjegy hozzáadása</string>
<string name="add_to_existing_contact">Hozzáadás meglévő névjegyhez</string>
@ -50,7 +49,6 @@
<string name="view_contact">Részletek megjelenítése</string>
<string name="manage_shown_contact_fields">A megjelenő mezők kiválasztása</string>
<string name="contacts">Névjegyek</string>
<string name="show_call_confirmation_dialog">Jóváhagyás kérése telefonhívás indítása előtt</string>
<string name="show_only_contacts_with_numbers">Csak telefonszámot tartalmazó névjegyek kijelzése</string>
<string name="show_private_contacts">Show private contacts to Simple Dialer, Simple SMS Messenger and Simple Calendar Pro</string>

View File

@ -12,7 +12,6 @@
<string name="send_email_to_contacts">Kirim surel ke kontak</string>
<string name="send_sms_to_group">Kirim SMS ke grup</string>
<string name="send_email_to_group">Kirim surel ke grup</string>
<string name="call_person">Panggil %s</string>
<string name="create_new_contact">Buat kontak baru</string>
<string name="add_to_existing_contact">Tambah ke kontak yang ada</string>
@ -50,7 +49,6 @@
<string name="view_contact">Lihat detail kontak</string>
<string name="manage_shown_contact_fields">Kelola ruas kontak yang ditampilkan</string>
<string name="contacts">Kontak</string>
<string name="show_call_confirmation_dialog">Tampilkan dialog konfirmasi panggilan sebelum melakukan panggilan</string>
<string name="show_only_contacts_with_numbers">Hanya tampilkan kontak dengan nomor telepon</string>
<string name="show_private_contacts">Show private contacts to Simple Dialer, Simple SMS Messenger and Simple Calendar Pro</string>

View File

@ -12,7 +12,6 @@
<string name="send_email_to_contacts">Kirim surel ke kontak</string>
<string name="send_sms_to_group">Kirim SMS ke grup</string>
<string name="send_email_to_group">Kirim surel ke grup</string>
<string name="call_person">Panggil %s</string>
<string name="create_new_contact">Buat kontak baru</string>
<string name="add_to_existing_contact">Tambah ke kontak yang ada</string>
@ -50,7 +49,6 @@
<string name="view_contact">Lihat detail kontak</string>
<string name="manage_shown_contact_fields">Kelola ruas kontak yang ditampilkan</string>
<string name="contacts">Kontak</string>
<string name="show_call_confirmation_dialog">Tampilkan dialog konfirmasi panggilan sebelum melakukan panggilan</string>
<string name="show_only_contacts_with_numbers">Hanya tampilkan kontak dengan nomor telepon</string>
<string name="show_private_contacts">Show private contacts to Simple Dialer, Simple SMS Messenger and Simple Calendar Pro</string>

View File

@ -12,7 +12,6 @@
<string name="send_email_to_contacts">Invia un\'email ai contatti</string>
<string name="send_sms_to_group">Invia un SMS al gruppo</string>
<string name="send_email_to_group">Invia un\'email al gruppo</string>
<string name="call_person">Chiama %s</string>
<string name="create_new_contact">Crea un nuovo contatto</string>
<string name="add_to_existing_contact">Aggiungi a un contatto esistente</string>
@ -50,7 +49,6 @@
<string name="view_contact">Visualizza i dettagli del contatto</string>
<string name="manage_shown_contact_fields">Gestisci i campi mostrati</string>
<string name="contacts">Contatti</string>
<string name="show_call_confirmation_dialog">Mostra un messaggio di conferma prima di iniziare una chiamata</string>
<string name="show_only_contacts_with_numbers">Mostra solamente i contatti con almeno un numero telefonico</string>
<string name="show_private_contacts">Show private contacts to Simple Dialer, Simple SMS Messenger and Simple Calendar Pro</string>

View File

@ -12,7 +12,6 @@
<string name="send_email_to_contacts">連絡先にメールを送信</string>
<string name="send_sms_to_group">グループにSMSを送信</string>
<string name="send_email_to_group">グループにメールを送信</string>
<string name="call_person">%sに発信</string>
<string name="create_new_contact">新しい連絡先を作成</string>
<string name="add_to_existing_contact">既存の連絡先に追加</string>
@ -50,7 +49,6 @@
<string name="view_contact">連絡先の詳細を表示</string>
<string name="manage_shown_contact_fields">連絡先に表示するフィールドを管理</string>
<string name="contacts">連絡先</string>
<string name="show_call_confirmation_dialog">発信する前に確認ダイアログを表示する</string>
<string name="show_only_contacts_with_numbers">電話番号が登録された連絡先のみ表示する</string>
<string name="show_private_contacts">Simpleダイヤラー、Simpleショートメール、SimpleカレンダーProに個人の連絡先を表示</string>

View File

@ -12,7 +12,6 @@
<string name="send_email_to_contacts">Send email to contacts</string>
<string name="send_sms_to_group">Send SMS to group</string>
<string name="send_email_to_group">Send email to group</string>
<string name="call_person">Call %s</string>
<string name="create_new_contact">Create new contact</string>
<string name="add_to_existing_contact">Add to an existing contact</string>
@ -50,7 +49,6 @@
<string name="view_contact">View contact details</string>
<string name="manage_shown_contact_fields">Manage shown contact fields</string>
<string name="contacts">Contacts</string>
<string name="show_call_confirmation_dialog">Show a call confirmation dialog before initiating a call</string>
<string name="show_only_contacts_with_numbers">Show only contacts with phone numbers</string>
<string name="show_private_contacts">Show private contacts to Simple Dialer, Simple SMS Messenger and Simple Calendar Pro</string>

View File

@ -12,7 +12,6 @@
<string name="send_email_to_contacts">Send email to contacts</string>
<string name="send_sms_to_group">Send SMS to group</string>
<string name="send_email_to_group">Send email to group</string>
<string name="call_person">Call %s</string>
<string name="create_new_contact">Create new contact</string>
<string name="add_to_existing_contact">Add to an existing contact</string>
@ -50,7 +49,6 @@
<string name="view_contact">Žiūrėti kontakto detales</string>
<string name="manage_shown_contact_fields">Manage shown contact fields</string>
<string name="contacts">Contacts</string>
<string name="show_call_confirmation_dialog">Show a call confirmation dialog before initiating a call</string>
<string name="show_only_contacts_with_numbers">Show only contacts with phone numbers</string>
<string name="show_private_contacts">Show private contacts to Simple Dialer, Simple SMS Messenger and Simple Calendar Pro</string>

View File

@ -12,7 +12,6 @@
<string name="send_email_to_contacts">കോൺ‌ടാക്റ്റുകളിലേക്ക് ഇമെയിൽ അയയ്‌ക്കുക</string>
<string name="send_sms_to_group">ഗ്രൂപ്പിലേക്ക് SMS അയയ്ക്കുക</string>
<string name="send_email_to_group">ഗ്രൂപ്പിലേക്ക് ഇമെയിൽ അയയ്ക്കുക</string>
<string name="call_person">വിളിക്കുക %s</string>
<string name="create_new_contact">പുതിയ കോൺ‌ടാക്റ്റ് സൃഷ്‌ടിക്കുക</string>
<string name="add_to_existing_contact">നിലവിലുള്ള കോൺ‌ടാക്റ്റിലേക്ക് ചേർക്കുക</string>
@ -50,7 +49,6 @@
<string name="view_contact">കോൺ‌ടാക്റ്റ് വിശദാംശങ്ങൾ‌ കാണുക</string>
<string name="manage_shown_contact_fields">കോൺടാക്റ്റ് ഫീൽഡുകൾ കാണിക്കുന്നത്‌ നിയന്ത്രിക്കുക</string>
<string name="contacts">കോണ്ടാക്ടുകൾ </string>
<string name="show_call_confirmation_dialog">ഒരു കോൾ ആരംഭിക്കുന്നതിന് മുമ്പ്, കോൾ സ്ഥിരീകരണ ഡയലോഗ് കാണിക്കുക</string>
<string name="show_only_contacts_with_numbers">ഫോൺ നമ്പറുകളുള്ള കോൺടാക്റ്റുകൾ മാത്രം കാണിക്കുക</string>
<string name="show_private_contacts">Simple Dialer-ലേക്കും Simple Messenger-ലേക്കും സ്വകാര്യ കോൺടാക്റ്റുകൾ കാണിക്കുക</string>

View File

@ -12,7 +12,6 @@
<string name="send_email_to_contacts">E-mail naar contacten sturen</string>
<string name="send_sms_to_group">SMS naar groep sturen</string>
<string name="send_email_to_group">E-mail naar groep sturen</string>
<string name="call_person">%s bellen</string>
<string name="create_new_contact">Nieuw contact</string>
<string name="add_to_existing_contact">Aan bestaand contact toevoegen</string>
@ -50,7 +49,6 @@
<string name="view_contact">Details tonen</string>
<string name="manage_shown_contact_fields">Contactvelden tonen/verbergen</string>
<string name="contacts">Contacten</string>
<string name="show_call_confirmation_dialog">Om bevestiging vragen voor het bellen</string>
<string name="show_only_contacts_with_numbers">Alleen contacten met telefoonnummers tonen</string>
<string name="show_private_contacts">Privécontacten in Eenvoudige Telefoon, Eenvoudige Berichten tonen en Eenvoudige Agenda Pro</string>

View File

@ -12,7 +12,6 @@
<string name="send_email_to_contacts">Wyślij e-mail do kontaktów</string>
<string name="send_sms_to_group">Wyślij SMS-a do grupy</string>
<string name="send_email_to_group">Wyślij e-mail do grupy</string>
<string name="call_person">Zadzwoń do: %s</string>
<string name="create_new_contact">Utwórz nowy kontakt</string>
<string name="add_to_existing_contact">Dodaj do istniejącego kontaktu</string>
@ -50,7 +49,6 @@
<string name="view_contact">Pokaż szczegóły kontaktu</string>
<string name="manage_shown_contact_fields">Zarządzaj pokazywanymi polami kontaktu</string>
<string name="contacts">Kontakty</string>
<string name="show_call_confirmation_dialog">Pokazuj okno potwierdzenia zadzwonienia przed zainicjowaniem połączenia</string>
<string name="show_only_contacts_with_numbers">Pokazuj wyłącznie kontakty z numerami telefonów</string>
<string name="show_private_contacts">Pokazuj prywatne kontakty Prostemu telefonowi, Prostym wiadomościom SMS i Prostemu kalendarzowi Pro</string>

View File

@ -12,7 +12,6 @@
<string name="send_email_to_contacts">Enviar e-mail aos contatos</string>
<string name="send_sms_to_group">Enviar SMS ao grupo</string>
<string name="send_email_to_group">Enviar e-mail ao grupo</string>
<string name="call_person">Ligar para %s</string>
<string name="create_new_contact">Criar novo contato</string>
<string name="add_to_existing_contact">Adicionar um contato existente</string>
@ -50,7 +49,6 @@
<string name="view_contact">Exibir detalhes do contato</string>
<string name="manage_shown_contact_fields">Gerenciar os campos visíveis</string>
<string name="contacts">Contatos</string>
<string name="show_call_confirmation_dialog">Mostrar diálogo para confirmar a chamada antes de ligar</string>
<string name="show_only_contacts_with_numbers">Mostar apenas os contatos com número de telefone</string>
<string name="show_private_contacts">Show private contacts to Simple Dialer, Simple SMS Messenger and Simple Calendar Pro</string>

View File

@ -12,7 +12,6 @@
<string name="send_email_to_contacts">Enviar e-mail aos contactos</string>
<string name="send_sms_to_group">Enviar SMS para o grupo</string>
<string name="send_email_to_group">Enviar e-mail para o grupo</string>
<string name="call_person">Ligar a %s</string>
<string name="create_new_contact">Criar novo contacto</string>
<string name="add_to_existing_contact">Adicionar a um contacto existente</string>
@ -50,7 +49,6 @@
<string name="view_contact">Ver detalhes</string>
<string name="manage_shown_contact_fields">Gerir campos a mostrar</string>
<string name="contacts">Contactos</string>
<string name="show_call_confirmation_dialog">Mostrar diálogo para confirmar a chamada</string>
<string name="show_only_contacts_with_numbers">Mostrar apenas contactos com número de telefone</string>
<string name="show_private_contacts">Mostrar contactos privados em Simple Dialer, Simple SMS Messenger e em Simple Calendar Pro</string>

View File

@ -12,7 +12,6 @@
<string name="send_email_to_contacts">Отправить письмо контактам</string>
<string name="send_sms_to_group">Отправить SMS группе</string>
<string name="send_email_to_group">Отправить письмо группе</string>
<string name="call_person">Вызов %s</string>
<string name="create_new_contact">Создать новый контакт</string>
<string name="add_to_existing_contact">Добавить к существующему контакту</string>
@ -50,7 +49,6 @@
<string name="view_contact">Просмотр подробностей</string>
<string name="manage_shown_contact_fields">Управление отображаемыми полями контактов</string>
<string name="contacts">Контакты</string>
<string name="show_call_confirmation_dialog">Показывать диалог подтверждения вызова</string>
<string name="show_only_contacts_with_numbers">Показывать только контакты с номерами телефонов</string>
<string name="show_private_contacts">Показывать личные контакты в Simple Dialer, Simple SMS Messenger и Simple Calendar Pro</string>

View File

@ -12,7 +12,6 @@
<string name="send_email_to_contacts">Poslať kontaktom email</string>
<string name="send_sms_to_group">Poslať skupine SMS</string>
<string name="send_email_to_group">Poslať skupine email</string>
<string name="call_person">Zavolať %s</string>
<string name="create_new_contact">Vytvoriť nový kontakt</string>
<string name="add_to_existing_contact">Pridať k existujúcemu kontaktu</string>
@ -50,7 +49,6 @@
<string name="view_contact">Zobraziť údaje kontaktu</string>
<string name="manage_shown_contact_fields">Spravovať zobrazené polia kontaktov</string>
<string name="contacts">Kontakty</string>
<string name="show_call_confirmation_dialog">Zobraziť pred spustením hovoru okno na jeho potvrdenie</string>
<string name="show_only_contacts_with_numbers">Zobraziť iba kontakty s telefónnymi číslami</string>
<string name="show_private_contacts">Zobraziť súkromné kontakty Jednoduchému Telefónu, Jednoduchému SMS Správcovi a Jednoduchému Kalendáru Pro</string>

View File

@ -12,7 +12,6 @@
<string name="send_email_to_contacts">Skicka e-post till kontakter</string>
<string name="send_sms_to_group">Skicka sms till grupp</string>
<string name="send_email_to_group">Skicka e-post till grupp</string>
<string name="call_person">Ring %s</string>
<string name="create_new_contact">Skapa ny kontakt</string>
<string name="add_to_existing_contact">Lägg till i en befintlig kontakt</string>
@ -50,7 +49,6 @@
<string name="view_contact">Visa kontaktuppgifter</string>
<string name="manage_shown_contact_fields">Välj vilka kontaktfält som ska visas</string>
<string name="contacts">Kontakter</string>
<string name="show_call_confirmation_dialog">Visa en bekräftelsedialogruta före uppringning</string>
<string name="show_only_contacts_with_numbers">Visa bara kontakter med telefonnummer</string>
<string name="show_private_contacts">Show private contacts to Simple Dialer, Simple SMS Messenger and Simple Calendar Pro</string>

View File

@ -12,7 +12,6 @@
<string name="send_email_to_contacts">Kişilere e-posta gönder</string>
<string name="send_sms_to_group">Gruba SMS gönder</string>
<string name="send_email_to_group">Gruba e-posta gönder</string>
<string name="call_person">%s kişisini ara</string>
<string name="create_new_contact">Yeni kişi oluştur</string>
<string name="add_to_existing_contact">Mevcut bir kişiye ekle</string>
@ -50,7 +49,6 @@
<string name="view_contact">Kişi bilgilerini göster</string>
<string name="manage_shown_contact_fields">Görüntülenecek kişi alanlarını yönet</string>
<string name="contacts">Kişiler</string>
<string name="show_call_confirmation_dialog">Arama başlatmadan önce arama onayı penceresi göster</string>
<string name="show_only_contacts_with_numbers">Sadece telefon numaralarını içeren kişileri göster</string>
<string name="show_private_contacts">Özel kişileri Basit Çevirici, Basit SMS Messenger ve Basit Takvim Pro\'a göster</string>

View File

@ -12,7 +12,6 @@
<string name="send_email_to_contacts">Надіслати електронний лист контактам</string>
<string name="send_sms_to_group">Надіслати SMS групі контактів</string>
<string name="send_email_to_group">Надіслати електронний лист групі контактів</string>
<string name="call_person">Телефонувати %s</string>
<string name="create_new_contact">Створити новий контакт</string>
<string name="add_to_existing_contact">Додати до існуючого контакту</string>
@ -50,7 +49,6 @@
<string name="view_contact">Переглянути деталі контакту</string>
<string name="manage_shown_contact_fields">Керування полями контактів, що відображаються</string>
<string name="contacts">Контакти</string>
<string name="show_call_confirmation_dialog">Показувати діалог підтвердження виклику</string>
<string name="show_only_contacts_with_numbers">Показувати лише контакти з телефонними номерами</string>
<string name="show_private_contacts">Show private contacts to Simple Dialer, Simple SMS Messenger and Simple Calendar Pro</string>

View File

@ -12,7 +12,6 @@
<string name="send_email_to_contacts">发送电子邮件给联系人</string>
<string name="send_sms_to_group">发送短信给群组</string>
<string name="send_email_to_group">发送电子邮件给群组</string>
<string name="call_person">打电话给 %s</string>
<string name="create_new_contact">建立新联系人</string>
<string name="add_to_existing_contact">添加至已存在的联系人</string>
@ -50,7 +49,6 @@
<string name="view_contact">显示联系人资料</string>
<string name="manage_shown_contact_fields">管理显示的联系人字段</string>
<string name="contacts">联系人</string>
<string name="show_call_confirmation_dialog">开始通话前显示通话确认框</string>
<string name="show_only_contacts_with_numbers">只显示含有电话话码的联系人</string>
<string name="show_private_contacts">显示私密联系人给简易拨号器和简易短信</string>

View File

@ -12,7 +12,6 @@
<string name="send_email_to_contacts">發送電子郵件給聯絡人</string>
<string name="send_sms_to_group">發送簡訊給群組</string>
<string name="send_email_to_group">發送電子郵件給群組</string>
<string name="call_person">打電話給 %s</string>
<string name="create_new_contact">建立新聯絡人</string>
<string name="add_to_existing_contact">添加至已存在的聯絡人</string>
@ -50,7 +49,6 @@
<string name="view_contact">顯示聯絡人資料</string>
<string name="manage_shown_contact_fields">管理顯示的聯絡人欄位</string>
<string name="contacts">聯絡人</string>
<string name="show_call_confirmation_dialog">開始通話前顯示通話確認框</string>
<string name="show_only_contacts_with_numbers">只顯示含有電話話碼的聯絡人</string>
<string name="show_private_contacts">Show private contacts to Simple Dialer, Simple SMS Messenger and Simple Calendar Pro</string>

View File

@ -12,7 +12,6 @@
<string name="send_email_to_contacts">Send email to contacts</string>
<string name="send_sms_to_group">Send SMS to group</string>
<string name="send_email_to_group">Send email to group</string>
<string name="call_person">Call %s</string>
<string name="create_new_contact">Create new contact</string>
<string name="add_to_existing_contact">Add to an existing contact</string>
@ -50,7 +49,6 @@
<string name="view_contact">View contact details</string>
<string name="manage_shown_contact_fields">Manage shown contact fields</string>
<string name="contacts">Contacts</string>
<string name="show_call_confirmation_dialog">Show a call confirmation dialog before initiating a call</string>
<string name="show_only_contacts_with_numbers">Show only contacts with phone numbers</string>
<string name="show_private_contacts">Show private contacts to Simple Dialer, Simple SMS Messenger and Simple Calendar Pro</string>

View File

@ -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