Merge branch 'master' into add-manage-tabs

This commit is contained in:
Tibor Kaputa
2021-11-19 10:40:07 +01:00
committed by GitHub
52 changed files with 509 additions and 623 deletions

View File

@ -22,8 +22,8 @@ https://www.facebook.com/simplemobiletools
<b>Reddit:</b> <b>Reddit:</b>
https://www.reddit.com/r/SimpleMobileTools https://www.reddit.com/r/SimpleMobileTools
<a href='https://play.google.com/store/apps/details?id=com.simplemobiletools.dialer'><img src='https://simplemobiletools.com/assets/images/google-play.png' alt='Get it on Google Play' height='45' /></a> <a href='https://play.google.com/store/apps/details?id=com.simplemobiletools.dialer'><img src='https://simplemobiletools.com/images/button-google-play.svg' alt='Get it on Google Play' height='45' /></a>
<a href='https://f-droid.org/packages/com.simplemobiletools.dialer'><img src='https://simplemobiletools.com/assets/images/f-droid.png' alt='Get it on F-Droid' height='45' /></a> <a href='https://f-droid.org/packages/com.simplemobiletools.dialer'><img src='https://simplemobiletools.com/images/button-f-droid.png' alt='Get it on F-Droid' height='45' /></a>
<div style="display:flex;"> <div style="display:flex;">
<img alt="App image" src="fastlane/metadata/android/en-US/images/phoneScreenshots/english/1.jpg" width="30%"> <img alt="App image" src="fastlane/metadata/android/en-US/images/phoneScreenshots/english/1.jpg" width="30%">

View File

@ -55,6 +55,6 @@ android {
} }
dependencies { dependencies {
implementation 'com.github.SimpleMobileTools:Simple-Commons:d7c3f6de22' implementation 'com.github.SimpleMobileTools:Simple-Commons:6cc19172f0'
implementation 'com.github.tibbi:IndicatorFastScroll:c3de1d040a' implementation 'com.github.tibbi:IndicatorFastScroll:c3de1d040a'
} }

View File

@ -60,21 +60,11 @@
android:label="@string/about" android:label="@string/about"
android:parentActivityName=".activities.MainActivity" /> android:parentActivityName=".activities.MainActivity" />
<activity
android:name="com.simplemobiletools.commons.activities.LicenseActivity"
android:label="@string/third_party_licences"
android:parentActivityName="com.simplemobiletools.commons.activities.AboutActivity" />
<activity <activity
android:name="com.simplemobiletools.commons.activities.CustomizationActivity" android:name="com.simplemobiletools.commons.activities.CustomizationActivity"
android:label="@string/customize_colors" android:label="@string/customize_colors"
android:parentActivityName=".activities.SettingsActivity" /> android:parentActivityName=".activities.SettingsActivity" />
<activity
android:name="com.simplemobiletools.commons.activities.FAQActivity"
android:label="@string/frequently_asked_questions"
android:parentActivityName="com.simplemobiletools.commons.activities.AboutActivity" />
<activity <activity
android:name="com.simplemobiletools.commons.activities.ManageBlockedNumbersActivity" android:name="com.simplemobiletools.commons.activities.ManageBlockedNumbersActivity"
android:label="@string/blocked_numbers" android:label="@string/blocked_numbers"
@ -92,16 +82,16 @@
<activity <activity
android:name=".activities.CallActivity" android:name=".activities.CallActivity"
android:label="@string/ongoing_call"
android:excludeFromRecents="true" android:excludeFromRecents="true"
android:label="@string/ongoing_call"
android:screenOrientation="portrait" android:screenOrientation="portrait"
android:showOnLockScreen="true" /> android:showOnLockScreen="true" />
<activity <activity
android:name=".activities.DialpadActivity" android:name=".activities.DialpadActivity"
android:label="@string/dialpad" android:label="@string/dialpad"
android:windowSoftInputMode="stateHidden" android:parentActivityName=".activities.MainActivity"
android:parentActivityName=".activities.MainActivity"> android:windowSoftInputMode="stateHidden">
<intent-filter> <intent-filter>
<action android:name="android.intent.action.DIAL" /> <action android:name="android.intent.action.DIAL" />

View File

@ -311,7 +311,7 @@ class MainActivity : SimpleActivity() {
private fun getTabIcon(position: Int): Drawable { private fun getTabIcon(position: Int): Drawable {
val drawableId = when (position) { val drawableId = when (position) {
0 -> R.drawable.ic_person_vector 0 -> R.drawable.ic_person_vector
1 -> R.drawable.ic_star_on_vector 1 -> R.drawable.ic_star_vector
else -> R.drawable.ic_clock_vector else -> R.drawable.ic_clock_vector
} }

View File

@ -42,6 +42,24 @@ class SettingsActivity : SimpleActivity() {
setupDisableProximitySensor() setupDisableProximitySensor()
updateTextColors(settings_holder) updateTextColors(settings_holder)
invalidateOptionsMenu() invalidateOptionsMenu()
arrayOf(
settings_color_customization_label,
settings_general_settings_label,
settings_startup_label,
settings_calls_label
).forEach {
it.setTextColor(getAdjustedPrimaryColor())
}
arrayOf(
settings_color_customization_holder,
settings_general_settings_holder,
settings_startup_holder,
settings_calls_holder
).forEach {
it.background.applyColorFilter(baseConfig.backgroundColor.getContrastColor())
}
} }
override fun onCreateOptionsMenu(menu: Menu): Boolean { override fun onCreateOptionsMenu(menu: Menu): Boolean {
@ -51,6 +69,12 @@ class SettingsActivity : SimpleActivity() {
private fun setupPurchaseThankYou() { private fun setupPurchaseThankYou() {
settings_purchase_thank_you_holder.beGoneIf(isOrWasThankYouInstalled()) settings_purchase_thank_you_holder.beGoneIf(isOrWasThankYouInstalled())
// make sure the corners at ripple fit the stroke rounded corners
if (settings_purchase_thank_you_holder.isGone()) {
settings_use_english_holder.background = resources.getDrawable(R.drawable.ripple_top_corners, theme)
}
settings_purchase_thank_you_holder.setOnClickListener { settings_purchase_thank_you_holder.setOnClickListener {
launchPurchaseThankYouIntent() launchPurchaseThankYouIntent()
} }
@ -66,6 +90,11 @@ class SettingsActivity : SimpleActivity() {
private fun setupUseEnglish() { private fun setupUseEnglish() {
settings_use_english_holder.beVisibleIf(config.wasUseEnglishToggled || Locale.getDefault().language != "en") settings_use_english_holder.beVisibleIf(config.wasUseEnglishToggled || Locale.getDefault().language != "en")
settings_use_english.isChecked = config.useEnglish settings_use_english.isChecked = config.useEnglish
if (settings_use_english_holder.isGone() && settings_purchase_thank_you_holder.isGone()) {
settings_manage_blocked_numbers_holder.background = resources.getDrawable(R.drawable.ripple_top_corners, theme)
}
settings_use_english_holder.setOnClickListener { settings_use_english_holder.setOnClickListener {
settings_use_english.toggle() settings_use_english.toggle()
config.useEnglish = settings_use_english.isChecked config.useEnglish = settings_use_english.isChecked
@ -77,6 +106,11 @@ class SettingsActivity : SimpleActivity() {
@TargetApi(Build.VERSION_CODES.N) @TargetApi(Build.VERSION_CODES.N)
private fun setupManageBlockedNumbers() { private fun setupManageBlockedNumbers() {
settings_manage_blocked_numbers_holder.beVisibleIf(isNougatPlus()) settings_manage_blocked_numbers_holder.beVisibleIf(isNougatPlus())
if (settings_use_english_holder.isGone() && settings_purchase_thank_you_holder.isGone() && settings_manage_blocked_numbers_holder.isGone()) {
settings_change_date_time_format_holder.background = resources.getDrawable(R.drawable.ripple_top_corners, theme)
}
settings_manage_blocked_numbers_holder.setOnClickListener { settings_manage_blocked_numbers_holder.setOnClickListener {
Intent(this, ManageBlockedNumbersActivity::class.java).apply { Intent(this, ManageBlockedNumbersActivity::class.java).apply {
startActivity(this) startActivity(this)
@ -164,10 +198,10 @@ class SettingsActivity : SimpleActivity() {
} }
private fun setupStartNameWithSurname() { private fun setupStartNameWithSurname() {
settings_start_with_surname.isChecked = config.startNameWithSurname settings_start_name_with_surname.isChecked = config.startNameWithSurname
settings_start_with_surname_holder.setOnClickListener { settings_start_name_with_surname_holder.setOnClickListener {
settings_start_with_surname.toggle() settings_start_name_with_surname.toggle()
config.startNameWithSurname = settings_start_with_surname.isChecked config.startNameWithSurname = settings_start_name_with_surname.isChecked
} }
} }

View File

@ -20,6 +20,11 @@ class SelectSIMDialog(val activity: BaseSimpleActivity, val phoneNumber: String,
init { init {
val radioGroup = view.select_sim_radio_group val radioGroup = view.select_sim_radio_group
view.apply {
select_sim_remember_holder.setOnClickListener {
select_sim_remember.toggle()
}
}
activity.getAvailableSIMCardLabels().forEachIndexed { index, SIMAccount -> activity.getAvailableSIMCardLabels().forEachIndexed { index, SIMAccount ->
val radioButton = (activity.layoutInflater.inflate(R.layout.radio_button, null) as RadioButton).apply { val radioButton = (activity.layoutInflater.inflate(R.layout.radio_button, null) as RadioButton).apply {

View File

@ -108,6 +108,10 @@ class ContactsFragment(context: Context, attributeSet: AttributeSet) : MyViewPag
}.apply { }.apply {
fragment_list.adapter = this fragment_list.adapter = this
} }
if (context.areSystemAnimationsEnabled) {
fragment_list.scheduleLayoutAnimation()
}
} else { } else {
(currAdapter as ContactsAdapter).updateItems(contacts) (currAdapter as ContactsAdapter).updateItems(contacts)
} }

View File

@ -85,6 +85,10 @@ class FavoritesFragment(context: Context, attributeSet: AttributeSet) : MyViewPa
}.apply { }.apply {
fragment_list.adapter = this fragment_list.adapter = this
} }
if (context.areSystemAnimationsEnabled) {
fragment_list.scheduleLayoutAnimation()
}
} else { } else {
(currAdapter as ContactsAdapter).updateItems(contacts) (currAdapter as ContactsAdapter).updateItems(contacts)
} }

View File

@ -102,6 +102,10 @@ class RecentsFragment(context: Context, attributeSet: AttributeSet) : MyViewPage
}.apply { }.apply {
recents_list.adapter = this recents_list.adapter = this
} }
if (context.areSystemAnimationsEnabled) {
recents_list.scheduleLayoutAnimation()
}
} else { } else {
(currAdapter as RecentCallsAdapter).updateItems(recents) (currAdapter as RecentCallsAdapter).updateItems(recents)
} }

View File

@ -55,13 +55,12 @@ class CallManager {
fun getCallContact(context: Context, callback: (CallContact?) -> Unit) { fun getCallContact(context: Context, callback: (CallContact?) -> Unit) {
ensureBackgroundThread { ensureBackgroundThread {
val callContact = CallContact("", "", "") val callContact = CallContact("", "", "")
if (call == null || call?.details == null || call?.details?.handle == null) { val handle = try {
callback(callContact) call?.details?.handle?.toString()
return@ensureBackgroundThread } catch (e: NullPointerException) {
null
} }
// something here can be null even after the previous check, so do it like this
val handle = call?.details?.handle?.toString()
if (handle == null) { if (handle == null) {
callback(callContact) callback(callContact)
return@ensureBackgroundThread return@ensureBackgroundThread

View File

@ -44,7 +44,7 @@ class CallService : InCallService() {
override fun onDestroy() { override fun onDestroy() {
super.onDestroy() super.onDestroy()
CallManager.registerCallback(callListener) CallManager.unregisterCallback(callListener)
callNotificationManager.cancelNotification() callNotificationManager.cancelNotification()
callDurationHelper.cancel() callDurationHelper.cancel()
} }

View File

@ -1,9 +1,3 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" <vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportWidth="24" android:viewportHeight="24">
android:width="24dp" <path android:pathData="M22 3H7C6.31 3 5.77 3.35 5.41 3.88l-5.04 7.57c-0.22 0.34-0.22 0.77 0 1.11l5.04 7.56C5.77 20.64 6.31 21 7 21h15c1.1 0 2-0.9 2-2V5c0-1.1-0.9-2-2-2zm-3.7 13.3c-0.39 0.39-1.02 0.39-1.41 0L14 13.41l-2.89 2.89c-0.39 0.39-1.02 0.39-1.41 0-0.39-0.39-0.39-1.02 0-1.41L12.59 12 9.7 9.11c-0.39-0.39-0.39-1.02 0-1.41 0.39-0.39 1.02-0.39 1.41 0L14 10.59l2.89-2.89c0.39-0.39 1.02-0.39 1.41 0 0.39 0.39 0.39 1.02 0 1.41L15.41 12l2.89 2.89c0.38 0.38 0.38 1.02 0 1.41z" android:fillColor="#FFFFFF"/>
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:fillColor="#FFFFFFFF"
android:pathData="M22,3L7,3c-0.69,0 -1.23,0.35 -1.59,0.88L0,12l5.41,8.11c0.36,0.53 0.9,0.89 1.59,0.89h15c1.1,0 2,-0.9 2,-2L24,5c0,-1.1 -0.9,-2 -2,-2zM19,15.59L17.59,17 14,13.41 10.41,17 9,15.59 12.59,12 9,8.41 10.41,7 14,10.59 17.59,7 19,8.41 15.41,12 19,15.59z" />
</vector> </vector>

View File

@ -1,16 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<ripple xmlns:android="http://schemas.android.com/apk/res/android" <ripple xmlns:android="http://schemas.android.com/apk/res/android" android:color="@color/ripple_foreground">
android:color="@color/ripple_foreground">
<item android:id="@+id/shortcut_dialpad_background"> <item android:id="@+id/shortcut_dialpad_background">
<shape android:shape="oval"> <shape android:shape="oval">
<solid android:color="@color/md_green_700" /> <solid android:color="@color/md_green_700"/>
</shape> </shape>
</item> </item>
<item android:bottom="@dimen/medium_margin" android:drawable="@drawable/ic_phone_vector" android:left="@dimen/medium_margin" android:right="@dimen/medium_margin" android:top="@dimen/medium_margin"/>
<item
android:bottom="@dimen/medium_margin"
android:drawable="@drawable/ic_phone_vector"
android:left="@dimen/medium_margin"
android:right="@dimen/medium_margin"
android:top="@dimen/medium_margin" />
</ripple> </ripple>

View File

@ -1,16 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<ripple xmlns:android="http://schemas.android.com/apk/res/android" <ripple xmlns:android="http://schemas.android.com/apk/res/android" android:color="@color/ripple_foreground">
android:color="@color/ripple_foreground">
<item android:id="@+id/shortcut_dialpad_background"> <item android:id="@+id/shortcut_dialpad_background">
<shape android:shape="oval"> <shape android:shape="oval">
<solid android:color="@color/md_red_700" /> <solid android:color="@color/md_red_700"/>
</shape> </shape>
</item> </item>
<item android:bottom="@dimen/medium_margin" android:drawable="@drawable/ic_phone_down_vector" android:left="@dimen/medium_margin" android:right="@dimen/medium_margin" android:top="@dimen/medium_margin"/>
<item
android:bottom="@dimen/medium_margin"
android:drawable="@drawable/ic_phone_down_vector"
android:left="@dimen/medium_margin"
android:right="@dimen/medium_margin"
android:top="@dimen/medium_margin" />
</ripple> </ripple>

View File

@ -1,9 +1,3 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" <vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportWidth="24" android:viewportHeight="24">
android:width="24dp" <path android:pathData="M19.23 15.26l-2.54-0.29c-0.61-0.07-1.21 0.14-1.64 0.57l-1.84 1.84c-2.83-1.44-5.15-3.75-6.59-6.59l1.85-1.85C8.9 8.51 9.11 7.91 9.04 7.3L8.75 4.78C8.63 3.77 7.78 3.01 6.76 3.01H5.03c-1.13 0-2.07 0.94-2 2.07 0.53 8.54 7.36 15.36 15.89 15.89 1.13 0.07 2.07-0.87 2.07-2v-1.73c0.01-1.01-0.75-1.86-1.76-1.98zM13 11h4c0.55 0 1-0.45 1-1s-0.45-1-1-1h-1.59l4.31-4.31c0.39-0.39 0.39-1.02 0-1.41s-1.02-0.39-1.41 0L14 7.59V6c0-0.55-0.45-1-1-1s-1 0.45-1 1v4c0 0.55 0.45 1 1 1z" android:fillColor="#FFFFFF"/>
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:fillColor="#FFFFFF"
android:pathData="m4.9875,10.4243c1.877,3.6888 4.901,6.6997 8.5897,8.5897l2.8676,-2.8676c0.3519,-0.3519 0.8733,-0.4692 1.3295,-0.3128 1.4599,0.4823 3.037,0.743 4.6533,0.743 0.7169,0 1.3034,0.5866 1.3034,1.3034l0,4.549c0,0.7169 -0.5866,1.3034 -1.3034,1.3034 -12.2394,0 -22.1586,-9.9192 -22.1586,-22.1586 0,-0.7169 0.5866,-1.3034 1.3034,-1.3034l4.5621,0c0.7169,0 1.3034,0.5866 1.3034,1.3034 0,1.6293 0.2607,3.1934 0.743,4.6533 0.1434,0.4562 0.0391,0.9646 -0.3259,1.3295L4.9875,10.4243ZM22.6361,1.1699 L21.7107,0.2575 13.3034,8.4692l0,-5.5918 -1.3034,0 0,7.8207 7.8207,0 0,-1.3034 -5.4093,0z" />
</vector> </vector>

View File

@ -1,170 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android" <vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="108dp" android:height="108dp" android:viewportWidth="108" android:viewportHeight="108">
android:width="108dp" <path android:fillColor="#3DDC84" android:pathData="M0 0h108v108H0z"/>
android:height="108dp" <path android:pathData="M9 0v108M19 0v108M29 0v108M39 0v108M49 0v108M59 0v108M69 0v108M79 0v108M89 0v108M99 0v108M0 9h108M0 19h108M0 29h108M0 39h108M0 49h108M0 59h108M0 69h108M0 79h108M0 89h108M0 99h108M19 29h70M19 39h70M19 49h70M19 59h70M19 69h70M19 79h70M29 19v70m10-70v70m10-70v70m10-70v70m10-70v70m10-70v70" android:strokeWidth="0.8" android:strokeColor="#33FFFFFF"/>
android:viewportWidth="108"
android:viewportHeight="108">
<path
android:fillColor="#3DDC84"
android:pathData="M0,0h108v108h-108z" />
<path
android:fillColor="#00000000"
android:pathData="M9,0L9,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,0L19,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M29,0L29,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M39,0L39,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M49,0L49,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M59,0L59,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M69,0L69,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M79,0L79,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M89,0L89,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M99,0L99,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,9L108,9"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,19L108,19"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,29L108,29"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,39L108,39"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,49L108,49"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,59L108,59"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,69L108,69"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,79L108,79"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,89L108,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,99L108,99"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,29L89,29"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,39L89,39"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,49L89,49"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,59L89,59"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,69L89,69"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,79L89,79"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M29,19L29,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M39,19L39,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M49,19L49,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M59,19L59,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M69,19L69,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M79,19L79,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
</vector> </vector>

View File

@ -1,9 +1,3 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" <vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportWidth="24" android:viewportHeight="24">
android:width="24dp" <path android:pathData="M15 10.6V5c0-1.66-1.34-3-3-3-1.54 0-2.79 1.16-2.96 2.65L15 10.6zm3.08 0.4c-0.41 0-0.77 0.3-0.83 0.71-0.05 0.32-0.12 0.64-0.22 0.93l1.27 1.27c0.3-0.6 0.52-1.25 0.63-1.94C19 11.46 18.6 11 18.08 11zM3.71 3.56c-0.39 0.39-0.39 1.02 0 1.41L9 10.27v0.43c0 1.19 0.6 2.32 1.63 2.91 0.75 0.43 1.41 0.44 2.02 0.31l1.66 1.66c-0.71 0.33-1.5 0.52-2.31 0.52-2.54 0-4.88-1.77-5.25-4.39C6.69 11.3 6.33 11 5.92 11 5.4 11 5 11.46 5.07 11.97c0.46 2.96 2.96 5.3 5.93 5.75V20c0 0.55 0.45 1 1 1s1-0.45 1-1v-2.28c0.91-0.13 1.77-0.45 2.55-0.9l3.49 3.49c0.39 0.39 1.02 0.39 1.41 0 0.39-0.39 0.39-1.02 0-1.41L5.12 3.56c-0.39-0.39-1.02-0.39-1.41 0z" android:fillColor="#FFFFFF"/>
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:fillColor="#FFFFFF"
android:pathData="M19,11C19,11 19.0088,9.8569 18.1571,9.8714 17.362,9.885 17.3,11 17.3,11c0,0.74 -0.16,1.43 -0.43,2.05l1.23,1.23C18.66,13.3 19,12.19 19,11ZM14.98,11.17C14.98,11.11 15,11.06 15,11L15,5C15,3.34 13.66,2 12,2 10.34,2 9,3.34 9,5L9,5.18ZM4.27,3 L3,4.27l6.01,6.01 0,0.72c0,1.66 1.33,3 2.99,3 0.22,0 0.44,-0.03 0.65,-0.08l1.66,1.66C13.6,15.91 12.81,16.1 12,16.1 9.24,16.1 6.7,14 6.7,11 6.7,11 6.6686,9.9807 5.8435,9.992 5.0185,10.0033 5,11 5,11c0,3.41 2.72,6.23 6,6.72L11,21c0,0 -0.0013,1.036 1.0127,1.0169C12.9886,21.9987 13,21 13,21l0,-3.28c0.91,-0.13 1.77,-0.45 2.54,-0.9L19.73,21 21,19.73Z" />
</vector> </vector>

View File

@ -1,9 +1,4 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" <vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportWidth="24" android:viewportHeight="24">
android:width="24dp" <path android:pathData="M19.23 15.26l-2.54-0.29c-0.61-0.07-1.21 0.14-1.64 0.57l-1.84 1.84c-2.83-1.44-5.15-3.75-6.59-6.59l1.85-1.85C8.9 8.51 9.11 7.91 9.04 7.3L8.75 4.78C8.63 3.77 7.78 3.01 6.76 3.01H5.03c-1.13 0-2.07 0.94-2 2.07 0.53 8.54 7.36 15.36 15.89 15.89 1.13 0.07 2.07-0.87 2.07-2v-1.73c0.01-1.01-0.75-1.86-1.76-1.98z" android:fillColor="#FFFFFF"/>
android:height="24dp" <path android:pathData="M19.012 2.987h-4c-0.55 0-1 0.45-1 1s0.45 1 1 1h1.59l-4.31 4.31c-0.39 0.39-0.39 1.02 0 1.41 0.39 0.39 1.02 0.39 1.41 0l4.31-4.31v1.59c0 0.55 0.45 1 1 1s1-0.45 1-1v-4c0-0.55-0.45-1-1-1z" android:fillColor="#FFFFFF"/>
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:fillColor="#FFFFFF"
android:pathData="m12,9.7857 l0.9254,0.9124 8.4072,-8.2117 0,5.5918 1.3034,0 0,-7.8207 -7.8207,0 0,1.3034 5.4093,0zM4.9875,10.4243c1.877,3.6888 4.901,6.6997 8.5897,8.5897l2.8676,-2.8676c0.3519,-0.3519 0.8733,-0.4692 1.3295,-0.3128 1.4599,0.4823 3.037,0.743 4.6533,0.743 0.7169,0 1.3034,0.5866 1.3034,1.3034l0,4.549c0,0.7169 -0.5866,1.3034 -1.3034,1.3034 -12.2394,0 -22.1586,-9.9192 -22.1586,-22.1586 0,-0.7169 0.5866,-1.3034 1.3034,-1.3034l4.5621,0c0.7169,0 1.3034,0.5866 1.3034,1.3034 0,1.6293 0.2607,3.1934 0.743,4.6533 0.1434,0.4562 0.0391,0.9646 -0.3259,1.3295L4.9875,10.4243Z" />
</vector> </vector>

View File

@ -1,9 +1,3 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" <vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportWidth="24" android:viewportHeight="24">
android:width="24dp" <path android:fillColor="@color/md_red_700" android:pathData="M23.427 12.234c-2.978-2.821-7-4.559-11.432-4.559s-8.454 1.738-11.431 4.56c-0.176 0.175-0.284 0.42-0.284 0.692 0 0.274 0.108 0.518 0.284 0.694l2.42 2.42c0.176 0.176 0.42 0.284 0.694 0.284 0.263 0 0.507-0.108 0.683-0.274 0.771-0.722 1.65-1.327 2.597-1.806 0.322-0.156 0.547-0.488 0.547-0.878V10.34c1.415-0.468 2.928-0.712 4.49-0.712 1.562 0 3.075 0.244 4.49 0.703v3.026c0 0.38 0.225 0.722 0.547 0.879 0.957 0.478 1.826 1.093 2.607 1.806 0.176 0.175 0.42 0.273 0.683 0.273 0.274 0 0.518-0.108 0.693-0.283l2.421-2.421c0.176-0.176 0.284-0.42 0.284-0.693 0-0.274-0.118-0.508-0.293-0.684z"/>
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:fillColor="@color/md_red_700"
android:pathData="M23.4267,12.2343C20.4492,9.413 16.4272,7.6753 11.9951,7.6753c-4.4321,0 -8.4541,1.7377 -11.4316,4.559 -0.1757,0.1757 -0.2831,0.4198 -0.2831,0.6931 0,0.2733 0.1074,0.5174 0.2831,0.6931l2.421,2.421c0.1757,0.1757 0.4198,0.2831 0.6931,0.2831 0.2636,0 0.5076,-0.1074 0.6834,-0.2733 0.7712,-0.7224 1.6498,-1.3277 2.5968,-1.806 0.3222,-0.1562 0.5467,-0.4881 0.5467,-0.8786l0,-3.0263C8.92,9.8718 10.4332,9.6278 11.9951,9.6278c1.562,0 3.0751,0.2441 4.4906,0.7029l0,3.0263c0,0.3807 0.2245,0.7224 0.5467,0.8786 0.9567,0.4783 1.8255,1.0934 2.6065,1.806 0.1757,0.1757 0.4198,0.2733 0.6834,0.2733 0.2733,0 0.5174,-0.1074 0.6931,-0.2831l2.421,-2.421c0.1757,-0.1757 0.2831,-0.4198 0.2831,-0.6931 0,-0.2733 -0.1171,-0.5076 -0.2929,-0.6834z" />
</vector> </vector>

View File

@ -1,9 +1,3 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" <vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportWidth="24" android:viewportHeight="24">
android:width="24dp" <path android:fillColor="#FFFFFF" android:pathData="M23.427 12.234c-2.978-2.821-7-4.559-11.432-4.559s-8.454 1.738-11.431 4.56c-0.176 0.175-0.284 0.42-0.284 0.692 0 0.274 0.108 0.518 0.284 0.694l2.42 2.42c0.176 0.176 0.42 0.284 0.694 0.284 0.263 0 0.507-0.108 0.683-0.274 0.771-0.722 1.65-1.327 2.597-1.806 0.322-0.156 0.547-0.488 0.547-0.878V10.34c1.415-0.468 2.928-0.712 4.49-0.712 1.562 0 3.075 0.244 4.49 0.703v3.026c0 0.38 0.225 0.722 0.547 0.879 0.957 0.478 1.826 1.093 2.607 1.806 0.176 0.175 0.42 0.273 0.683 0.273 0.274 0 0.518-0.108 0.693-0.283l2.421-2.421c0.176-0.176 0.284-0.42 0.284-0.693 0-0.274-0.118-0.508-0.293-0.684z"/>
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:fillColor="#FFFFFF"
android:pathData="M23.4267,12.2343C20.4492,9.413 16.4272,7.6753 11.9951,7.6753c-4.4321,0 -8.4541,1.7377 -11.4316,4.559 -0.1757,0.1757 -0.2831,0.4198 -0.2831,0.6931 0,0.2733 0.1074,0.5174 0.2831,0.6931l2.421,2.421c0.1757,0.1757 0.4198,0.2831 0.6931,0.2831 0.2636,0 0.5076,-0.1074 0.6834,-0.2733 0.7712,-0.7224 1.6498,-1.3277 2.5968,-1.806 0.3222,-0.1562 0.5467,-0.4881 0.5467,-0.8786l0,-3.0263C8.92,9.8718 10.4332,9.6278 11.9951,9.6278c1.562,0 3.0751,0.2441 4.4906,0.7029l0,3.0263c0,0.3807 0.2245,0.7224 0.5467,0.8786 0.9567,0.4783 1.8255,1.0934 2.6065,1.806 0.1757,0.1757 0.4198,0.2733 0.6834,0.2733 0.2733,0 0.5174,-0.1074 0.6931,-0.2831l2.421,-2.421c0.1757,-0.1757 0.2831,-0.4198 0.2831,-0.6931 0,-0.2733 -0.1171,-0.5076 -0.2929,-0.6834z" />
</vector> </vector>

View File

@ -1,9 +1,3 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" <vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportWidth="24" android:viewportHeight="24">
android:width="24dp" <path android:fillColor="@color/md_green_700" android:pathData="M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c0.27-0.27 0.67-0.36 1.02-0.24 1.12 0.37 2.33 0.57 3.57 0.57 0.55 0 1 0.45 1 1V20c0 0.55-0.45 1-1 1-9.39 0-17-7.61-17-17 0-0.55 0.45-1 1-1h3.5c0.55 0 1 0.45 1 1 0 1.25 0.2 2.45 0.57 3.57 0.11 0.35 0.03 0.74-0.25 1.02l-2.2 2.2z"/>
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:fillColor="@color/md_green_700"
android:pathData="M6.62,10.79c1.44,2.83 3.76,5.14 6.59,6.59l2.2,-2.2c0.27,-0.27 0.67,-0.36 1.02,-0.24 1.12,0.37 2.33,0.57 3.57,0.57 0.55,0 1,0.45 1,1V20c0,0.55 -0.45,1 -1,1 -9.39,0 -17,-7.61 -17,-17 0,-0.55 0.45,-1 1,-1h3.5c0.55,0 1,0.45 1,1 0,1.25 0.2,2.45 0.57,3.57 0.11,0.35 0.03,0.74 -0.25,1.02l-2.2,2.2z" />
</vector> </vector>

View File

@ -1,9 +1,3 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" <vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportWidth="24" android:viewportHeight="24">
android:width="24dp" <path android:pathData="M3.63 3.63c-0.39 0.39-0.39 1.02 0 1.41L7.29 8.7 7 9H4c-0.55 0-1 0.45-1 1v4c0 0.55 0.45 1 1 1h3l3.29 3.29c0.63 0.63 1.71 0.18 1.71-0.71v-4.17l4.18 4.18c-0.49 0.37-1.02 0.68-1.6 0.91-0.36 0.15-0.58 0.53-0.58 0.92 0 0.72 0.73 1.18 1.39 0.91 0.8-0.33 1.55-0.77 2.22-1.31l1.34 1.34c0.39 0.39 1.02 0.39 1.41 0 0.39-0.39 0.39-1.02 0-1.41L5.05 3.63c-0.39-0.39-1.02-0.39-1.42 0zM19 12c0 0.82-0.15 1.61-0.41 2.34l1.53 1.53C20.68 14.7 21 13.39 21 12c0-3.83-2.4-7.11-5.78-8.4C14.63 3.37 14 3.83 14 4.46v0.19c0 0.38 0.25 0.71 0.61 0.85C17.18 6.54 19 9.06 19 12zm-8.71-6.29l-0.17 0.17L12 7.76V6.41c0-0.89-1.08-1.33-1.71-0.7zM16.5 12c0-1.77-1.02-3.29-2.5-4.03v1.79l2.48 2.48c0.01-0.08 0.02-0.16 0.02-0.24z" android:fillColor="#FFFFFF"/>
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:fillColor="#FFFFFF"
android:pathData="M16.5,12c0,-1.77 -1.02,-3.29 -2.5,-4.03v2.21l2.45,2.45c0.03,-0.2 0.05,-0.41 0.05,-0.63zM19,12c0,0.94 -0.2,1.82 -0.54,2.64l1.51,1.51C20.63,14.91 21,13.5 21,12c0,-4.28 -2.99,-7.86 -7,-8.77v2.06c2.89,0.86 5,3.54 5,6.71zM4.27,3L3,4.27 7.73,9L3,9v6h4l5,5v-6.73l4.25,4.25c-0.67,0.52 -1.42,0.93 -2.25,1.18v2.06c1.38,-0.31 2.63,-0.95 3.69,-1.81L19.73,21 21,19.73l-9,-9L4.27,3zM12,4L9.91,6.09 12,8.18L12,4z" />
</vector> </vector>

View File

@ -1,9 +1,3 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" <vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportWidth="24" android:viewportHeight="24">
android:width="24dp" <path android:pathData="M3 10v4c0 0.55 0.45 1 1 1h3l3.29 3.29c0.63 0.63 1.71 0.18 1.71-0.71V6.41c0-0.89-1.08-1.34-1.71-0.71L7 9H4c-0.55 0-1 0.45-1 1zm13.5 2c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-0.73 2.5-2.25 2.5-4.02zM14 4.45v0.2c0 0.38 0.25 0.71 0.6 0.85C17.18 6.53 19 9.06 19 12s-1.82 5.47-4.4 6.5c-0.36 0.14-0.6 0.47-0.6 0.85v0.2c0 0.63 0.63 1.07 1.21 0.85C18.6 19.11 21 15.84 21 12s-2.4-7.11-5.79-8.4C14.63 3.37 14 3.82 14 4.45z" android:fillColor="#FFFFFF"/>
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:fillColor="#FFFFFF"
android:pathData="M3,9v6h4l5,5L12,4L7,9L3,9zM16.5,12c0,-1.77 -1.02,-3.29 -2.5,-4.03v8.05c1.48,-0.73 2.5,-2.25 2.5,-4.02zM14,3.23v2.06c2.89,0.86 5,3.54 5,6.71s-2.11,5.85 -5,6.71v2.06c4.01,-0.91 7,-4.49 7,-8.77s-2.99,-7.86 -7,-8.77z" />
</vector> </vector>

View File

@ -1,6 +0,0 @@
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
android:color="@color/md_grey">
<item
android:id="@android:id/mask"
android:drawable="@android:color/white" />
</ripple>

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/settings_scrollview" android:id="@+id/settings_scrollview"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content"> android:layout_height="wrap_content">
@ -11,332 +11,308 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:orientation="vertical"> android:orientation="vertical">
<RelativeLayout <TextView
android:id="@+id/settings_purchase_thank_you_holder" android:id="@+id/settings_color_customization_label"
style="@style/SettingsSectionLabelStyle"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginTop="@dimen/medium_margin" android:text="@string/color_customization" />
android:background="?attr/selectableItemBackground"
android:paddingLeft="@dimen/normal_margin"
android:paddingTop="@dimen/activity_margin"
android:paddingRight="@dimen/normal_margin"
android:paddingBottom="@dimen/activity_margin">
<com.simplemobiletools.commons.views.MyTextView <LinearLayout
android:id="@+id/settings_purchase_thank_you" android:id="@+id/settings_color_customization_holder"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:paddingStart="@dimen/medium_margin"
android:text="@string/purchase_simple_thank_you" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/settings_customize_colors_holder"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginTop="@dimen/medium_margin" android:layout_margin="@dimen/medium_margin"
android:background="?attr/selectableItemBackground" android:background="@drawable/section_holder_stroke"
android:paddingStart="@dimen/normal_margin" android:orientation="vertical">
android:paddingTop="@dimen/activity_margin"
android:paddingEnd="@dimen/normal_margin"
android:paddingBottom="@dimen/activity_margin">
<com.simplemobiletools.commons.views.MyTextView <RelativeLayout
android:id="@+id/settings_customize_colors_label" android:id="@+id/settings_customize_colors_holder"
android:layout_width="wrap_content" style="@style/SettingsHolderTextViewOneLinerStyle"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:paddingStart="@dimen/medium_margin"
android:text="@string/customize_colors" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/settings_use_english_holder"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/medium_margin"
android:background="?attr/selectableItemBackground"
android:paddingStart="@dimen/normal_margin"
android:paddingTop="@dimen/activity_margin"
android:paddingEnd="@dimen/normal_margin"
android:paddingBottom="@dimen/activity_margin">
<com.simplemobiletools.commons.views.MySwitchCompat
android:id="@+id/settings_use_english"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:background="@null" android:background="@drawable/ripple_all_corners">
android:clickable="false"
android:paddingStart="@dimen/medium_margin"
android:text="@string/use_english_language"
app:switchPadding="@dimen/medium_margin" />
</RelativeLayout> <com.simplemobiletools.commons.views.MyTextView
android:id="@+id/settings_customize_colors_label"
style="@style/SettingsTextLabelStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/customize_colors" />
<RelativeLayout </RelativeLayout>
android:id="@+id/settings_manage_blocked_numbers_holder" </LinearLayout>
<TextView
android:id="@+id/settings_general_settings_label"
style="@style/SettingsSectionLabelStyle"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginTop="@dimen/medium_margin" android:text="@string/general_settings" />
android:background="?attr/selectableItemBackground"
android:paddingStart="@dimen/normal_margin"
android:paddingTop="@dimen/activity_margin"
android:paddingEnd="@dimen/normal_margin"
android:paddingBottom="@dimen/activity_margin">
<com.simplemobiletools.commons.views.MyTextView <LinearLayout
android:id="@+id/settings_manage_blocked_numbers" android:id="@+id/settings_general_settings_holder"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:paddingStart="@dimen/medium_margin"
android:text="@string/manage_blocked_numbers" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/settings_change_date_time_format_holder"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginTop="@dimen/medium_margin" android:layout_margin="@dimen/medium_margin"
android:background="?attr/selectableItemBackground" android:background="@drawable/section_holder_stroke"
android:paddingLeft="@dimen/normal_margin" android:orientation="vertical">
android:paddingTop="@dimen/activity_margin"
android:paddingRight="@dimen/normal_margin"
android:paddingBottom="@dimen/activity_margin">
<com.simplemobiletools.commons.views.MyTextView <RelativeLayout
android:id="@+id/settings_change_date_time_format" android:id="@+id/settings_purchase_thank_you_holder"
android:layout_width="wrap_content" style="@style/SettingsHolderTextViewOneLinerStyle"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:paddingStart="@dimen/medium_margin"
android:text="@string/change_date_and_time_format" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/settings_manage_speed_dial_holder"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/medium_margin"
android:background="?attr/selectableItemBackground"
android:paddingStart="@dimen/normal_margin"
android:paddingTop="@dimen/activity_margin"
android:paddingEnd="@dimen/normal_margin"
android:paddingBottom="@dimen/activity_margin">
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/settings_manage_speed_dial"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:paddingStart="@dimen/medium_margin"
android:text="@string/manage_speed_dial" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/settings_manage_tabs_holder"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/medium_margin"
android:background="?attr/selectableItemBackground"
android:paddingStart="@dimen/normal_margin"
android:paddingTop="@dimen/activity_margin"
android:paddingEnd="@dimen/normal_margin"
android:paddingBottom="@dimen/activity_margin">
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/settings_manage_tabs"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_centerVertical="true" android:background="@drawable/ripple_top_corners">
android:paddingStart="@dimen/medium_margin"
android:text="@string/manage_shown_tabs" />
</RelativeLayout> <com.simplemobiletools.commons.views.MyTextView
android:id="@+id/settings_purchase_thank_you_label"
style="@style/SettingsTextLabelStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/purchase_simple_thank_you" />
<RelativeLayout </RelativeLayout>
android:id="@+id/settings_font_size_holder"
<RelativeLayout
android:id="@+id/settings_use_english_holder"
style="@style/SettingsHolderCheckboxStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/ripple_background">
<com.simplemobiletools.commons.views.MyAppCompatCheckbox
android:id="@+id/settings_use_english"
style="@style/SettingsCheckboxStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/use_english_language" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/settings_manage_blocked_numbers_holder"
style="@style/SettingsHolderTextViewOneLinerStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/ripple_background">
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/settings_manage_blocked_numbers_label"
style="@style/SettingsTextLabelStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/manage_blocked_numbers" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/settings_change_date_time_format_holder"
style="@style/SettingsHolderTextViewOneLinerStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/ripple_background">
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/settings_change_date_time_format_label"
style="@style/SettingsTextLabelStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/change_date_and_time_format" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/settings_manage_speed_dial_holder"
style="@style/SettingsHolderTextViewOneLinerStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/ripple_background">
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/settings_manage_speed_dial_label"
style="@style/SettingsTextLabelStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/manage_speed_dial" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/settings_font_size_holder"
style="@style/SettingsHolderTextViewStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/ripple_background">
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/settings_font_size_label"
style="@style/SettingsTextLabelStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/font_size" />
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/settings_font_size"
style="@style/SettingsTextValueStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/settings_font_size_label"
tools:text="@string/medium" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/settings_start_name_with_surname_holder"
style="@style/SettingsHolderCheckboxStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/ripple_bottom_corners">
<com.simplemobiletools.commons.views.MyAppCompatCheckbox
android:id="@+id/settings_start_name_with_surname"
style="@style/SettingsCheckboxStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/start_name_with_surname" />
</RelativeLayout>
</LinearLayout>
<TextView
android:id="@+id/settings_startup_label"
style="@style/SettingsSectionLabelStyle"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginTop="@dimen/medium_margin" android:text="@string/startup" />
android:background="?attr/selectableItemBackground"
android:paddingLeft="@dimen/normal_margin"
android:paddingTop="@dimen/activity_margin"
android:paddingRight="@dimen/normal_margin"
android:paddingBottom="@dimen/activity_margin">
<com.simplemobiletools.commons.views.MyTextView <LinearLayout
android:id="@+id/settings_font_size_label" android:id="@+id/settings_startup_holder"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_toStartOf="@+id/settings_font_size"
android:paddingLeft="@dimen/medium_margin"
android:paddingRight="@dimen/medium_margin"
android:text="@string/font_size" />
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/settings_font_size"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_marginEnd="@dimen/medium_margin"
android:background="@null"
android:clickable="false" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/settings_default_tab_holder"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginTop="@dimen/medium_margin" android:layout_margin="@dimen/medium_margin"
android:background="?attr/selectableItemBackground" android:background="@drawable/section_holder_stroke"
android:paddingLeft="@dimen/normal_margin" android:orientation="vertical">
android:paddingTop="@dimen/activity_margin"
android:paddingRight="@dimen/normal_margin"
android:paddingBottom="@dimen/activity_margin">
<com.simplemobiletools.commons.views.MyTextView <RelativeLayout
android:id="@+id/settings_default_tab_label" android:id="@+id/settings_manage_tabs_holder"
style="@style/SettingsHolderTextViewOneLinerStyle"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_centerVertical="true" android:background="@drawable/ripple_background">
android:layout_toStartOf="@+id/settings_default_tab"
android:paddingLeft="@dimen/medium_margin"
android:paddingRight="@dimen/medium_margin"
android:text="@string/default_tab_to_open" />
<com.simplemobiletools.commons.views.MyTextView <com.simplemobiletools.commons.views.MyTextView
android:id="@+id/settings_default_tab" android:id="@+id/settings_manage_tabs"
android:layout_width="wrap_content" style="@style/SettingsTextLabelStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/manage_shown_tabs" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/settings_default_tab_holder"
style="@style/SettingsHolderTextViewStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_alignParentEnd="true" android:background="@drawable/ripple_top_corners">
android:layout_marginEnd="@dimen/medium_margin"
android:background="@null"
android:clickable="false" />
</RelativeLayout> <com.simplemobiletools.commons.views.MyTextView
android:id="@+id/settings_default_tab_label"
style="@style/SettingsTextLabelStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/default_tab_to_open" />
<RelativeLayout <com.simplemobiletools.commons.views.MyTextView
android:id="@+id/settings_open_dialpad_at_launch_holder" android:id="@+id/settings_default_tab"
style="@style/SettingsTextValueStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/settings_default_tab_label"
tools:text="@string/last_used_tab" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/settings_open_dialpad_at_launch_holder"
style="@style/SettingsHolderCheckboxStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/ripple_bottom_corners">
<com.simplemobiletools.commons.views.MyAppCompatCheckbox
android:id="@+id/settings_open_dialpad_at_launch"
style="@style/SettingsCheckboxStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/open_dialpad_by_default" />
</RelativeLayout>
</LinearLayout>
<TextView
android:id="@+id/settings_calls_label"
style="@style/SettingsSectionLabelStyle"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginTop="@dimen/medium_margin" android:text="@string/calls" />
android:background="?attr/selectableItemBackground"
android:paddingStart="@dimen/normal_margin"
android:paddingTop="@dimen/activity_margin"
android:paddingEnd="@dimen/normal_margin"
android:paddingBottom="@dimen/activity_margin">
<com.simplemobiletools.commons.views.MySwitchCompat <LinearLayout
android:id="@+id/settings_open_dialpad_at_launch" android:id="@+id/settings_calls_holder"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@null"
android:clickable="false"
android:paddingStart="@dimen/medium_margin"
android:text="@string/open_dialpad_by_default"
app:switchPadding="@dimen/medium_margin" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/settings_group_subsequent_calls_holder"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginTop="@dimen/medium_margin" android:layout_margin="@dimen/medium_margin"
android:background="?attr/selectableItemBackground" android:background="@drawable/section_holder_stroke"
android:paddingStart="@dimen/normal_margin" android:orientation="vertical">
android:paddingTop="@dimen/activity_margin"
android:paddingEnd="@dimen/normal_margin"
android:paddingBottom="@dimen/activity_margin">
<com.simplemobiletools.commons.views.MySwitchCompat <RelativeLayout
android:id="@+id/settings_group_subsequent_calls" android:id="@+id/settings_group_subsequent_calls_holder"
style="@style/SettingsHolderCheckboxStyle"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:background="@null" android:background="@drawable/ripple_top_corners">
android:clickable="false"
android:paddingStart="@dimen/medium_margin"
android:text="@string/group_subsequent_calls"
app:switchPadding="@dimen/medium_margin" />
</RelativeLayout> <com.simplemobiletools.commons.views.MyAppCompatCheckbox
android:id="@+id/settings_group_subsequent_calls"
style="@style/SettingsCheckboxStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/group_subsequent_calls" />
<RelativeLayout </RelativeLayout>
android:id="@+id/settings_start_with_surname_holder"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/medium_margin"
android:background="?attr/selectableItemBackground"
android:paddingStart="@dimen/normal_margin"
android:paddingTop="@dimen/activity_margin"
android:paddingEnd="@dimen/normal_margin"
android:paddingBottom="@dimen/activity_margin">
<com.simplemobiletools.commons.views.MySwitchCompat <RelativeLayout
android:id="@+id/settings_start_with_surname" android:id="@+id/settings_show_call_confirmation_holder"
style="@style/SettingsHolderCheckboxStyle"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:background="@null" android:background="@drawable/ripple_background">
android:clickable="false"
android:paddingStart="@dimen/medium_margin"
android:text="@string/start_name_with_surname"
app:switchPadding="@dimen/medium_margin" />
</RelativeLayout> <com.simplemobiletools.commons.views.MyAppCompatCheckbox
android:id="@+id/settings_show_call_confirmation"
style="@style/SettingsCheckboxStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/show_call_confirmation_dialog" />
<RelativeLayout </RelativeLayout>
android:id="@+id/settings_show_call_confirmation_holder"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/medium_margin"
android:background="?attr/selectableItemBackground"
android:paddingStart="@dimen/normal_margin"
android:paddingTop="@dimen/activity_margin"
android:paddingEnd="@dimen/normal_margin"
android:paddingBottom="@dimen/activity_margin">
<com.simplemobiletools.commons.views.MySwitchCompat <RelativeLayout
android:id="@+id/settings_show_call_confirmation" android:id="@+id/settings_disable_proximity_sensor_holder"
style="@style/SettingsHolderCheckboxStyle"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:background="@null" android:background="@drawable/ripple_bottom_corners">
android:clickable="false"
android:paddingStart="@dimen/medium_margin"
android:text="@string/show_call_confirmation_dialog"
app:switchPadding="@dimen/medium_margin" />
</RelativeLayout> <com.simplemobiletools.commons.views.MyAppCompatCheckbox
android:id="@+id/settings_disable_proximity_sensor"
style="@style/SettingsCheckboxStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/disable_proximity_sensor" />
<RelativeLayout </RelativeLayout>
android:id="@+id/settings_disable_proximity_sensor_holder" </LinearLayout>
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="@dimen/medium_margin"
android:background="?attr/selectableItemBackground"
android:paddingStart="@dimen/normal_margin"
android:paddingTop="@dimen/activity_margin"
android:paddingEnd="@dimen/normal_margin"
android:paddingBottom="@dimen/activity_margin">
<com.simplemobiletools.commons.views.MySwitchCompat
android:id="@+id/settings_disable_proximity_sensor"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@null"
android:clickable="false"
android:paddingStart="@dimen/medium_margin"
android:text="@string/disable_proximity_sensor"
app:switchPadding="@dimen/medium_margin" />
</RelativeLayout>
</LinearLayout> </LinearLayout>
</ScrollView> </ScrollView>

View File

@ -23,13 +23,22 @@
<include layout="@layout/divider" /> <include layout="@layout/divider" />
<com.simplemobiletools.commons.views.MyAppCompatCheckbox <RelativeLayout
android:id="@+id/select_sim_remember" android:id="@+id/select_sim_remember_holder"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginTop="@dimen/small_margin" android:layout_marginTop="@dimen/medium_margin"
android:paddingTop="@dimen/activity_margin" android:background="?attr/selectableItemBackground"
android:paddingBottom="@dimen/activity_margin" android:paddingTop="@dimen/medium_margin"
android:text="@string/always_use_this_sim" /> android:paddingBottom="@dimen/medium_margin">
<com.simplemobiletools.commons.views.MyAppCompatCheckbox
android:id="@+id/select_sim_remember"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@null"
android:clickable="false"
android:text="@string/always_use_this_sim" />
</RelativeLayout>
</LinearLayout> </LinearLayout>

View File

@ -40,6 +40,7 @@
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
android:clipToPadding="false" android:clipToPadding="false"
android:layoutAnimation="@anim/layout_animation"
android:scrollbars="none" android:scrollbars="none"
app:layoutManager="com.simplemobiletools.commons.views.MyLinearLayoutManager" /> app:layoutManager="com.simplemobiletools.commons.views.MyLinearLayoutManager" />

View File

@ -38,6 +38,7 @@
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
android:clipToPadding="false" android:clipToPadding="false"
android:layoutAnimation="@anim/layout_animation"
android:scrollbars="none" android:scrollbars="none"
app:layoutManager="com.simplemobiletools.commons.views.MyLinearLayoutManager" /> app:layoutManager="com.simplemobiletools.commons.views.MyLinearLayoutManager" />

View File

@ -14,10 +14,12 @@
app:showAsAction="collapseActionView|ifRoom" /> app:showAsAction="collapseActionView|ifRoom" />
<item <item
android:id="@+id/settings" android:id="@+id/settings"
android:icon="@drawable/ic_settings_cog_vector"
android:title="@string/settings" android:title="@string/settings"
app:showAsAction="never" /> app:showAsAction="ifRoom" />
<item <item
android:id="@+id/about" android:id="@+id/about"
android:icon="@drawable/ic_info_vector"
android:title="@string/about" android:title="@string/about"
app:showAsAction="never" /> app:showAsAction="ifRoom" />
</menu> </menu>

View File

@ -32,6 +32,7 @@
<string name="select_sim">Vyberte SIM pro tento hovor</string> <string name="select_sim">Vyberte SIM pro tento hovor</string>
<string name="always_use_this_sim">Pro toto číslo vždy použijte tuto SIM kartu</string> <string name="always_use_this_sim">Pro toto číslo vždy použijte tuto SIM kartu</string>
<string name="unset_default_sim">Zrušit nastavení výchozí SIM karty</string> <string name="unset_default_sim">Zrušit nastavení výchozí SIM karty</string>
<string name="calls">Calls</string>
<!-- Speed dial --> <!-- Speed dial -->
<string name="speed_dial">Rychlé vytáčení</string> <string name="speed_dial">Rychlé vytáčení</string>

View File

@ -0,0 +1,81 @@
<resources>
<string name="app_name">Simple Dialer</string>
<string name="app_launcher_name">Opkald</string>
<string name="default_phone_app_prompt">Vælg venligst denne app som standard til opkald</string>
<!-- Contacts -->
<string name="could_not_access_contacts">Kunne ikke få adgang til dine kontakter</string>
<!-- Recents -->
<string name="no_previous_calls">Der blev ikke fundet nogle tidligere opkald</string>
<string name="could_not_access_the_call_history">Kunne ikke få adgang til opkaldshistorikken</string>
<string name="request_access">Anmod om adgang</string>
<string name="remove_confirmation">Er du sikker på du vil fjerne de valgte emner fra opkaldshistorikken?</string>
<string name="clear_history_confirmation">Er du sikker på at du vil fjerne alt i opkaldshistorikken?</string>
<string name="send_sms">Send SMS</string>
<string name="show_grouped_calls">Vis gruppérede opkald</string>
<string name="clear_call_history">Ryd opkaldshistorik</string>
<!-- Dialpad -->
<string name="dialpad">Numerisk tastatur</string>
<!-- Dialer -->
<string name="dialer">Opkald</string>
<string name="accept">Acceptér</string>
<string name="decline">Afvis</string>
<string name="unknown_caller">Ukendt nummer</string>
<string name="is_calling">Ringer...</string>
<string name="dialing">Ringer op...</string>
<string name="call_ended">Opkald afsluttet</string>
<string name="call_ending">Opkald afsluttes</string>
<string name="ongoing_call">Igangværende opkald</string>
<string name="select_sim">Vælg et SIM-kort til dette opkald</string>
<string name="always_use_this_sim">Brug altid dette SIM-kort til dette nummer</string>
<string name="unset_default_sim">Fravælg standard SIM</string>
<string name="calls">Calls</string>
<!-- Speed dial -->
<string name="speed_dial">Hurtigopkald</string>
<string name="manage_speed_dial">Administrér hurtigopkald</string>
<string name="speed_dial_label">Klik på et nummer for at tilknytte en kontakt til det. Derefter kan du hurtigt ringe op til den givne kontkakt ved at trykke længe på det givne nummer via det numeriske tastatur</string>
<!-- Settings -->
<string name="group_subsequent_calls">Gruppér efterfølgende opkald med samme nummer i opkaldsloggen</string>
<string name="open_dialpad_by_default">Åben det numeriske tastatur som standard når appen åbner</string>
<string name="disable_proximity_sensor">Deaktivér nærhedssensor under opkald</string>
<!-- Strings displayed only on Google Playstore. Optional, but good to have -->
<!-- App title has to have less than 50 characters. If you cannot squeeze it, just remove a part of it -->
<string name="app_title">Simple Dialer - Håndtér dine telefonopkald nemt</string>
<!-- Short description has to have less than 80 chars -->
<string name="app_short_description">En praktisk opkaldsapp med telefonbog, nummerblokering og multi-SIM support.</string>
<string name="app_long_description">
En letvægtsapp til at håndtére dine opkald uanset hvor du er. Udstyret med en praktisk opkaldslog, så du nemt kan foretage dine opkald.
Der er et hurtigt numerisk tastatur til din tjeneste, med smarte kontaktforslag. Den indeholder også bogstavssupport.
Du kan nemt blokére telefonnumre og undgå uønskede opkald.
Hurtigopkald support gør det let som en brise at ringe dine favoritkontakter op.
For at hjælpe med at håndtére dine opkald hurtigt kan du udvælge favoritkontakter og oprette genveje til enhver kontakt på startskærmen.
Appen kommer med materielt design og mørkt tema som standard, der giver en god brugeroplevelse og let brugbarhed. Manglen på internetadgang giver dig mere privatliv, sikkerhed og stabilitet end andre apps.
Indeholder ingen reklamer eller unødvendige tilladelser. Den er fuldt open source og giver mulighed for brugerdefinerede farver.
<b>Tjek den fulde pakke af vores Simple Tools her:</b>
https://www.simplemobiletools.com
<b>Facebook:</b>
https://www.facebook.com/simplemobiletools
<b>Reddit:</b>
https://www.reddit.com/r/SimpleMobileTools
</string>
<!--
Kan du ikke finde nogle strenge? Der er mere på
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
-->
</resources>

View File

@ -1,7 +1,7 @@
<resources> <resources>
<string name="app_name">Schlichtes Telefon</string> <string name="app_name">Schlichtes Telefon</string>
<string name="app_launcher_name">Telefon</string> <string name="app_launcher_name">Telefon</string>
<string name="default_phone_app_prompt">Please make this app the default Phone app</string> <string name="default_phone_app_prompt">Bitte machen Sie diese Anwendung zur Standard-Telefonanwendung</string>
<!-- Contacts --> <!-- Contacts -->
<string name="could_not_access_contacts">kein Zugriff auf Kontakte</string> <string name="could_not_access_contacts">kein Zugriff auf Kontakte</string>
@ -32,6 +32,7 @@
<string name="select_sim">wähle die SIM Karte für diesen Anruf aus</string> <string name="select_sim">wähle die SIM Karte für diesen Anruf aus</string>
<string name="always_use_this_sim">benutze immer diese SIM Karte</string> <string name="always_use_this_sim">benutze immer diese SIM Karte</string>
<string name="unset_default_sim">Standard SIM abstellen</string> <string name="unset_default_sim">Standard SIM abstellen</string>
<string name="calls">Calls</string>
<!-- Speed dial --> <!-- Speed dial -->
<string name="speed_dial">Kurzwahl</string> <string name="speed_dial">Kurzwahl</string>
@ -40,8 +41,8 @@
<!-- Settings --> <!-- Settings -->
<string name="group_subsequent_calls">In der Anrufliste aufeinanderfolgende Anrufe mit derselben Nummer gruppieren</string> <string name="group_subsequent_calls">In der Anrufliste aufeinanderfolgende Anrufe mit derselben Nummer gruppieren</string>
<string name="open_dialpad_by_default">Open the dialpad by default when the app opens</string> <string name="open_dialpad_by_default">Öffnen Sie die Wähltastatur als Standard, wenn die App geöffnet wird</string>
<string name="disable_proximity_sensor">Disable proximity sensor during calls</string> <string name="disable_proximity_sensor">Näherungssensor bei Anrufen deaktivieren</string>
<!-- Strings displayed only on Google Playstore. Optional, but good to have --> <!-- Strings displayed only on Google Playstore. Optional, but good to have -->
<!-- App title has to have less than 50 characters. If you cannot squeeze it, just remove a part of it --> <!-- App title has to have less than 50 characters. If you cannot squeeze it, just remove a part of it -->

View File

@ -1,7 +1,7 @@
<resources> <resources>
<string name="app_name">Απλή Κλήση</string> <string name="app_name">Απλή Κλήση</string>
<string name="app_launcher_name">Κλήση</string> <string name="app_launcher_name">Κλήση</string>
<string name="default_phone_app_prompt">Please make this app the default Phone app</string> <string name="default_phone_app_prompt">Παρακαλώ κάντε αυτή την εφαρμογή προεπιλεγμένη εφαρμογή Κλήσης</string>
<!-- Contacts --> <!-- Contacts -->
<string name="could_not_access_contacts">Αδυναμία πρόσβασης στις επαφές σας</string> <string name="could_not_access_contacts">Αδυναμία πρόσβασης στις επαφές σας</string>
@ -11,10 +11,10 @@
<string name="could_not_access_the_call_history">Αδυναμία πρόσβασης στο ιστορικό κλήσεων</string> <string name="could_not_access_the_call_history">Αδυναμία πρόσβασης στο ιστορικό κλήσεων</string>
<string name="request_access">Αίτηση πρόσβασης</string> <string name="request_access">Αίτηση πρόσβασης</string>
<string name="remove_confirmation">Είστε βέβαιοι ότι θέλετε να καταργήσετε τα επιλεγμένα στοιχεία από το ιστορικό κλήσεων;</string> <string name="remove_confirmation">Είστε βέβαιοι ότι θέλετε να καταργήσετε τα επιλεγμένα στοιχεία από το ιστορικό κλήσεων;</string>
<string name="clear_history_confirmation">Are you sure you want to remove everything from the Call History?</string> <string name="clear_history_confirmation">Είστε σίγουροι ότι θέλετε να αφαιρέσετε τα πάντα από το ιστορικό κλήσεων;</string>
<string name="send_sms">Αποστολή SMS</string> <string name="send_sms">Αποστολή SMS</string>
<string name="show_grouped_calls">Show grouped calls</string> <string name="show_grouped_calls">Προβολή ομαδοποιημένων κλήσεων</string>
<string name="clear_call_history">Clear call history</string> <string name="clear_call_history">Διαγραφή ιστορικού κλήσεων</string>
<!-- Dialpad --> <!-- Dialpad -->
<string name="dialpad">Πληκτρολόγιο κλήσης</string> <string name="dialpad">Πληκτρολόγιο κλήσης</string>
@ -31,7 +31,8 @@
<string name="ongoing_call">Τρέχουσα κλήση</string> <string name="ongoing_call">Τρέχουσα κλήση</string>
<string name="select_sim">Επιλέξτε SIM για αυτήν την κλήση</string> <string name="select_sim">Επιλέξτε SIM για αυτήν την κλήση</string>
<string name="always_use_this_sim">Να χρησιμοποιείται πάντα αυτή η SIM για αυτόν τον αριθμό</string> <string name="always_use_this_sim">Να χρησιμοποιείται πάντα αυτή η SIM για αυτόν τον αριθμό</string>
<string name="unset_default_sim">Unset default SIM</string> <string name="unset_default_sim">Χωρίς προεπ/μένη SIM</string>
<string name="calls">Calls</string>
<!-- Speed dial --> <!-- Speed dial -->
<string name="speed_dial">Ταχεία κλήση</string> <string name="speed_dial">Ταχεία κλήση</string>
@ -40,8 +41,8 @@
<!-- Settings --> <!-- Settings -->
<string name="group_subsequent_calls">Ομαδοποίηση των επόμενων κλήσεων του ίδιου αριθμού στο αρχείο καταγραφής κλήσεων</string> <string name="group_subsequent_calls">Ομαδοποίηση των επόμενων κλήσεων του ίδιου αριθμού στο αρχείο καταγραφής κλήσεων</string>
<string name="open_dialpad_by_default">Open the dialpad by default when the app opens</string> <string name="open_dialpad_by_default">Ανοίξτε το πληκτρολόγιο από προεπιλογή όταν ανοίγει η εφαρμογή</string>
<string name="disable_proximity_sensor">Disable proximity sensor during calls</string> <string name="disable_proximity_sensor">Απενεργοποίηση του αισθητήρα εγγύτητας κατά τη διάρκεια κλήσεων</string>
<!-- Strings displayed only on Google Playstore. Optional, but good to have --> <!-- Strings displayed only on Google Playstore. Optional, but good to have -->
<!-- App title has to have less than 50 characters. If you cannot squeeze it, just remove a part of it --> <!-- App title has to have less than 50 characters. If you cannot squeeze it, just remove a part of it -->

View File

@ -1,7 +1,7 @@
<resources> <resources>
<string name="app_name">Marcador Simple</string> <string name="app_name">Marcador Simple</string>
<string name="app_launcher_name">Marcador</string> <string name="app_launcher_name">Marcador</string>
<string name="default_phone_app_prompt">Please make this app the default Phone app</string> <string name="default_phone_app_prompt">Hacer esta app la predeterminada para hacer llamadas en tu dispositivo</string>
<!-- Contacts --> <!-- Contacts -->
<string name="could_not_access_contacts">No se pudo acceder a tus contactos</string> <string name="could_not_access_contacts">No se pudo acceder a tus contactos</string>
@ -32,6 +32,7 @@
<string name="select_sim">Selecciona una tarjeta SIM para esta llamada</string> <string name="select_sim">Selecciona una tarjeta SIM para esta llamada</string>
<string name="always_use_this_sim">Siempre usar esta tarjeta SIM para este número</string> <string name="always_use_this_sim">Siempre usar esta tarjeta SIM para este número</string>
<string name="unset_default_sim">Desarmado predeterminado SIM</string> <string name="unset_default_sim">Desarmado predeterminado SIM</string>
<string name="calls">Calls</string>
<!-- Speed dial --> <!-- Speed dial -->
<string name="speed_dial">Marcado rápido</string> <string name="speed_dial">Marcado rápido</string>
@ -40,8 +41,8 @@
<!-- Settings --> <!-- Settings -->
<string name="group_subsequent_calls">Agrupar llamadas subsecuentes con el mísmo número en el registro de llamadas</string> <string name="group_subsequent_calls">Agrupar llamadas subsecuentes con el mísmo número en el registro de llamadas</string>
<string name="open_dialpad_by_default">Open the dialpad by default when the app opens</string> <string name="open_dialpad_by_default">Abrir el teclado de marcado de forma predeterminada al abrir la aplicación</string>
<string name="disable_proximity_sensor">Disable proximity sensor during calls</string> <string name="disable_proximity_sensor">Deshabilitar el sensor de proximidad durante las llamadas</string>
<!-- Strings displayed only on Google Playstore. Optional, but good to have --> <!-- Strings displayed only on Google Playstore. Optional, but good to have -->
<!-- App title has to have less than 50 characters. If you cannot squeeze it, just remove a part of it --> <!-- App title has to have less than 50 characters. If you cannot squeeze it, just remove a part of it -->

View File

@ -32,6 +32,7 @@
<string name="select_sim">Valitse SIM-kortti puhelulle</string> <string name="select_sim">Valitse SIM-kortti puhelulle</string>
<string name="always_use_this_sim">Käytä tälle numerolle aina tätä SIM-korttia</string> <string name="always_use_this_sim">Käytä tälle numerolle aina tätä SIM-korttia</string>
<string name="unset_default_sim">Poista oletus-SIM</string> <string name="unset_default_sim">Poista oletus-SIM</string>
<string name="calls">Calls</string>
<!-- Speed dial --> <!-- Speed dial -->
<string name="speed_dial">Pikavalinta</string> <string name="speed_dial">Pikavalinta</string>
@ -41,7 +42,7 @@
<!-- Settings --> <!-- Settings -->
<string name="group_subsequent_calls">Ryhmitä saman numeron peräkkäiset puhelut puheluhistoriassa</string> <string name="group_subsequent_calls">Ryhmitä saman numeron peräkkäiset puhelut puheluhistoriassa</string>
<string name="open_dialpad_by_default">Avaa numeronäppäimistö, kun sovellus avataan</string> <string name="open_dialpad_by_default">Avaa numeronäppäimistö, kun sovellus avataan</string>
<string name="disable_proximity_sensor">Disable proximity sensor during calls</string> <string name="disable_proximity_sensor">Poista läheisyysanturi käytöstä puheluiden aikana</string>
<!-- Strings displayed only on Google Playstore. Optional, but good to have --> <!-- Strings displayed only on Google Playstore. Optional, but good to have -->
<!-- App title has to have less than 50 characters. If you cannot squeeze it, just remove a part of it --> <!-- App title has to have less than 50 characters. If you cannot squeeze it, just remove a part of it -->

View File

@ -1,7 +1,7 @@
<resources> <resources>
<string name="app_name">Simple Dialer</string> <string name="app_name">Simple Dialer</string>
<string name="app_launcher_name">Téléphone</string> <string name="app_launcher_name">Téléphone</string>
<string name="default_phone_app_prompt">Please make this app the default Phone app</string> <string name="default_phone_app_prompt">Veuillez faire de cette application votre application de téléphone par défaut</string>
<!-- Contacts --> <!-- Contacts -->
<string name="could_not_access_contacts">Impossible d\'accéder à vos contacts</string> <string name="could_not_access_contacts">Impossible d\'accéder à vos contacts</string>
@ -32,6 +32,7 @@
<string name="select_sim">Sélectionnez une carte SIM pour cet appel</string> <string name="select_sim">Sélectionnez une carte SIM pour cet appel</string>
<string name="always_use_this_sim">Toujours utiliser cette carte SIM pour ce numéro</string> <string name="always_use_this_sim">Toujours utiliser cette carte SIM pour ce numéro</string>
<string name="unset_default_sim">Désassocier la SIM par défaut</string> <string name="unset_default_sim">Désassocier la SIM par défaut</string>
<string name="calls">Calls</string>
<!-- Speed dial --> <!-- Speed dial -->
<string name="speed_dial">Numérotation rapide</string> <string name="speed_dial">Numérotation rapide</string>
@ -40,8 +41,8 @@
<!-- Settings --> <!-- Settings -->
<string name="group_subsequent_calls">Regrouper les appels suivants avec le même numéro dans le journal des appels</string> <string name="group_subsequent_calls">Regrouper les appels suivants avec le même numéro dans le journal des appels</string>
<string name="open_dialpad_by_default">Open the dialpad by default when the app opens</string> <string name="open_dialpad_by_default">Ouvrir le pavé numérique par défaut à l\'ouverture de l\'application</string>
<string name="disable_proximity_sensor">Disable proximity sensor during calls</string> <string name="disable_proximity_sensor">Désactiver le capteur de proximité pendant les appels</string>
<!-- Strings displayed only on Google Playstore. Optional, but good to have --> <!-- Strings displayed only on Google Playstore. Optional, but good to have -->
<!-- App title has to have less than 50 characters. If you cannot squeeze it, just remove a part of it --> <!-- App title has to have less than 50 characters. If you cannot squeeze it, just remove a part of it -->

View File

@ -32,6 +32,7 @@
<string name="select_sim">Seleciona unha SIM para esta chamada</string> <string name="select_sim">Seleciona unha SIM para esta chamada</string>
<string name="always_use_this_sim">Utilizar sempre esta SIM para chamar a este número</string> <string name="always_use_this_sim">Utilizar sempre esta SIM para chamar a este número</string>
<string name="unset_default_sim">Unset default SIM</string> <string name="unset_default_sim">Unset default SIM</string>
<string name="calls">Calls</string>
<!-- Speed dial --> <!-- Speed dial -->
<string name="speed_dial">Marcación rápida</string> <string name="speed_dial">Marcación rápida</string>

View File

@ -32,6 +32,7 @@
<string name="select_sim">Pilih SIM untuk panggilan ini</string> <string name="select_sim">Pilih SIM untuk panggilan ini</string>
<string name="always_use_this_sim">Gunakan selalu SIM ini untuk nomor ini</string> <string name="always_use_this_sim">Gunakan selalu SIM ini untuk nomor ini</string>
<string name="unset_default_sim">Unset default SIM</string> <string name="unset_default_sim">Unset default SIM</string>
<string name="calls">Calls</string>
<!-- Speed dial --> <!-- Speed dial -->
<string name="speed_dial">Panggilan cepat</string> <string name="speed_dial">Panggilan cepat</string>

View File

@ -32,6 +32,7 @@
<string name="select_sim">Seleziona una SIM per questa chiamata</string> <string name="select_sim">Seleziona una SIM per questa chiamata</string>
<string name="always_use_this_sim">Usa sempre questa SIM per questo numero</string> <string name="always_use_this_sim">Usa sempre questa SIM per questo numero</string>
<string name="unset_default_sim">Non utilizzare più questa SIM come predefinita</string> <string name="unset_default_sim">Non utilizzare più questa SIM come predefinita</string>
<string name="calls">Calls</string>
<!-- Speed dial --> <!-- Speed dial -->
<string name="speed_dial">Contatti veloci</string> <string name="speed_dial">Contatti veloci</string>

View File

@ -32,6 +32,7 @@
<string name="select_sim">SIMを選択</string> <string name="select_sim">SIMを選択</string>
<string name="always_use_this_sim">この番号ではこのSIMを常に使用</string> <string name="always_use_this_sim">この番号ではこのSIMを常に使用</string>
<string name="unset_default_sim">Unset default SIM</string> <string name="unset_default_sim">Unset default SIM</string>
<string name="calls">Calls</string>
<!-- Speed dial --> <!-- Speed dial -->
<string name="speed_dial">スピードダイヤル</string> <string name="speed_dial">スピードダイヤル</string>

View File

@ -32,6 +32,7 @@
<string name="select_sim">ഈ കോളിനായി ഒരു സിം തിരഞ്ഞെടുക്കുക</string> <string name="select_sim">ഈ കോളിനായി ഒരു സിം തിരഞ്ഞെടുക്കുക</string>
<string name="always_use_this_sim">ഈ നമ്പറിനായി എല്ലായ്പ്പോഴും ഈ സിം ഉപയോഗിക്കുക</string> <string name="always_use_this_sim">ഈ നമ്പറിനായി എല്ലായ്പ്പോഴും ഈ സിം ഉപയോഗിക്കുക</string>
<string name="unset_default_sim">Unset default SIM</string> <string name="unset_default_sim">Unset default SIM</string>
<string name="calls">Calls</string>
<!-- Speed dial --> <!-- Speed dial -->
<string name="speed_dial">സ്പീഡ് ഡയൽ</string> <string name="speed_dial">സ്പീഡ് ഡയൽ</string>

View File

@ -32,6 +32,7 @@
<string name="select_sim">Selecteer de SIM-kaart voor dit gesprek</string> <string name="select_sim">Selecteer de SIM-kaart voor dit gesprek</string>
<string name="always_use_this_sim">Voor dit nummer altijd deze SIM-kaart gebruiken</string> <string name="always_use_this_sim">Voor dit nummer altijd deze SIM-kaart gebruiken</string>
<string name="unset_default_sim">Standaard-SIM wissen</string> <string name="unset_default_sim">Standaard-SIM wissen</string>
<string name="calls">Calls</string>
<!-- Speed dial --> <!-- Speed dial -->
<string name="speed_dial">Snelkiezer</string> <string name="speed_dial">Snelkiezer</string>

View File

@ -1,24 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<resources> <resources>
<string name="app_name">Prosty telefon</string> <string name="app_name">Prosty telefon</string>
<string name="app_launcher_name">Telefon</string> <string name="app_launcher_name">Telefon</string>
<string name="default_phone_app_prompt">Ustaw tę aplikację jako domyślną aplikację telefonu</string> <string name="default_phone_app_prompt">Ustaw tę aplikację jako domyślną aplikację telefonu</string>
<!-- Contacts --> <!-- Contacts -->
<string name="could_not_access_contacts">Nie można uzyskać dostępu do Twoich kontaktów</string> <string name="could_not_access_contacts">Nie udało się uzyskać dostępu do Twoich kontaktów</string>
<!-- Recents --> <!-- Recents -->
<string name="no_previous_calls">Nie znaleziono wcześniejszych połączeń</string> <string name="no_previous_calls">Nie znaleziono wcześniejszych połączeń</string>
<string name="could_not_access_the_call_history">Nie można uzyskać dostępu do historii połączeń</string> <string name="could_not_access_the_call_history">Nie udało się uzyskać dostępu do historii połączeń</string>
<string name="request_access">Poproś o dostęp</string> <string name="request_access">Poproś o dostęp</string>
<string name="remove_confirmation">Czy na pewno chcesz usunąć wybrane elementy z historii połączeń?</string> <string name="remove_confirmation">Czy usunąć wybrane elementy z historii połączeń\?</string>
<string name="clear_history_confirmation">Czy na pewno chcesz usunąć całą historię połączeń?</string> <string name="clear_history_confirmation">Czy usunąć całą historię połączeń\?</string>
<string name="send_sms">Wyślij SMS-a</string> <string name="send_sms">Wyślij SMS-a</string>
<string name="show_grouped_calls">Pokaż zgrupowane połączenia</string> <string name="show_grouped_calls">Pokaż zgrupowane połączenia</string>
<string name="clear_call_history">Wyczyść historię połączeń</string> <string name="clear_call_history">Wyczyść historię połączeń</string>
<!-- Dialpad --> <!-- Dialpad -->
<string name="dialpad">Panel wybierania</string> <string name="dialpad">Panel wybierania</string>
<!-- Dialer --> <!-- Dialer -->
<string name="dialer">Telefon</string> <string name="dialer">Telefon</string>
<string name="accept">Odbierz</string> <string name="accept">Odbierz</string>
@ -32,17 +29,15 @@
<string name="select_sim">Wybierz kartę SIM dla tego połączenia</string> <string name="select_sim">Wybierz kartę SIM dla tego połączenia</string>
<string name="always_use_this_sim">Zawsze używaj tej karty SIM dla tego numeru</string> <string name="always_use_this_sim">Zawsze używaj tej karty SIM dla tego numeru</string>
<string name="unset_default_sim">Anuluj ustawienie domyślnej karty SIM</string> <string name="unset_default_sim">Anuluj ustawienie domyślnej karty SIM</string>
<string name="calls">Połączenia</string>
<!-- Speed dial --> <!-- Speed dial -->
<string name="speed_dial">Szybkie wybieranie</string> <string name="speed_dial">Szybkie wybieranie</string>
<string name="manage_speed_dial">Zarządzaj szybkim wybieraniem</string> <string name="manage_speed_dial">Zarządzaj szybkim wybieraniem</string>
<string name="speed_dial_label">Naciśnij cyfrę, aby przypisać do niej kontakt. Możesz wtedy szybko zadzwonić do danego kontaktu przez długie naciśnięcie odpowiedniej cyfry na panelu wybierania.</string> <string name="speed_dial_label">Naciśnij cyfrę, aby przypisać do niej kontakt. Możesz wtedy szybko zadzwonić do danego kontaktu przez długie naciśnięcie odpowiedniej cyfry na panelu wybierania.</string>
<!-- Settings --> <!-- Settings -->
<string name="group_subsequent_calls">Grupuj kolejne połączenia z tym samym numerem w rejestrze połączeń</string> <string name="group_subsequent_calls">Grupuj kolejne połączenia z tym samym numerem w rejestrze połączeń</string>
<string name="open_dialpad_by_default">Otwieraj domyślnie panel wybierania przy uruchomieniu aplikacji</string> <string name="open_dialpad_by_default">Otwieraj panel wybierania numeru domyślnie przy uruchomieniu aplikacji</string>
<string name="disable_proximity_sensor">Wyłączaj czujnik zbliżeniowy podczas połączeń</string> <string name="disable_proximity_sensor">Wyłączaj czujnik zbliżeniowy podczas połączeń</string>
<!-- Strings displayed only on Google Playstore. Optional, but good to have --> <!-- Strings displayed only on Google Playstore. Optional, but good to have -->
<!-- App title has to have less than 50 characters. If you cannot squeeze it, just remove a part of it --> <!-- App title has to have less than 50 characters. If you cannot squeeze it, just remove a part of it -->
<string name="app_title">Prosty telefon - Łatwe połączenia telefoniczne</string> <string name="app_title">Prosty telefon - Łatwe połączenia telefoniczne</string>
@ -72,9 +67,8 @@
<b>Reddit:</b> <b>Reddit:</b>
https://www.reddit.com/r/SimpleMobileTools https://www.reddit.com/r/SimpleMobileTools
</string> </string>
<!-- <!--
Haven't found some strings? There's more at Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
--> -->
</resources> </resources>

View File

@ -1,7 +1,7 @@
<resources> <resources>
<string name="app_name">Simple Dialer</string> <string name="app_name">Simple Dialer</string>
<string name="app_launcher_name">Marcador</string> <string name="app_launcher_name">Marcador</string>
<string name="default_phone_app_prompt">Please make this app the default Phone app</string> <string name="default_phone_app_prompt">Tem que tornar esta a aplicação padrão para a poder utilizar</string>
<!-- Contacts --> <!-- Contacts -->
<string name="could_not_access_contacts">Não foi possível aceder aos contactos</string> <string name="could_not_access_contacts">Não foi possível aceder aos contactos</string>
@ -11,7 +11,7 @@
<string name="could_not_access_the_call_history">Não foi possível aceder ao histórico de chamadas</string> <string name="could_not_access_the_call_history">Não foi possível aceder ao histórico de chamadas</string>
<string name="request_access">Pedir acesso</string> <string name="request_access">Pedir acesso</string>
<string name="remove_confirmation">Tem a certeza de que deseja remover do histórico os itens selecionados?</string> <string name="remove_confirmation">Tem a certeza de que deseja remover do histórico os itens selecionados?</string>
<string name="clear_history_confirmation">Are you sure you want to remove everything from the Call History?</string> <string name="clear_history_confirmation">Tem a certeza de que deseja remover todo o histórico de chamadas?</string>
<string name="send_sms">Enviar SMS</string> <string name="send_sms">Enviar SMS</string>
<string name="show_grouped_calls">Mostrar chamadas em grupo</string> <string name="show_grouped_calls">Mostrar chamadas em grupo</string>
<string name="clear_call_history">Limpar registo de chamadas</string> <string name="clear_call_history">Limpar registo de chamadas</string>
@ -32,6 +32,7 @@
<string name="select_sim">Selecione um SIM para esta chamada</string> <string name="select_sim">Selecione um SIM para esta chamada</string>
<string name="always_use_this_sim">Utilizar sempre este SIM para ligar a este número</string> <string name="always_use_this_sim">Utilizar sempre este SIM para ligar a este número</string>
<string name="unset_default_sim">Deixar de utilizar como SIM padrão</string> <string name="unset_default_sim">Deixar de utilizar como SIM padrão</string>
<string name="calls">Calls</string>
<!-- Speed dial --> <!-- Speed dial -->
<string name="speed_dial">Ligação rápida</string> <string name="speed_dial">Ligação rápida</string>
@ -40,8 +41,8 @@
<!-- Settings --> <!-- Settings -->
<string name="group_subsequent_calls">Agrupar, no registo, as chamadas para o mesmo contacto</string> <string name="group_subsequent_calls">Agrupar, no registo, as chamadas para o mesmo contacto</string>
<string name="open_dialpad_by_default">Open the dialpad by default when the app opens</string> <string name="open_dialpad_by_default">Mostrar teclado de marcação ao abrir a aplicação</string>
<string name="disable_proximity_sensor">Disable proximity sensor during calls</string> <string name="disable_proximity_sensor">Desativar sensor de proximidade durante as chamadas</string>
<!-- Strings displayed only on Google Playstore. Optional, but good to have --> <!-- Strings displayed only on Google Playstore. Optional, but good to have -->
<!-- App title has to have less than 50 characters. If you cannot squeeze it, just remove a part of it --> <!-- App title has to have less than 50 characters. If you cannot squeeze it, just remove a part of it -->

View File

@ -32,6 +32,7 @@
<string name="select_sim">Выберите SIM для этого вызова</string> <string name="select_sim">Выберите SIM для этого вызова</string>
<string name="always_use_this_sim">Всегда использовать эту SIM для данного номера</string> <string name="always_use_this_sim">Всегда использовать эту SIM для данного номера</string>
<string name="unset_default_sim">Снять выбор SIM по умолчанию</string> <string name="unset_default_sim">Снять выбор SIM по умолчанию</string>
<string name="calls">Calls</string>
<!-- Speed dial --> <!-- Speed dial -->
<string name="speed_dial">Быстрый вызов</string> <string name="speed_dial">Быстрый вызов</string>
@ -41,7 +42,7 @@
<!-- Settings --> <!-- Settings -->
<string name="group_subsequent_calls">Группировать последующие вызовы с тем же номером в журнале вызовов</string> <string name="group_subsequent_calls">Группировать последующие вызовы с тем же номером в журнале вызовов</string>
<string name="open_dialpad_by_default">По умолчанию открывать номеронабиратель при запуске приложения</string> <string name="open_dialpad_by_default">По умолчанию открывать номеронабиратель при запуске приложения</string>
<string name="disable_proximity_sensor">Disable proximity sensor during calls</string> <string name="disable_proximity_sensor">Отключать датчик приближения во время вызовов</string>
<!-- Strings displayed only on Google Playstore. Optional, but good to have --> <!-- Strings displayed only on Google Playstore. Optional, but good to have -->
<!-- App title has to have less than 50 characters. If you cannot squeeze it, just remove a part of it --> <!-- App title has to have less than 50 characters. If you cannot squeeze it, just remove a part of it -->

View File

@ -32,6 +32,7 @@
<string name="select_sim">Zvoľte SIM kartu pre tento hovor</string> <string name="select_sim">Zvoľte SIM kartu pre tento hovor</string>
<string name="always_use_this_sim">Vždy použiť túto SIM kartu pre toto číslo</string> <string name="always_use_this_sim">Vždy použiť túto SIM kartu pre toto číslo</string>
<string name="unset_default_sim">Odstrániť predvolenú SIM</string> <string name="unset_default_sim">Odstrániť predvolenú SIM</string>
<string name="calls">Hovory</string>
<!-- Speed dial --> <!-- Speed dial -->
<string name="speed_dial">Rýchle vytáčanie</string> <string name="speed_dial">Rýchle vytáčanie</string>

View File

@ -32,6 +32,7 @@
<string name="select_sim">Välj ett SIM-kort för samtalet</string> <string name="select_sim">Välj ett SIM-kort för samtalet</string>
<string name="always_use_this_sim">Använd alltid det här SIM-kortet för detta nummer</string> <string name="always_use_this_sim">Använd alltid det här SIM-kortet för detta nummer</string>
<string name="unset_default_sim">Ta bort standard-SIM-kort</string> <string name="unset_default_sim">Ta bort standard-SIM-kort</string>
<string name="calls">Calls</string>
<!-- Speed dial --> <!-- Speed dial -->
<string name="speed_dial">Snabbuppringning</string> <string name="speed_dial">Snabbuppringning</string>

View File

@ -1,7 +1,7 @@
<resources> <resources>
<string name="app_name">Basit Çevirici</string> <string name="app_name">Basit Çevirici</string>
<string name="app_launcher_name">Çevirici</string> <string name="app_launcher_name">Çevirici</string>
<string name="default_phone_app_prompt">Please make this app the default Phone app</string> <string name="default_phone_app_prompt">Lütfen bu uygulamayı varsayılan Telefon uygulaması yapın</string>
<!-- Contacts --> <!-- Contacts -->
<string name="could_not_access_contacts">Kişilerinize erişilemedi</string> <string name="could_not_access_contacts">Kişilerinize erişilemedi</string>
@ -10,11 +10,11 @@
<string name="no_previous_calls">Önceki arama bulunamadı</string> <string name="no_previous_calls">Önceki arama bulunamadı</string>
<string name="could_not_access_the_call_history">Arama geçmişine erişilemedi</string> <string name="could_not_access_the_call_history">Arama geçmişine erişilemedi</string>
<string name="request_access">Erişim isteği</string> <string name="request_access">Erişim isteği</string>
<string name="remove_confirmation">Seçilen öğeleri Arama Geçmişinden kaldırmak istediğinizden emin misiniz?</string> <string name="remove_confirmation">Seçilen ögeleri Arama Geçmişinden kaldırmak istediğinizden emin misiniz?</string>
<string name="clear_history_confirmation">Are you sure you want to remove everything from the Call History?</string> <string name="clear_history_confirmation">Arama Geçmişindeki her şeyi kaldırmak istediğinizden emin misiniz?</string>
<string name="send_sms">SMS gönder</string> <string name="send_sms">SMS gönder</string>
<string name="show_grouped_calls">Show grouped calls</string> <string name="show_grouped_calls">Gruplandırılmış aramaları göster</string>
<string name="clear_call_history">Clear call history</string> <string name="clear_call_history">Arama geçmişini temizle</string>
<!-- Dialpad --> <!-- Dialpad -->
<string name="dialpad">Tuş takımı</string> <string name="dialpad">Tuş takımı</string>
@ -31,7 +31,8 @@
<string name="ongoing_call">Devam Eden Arama</string> <string name="ongoing_call">Devam Eden Arama</string>
<string name="select_sim">Bu arama için bir SIM seçin</string> <string name="select_sim">Bu arama için bir SIM seçin</string>
<string name="always_use_this_sim">Bu numara için her zaman bu SIM\'i kullan</string> <string name="always_use_this_sim">Bu numara için her zaman bu SIM\'i kullan</string>
<string name="unset_default_sim">Unset default SIM</string> <string name="unset_default_sim">Varsayılan SIM ayarını kaldır</string>
<string name="calls">Calls</string>
<!-- Speed dial --> <!-- Speed dial -->
<string name="speed_dial">Hızlı arama</string> <string name="speed_dial">Hızlı arama</string>
@ -40,8 +41,8 @@
<!-- Settings --> <!-- Settings -->
<string name="group_subsequent_calls">Arama kaydında aynı numaraya sahip sonraki aramaları gruplandır</string> <string name="group_subsequent_calls">Arama kaydında aynı numaraya sahip sonraki aramaları gruplandır</string>
<string name="open_dialpad_by_default">Open the dialpad by default when the app opens</string> <string name="open_dialpad_by_default">Uygulama açıldığında varsayılan olarak tuş takımını</string>
<string name="disable_proximity_sensor">Disable proximity sensor during calls</string> <string name="disable_proximity_sensor">Aramalar sırasında yakınlık sensörünü devre dışı bırak</string>
<!-- Strings displayed only on Google Playstore. Optional, but good to have --> <!-- Strings displayed only on Google Playstore. Optional, but good to have -->
<!-- App title has to have less than 50 characters. If you cannot squeeze it, just remove a part of it --> <!-- App title has to have less than 50 characters. If you cannot squeeze it, just remove a part of it -->
@ -63,7 +64,7 @@
Hiçbir reklam veya gereksiz izin içermiyor. Tamamen açık kaynaklıdır, özelleştirilebilir renkler sağlar. Hiçbir reklam veya gereksiz izin içermiyor. Tamamen açık kaynaklıdır, özelleştirilebilir renkler sağlar.
<b>Basit Araçlar paketinin tamamını burada görebilirsiniz:</b> <b>Basit Araçlar paketinin tamamını buradan inceleyin:</b>
https://www.simplemobiletools.com https://www.simplemobiletools.com
<b>Facebook:</b> <b>Facebook:</b>

View File

@ -32,6 +32,7 @@
<string name="select_sim">Select a SIM for this call</string> <string name="select_sim">Select a SIM for this call</string>
<string name="always_use_this_sim">Always use this SIM for this number</string> <string name="always_use_this_sim">Always use this SIM for this number</string>
<string name="unset_default_sim">Unset default SIM</string> <string name="unset_default_sim">Unset default SIM</string>
<string name="calls">Calls</string>
<!-- Speed dial --> <!-- Speed dial -->
<string name="speed_dial">Швидкий виклик</string> <string name="speed_dial">Швидкий виклик</string>

View File

@ -32,6 +32,7 @@
<string name="select_sim">为此通话选择一个 SIM 卡</string> <string name="select_sim">为此通话选择一个 SIM 卡</string>
<string name="always_use_this_sim">为此号码一直使用该 SIM 卡</string> <string name="always_use_this_sim">为此号码一直使用该 SIM 卡</string>
<string name="unset_default_sim">Unset default SIM</string> <string name="unset_default_sim">Unset default SIM</string>
<string name="calls">Calls</string>
<!-- Speed dial --> <!-- Speed dial -->
<string name="speed_dial">快速拨号</string> <string name="speed_dial">快速拨号</string>

View File

@ -32,6 +32,7 @@
<string name="select_sim">Select a SIM for this call</string> <string name="select_sim">Select a SIM for this call</string>
<string name="always_use_this_sim">Always use this SIM for this number</string> <string name="always_use_this_sim">Always use this SIM for this number</string>
<string name="unset_default_sim">Unset default SIM</string> <string name="unset_default_sim">Unset default SIM</string>
<string name="calls">Calls</string>
<!-- Speed dial --> <!-- Speed dial -->
<string name="speed_dial">Speed dial</string> <string name="speed_dial">Speed dial</string>

View File

@ -7,7 +7,7 @@ buildscript {
jcenter() jcenter()
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:7.0.2' classpath 'com.android.tools.build:gradle:7.0.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong // NOTE: Do not place your application dependencies here; they belong