mirror of
https://github.com/SimpleMobileTools/Simple-Contacts.git
synced 2025-01-27 14:09:57 +01:00
fix #593, remove the Dialer Moved dialog
This commit is contained in:
parent
749bbe55a6
commit
bb496bbdfb
@ -26,7 +26,10 @@ import com.simplemobiletools.contacts.pro.BuildConfig
|
||||
import com.simplemobiletools.contacts.pro.R
|
||||
import com.simplemobiletools.contacts.pro.adapters.ViewPagerAdapter
|
||||
import com.simplemobiletools.contacts.pro.databases.ContactsDatabase
|
||||
import com.simplemobiletools.contacts.pro.dialogs.*
|
||||
import com.simplemobiletools.contacts.pro.dialogs.ChangeSortingDialog
|
||||
import com.simplemobiletools.contacts.pro.dialogs.ExportContactsDialog
|
||||
import com.simplemobiletools.contacts.pro.dialogs.FilterContactSourcesDialog
|
||||
import com.simplemobiletools.contacts.pro.dialogs.ImportContactsDialog
|
||||
import com.simplemobiletools.contacts.pro.extensions.config
|
||||
import com.simplemobiletools.contacts.pro.extensions.getTempFile
|
||||
import com.simplemobiletools.contacts.pro.extensions.handleGenericContactClick
|
||||
@ -74,7 +77,6 @@ class MainActivity : SimpleActivity(), RefreshContactsListener {
|
||||
setupTabColors()
|
||||
checkContactPermissions()
|
||||
checkWhatsNewDialog()
|
||||
checkDialerMigrationDialog()
|
||||
}
|
||||
|
||||
private fun checkContactPermissions() {
|
||||
@ -611,17 +613,6 @@ class MainActivity : SimpleActivity(), RefreshContactsListener {
|
||||
}
|
||||
}
|
||||
|
||||
private fun checkDialerMigrationDialog() {
|
||||
if (config.appRunCount < 3) {
|
||||
config.wasDialerMigrationShown = true
|
||||
}
|
||||
|
||||
if (!config.wasDialerMigrationShown) {
|
||||
config.wasDialerMigrationShown = true
|
||||
DialerMovedDialog(this)
|
||||
}
|
||||
}
|
||||
|
||||
private fun checkWhatsNewDialog() {
|
||||
arrayListOf<Release>().apply {
|
||||
add(Release(10, R.string.release_10))
|
||||
|
@ -1,30 +0,0 @@
|
||||
package com.simplemobiletools.contacts.pro.dialogs
|
||||
|
||||
import android.text.Html
|
||||
import android.text.method.LinkMovementMethod
|
||||
import androidx.appcompat.app.AlertDialog
|
||||
import com.simplemobiletools.commons.activities.BaseSimpleActivity
|
||||
import com.simplemobiletools.commons.extensions.launchViewIntent
|
||||
import com.simplemobiletools.commons.extensions.setupDialogStuff
|
||||
import com.simplemobiletools.contacts.pro.R
|
||||
import kotlinx.android.synthetic.main.dialog_dialer_moved.view.*
|
||||
|
||||
class DialerMovedDialog(val activity: BaseSimpleActivity) {
|
||||
init {
|
||||
val view = activity.layoutInflater.inflate(R.layout.dialog_dialer_moved, null).apply {
|
||||
dialer_moved.text = Html.fromHtml(activity.getString(R.string.dialer_moved))
|
||||
dialer_moved.movementMethod = LinkMovementMethod.getInstance()
|
||||
|
||||
dialer_moved_icon.setOnClickListener {
|
||||
activity.launchViewIntent("https://play.google.com/store/apps/details?id=com.simplemobiletools.dialer")
|
||||
}
|
||||
}
|
||||
|
||||
AlertDialog.Builder(activity)
|
||||
.setPositiveButton(R.string.download) { dialog, which -> }
|
||||
.setNegativeButton(R.string.cancel, null)
|
||||
.create().apply {
|
||||
activity.setupDialogStuff(view, this)
|
||||
}
|
||||
}
|
||||
}
|
@ -64,8 +64,4 @@ class Config(context: Context) : BaseConfig(context) {
|
||||
var showPrivateContacts: Boolean
|
||||
get() = prefs.getBoolean(SHOW_PRIVATE_CONTACTS, true)
|
||||
set(showPrivateContacts) = prefs.edit().putBoolean(SHOW_PRIVATE_CONTACTS, showPrivateContacts).apply()
|
||||
|
||||
var wasDialerMigrationShown: Boolean
|
||||
get() = prefs.getBoolean(WAS_DIALER_MIGRATION_SHOWN, false)
|
||||
set(wasDialerMigrationShown) = prefs.edit().putBoolean(WAS_DIALER_MIGRATION_SHOWN, wasDialerMigrationShown).apply()
|
||||
}
|
||||
|
@ -22,7 +22,6 @@ const val SPEED_DIAL = "speed_dial"
|
||||
const val LAST_EXPORT_PATH = "last_export_path"
|
||||
const val WAS_LOCAL_ACCOUNT_INITIALIZED = "was_local_account_initialized"
|
||||
const val SHOW_PRIVATE_CONTACTS = "show_private_contacts"
|
||||
const val WAS_DIALER_MIGRATION_SHOWN = "was_dialer_migration_shown"
|
||||
|
||||
const val SMT_PRIVATE = "smt_private" // used at the contact source of local contacts hidden from other apps
|
||||
const val GROUP = "group"
|
||||
|
@ -1,28 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<com.simplemobiletools.commons.views.MyTextView
|
||||
android:id="@+id/dialer_moved"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:lineSpacingExtra="3dp"
|
||||
android:paddingLeft="@dimen/bigger_margin"
|
||||
android:paddingTop="@dimen/bigger_margin"
|
||||
android:paddingRight="@dimen/bigger_margin"
|
||||
android:paddingBottom="@dimen/normal_margin"
|
||||
android:text="@string/dialer_moved"
|
||||
android:textSize="@dimen/bigger_text_size" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/dialer_moved_icon"
|
||||
android:layout_width="@dimen/min_row_height"
|
||||
android:layout_height="@dimen/min_row_height"
|
||||
android:layout_below="@+id/dialer_moved"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_margin="@dimen/medium_margin"
|
||||
android:background="?attr/selectableItemBackgroundBorderless"
|
||||
android:src="@mipmap/ic_dialer" />
|
||||
|
||||
</RelativeLayout>
|
@ -15,11 +15,6 @@
|
||||
<string name="call_person">Call %s</string>
|
||||
<string name="create_new_contact">إنشاء جهة إتصال</string>
|
||||
<string name="add_to_existing_contact">إضافة إلى جهة موجودة</string>
|
||||
<string name="dialer_moved">
|
||||
<![CDATA[
|
||||
The part of the app responsible for Call handling had to be moved into a separate new app Simple Dialer, please download it on <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.dialer">this link.</a> Thanks!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Placeholders -->
|
||||
<string name="no_contacts_with_emails">لا توجد جهات اتصال بهذا البريد الالكتروني</string>
|
||||
|
@ -15,11 +15,6 @@
|
||||
<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>
|
||||
<string name="dialer_moved">
|
||||
<![CDATA[
|
||||
The part of the app responsible for Call handling had to be moved into a separate new app Simple Dialer, please download it on <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.dialer">this link.</a> Thanks!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Placeholders -->
|
||||
<string name="no_contacts_with_emails">No contacts with emails have been found</string>
|
||||
|
@ -15,11 +15,6 @@
|
||||
<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>
|
||||
<string name="dialer_moved">
|
||||
<![CDATA[
|
||||
The part of the app responsible for Call handling had to be moved into a separate new app Simple Dialer, please download it on <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.dialer">this link.</a> Thanks!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Placeholders -->
|
||||
<string name="no_contacts_with_emails">Nenalezeny žádné kontakty s e-maily</string>
|
||||
|
@ -15,11 +15,6 @@
|
||||
<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>
|
||||
<string name="dialer_moved">
|
||||
<![CDATA[
|
||||
The part of the app responsible for Call handling had to be moved into a separate new app Simple Dialer, please download it on <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.dialer">this link.</a> Thanks!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Placeholders -->
|
||||
<string name="no_contacts_with_emails">Ni chanfuwyd unrhyw gysylltiadau gydag ebost</string>
|
||||
|
@ -15,11 +15,6 @@
|
||||
<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>
|
||||
<string name="dialer_moved">
|
||||
<![CDATA[
|
||||
The part of the app responsible for Call handling had to be moved into a separate new app Simple Dialer, please download it on <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.dialer">this link.</a> Thanks!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Placeholders -->
|
||||
<string name="no_contacts_with_emails">Ingen kontakter med emails fundet</string>
|
||||
|
@ -15,11 +15,6 @@
|
||||
<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>
|
||||
<string name="dialer_moved">
|
||||
<![CDATA[
|
||||
The part of the app responsible for Call handling had to be moved into a separate new app Simple Dialer, please download it on <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.dialer">this link.</a> Thanks!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Placeholders -->
|
||||
<string name="no_contacts_with_emails">Keine Kontakte mit E-Mailadressen gefunden</string>
|
||||
|
@ -15,11 +15,6 @@
|
||||
<string name="call_person">Κλήση %s</string>
|
||||
<string name="create_new_contact">Δημιουργία νέας Επαφής</string>
|
||||
<string name="add_to_existing_contact">Προσθήκη σε μια υπάρχουσα Επαφή</string>
|
||||
<string name="dialer_moved">
|
||||
<![CDATA[
|
||||
Η ενότητα της εφαρμογής που είναι υπεύθυνη για το χειρισμό κλήσεων έπρεπε να μετακινηθεί σε μια ξεχωριστή νέα εφαρμογή Simple Dialer, κάνετε λήψη από αυτόν <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.dialer">τον σύνδεσμο.</a> Ευχαριστώ!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Placeholders -->
|
||||
<string name="no_contacts_with_emails">Δεν βρέθηκαν Επαφές με emails</string>
|
||||
|
@ -15,11 +15,6 @@
|
||||
<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>
|
||||
<string name="dialer_moved">
|
||||
<![CDATA[
|
||||
The part of the app responsible for Call handling had to be moved into a separate new app Simple Dialer, please download it on <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.dialer">this link.</a> Thanks!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Placeholders -->
|
||||
<string name="no_contacts_with_emails">No se encontraron contactos con correo electrónico</string>
|
||||
|
@ -15,11 +15,6 @@
|
||||
<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>
|
||||
<string name="dialer_moved">
|
||||
<![CDATA[
|
||||
The part of the app responsible for Call handling had to be moved into a separate new app Simple Dialer, please download it on <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.dialer">this link.</a> Thanks!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Placeholders -->
|
||||
<string name="no_contacts_with_emails">No contacts with emails have been found</string>
|
||||
|
@ -15,11 +15,6 @@
|
||||
<string name="call_person">Soita</string>
|
||||
<string name="create_new_contact">Luo uusi yhteystieto</string>
|
||||
<string name="add_to_existing_contact">Lisää olemassa olevaan yhteystietoon</string>
|
||||
<string name="dialer_moved">
|
||||
<![CDATA[
|
||||
Sovelluksen soitto-ominaisuus on siirretty erilliseen puhelinsovellukseen. Voita ladata sen <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.dialer">täältä.</a> Kiitos!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Placeholders -->
|
||||
<string name="no_contacts_with_emails">Sähköpostillisia yhteystietoja ei löytynyt</string>
|
||||
|
@ -15,11 +15,6 @@
|
||||
<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>
|
||||
<string name="dialer_moved">
|
||||
<![CDATA[
|
||||
La partie de l\’appli qui gère la gestion des appels a dû être déplacée dans une nouvelle appli Simple composeur séparée. Veuillez la télécharger <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.dialer">ici.</a> Merci !
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Placeholders -->
|
||||
<string name="no_contacts_with_emails">Aucun contact avec des adresses courriel n\’a été trouvé</string>
|
||||
|
@ -15,11 +15,6 @@
|
||||
<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>
|
||||
<string name="dialer_moved">
|
||||
<![CDATA[
|
||||
The part of the app responsible for Call handling had to be moved into a separate new app Simple Dialer, please download it on <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.dialer">this link.</a> Thanks!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Placeholders -->
|
||||
<string name="no_contacts_with_emails">Nije pronađen nijedan kontakt s e-poštom</string>
|
||||
|
@ -15,11 +15,6 @@
|
||||
<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>
|
||||
<string name="dialer_moved">
|
||||
<![CDATA[
|
||||
The part of the app responsible for Call handling had to be moved into a separate new app Simple Dialer, please download it on <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.dialer">this link.</a> Thanks!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Placeholders -->
|
||||
<string name="no_contacts_with_emails">Nincs emailt tartalmazó névjegy.</string>
|
||||
|
@ -15,11 +15,6 @@
|
||||
<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>
|
||||
<string name="dialer_moved">
|
||||
<![CDATA[
|
||||
The part of the app responsible for Call handling had to be moved into a separate new app Simple Dialer, please download it on <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.dialer">this link.</a> Thanks!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Placeholders -->
|
||||
<string name="no_contacts_with_emails">Tidak ada kontak dengan alamat surel yang ditemukan</string>
|
||||
|
@ -15,11 +15,6 @@
|
||||
<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>
|
||||
<string name="dialer_moved">
|
||||
<![CDATA[
|
||||
The part of the app responsible for Call handling had to be moved into a separate new app Simple Dialer, please download it on <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.dialer">this link.</a> Thanks!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Placeholders -->
|
||||
<string name="no_contacts_with_emails">Tidak ada kontak dengan alamat surel yang ditemukan</string>
|
||||
|
@ -15,11 +15,6 @@
|
||||
<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>
|
||||
<string name="dialer_moved">
|
||||
<![CDATA[
|
||||
The part of the app responsible for Call handling had to be moved into a separate new app Simple Dialer, please download it on <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.dialer">this link.</a> Thanks!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Placeholders -->
|
||||
<string name="no_contacts_with_emails">Nessun contatto trovato con un\'email</string>
|
||||
|
@ -15,11 +15,6 @@
|
||||
<string name="call_person">Call %s</string>
|
||||
<string name="create_new_contact">新しい連絡先を作成</string>
|
||||
<string name="add_to_existing_contact">既存の連絡先に追加</string>
|
||||
<string name="dialer_moved">
|
||||
<![CDATA[
|
||||
The part of the app responsible for Call handling had to be moved into a separate new app Simple Dialer, please download it on <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.dialer">this link.</a> Thanks!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Placeholders -->
|
||||
<string name="no_contacts_with_emails">メールアドレスが登録された連絡先が見つかりません</string>
|
||||
|
@ -15,11 +15,6 @@
|
||||
<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>
|
||||
<string name="dialer_moved">
|
||||
<![CDATA[
|
||||
The part of the app responsible for Call handling had to be moved into a separate new app Simple Dialer, please download it on <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.dialer">this link.</a> Thanks!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Placeholders -->
|
||||
<string name="no_contacts_with_emails">No contacts with emails have been found</string>
|
||||
|
@ -15,11 +15,6 @@
|
||||
<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>
|
||||
<string name="dialer_moved">
|
||||
<![CDATA[
|
||||
The part of the app responsible for Call handling had to be moved into a separate new app Simple Dialer, please download it on <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.dialer">this link.</a> Thanks!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Placeholders -->
|
||||
<string name="no_contacts_with_emails">No contacts with emails have been found</string>
|
||||
|
@ -15,11 +15,6 @@
|
||||
<string name="call_person">വിളിക്കുക %s</string>
|
||||
<string name="create_new_contact">പുതിയ കോൺടാക്റ്റ് സൃഷ്ടിക്കുക</string>
|
||||
<string name="add_to_existing_contact">നിലവിലുള്ള കോൺടാക്റ്റിലേക്ക് ചേർക്കുക</string>
|
||||
<string name="dialer_moved">
|
||||
<![CDATA[
|
||||
The part of the app responsible for Call handling had to be moved into a separate new app Simple Dialer, please download it on <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.dialer">this link.</a> Thanks!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Placeholders -->
|
||||
<string name="no_contacts_with_emails">ഇമെയിലുകളില്ലാത്ത കോൺടാക്റ്റുകൾ കണ്ടെത്തിയില്ല</string>
|
||||
|
@ -15,11 +15,6 @@
|
||||
<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>
|
||||
<string name="dialer_moved">
|
||||
<![CDATA[
|
||||
Het gedeelte om telefoongesprekken te beheren moest worden afgesplitst naar een aparte app genaamd Eenvoudige Telefoon. Download de app via <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.dialer">this link.</a> Bedankt!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Placeholders -->
|
||||
<string name="no_contacts_with_emails">Geen contacten met e-mailadressen gevonden</string>
|
||||
|
@ -15,11 +15,6 @@
|
||||
<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>
|
||||
<string name="dialer_moved">
|
||||
<![CDATA[
|
||||
The part of the app responsible for Call handling had to be moved into a separate new app Simple Dialer, please download it on <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.dialer">this link.</a> Thanks!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Placeholders -->
|
||||
<string name="no_contacts_with_emails">Nie znaleziono kontaktów z adresami e-mail</string>
|
||||
|
@ -15,11 +15,6 @@
|
||||
<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>
|
||||
<string name="dialer_moved">
|
||||
<![CDATA[
|
||||
The part of the app responsible for Call handling had to be moved into a separate new app Simple Dialer, please download it on <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.dialer">this link.</a> Thanks!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Placeholders -->
|
||||
<string name="no_contacts_with_emails">Não foram encontrados contatos com e-mails</string>
|
||||
|
@ -15,11 +15,6 @@
|
||||
<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>
|
||||
<string name="dialer_moved">
|
||||
<![CDATA[
|
||||
A parte da aplicação responsável pela gestão de chamadas foi movida para uma nova aplicação com o nome Simple Dialer. Pode descarregar a aplicação <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.dialer">aqui.</a> Obrigado!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Placeholders -->
|
||||
<string name="no_contacts_with_emails">Não existem contactos com endereço de e-mail</string>
|
||||
|
@ -15,11 +15,6 @@
|
||||
<string name="call_person">Вызов %s</string>
|
||||
<string name="create_new_contact">Создать новый контакт</string>
|
||||
<string name="add_to_existing_contact">Добавить к существующему контакту</string>
|
||||
<string name="dialer_moved">
|
||||
<![CDATA[
|
||||
Часть приложения, отвечающая за обработку вызовов, перенесена в новое отдельное приложение \"Телефон\", загрузите его по <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.dialer">данной ссылке</a>. Спасибо!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Placeholders -->
|
||||
<string name="no_contacts_with_emails">Контакты с адресами электронной почты не найдены</string>
|
||||
|
@ -15,11 +15,6 @@
|
||||
<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>
|
||||
<string name="dialer_moved">
|
||||
<![CDATA[
|
||||
Časť apky zodpovedná za správu hovorov musela byť presunutá do samostatnej novej apky Jednoduchý Telefón, prosím stiahnite si ju na <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.dialer">tomto odkaze.</a> Vďaka!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Placeholders -->
|
||||
<string name="no_contacts_with_emails">Nenašli sa žiadne kontakty s emailami</string>
|
||||
|
@ -15,11 +15,6 @@
|
||||
<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>
|
||||
<string name="dialer_moved">
|
||||
<![CDATA[
|
||||
The part of the app responsible for Call handling had to be moved into a separate new app Simple Dialer, please download it on <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.dialer">this link.</a> Thanks!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Placeholders -->
|
||||
<string name="no_contacts_with_emails">Inga kontakter med e-postadresser hittades</string>
|
||||
|
@ -15,11 +15,6 @@
|
||||
<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>
|
||||
<string name="dialer_moved">
|
||||
<![CDATA[
|
||||
Uygulamanın Çağrı işlemeden sorumlu kısmı, ayrı Basit Çevirici adlı yeni bir uygulamaya taşındı, lütfen <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.dialer">bu bağlantıdan</a> indirin. Teşekkürler!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Placeholders -->
|
||||
<string name="no_contacts_with_emails">E-posta ile hiç bağlantı bulunamadı</string>
|
||||
|
@ -15,11 +15,6 @@
|
||||
<string name="call_person">Телефонувати %s</string>
|
||||
<string name="create_new_contact">Створити новий контакт</string>
|
||||
<string name="add_to_existing_contact">Додати до існуючого контакту</string>
|
||||
<string name="dialer_moved">
|
||||
<![CDATA[
|
||||
The part of the app responsible for Call handling had to be moved into a separate new app Simple Dialer, please download it on <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.dialer">this link.</a> Thanks!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Placeholders -->
|
||||
<string name="no_contacts_with_emails">Не знайдено контактів з електронною поштою</string>
|
||||
|
@ -15,11 +15,6 @@
|
||||
<string name="call_person">打电话给 %s</string>
|
||||
<string name="create_new_contact">建立新联系人</string>
|
||||
<string name="add_to_existing_contact">添加至已存在的联系人</string>
|
||||
<string name="dialer_moved">
|
||||
<![CDATA[
|
||||
该应用负责通话处理的部分被移动至一个独立的新应用简易拨号器,请前往<a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.dialer">此链接下载。</a> 谢谢!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Placeholders -->
|
||||
<string name="no_contacts_with_emails">未发现含有电子邮箱的联系人</string>
|
||||
|
@ -15,11 +15,6 @@
|
||||
<string name="call_person">打電話給 %s</string>
|
||||
<string name="create_new_contact">建立新聯絡人</string>
|
||||
<string name="add_to_existing_contact">添加至已存在的聯絡人</string>
|
||||
<string name="dialer_moved">
|
||||
<![CDATA[
|
||||
The part of the app responsible for Call handling had to be moved into a separate new app Simple Dialer, please download it on <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.dialer">this link.</a> Thanks!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Placeholders -->
|
||||
<string name="no_contacts_with_emails">未發現含有電子信箱的聯絡人</string>
|
||||
|
@ -15,11 +15,6 @@
|
||||
<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>
|
||||
<string name="dialer_moved">
|
||||
<![CDATA[
|
||||
The part of the app responsible for Call handling had to be moved into a separate new app Simple Dialer, please download it on <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.dialer">this link.</a> Thanks!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Placeholders -->
|
||||
<string name="no_contacts_with_emails">No contacts with emails have been found</string>
|
||||
|
Loading…
x
Reference in New Issue
Block a user