adding some call confirmation related items
This commit is contained in:
parent
dcbd6eca15
commit
addc442133
46 changed files with 148 additions and 0 deletions
|
@ -0,0 +1,32 @@
|
|||
package com.simplemobiletools.commons.dialogs
|
||||
|
||||
import android.view.animation.AnimationUtils
|
||||
import androidx.appcompat.app.AlertDialog
|
||||
import com.simplemobiletools.commons.R
|
||||
import com.simplemobiletools.commons.activities.BaseSimpleActivity
|
||||
import com.simplemobiletools.commons.extensions.applyColorFilter
|
||||
import com.simplemobiletools.commons.extensions.baseConfig
|
||||
import com.simplemobiletools.commons.extensions.setupDialogStuff
|
||||
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.baseConfig.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()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
13
commons/src/main/res/anim/pulsing_animation.xml
Normal file
13
commons/src/main/res/anim/pulsing_animation.xml
Normal file
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<scale xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:duration="800"
|
||||
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.3"
|
||||
android:toYScale="1.3" />
|
17
commons/src/main/res/layout/dialog_call_confirmation.xml
Normal file
17
commons/src/main/res/layout/dialog_call_confirmation.xml
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?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="@dimen/fingerprint_icon_size"
|
||||
android:layout_height="@dimen/fingerprint_icon_size"
|
||||
android:layout_centerInParent="true"
|
||||
android:background="?attr/selectableItemBackgroundBorderless"
|
||||
android:padding="@dimen/activity_margin"
|
||||
android:src="@drawable/ic_phone_vector" />
|
||||
|
||||
</RelativeLayout>
|
|
@ -37,6 +37,7 @@
|
|||
<string name="request_the_required_permissions">طلب الأذونات المطلوبة</string>
|
||||
<string name="no_access_to_contacts">يتعذر على التطبيق الوصول إلى جهات الاتصال الخاصة بك</string>
|
||||
<string name="insert_text_here">إدراج النص هنا</string>
|
||||
<string name="call_person">Call %s</string>
|
||||
|
||||
<!-- View types -->
|
||||
<string name="change_view_type">تغيير نوع العرض</string>
|
||||
|
@ -534,6 +535,7 @@
|
|||
<string name="settings_imported_successfully">تم إستيراد الإعدادات بنجاح</string>
|
||||
<string name="start_name_with_surname">الاسم يبدأ بالشهرة</string>
|
||||
<string name="clear_cache">Clear cache</string>
|
||||
<string name="show_call_confirmation_dialog">إظهار مربع حوار تأكيد الاتصال قبل بدء مكالمة</string>
|
||||
|
||||
<!-- Setting sections -->
|
||||
<string name="visibility">الرؤية</string>
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
<string name="request_the_required_permissions">Lazım olan icazələri istə</string>
|
||||
<string name="no_access_to_contacts">The app could not access your contacts</string>
|
||||
<string name="insert_text_here">Insert text here</string>
|
||||
<string name="call_person">%s şəxsinə zng et</string>
|
||||
|
||||
<!-- View types -->
|
||||
<string name="change_view_type">Change view type</string>
|
||||
|
@ -536,6 +537,7 @@
|
|||
<string name="settings_imported_successfully">Settings imported successfully</string>
|
||||
<string name="start_name_with_surname">Ada soyaddan başla</string>
|
||||
<string name="clear_cache">Clear cache</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>
|
||||
|
||||
<!-- Setting sections -->
|
||||
<string name="visibility">Görünürlük</string>
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
<string name="request_the_required_permissions">Request the required permissions</string>
|
||||
<string name="no_access_to_contacts">The app could not access your contacts</string>
|
||||
<string name="insert_text_here">Insert text here</string>
|
||||
<string name="call_person">Call %s</string>
|
||||
|
||||
<!-- View types -->
|
||||
<string name="change_view_type">Change view type</string>
|
||||
|
@ -536,6 +537,7 @@
|
|||
<string name="settings_imported_successfully">Settings imported successfully</string>
|
||||
<string name="start_name_with_surname">Start name with surname</string>
|
||||
<string name="clear_cache">Clear cache</string>
|
||||
<string name="show_call_confirmation_dialog">Show a call confirmation dialog before initiating a call</string>
|
||||
|
||||
<!-- Setting sections -->
|
||||
<string name="visibility">Visibility</string>
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
<string name="request_the_required_permissions">Sol·liciteu els permisos necessaris</string>
|
||||
<string name="no_access_to_contacts">L\'aplicació no ha pogut accedir als teus contactes</string>
|
||||
<string name="insert_text_here">Introdueix el text aquí</string>
|
||||
<string name="call_person">Call %s</string>
|
||||
|
||||
<!-- View types -->
|
||||
<string name="change_view_type">Canviar el tipus de vista</string>
|
||||
|
@ -536,6 +537,7 @@
|
|||
<string name="settings_imported_successfully">Ajustaments importats correctament</string>
|
||||
<string name="start_name_with_surname">Start name with surname</string>
|
||||
<string name="clear_cache">Clear cache</string>
|
||||
<string name="show_call_confirmation_dialog">Show a call confirmation dialog before initiating a call</string>
|
||||
|
||||
<!-- Setting sections -->
|
||||
<string name="visibility">Visibilitat</string>
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
<string name="request_the_required_permissions">Vyžádat potřebná oprávnění</string>
|
||||
<string name="no_access_to_contacts">Aplikace nemohla získat přístup k vašim kontaktům</string>
|
||||
<string name="insert_text_here">Sem vložte text</string>
|
||||
<string name="call_person">Zavolat %s</string>
|
||||
|
||||
<!-- View types -->
|
||||
<string name="change_view_type">Změnit typ zobrazení</string>
|
||||
|
@ -569,6 +570,7 @@
|
|||
<string name="settings_imported_successfully">Nastavení bylo úspěšně importováno</string>
|
||||
<string name="start_name_with_surname">Nejprve příjmení</string>
|
||||
<string name="clear_cache">Vyčistit mezipaměť</string>
|
||||
<string name="show_call_confirmation_dialog">Před zahájením hovoru zobrazit potvrzovací dialog</string>
|
||||
|
||||
<!-- Setting sections -->
|
||||
<string name="visibility">Viditelnost</string>
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
<string name="request_the_required_permissions">Gofyn am y caniatâd sydd ei angen</string>
|
||||
<string name="no_access_to_contacts">The app could not access your contacts</string>
|
||||
<string name="insert_text_here">Insert text here</string>
|
||||
<string name="call_person">Galw %s</string>
|
||||
|
||||
<!-- View types -->
|
||||
<string name="change_view_type">Change view type</string>
|
||||
|
@ -660,6 +661,7 @@
|
|||
<string name="settings_imported_successfully">Mewnforiwyd gosodiadau yn llwyddiannus</string>
|
||||
<string name="start_name_with_surname">Dangos enw gyda\'r cyfenw gyntaf</string>
|
||||
<string name="clear_cache">Clear cache</string>
|
||||
<string name="show_call_confirmation_dialog">Dangos deialog i gadarnhau cyn gwneud galwad</string>
|
||||
|
||||
<!-- Setting sections -->
|
||||
<string name="visibility">Gweladwyedd</string>
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
<string name="request_the_required_permissions">Anmod om de krævede tilladelser</string>
|
||||
<string name="no_access_to_contacts">Appen kunne ikke tilgå dine kontakter</string>
|
||||
<string name="insert_text_here">Indsæt tekst her</string>
|
||||
<string name="call_person">Ring til %s</string>
|
||||
|
||||
<!-- View types -->
|
||||
<string name="change_view_type">Skift visning</string>
|
||||
|
@ -536,6 +537,7 @@
|
|||
<string name="settings_imported_successfully">Indstillinger importeret</string>
|
||||
<string name="start_name_with_surname">Start navn med efternavn</string>
|
||||
<string name="clear_cache">Ryd cache</string>
|
||||
<string name="show_call_confirmation_dialog">Vis en opkaldsbekræftelsesdialog før du starter et opkald</string>
|
||||
|
||||
<!-- Setting sections -->
|
||||
<string name="visibility">Synlighed</string>
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
<string name="request_the_required_permissions">Benötigte Berechtigungen anfordern</string>
|
||||
<string name="no_access_to_contacts">Die App kann nicht auf deine Kontakte zugreifen</string>
|
||||
<string name="insert_text_here">Text hier einfügen</string>
|
||||
<string name="call_person">%s anrufen</string>
|
||||
|
||||
<!-- View types -->
|
||||
<string name="change_view_type">Darstellung ändern</string>
|
||||
|
@ -536,6 +537,7 @@
|
|||
<string name="settings_imported_successfully">Einstellungen erfolgreich importiert</string>
|
||||
<string name="start_name_with_surname">Namen mit Nachnamen beginnen</string>
|
||||
<string name="clear_cache">Cache leeren</string>
|
||||
<string name="show_call_confirmation_dialog">Bestätigungsdialog zeigen, bevor ein Anruf durchgeführt wird</string>
|
||||
|
||||
<!-- Setting sections -->
|
||||
<string name="visibility">Sichtbarkeit</string>
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
<string name="request_the_required_permissions">Ζητούνται τα απαιτούμενα δικαιώματα</string>
|
||||
<string name="no_access_to_contacts">Η εφαρμογή δεν έχει πρόσβαση στις επαφές σας</string>
|
||||
<string name="insert_text_here">Εισαγωγή κειμένου εδώ</string>
|
||||
<string name="call_person">Κλήση %s</string>
|
||||
|
||||
<!-- View types -->
|
||||
<string name="change_view_type">Αλλαγή τύπου εμφάνισης</string>
|
||||
|
@ -536,6 +537,7 @@
|
|||
<string name="settings_imported_successfully">Επιτυχής εισαγωγή ρυθμίσεων</string>
|
||||
<string name="start_name_with_surname">Εμφάνιση πρώτα το επώνυμο</string>
|
||||
<string name="clear_cache">Καθαρισμός cache</string>
|
||||
<string name="show_call_confirmation_dialog">Εμφάνιση διαλόγου επιβεβαίωσης πριν από την έναρξη μιας κλήσης</string>
|
||||
|
||||
<!-- Setting sections -->
|
||||
<string name="visibility">Προβολή</string>
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
<string name="request_the_required_permissions">Solicitar los permisos requeridos</string>
|
||||
<string name="no_access_to_contacts">La aplicación no puede acceder a tus contactos</string>
|
||||
<string name="insert_text_here">Introduce el texto aquí</string>
|
||||
<string name="call_person">Llamar a %s</string>
|
||||
|
||||
<!-- View types -->
|
||||
<string name="change_view_type">Cambiar tipo de vista</string>
|
||||
|
@ -536,6 +537,7 @@
|
|||
<string name="settings_imported_successfully">Ajustes importados correctamente</string>
|
||||
<string name="start_name_with_surname">Mostrar nombre por apellido</string>
|
||||
<string name="clear_cache">Clear cache</string>
|
||||
<string name="show_call_confirmation_dialog">Mostrar un cuadro de confirmación antes de iniciar una llamada</string>
|
||||
|
||||
<!-- Setting sections -->
|
||||
<string name="visibility">Visibilidad</string>
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
<string name="request_the_required_permissions">Eskatu behar diren baimenak</string>
|
||||
<string name="no_access_to_contacts">Aplikazioak ezingo da kontaktuetan sartu</string>
|
||||
<string name="insert_text_here">Txertatu testua hemen</string>
|
||||
<string name="call_person">%s deitu</string>
|
||||
|
||||
<!-- View types -->
|
||||
<string name="change_view_type">Aldatu ikuspegi mota</string>
|
||||
|
@ -536,6 +537,7 @@
|
|||
<string name="settings_imported_successfully">Ezarpenak ondo inportatu dira</string>
|
||||
<string name="start_name_with_surname">Hasi izen-abizenarekin</string>
|
||||
<string name="clear_cache">Garbitu cachea</string>
|
||||
<string name="show_call_confirmation_dialog">Erakutsi egiaztatze mezua dei bat hasi baino lehen</string>
|
||||
|
||||
<!-- Setting sections -->
|
||||
<string name="visibility">Ikusgaitasuna</string>
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
<string name="request_the_required_permissions">درخواست مجوزهای مورد نیاز</string>
|
||||
<string name="no_access_to_contacts">این برنامه به مخاطبینتان دسترسی ندارد</string>
|
||||
<string name="insert_text_here">متن را اینجا وارد کنید</string>
|
||||
<string name="call_person">Call %s</string>
|
||||
|
||||
<!-- View types -->
|
||||
<string name="change_view_type">تغییر حالت نمایش</string>
|
||||
|
@ -536,6 +537,7 @@
|
|||
<string name="settings_imported_successfully">Settings imported successfully</string>
|
||||
<string name="start_name_with_surname">Start name with surname</string>
|
||||
<string name="clear_cache">پاک کردن انباره</string>
|
||||
<string name="show_call_confirmation_dialog">Show a call confirmation dialog before initiating a call</string>
|
||||
|
||||
<!-- Setting sections -->
|
||||
<string name="visibility">Visibility</string>
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
<string name="request_the_required_permissions">Pyydä tarvittavia oikeuksia</string>
|
||||
<string name="no_access_to_contacts">Sovelluksella ei ole käyttöoikeutta yhteystietoihin</string>
|
||||
<string name="insert_text_here">Lisää teksti tähän</string>
|
||||
<string name="call_person">Soita %s</string>
|
||||
|
||||
<!-- View types -->
|
||||
<string name="change_view_type">Vaihda näkymää</string>
|
||||
|
@ -536,6 +537,7 @@
|
|||
<string name="settings_imported_successfully">Asetukset tuotu onnistuneesti</string>
|
||||
<string name="start_name_with_surname">Aloita sukunimellä</string>
|
||||
<string name="clear_cache">Tyhjennä välimuisti</string>
|
||||
<string name="show_call_confirmation_dialog">Näytä soiton vahvistusruutu ennen soittoa</string>
|
||||
|
||||
<!-- Setting sections -->
|
||||
<string name="visibility">Näkyvyys</string>
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
<string name="request_the_required_permissions">Demander les autorisations nécessaires</string>
|
||||
<string name="no_access_to_contacts">L\'application n\'a pu accéder à vos contacts</string>
|
||||
<string name="insert_text_here">Saisissez votre texte</string>
|
||||
<string name="call_person">Appeler %s</string>
|
||||
|
||||
<!-- View types -->
|
||||
<string name="change_view_type">Modifier le mode d\'affichage</string>
|
||||
|
@ -538,6 +539,7 @@
|
|||
<string name="settings_imported_successfully">Paramètres importés avec succès</string>
|
||||
<string name="start_name_with_surname">Trier les contacts par nom de famille</string>
|
||||
<string name="clear_cache">Supprimer le cache</string>
|
||||
<string name="show_call_confirmation_dialog">Afficher une confirmation avant de faire un appel</string>
|
||||
|
||||
<!-- Setting sections -->
|
||||
<string name="visibility">Visibilité</string>
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
<string name="request_the_required_permissions">Solicitar os permisos necesarios</string>
|
||||
<string name="no_access_to_contacts">O aplicativo non puido acceder aos teus contactos</string>
|
||||
<string name="insert_text_here">Introduce o texto aquí</string>
|
||||
<string name="call_person">Call %s</string>
|
||||
|
||||
<!-- View types -->
|
||||
<string name="change_view_type">Cambiar o tipo de vista</string>
|
||||
|
@ -536,6 +537,7 @@
|
|||
<string name="settings_imported_successfully">Axustes importados correctamente</string>
|
||||
<string name="start_name_with_surname">Empezar o nome cos apelidos</string>
|
||||
<string name="clear_cache">Clear cache</string>
|
||||
<string name="show_call_confirmation_dialog">Show a call confirmation dialog before initiating a call</string>
|
||||
|
||||
<!-- Setting sections -->
|
||||
<string name="visibility">Visibilidade</string>
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
<string name="request_the_required_permissions">Request the required permissions</string>
|
||||
<string name="no_access_to_contacts">The app could not access your contacts</string>
|
||||
<string name="insert_text_here">Insert text here</string>
|
||||
<string name="call_person">Call %s</string>
|
||||
|
||||
<!-- View types -->
|
||||
<string name="change_view_type">Change view type</string>
|
||||
|
@ -536,6 +537,7 @@
|
|||
<string name="settings_imported_successfully">Settings imported successfully</string>
|
||||
<string name="start_name_with_surname">Start name with surname</string>
|
||||
<string name="clear_cache">Clear cache</string>
|
||||
<string name="show_call_confirmation_dialog">Show a call confirmation dialog before initiating a call</string>
|
||||
|
||||
<!-- Setting sections -->
|
||||
<string name="visibility">Visibility</string>
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
<string name="request_the_required_permissions">Zatraži potrebna dopuštenja</string>
|
||||
<string name="no_access_to_contacts">The app could not access your contacts</string>
|
||||
<string name="insert_text_here">Insert text here</string>
|
||||
<string name="call_person">Nazovi %s</string>
|
||||
|
||||
<!-- View types -->
|
||||
<string name="change_view_type">Promijeni vrstu prikaza</string>
|
||||
|
@ -567,6 +568,7 @@
|
|||
<string name="settings_imported_successfully">Settings imported successfully</string>
|
||||
<string name="start_name_with_surname">Započnite imena s prezimenima</string>
|
||||
<string name="clear_cache">Clear cache</string>
|
||||
<string name="show_call_confirmation_dialog">Pokažite dijaloški okvir za potvrdu poziva prije pokretanja poziva</string>
|
||||
|
||||
<!-- Setting sections -->
|
||||
<string name="visibility">Vidljivost</string>
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
<string name="request_the_required_permissions">A kívánt jogosultságok igénylése</string>
|
||||
<string name="no_access_to_contacts">The app could not access your contacts</string>
|
||||
<string name="insert_text_here">Insert text here</string>
|
||||
<string name="call_person">%s hívása</string>
|
||||
|
||||
<!-- View types -->
|
||||
<string name="change_view_type">Nézet típus változtatása</string>
|
||||
|
@ -535,6 +536,7 @@
|
|||
<string name="settings_imported_successfully">A beállítások importálása sikerült</string>
|
||||
<string name="start_name_with_surname">Vezetéknév, keresztnév sorrend</string>
|
||||
<string name="clear_cache">Clear cache</string>
|
||||
<string name="show_call_confirmation_dialog">Jóváhagyás kérése telefonhívás indítása előtt</string>
|
||||
|
||||
<!-- Setting sections -->
|
||||
<string name="visibility">Láthatóság</string>
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
<string name="request_the_required_permissions">Meminta izin yang diperlukan</string>
|
||||
<string name="no_access_to_contacts">The app could not access your contacts</string>
|
||||
<string name="insert_text_here">Insert text here</string>
|
||||
<string name="call_person">Panggil %s</string>
|
||||
|
||||
<!-- View types -->
|
||||
<string name="change_view_type">Ubah tampilan</string>
|
||||
|
@ -504,6 +505,7 @@
|
|||
<string name="settings_imported_successfully">Pengaturan berhail diimpor</string>
|
||||
<string name="start_name_with_surname">Nama dimulai dengan nama belakang</string>
|
||||
<string name="clear_cache">Clear cache</string>
|
||||
<string name="show_call_confirmation_dialog">Tampilkan dialog konfirmasi panggilan sebelum melakukan panggilan</string>
|
||||
|
||||
<!-- Setting sections -->
|
||||
<string name="visibility">Visibilitas</string>
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
<string name="request_the_required_permissions">Meminta izin yang diperlukan</string>
|
||||
<string name="no_access_to_contacts">The app could not access your contacts</string>
|
||||
<string name="insert_text_here">Insert text here</string>
|
||||
<string name="call_person">Panggil %s</string>
|
||||
|
||||
<!-- View types -->
|
||||
<string name="change_view_type">Ubah tampilan</string>
|
||||
|
@ -504,6 +505,7 @@
|
|||
<string name="settings_imported_successfully">Pengaturan berhail diimpor</string>
|
||||
<string name="start_name_with_surname">Nama dimulai dengan nama belakang</string>
|
||||
<string name="clear_cache">Clear cache</string>
|
||||
<string name="show_call_confirmation_dialog">Tampilkan dialog konfirmasi panggilan sebelum melakukan panggilan</string>
|
||||
|
||||
<!-- Setting sections -->
|
||||
<string name="visibility">Visibilitas</string>
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
<string name="request_the_required_permissions">Richiedi le autorizzazioni necessarie</string>
|
||||
<string name="no_access_to_contacts">L\'app non è riuscita ad accedere ai tuoi contatti</string>
|
||||
<string name="insert_text_here">Inserisci qui il testo</string>
|
||||
<string name="call_person">Chiama %s</string>
|
||||
|
||||
<!-- View types -->
|
||||
<string name="change_view_type">Cambia modalità visualizzazione</string>
|
||||
|
@ -536,6 +537,7 @@
|
|||
<string name="settings_imported_successfully">Impostazioni importate correttamente</string>
|
||||
<string name="start_name_with_surname">Prima il cognome poi il nome</string>
|
||||
<string name="clear_cache">Svuota la cache</string>
|
||||
<string name="show_call_confirmation_dialog">Mostra un messaggio di conferma prima di iniziare una chiamata</string>
|
||||
|
||||
<!-- Setting sections -->
|
||||
<string name="visibility">Visibilità</string>
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
<string name="request_the_required_permissions">נדרשים הרשאות</string>
|
||||
<string name="no_access_to_contacts">לא ניתן לגשת לאנשי הקשר</string>
|
||||
<string name="insert_text_here">הוספת טקסט</string>
|
||||
<string name="call_person">Call %s</string>
|
||||
|
||||
<!-- View types -->
|
||||
<string name="change_view_type">Change view type</string>
|
||||
|
@ -536,6 +537,7 @@
|
|||
<string name="settings_imported_successfully">הגדרות יובאו בהצלחה</string>
|
||||
<string name="start_name_with_surname">התחל שם בשם משפחה</string>
|
||||
<string name="clear_cache">Clear cache</string>
|
||||
<string name="show_call_confirmation_dialog">Show a call confirmation dialog before initiating a call</string>
|
||||
|
||||
<!-- Setting sections -->
|
||||
<string name="visibility">נראות</string>
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
<string name="request_the_required_permissions">要求された許可をリクエスト</string>
|
||||
<string name="no_access_to_contacts">連絡先情報にアクセスすることが出来ませんでした</string>
|
||||
<string name="insert_text_here">ここにテキストを挿入</string>
|
||||
<string name="call_person">%sに発信</string>
|
||||
|
||||
<!-- View types -->
|
||||
<string name="change_view_type">表示形式の変更</string>
|
||||
|
@ -503,6 +504,7 @@
|
|||
<string name="settings_imported_successfully">設定は正常にインポートされました</string>
|
||||
<string name="start_name_with_surname">姓を先に表示</string>
|
||||
<string name="clear_cache">Clear cache</string>
|
||||
<string name="show_call_confirmation_dialog">発信する前に確認ダイアログを表示する</string>
|
||||
|
||||
<!-- Setting sections -->
|
||||
<string name="visibility">表示・非表示</string>
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
<string name="request_the_required_permissions">Request the required permissions</string>
|
||||
<string name="no_access_to_contacts">The app could not access your contacts</string>
|
||||
<string name="insert_text_here">Insert text here</string>
|
||||
<string name="call_person">Call %s</string>
|
||||
|
||||
<!-- View types -->
|
||||
<string name="change_view_type">보기 방식 변경</string>
|
||||
|
@ -502,6 +503,7 @@
|
|||
<string name="settings_imported_successfully">설정 가져오기 완료</string>
|
||||
<string name="start_name_with_surname">성을 먼저 표시</string>
|
||||
<string name="clear_cache">Clear cache</string>
|
||||
<string name="show_call_confirmation_dialog">Show a call confirmation dialog before initiating a call</string>
|
||||
|
||||
<!-- Setting sections -->
|
||||
<string name="visibility">표시</string>
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
<string name="request_the_required_permissions">Paprašyti reikiamų leidimų</string>
|
||||
<string name="no_access_to_contacts">Programėlė gali nepasiekti kontaktų</string>
|
||||
<string name="insert_text_here">Įterpkite tekstą čia</string>
|
||||
<string name="call_person">Call %s</string>
|
||||
|
||||
<!-- View types -->
|
||||
<string name="change_view_type">Keisti peržiūros tipą</string>
|
||||
|
@ -560,6 +561,7 @@
|
|||
<string name="settings_imported_successfully">Settings imported successfully</string>
|
||||
<string name="start_name_with_surname">Pavardė rodoma pirma</string>
|
||||
<string name="clear_cache">Clear cache</string>
|
||||
<string name="show_call_confirmation_dialog">Show a call confirmation dialog before initiating a call</string>
|
||||
|
||||
<!-- Setting sections -->
|
||||
<string name="visibility">Matomumas</string>
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
<string name="request_the_required_permissions">Request the required permissions</string>
|
||||
<string name="no_access_to_contacts">The app could not access your contacts</string>
|
||||
<string name="insert_text_here">Insert text here</string>
|
||||
<string name="call_person">Call %s</string>
|
||||
|
||||
<!-- View types -->
|
||||
<string name="change_view_type">Endre visningstype</string>
|
||||
|
@ -536,6 +537,7 @@
|
|||
<string name="settings_imported_successfully">Innstillinger importert</string>
|
||||
<string name="start_name_with_surname">Start name with surname</string>
|
||||
<string name="clear_cache">Tøm hurtiglager</string>
|
||||
<string name="show_call_confirmation_dialog">Show a call confirmation dialog before initiating a call</string>
|
||||
|
||||
<!-- Setting sections -->
|
||||
<string name="visibility">Synlighet</string>
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
<string name="request_the_required_permissions">Om benodigde machtigingen vragen</string>
|
||||
<string name="no_access_to_contacts">De app heeft geen toegang tot uw contacten</string>
|
||||
<string name="insert_text_here">Voeg hier tekst in</string>
|
||||
<string name="call_person">%s bellen</string>
|
||||
|
||||
<!-- View types -->
|
||||
<string name="change_view_type">Weergave</string>
|
||||
|
@ -536,6 +537,7 @@
|
|||
<string name="settings_imported_successfully">Instellingen geïmporteerd</string>
|
||||
<string name="start_name_with_surname">Beginnen met achternaam</string>
|
||||
<string name="clear_cache">Cache opschonen</string>
|
||||
<string name="show_call_confirmation_dialog">Om bevestiging vragen voor het bellen</string>
|
||||
|
||||
<!-- Setting sections -->
|
||||
<string name="visibility">Opmaak</string>
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
<string name="request_the_required_permissions">Request the required permissions</string>
|
||||
<string name="no_access_to_contacts">The app could not access your contacts</string>
|
||||
<string name="insert_text_here">Insert text here</string>
|
||||
<string name="call_person">Call %s</string>
|
||||
|
||||
<!-- View types -->
|
||||
<string name="change_view_type">Change view type</string>
|
||||
|
@ -536,6 +537,7 @@
|
|||
<string name="settings_imported_successfully">Settings imported successfully</string>
|
||||
<string name="start_name_with_surname">Start name with surname</string>
|
||||
<string name="clear_cache">Clear cache</string>
|
||||
<string name="show_call_confirmation_dialog">Show a call confirmation dialog before initiating a call</string>
|
||||
|
||||
<!-- Setting sections -->
|
||||
<string name="visibility">Visibility</string>
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
<string name="request_the_required_permissions">Poproś o wymagane uprawnienia</string>
|
||||
<string name="no_access_to_contacts">Aplikacja nie mogła uzyskać dostępu do Twoich kontaktów</string>
|
||||
<string name="insert_text_here">Tutaj wstaw tekst</string>
|
||||
<string name="call_person">Zadzwoń do: %s</string>
|
||||
|
||||
<!-- View types -->
|
||||
<string name="change_view_type">Zmień typ widoku</string>
|
||||
|
@ -563,6 +564,7 @@
|
|||
<string name="settings_imported_successfully">Ustawienia zostały zaimportowane</string>
|
||||
<string name="start_name_with_surname">Zaczynaj nazwę od nazwiska</string>
|
||||
<string name="clear_cache">Wyczyść pamięć podręczną</string>
|
||||
<string name="show_call_confirmation_dialog">Pokazuj okno potwierdzenia zadzwonienia przed zainicjowaniem połączenia</string>
|
||||
|
||||
<!-- Setting sections -->
|
||||
<string name="visibility">Widoczność</string>
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
<string name="request_the_required_permissions">Pedir as permissões necessárias</string>
|
||||
<string name="no_access_to_contacts">O aplicativo não pode acessar seus contatos</string>
|
||||
<string name="insert_text_here">Insira o texto aqui</string>
|
||||
<string name="call_person">Ligar para %s</string>
|
||||
|
||||
<!-- View types -->
|
||||
<string name="change_view_type">Alterar modo de visualização</string>
|
||||
|
@ -536,6 +537,7 @@
|
|||
<string name="settings_imported_successfully">Configurações importadas com sucesso</string>
|
||||
<string name="start_name_with_surname">Ordenar por sobrenome</string>
|
||||
<string name="clear_cache">Limpar cache</string>
|
||||
<string name="show_call_confirmation_dialog">Mostrar diálogo para confirmar a chamada antes de ligar</string>
|
||||
|
||||
<!-- Setting sections -->
|
||||
<string name="visibility">Visibilidade</string>
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
<string name="request_the_required_permissions">Pedir permissão necessária</string>
|
||||
<string name="no_access_to_contacts">Não foi possível aceder aos contactos</string>
|
||||
<string name="insert_text_here">Introduza aqui o texto</string>
|
||||
<string name="call_person">Ligar a %s</string>
|
||||
|
||||
<!-- View types -->
|
||||
<string name="change_view_type">Tipo de exibição</string>
|
||||
|
@ -536,6 +537,7 @@
|
|||
<string name="settings_imported_successfully">Definições importadas com sucesso</string>
|
||||
<string name="start_name_with_surname">Ordenar por apelido</string>
|
||||
<string name="clear_cache">Limpar cache</string>
|
||||
<string name="show_call_confirmation_dialog">Mostrar diálogo para confirmar a chamada</string>
|
||||
|
||||
<!-- Setting sections -->
|
||||
<string name="visibility">Exibição</string>
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
<string name="request_the_required_permissions">Запрос необходимых разрешений</string>
|
||||
<string name="no_access_to_contacts">Приложение не может получить доступ к вашим контактам</string>
|
||||
<string name="insert_text_here">Введите текст здесь</string>
|
||||
<string name="call_person">Вызов %s</string>
|
||||
|
||||
<!-- View types -->
|
||||
<string name="change_view_type">Вид</string>
|
||||
|
@ -569,6 +570,7 @@
|
|||
<string name="settings_imported_successfully">Настройки успешно импортированы</string>
|
||||
<string name="start_name_with_surname">Показывать сначала фамилию</string>
|
||||
<string name="clear_cache">Очистка кеша</string>
|
||||
<string name="show_call_confirmation_dialog">Показывать диалог подтверждения вызова</string>
|
||||
|
||||
<!-- Setting sections -->
|
||||
<string name="visibility">Отображение</string>
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
<string name="request_the_required_permissions">Vyžiadať potrebné oprávnenia</string>
|
||||
<string name="no_access_to_contacts">Nepodarilo sa získať zoznam kontaktov</string>
|
||||
<string name="insert_text_here">Zadajte text sem</string>
|
||||
<string name="call_person">Zavolať %s</string>
|
||||
|
||||
<!-- View types -->
|
||||
<string name="change_view_type">Zmeniť typ zobrazenia</string>
|
||||
|
@ -569,6 +570,7 @@
|
|||
<string name="settings_imported_successfully">Nastavenia boli úspešne importované</string>
|
||||
<string name="start_name_with_surname">Začať meno priezviskom</string>
|
||||
<string name="clear_cache">Vymazať cache</string>
|
||||
<string name="show_call_confirmation_dialog">Zobraziť pred spustením hovoru okno na jeho potvrdenie</string>
|
||||
|
||||
<!-- Setting sections -->
|
||||
<string name="visibility">Viditeľnosť</string>
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
<string name="request_the_required_permissions">Request the required permissions</string>
|
||||
<string name="no_access_to_contacts">The app could not access your contacts</string>
|
||||
<string name="insert_text_here">Insert text here</string>
|
||||
<string name="call_person">Call %s</string>
|
||||
|
||||
<!-- View types -->
|
||||
<string name="change_view_type">Spremeni tip pogleda</string>
|
||||
|
@ -599,6 +600,7 @@
|
|||
<string name="settings_imported_successfully">Nastavitve uspešno uvožene</string>
|
||||
<string name="start_name_with_surname">Start name with surname</string>
|
||||
<string name="clear_cache">Clear cache</string>
|
||||
<string name="show_call_confirmation_dialog">Show a call confirmation dialog before initiating a call</string>
|
||||
|
||||
<!-- Setting sections -->
|
||||
<string name="visibility">Vidljivost</string>
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
<string name="request_the_required_permissions">Request the required permissions</string>
|
||||
<string name="no_access_to_contacts">The app could not access your contacts</string>
|
||||
<string name="insert_text_here">Insert text here</string>
|
||||
<string name="call_person">Call %s</string>
|
||||
|
||||
<!-- View types -->
|
||||
<string name="change_view_type">Промени тип прегледа</string>
|
||||
|
@ -535,6 +536,7 @@
|
|||
<string name="settings_imported_successfully">Подешавања увежена успешно</string>
|
||||
<string name="start_name_with_surname">Start name with surname</string>
|
||||
<string name="clear_cache">Clear cache</string>
|
||||
<string name="show_call_confirmation_dialog">Show a call confirmation dialog before initiating a call</string>
|
||||
|
||||
<!-- Setting sections -->
|
||||
<string name="visibility">Видљивост</string>
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
<string name="request_the_required_permissions">Begär de behörigheter som krävs</string>
|
||||
<string name="no_access_to_contacts">The app could not access your contacts</string>
|
||||
<string name="insert_text_here">Insert text here</string>
|
||||
<string name="call_person">Ring %s</string>
|
||||
|
||||
<!-- View types -->
|
||||
<string name="change_view_type">Ändra vy</string>
|
||||
|
@ -536,6 +537,7 @@
|
|||
<string name="settings_imported_successfully">Inställningarna har importerats</string>
|
||||
<string name="start_name_with_surname">Visa efternamn först</string>
|
||||
<string name="clear_cache">Clear cache</string>
|
||||
<string name="show_call_confirmation_dialog">Visa en bekräftelsedialogruta före uppringning</string>
|
||||
|
||||
<!-- Setting sections -->
|
||||
<string name="visibility">Synlighet</string>
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
<string name="request_the_required_permissions">தேவையான அனுமதிகளைக் கோருங்கள்</string>
|
||||
<string name="no_access_to_contacts">செயலியால் உங்கள் தொடர்புகளை அணுக இயலவில்லை</string>
|
||||
<string name="insert_text_here">உரையை இங்கே சேர்க்கவும்</string>
|
||||
<string name="call_person">Call %s</string>
|
||||
|
||||
<!-- View types -->
|
||||
<string name="change_view_type">காட்சி வகையை மாற்று</string>
|
||||
|
@ -536,6 +537,7 @@
|
|||
<string name="settings_imported_successfully">அமைப்புகள் இறக்குமதி வெற்றி</string>
|
||||
<string name="start_name_with_surname">Start name with surname</string>
|
||||
<string name="clear_cache">பிடிதரவை துடை</string>
|
||||
<string name="show_call_confirmation_dialog">Show a call confirmation dialog before initiating a call</string>
|
||||
|
||||
<!-- Setting sections -->
|
||||
<string name="visibility">தெரிவுநிலை</string>
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
<string name="request_the_required_permissions">Gerekli izinleri iste</string>
|
||||
<string name="no_access_to_contacts">Uygulama, kişilerinize erişemedi</string>
|
||||
<string name="insert_text_here">Metni buraya girin</string>
|
||||
<string name="call_person">%s kişisini ara</string>
|
||||
|
||||
<!-- View types -->
|
||||
<string name="change_view_type">Görünüm türünü değiştir</string>
|
||||
|
@ -536,6 +537,7 @@
|
|||
<string name="settings_imported_successfully">Ayarlar başarıyla içe aktarıldı</string>
|
||||
<string name="start_name_with_surname">Soyadı ile başla</string>
|
||||
<string name="clear_cache">Önbelleği temizle</string>
|
||||
<string name="show_call_confirmation_dialog">Arama başlatmadan önce arama onayı penceresi göster</string>
|
||||
|
||||
<!-- Setting sections -->
|
||||
<string name="visibility">Görünürlük</string>
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
<string name="request_the_required_permissions">Запит на необхідні дозволи</string>
|
||||
<string name="no_access_to_contacts">Додаток не має доступу до контактів</string>
|
||||
<string name="insert_text_here">Вставте текст сюди</string>
|
||||
<string name="call_person">Телефонувати %s</string>
|
||||
|
||||
<!-- View types -->
|
||||
<string name="change_view_type">Змінити тип перегляду</string>
|
||||
|
@ -536,6 +537,7 @@
|
|||
<string name="settings_imported_successfully">Налаштування успішно імпортовано</string>
|
||||
<string name="start_name_with_surname">Показувати спочатку прізвище</string>
|
||||
<string name="clear_cache">Очистити кеш</string>
|
||||
<string name="show_call_confirmation_dialog">Показувати діалог підтвердження виклику</string>
|
||||
|
||||
<!-- Setting sections -->
|
||||
<string name="visibility">Відображення</string>
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
<string name="request_the_required_permissions">Request the required permissions</string>
|
||||
<string name="no_access_to_contacts">The app could not access your contacts</string>
|
||||
<string name="insert_text_here">Insert text here</string>
|
||||
<string name="call_person">Call %s</string>
|
||||
|
||||
<!-- View types -->
|
||||
<string name="change_view_type">Thay đổi kiểu xem</string>
|
||||
|
@ -536,6 +537,7 @@
|
|||
<string name="settings_imported_successfully">Cài đặt được nhập thành công</string>
|
||||
<string name="start_name_with_surname">Start name with surname</string>
|
||||
<string name="clear_cache">Clear cache</string>
|
||||
<string name="show_call_confirmation_dialog">Show a call confirmation dialog before initiating a call</string>
|
||||
|
||||
<!-- Setting sections -->
|
||||
<string name="visibility">Hiển thị</string>
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
<string name="request_the_required_permissions">请求必要的权限</string>
|
||||
<string name="no_access_to_contacts">该应用无法访问联系人</string>
|
||||
<string name="insert_text_here">在此输入文本</string>
|
||||
<string name="call_person">打电话给 %s</string>
|
||||
|
||||
<!-- View types -->
|
||||
<string name="change_view_type">更改视图类型</string>
|
||||
|
@ -504,6 +505,7 @@
|
|||
<string name="settings_imported_successfully">设置导入成功</string>
|
||||
<string name="start_name_with_surname">姓氏在前</string>
|
||||
<string name="clear_cache">清除缓存</string>
|
||||
<string name="show_call_confirmation_dialog">开始通话前显示通话确认框</string>
|
||||
|
||||
<!-- Setting sections -->
|
||||
<string name="visibility">可见度</string>
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
<string name="request_the_required_permissions">請求必要的權限</string>
|
||||
<string name="no_access_to_contacts">The app could not access your contacts</string>
|
||||
<string name="insert_text_here">Insert text here</string>
|
||||
<string name="call_person">打電話給 %s</string>
|
||||
|
||||
<!-- View types -->
|
||||
<string name="change_view_type">改變瀏覽類型</string>
|
||||
|
@ -504,6 +505,7 @@
|
|||
<string name="settings_imported_successfully">設定匯入成功</string>
|
||||
<string name="start_name_with_surname">姓氏在前</string>
|
||||
<string name="clear_cache">Clear cache</string>
|
||||
<string name="show_call_confirmation_dialog">開始通話前顯示通話確認框</string>
|
||||
|
||||
<!-- Setting sections -->
|
||||
<string name="visibility">可見度</string>
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
<string name="request_the_required_permissions">Request the required permissions</string>
|
||||
<string name="no_access_to_contacts">The app could not access your contacts</string>
|
||||
<string name="insert_text_here">Insert text here</string>
|
||||
<string name="call_person">Call %s</string>
|
||||
|
||||
<!-- View types -->
|
||||
<string name="change_view_type">Change view type</string>
|
||||
|
@ -536,6 +537,7 @@
|
|||
<string name="settings_imported_successfully">Settings imported successfully</string>
|
||||
<string name="start_name_with_surname">Start name with surname</string>
|
||||
<string name="clear_cache">Clear cache</string>
|
||||
<string name="show_call_confirmation_dialog">Show a call confirmation dialog before initiating a call</string>
|
||||
|
||||
<!-- Setting sections -->
|
||||
<string name="visibility">Visibility</string>
|
||||
|
|
Loading…
Reference in a new issue