mirror of
https://github.com/SimpleMobileTools/Simple-Dialer.git
synced 2025-06-05 21:49:23 +02:00
Add the ability to switch call audio route
This commit is contained in:
@ -21,14 +21,17 @@ import android.view.animation.AccelerateDecelerateInterpolator
|
|||||||
import android.view.animation.OvershootInterpolator
|
import android.view.animation.OvershootInterpolator
|
||||||
import android.widget.ImageView
|
import android.widget.ImageView
|
||||||
import androidx.core.view.children
|
import androidx.core.view.children
|
||||||
|
import com.simplemobiletools.commons.dialogs.SimpleBottomSheetChooserDialog
|
||||||
import com.simplemobiletools.commons.extensions.*
|
import com.simplemobiletools.commons.extensions.*
|
||||||
import com.simplemobiletools.commons.helpers.LOWER_ALPHA
|
import com.simplemobiletools.commons.helpers.LOWER_ALPHA
|
||||||
import com.simplemobiletools.commons.helpers.MINUTE_SECONDS
|
import com.simplemobiletools.commons.helpers.MINUTE_SECONDS
|
||||||
import com.simplemobiletools.commons.helpers.isOreoMr1Plus
|
import com.simplemobiletools.commons.helpers.isOreoMr1Plus
|
||||||
import com.simplemobiletools.commons.helpers.isOreoPlus
|
import com.simplemobiletools.commons.helpers.isOreoPlus
|
||||||
|
import com.simplemobiletools.commons.models.SimpleListItem
|
||||||
import com.simplemobiletools.dialer.R
|
import com.simplemobiletools.dialer.R
|
||||||
import com.simplemobiletools.dialer.extensions.*
|
import com.simplemobiletools.dialer.extensions.*
|
||||||
import com.simplemobiletools.dialer.helpers.*
|
import com.simplemobiletools.dialer.helpers.*
|
||||||
|
import com.simplemobiletools.dialer.models.AudioRoute
|
||||||
import com.simplemobiletools.dialer.models.CallContact
|
import com.simplemobiletools.dialer.models.CallContact
|
||||||
import kotlinx.android.synthetic.main.activity_call.*
|
import kotlinx.android.synthetic.main.activity_call.*
|
||||||
import kotlinx.android.synthetic.main.dialpad.*
|
import kotlinx.android.synthetic.main.dialpad.*
|
||||||
@ -58,6 +61,8 @@ class CallActivity : SimpleActivity() {
|
|||||||
private var viewsUnderDialpad = arrayListOf<Pair<View, Float>>()
|
private var viewsUnderDialpad = arrayListOf<Pair<View, Float>>()
|
||||||
private var dialpadHeight = 0f
|
private var dialpadHeight = 0f
|
||||||
|
|
||||||
|
private var audioRouteChooserDialog: SimpleBottomSheetChooserDialog? = null
|
||||||
|
|
||||||
override fun onCreate(savedInstanceState: Bundle?) {
|
override fun onCreate(savedInstanceState: Bundle?) {
|
||||||
super.onCreate(savedInstanceState)
|
super.onCreate(savedInstanceState)
|
||||||
setContentView(R.layout.activity_call)
|
setContentView(R.layout.activity_call)
|
||||||
@ -133,7 +138,7 @@ class CallActivity : SimpleActivity() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
call_toggle_speaker.setOnClickListener {
|
call_toggle_speaker.setOnClickListener {
|
||||||
toggleSpeaker()
|
changeCallAudioRoute()
|
||||||
}
|
}
|
||||||
|
|
||||||
call_dialpad.setOnClickListener {
|
call_dialpad.setOnClickListener {
|
||||||
@ -382,20 +387,63 @@ class CallActivity : SimpleActivity() {
|
|||||||
dialpad_input.addCharacter(char)
|
dialpad_input.addCharacter(char)
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun toggleSpeaker() {
|
private fun changeCallAudioRoute() {
|
||||||
isSpeakerOn = !isSpeakerOn
|
val supportAudioRoutes = CallManager.getSupportedAudioRoutes()
|
||||||
toggleButtonColor(call_toggle_speaker, isSpeakerOn)
|
if (supportAudioRoutes.contains(AudioRoute.BLUETOOTH)) {
|
||||||
|
createOrUpdateAudioRouteChooser(supportAudioRoutes)
|
||||||
audioManager.isSpeakerphoneOn = isSpeakerOn
|
|
||||||
|
|
||||||
val newRoute = if (isSpeakerOn) CallAudioState.ROUTE_SPEAKER else CallAudioState.ROUTE_EARPIECE
|
|
||||||
CallManager.inCallService?.setAudioRoute(newRoute)
|
|
||||||
call_toggle_speaker.contentDescription = getString(if (isSpeakerOn) R.string.turn_speaker_off else R.string.turn_speaker_on)
|
|
||||||
|
|
||||||
if (isSpeakerOn) {
|
|
||||||
disableProximitySensor()
|
|
||||||
} else {
|
} else {
|
||||||
enableProximitySensor()
|
val isSpeakerOn = !isSpeakerOn
|
||||||
|
val newRoute = if (isSpeakerOn) CallAudioState.ROUTE_SPEAKER else CallAudioState.ROUTE_WIRED_OR_EARPIECE
|
||||||
|
CallManager.setAudioRoute(newRoute)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun createOrUpdateAudioRouteChooser(routes: Array<AudioRoute>, create: Boolean = true) {
|
||||||
|
val items = routes
|
||||||
|
.sortedByDescending { it.route }
|
||||||
|
.map { SimpleListItem(it.route, it.iconRes, it.stringRes) }
|
||||||
|
.toTypedArray()
|
||||||
|
|
||||||
|
if (audioRouteChooserDialog?.isVisible == true) {
|
||||||
|
audioRouteChooserDialog?.updateChooserItems(items)
|
||||||
|
} else if (create) {
|
||||||
|
audioRouteChooserDialog = SimpleBottomSheetChooserDialog.createChooser(
|
||||||
|
fragmentManager = supportFragmentManager,
|
||||||
|
title = R.string.choose_audio_route,
|
||||||
|
subtitle = null,
|
||||||
|
data = items
|
||||||
|
) {
|
||||||
|
audioRouteChooserDialog = null
|
||||||
|
CallManager.setAudioRoute(it.id)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun updateCallAudioState(route: AudioRoute?) {
|
||||||
|
if (route != null) {
|
||||||
|
isSpeakerOn = route == AudioRoute.SPEAKER
|
||||||
|
val supportedAudioRoutes = CallManager.getSupportedAudioRoutes()
|
||||||
|
call_toggle_speaker.apply {
|
||||||
|
val bluetoothConnected = supportedAudioRoutes.contains(AudioRoute.BLUETOOTH)
|
||||||
|
contentDescription = if (bluetoothConnected) {
|
||||||
|
getString(R.string.choose_audio_route)
|
||||||
|
} else {
|
||||||
|
getString(if (isSpeakerOn) R.string.turn_speaker_off else R.string.turn_speaker_on)
|
||||||
|
}
|
||||||
|
if (route == AudioRoute.WIRED_HEADSET) {
|
||||||
|
setImageResource(R.drawable.ic_volume_down_vector)
|
||||||
|
} else {
|
||||||
|
setImageResource(route.iconRes)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
toggleButtonColor(call_toggle_speaker, enabled = route != AudioRoute.EARPIECE && route != AudioRoute.WIRED_HEADSET)
|
||||||
|
createOrUpdateAudioRouteChooser(supportedAudioRoutes, create = false)
|
||||||
|
|
||||||
|
if (isSpeakerOn) {
|
||||||
|
disableProximitySensor()
|
||||||
|
} else {
|
||||||
|
enableProximitySensor()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -560,6 +608,8 @@ class CallActivity : SimpleActivity() {
|
|||||||
updateCallState(phoneState.active)
|
updateCallState(phoneState.active)
|
||||||
updateCallOnHoldState(phoneState.onHold)
|
updateCallOnHoldState(phoneState.onHold)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
updateCallAudioState(CallManager.getCallAudioRoute())
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun updateCallOnHoldState(call: Call?) {
|
private fun updateCallOnHoldState(call: Call?) {
|
||||||
@ -623,6 +673,7 @@ class CallActivity : SimpleActivity() {
|
|||||||
private fun endCall() {
|
private fun endCall() {
|
||||||
CallManager.reject()
|
CallManager.reject()
|
||||||
disableProximitySensor()
|
disableProximitySensor()
|
||||||
|
audioRouteChooserDialog?.dismissAllowingStateLoss()
|
||||||
|
|
||||||
if (isCallEnded) {
|
if (isCallEnded) {
|
||||||
finishAndRemoveTask()
|
finishAndRemoveTask()
|
||||||
@ -653,6 +704,10 @@ class CallActivity : SimpleActivity() {
|
|||||||
updateState()
|
updateState()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
override fun onAudioStateChanged(audioState: AudioRoute) {
|
||||||
|
updateCallAudioState(audioState)
|
||||||
|
}
|
||||||
|
|
||||||
override fun onPrimaryCallChanged(call: Call) {
|
override fun onPrimaryCallChanged(call: Call) {
|
||||||
callDurationHandler.removeCallbacks(updateCallDurationTask)
|
callDurationHandler.removeCallbacks(updateCallDurationTask)
|
||||||
updateCallContactInfo(call)
|
updateCallContactInfo(call)
|
||||||
|
@ -4,12 +4,14 @@ import android.annotation.SuppressLint
|
|||||||
import android.content.Context
|
import android.content.Context
|
||||||
import android.os.Handler
|
import android.os.Handler
|
||||||
import android.telecom.Call
|
import android.telecom.Call
|
||||||
|
import android.telecom.CallAudioState
|
||||||
import android.telecom.InCallService
|
import android.telecom.InCallService
|
||||||
import android.telecom.VideoProfile
|
import android.telecom.VideoProfile
|
||||||
import com.simplemobiletools.dialer.extensions.config
|
import com.simplemobiletools.dialer.extensions.config
|
||||||
import com.simplemobiletools.dialer.extensions.getStateCompat
|
import com.simplemobiletools.dialer.extensions.getStateCompat
|
||||||
import com.simplemobiletools.dialer.extensions.hasCapability
|
import com.simplemobiletools.dialer.extensions.hasCapability
|
||||||
import com.simplemobiletools.dialer.extensions.isConference
|
import com.simplemobiletools.dialer.extensions.isConference
|
||||||
|
import com.simplemobiletools.dialer.models.AudioRoute
|
||||||
import java.util.concurrent.CopyOnWriteArraySet
|
import java.util.concurrent.CopyOnWriteArraySet
|
||||||
|
|
||||||
// inspired by https://github.com/Chooloo/call_manage
|
// inspired by https://github.com/Chooloo/call_manage
|
||||||
@ -47,6 +49,13 @@ class CallManager {
|
|||||||
updateState()
|
updateState()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fun onAudioStateChanged(audioState: CallAudioState) {
|
||||||
|
val route = AudioRoute.fromRoute(audioState.route) ?: return
|
||||||
|
for (listener in listeners) {
|
||||||
|
listener.onAudioStateChanged(route)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
fun getPhoneState(): PhoneState {
|
fun getPhoneState(): PhoneState {
|
||||||
return when (calls.size) {
|
return when (calls.size) {
|
||||||
0 -> NoCall
|
0 -> NoCall
|
||||||
@ -88,6 +97,25 @@ class CallManager {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private fun getCallAudioState() = inCallService?.callAudioState
|
||||||
|
|
||||||
|
fun getSupportedAudioRoutes(): Array<AudioRoute> {
|
||||||
|
return AudioRoute.values().filter {
|
||||||
|
val supportedRouteMask = getCallAudioState()?.supportedRouteMask
|
||||||
|
if (supportedRouteMask != null) {
|
||||||
|
supportedRouteMask and it.route == it.route
|
||||||
|
} else {
|
||||||
|
false
|
||||||
|
}
|
||||||
|
}.toTypedArray()
|
||||||
|
}
|
||||||
|
|
||||||
|
fun getCallAudioRoute() = AudioRoute.fromRoute(getCallAudioState()?.route)
|
||||||
|
|
||||||
|
fun setAudioRoute(newRoute: Int) {
|
||||||
|
inCallService?.setAudioRoute(newRoute)
|
||||||
|
}
|
||||||
|
|
||||||
private fun updateState() {
|
private fun updateState() {
|
||||||
val primaryCall = when (val phoneState = getPhoneState()) {
|
val primaryCall = when (val phoneState = getPhoneState()) {
|
||||||
is NoCall -> null
|
is NoCall -> null
|
||||||
@ -188,6 +216,7 @@ class CallManager {
|
|||||||
|
|
||||||
interface CallManagerListener {
|
interface CallManagerListener {
|
||||||
fun onStateChanged()
|
fun onStateChanged()
|
||||||
|
fun onAudioStateChanged(audioState: AudioRoute)
|
||||||
fun onPrimaryCallChanged(call: Call)
|
fun onPrimaryCallChanged(call: Call)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -0,0 +1,18 @@
|
|||||||
|
package com.simplemobiletools.dialer.models
|
||||||
|
|
||||||
|
import android.telecom.CallAudioState
|
||||||
|
import androidx.annotation.DrawableRes
|
||||||
|
import androidx.annotation.StringRes
|
||||||
|
import com.simplemobiletools.dialer.R
|
||||||
|
|
||||||
|
enum class AudioRoute(val route: Int, @StringRes val stringRes: Int, @DrawableRes val iconRes: Int) {
|
||||||
|
SPEAKER(CallAudioState.ROUTE_SPEAKER, R.string.audio_route_speaker, R.drawable.ic_volume_up_vector),
|
||||||
|
EARPIECE(CallAudioState.ROUTE_EARPIECE, R.string.audio_route_earpiece, R.drawable.ic_volume_down_vector),
|
||||||
|
BLUETOOTH(CallAudioState.ROUTE_BLUETOOTH, R.string.audio_route_bluetooth, R.drawable.ic_bluetooth_audio_vector),
|
||||||
|
WIRED_HEADSET(CallAudioState.ROUTE_WIRED_HEADSET, R.string.audio_route_wired_headset, R.drawable.ic_headset_vector),
|
||||||
|
WIRED_OR_EARPIECE(CallAudioState.ROUTE_WIRED_OR_EARPIECE, R.string.audio_route_wired_or_earpiece, R.drawable.ic_volume_down_vector);
|
||||||
|
|
||||||
|
companion object {
|
||||||
|
fun fromRoute(route: Int?) = values().firstOrNull { it.route == route }
|
||||||
|
}
|
||||||
|
}
|
@ -3,6 +3,7 @@ package com.simplemobiletools.dialer.services
|
|||||||
import android.app.KeyguardManager
|
import android.app.KeyguardManager
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
import android.telecom.Call
|
import android.telecom.Call
|
||||||
|
import android.telecom.CallAudioState
|
||||||
import android.telecom.InCallService
|
import android.telecom.InCallService
|
||||||
import com.simplemobiletools.dialer.activities.CallActivity
|
import com.simplemobiletools.dialer.activities.CallActivity
|
||||||
import com.simplemobiletools.dialer.extensions.config
|
import com.simplemobiletools.dialer.extensions.config
|
||||||
@ -62,6 +63,13 @@ class CallService : InCallService() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
override fun onCallAudioStateChanged(audioState: CallAudioState?) {
|
||||||
|
super.onCallAudioStateChanged(audioState)
|
||||||
|
if (audioState != null) {
|
||||||
|
CallManager.onAudioStateChanged(audioState)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
override fun onDestroy() {
|
override fun onDestroy() {
|
||||||
super.onDestroy()
|
super.onDestroy()
|
||||||
callNotificationManager.cancelNotification()
|
callNotificationManager.cancelNotification()
|
||||||
|
9
app/src/main/res/drawable/ic_bluetooth_audio_vector.xml
Normal file
9
app/src/main/res/drawable/ic_bluetooth_audio_vector.xml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:width="24dp"
|
||||||
|
android:height="24dp"
|
||||||
|
android:viewportWidth="24"
|
||||||
|
android:viewportHeight="24">
|
||||||
|
<path
|
||||||
|
android:fillColor="@android:color/white"
|
||||||
|
android:pathData="M14.24 12.01l2.32 2.32C16.84 13.61 17 12.82 17 12c0-0.82-0.16-1.59-0.43-2.31l-2.33 2.32zm5.29-5.3l-1.26 1.26c0.63 1.21 0.98 2.57 0.98 4.02s-0.36 2.82-0.98 4.02l1.2 1.2c0.97-1.54 1.54-3.36 1.54-5.31-0.01-1.89-0.55-3.67-1.48-5.19zm-3.82 1L10 2H9v7.59L4.41 5 3 6.41 8.59 12 3 17.59 4.41 19 9 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM11 5.83l1.88 1.88L11 9.59V5.83zm1.88 10.46L11 18.17v-3.76l1.88 1.88z" />
|
||||||
|
</vector>
|
9
app/src/main/res/drawable/ic_headset_vector.xml
Normal file
9
app/src/main/res/drawable/ic_headset_vector.xml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:width="24dp"
|
||||||
|
android:height="24dp"
|
||||||
|
android:viewportWidth="24"
|
||||||
|
android:viewportHeight="24">
|
||||||
|
<path
|
||||||
|
android:fillColor="@android:color/white"
|
||||||
|
android:pathData="M12 1c-4.97 0-9 4.03-9 9v7c0 1.66 1.34 3 3 3h3v-8H5v-2c0-3.87 3.13-7 7-7s7 3.13 7 7v2h-4v8h3c1.66 0 3-1.34 3-3v-7c0-4.97-4.03-9-9-9z" />
|
||||||
|
</vector>
|
@ -1,3 +0,0 @@
|
|||||||
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportWidth="24" android:viewportHeight="24">
|
|
||||||
<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"/>
|
|
||||||
</vector>
|
|
10
app/src/main/res/drawable/ic_volume_down_vector.xml
Normal file
10
app/src/main/res/drawable/ic_volume_down_vector.xml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:width="24dp"
|
||||||
|
android:height="24dp"
|
||||||
|
android:autoMirrored="true"
|
||||||
|
android:viewportWidth="24"
|
||||||
|
android:viewportHeight="24">
|
||||||
|
<path
|
||||||
|
android:fillColor="@android:color/white"
|
||||||
|
android:pathData="M18.5 12c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-0.73 2.5-2.25 2.5-4.02zM5 9v6h4l5 5V4L9 9H5z" />
|
||||||
|
</vector>
|
9
app/src/main/res/drawable/ic_volume_up_vector.xml
Normal file
9
app/src/main/res/drawable/ic_volume_up_vector.xml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:width="24dp"
|
||||||
|
android:height="24dp"
|
||||||
|
android:viewportWidth="24"
|
||||||
|
android:viewportHeight="24">
|
||||||
|
<path
|
||||||
|
android:fillColor="#FFFFFF"
|
||||||
|
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" />
|
||||||
|
</vector>
|
@ -180,7 +180,7 @@
|
|||||||
android:background="@drawable/circle_background"
|
android:background="@drawable/circle_background"
|
||||||
android:contentDescription="@string/turn_speaker_on"
|
android:contentDescription="@string/turn_speaker_on"
|
||||||
android:padding="@dimen/activity_margin"
|
android:padding="@dimen/activity_margin"
|
||||||
android:src="@drawable/ic_speaker_on_vector"
|
android:src="@drawable/ic_volume_up_vector"
|
||||||
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
app:layout_constraintEnd_toStartOf="@+id/call_dialpad"
|
app:layout_constraintEnd_toStartOf="@+id/call_dialpad"
|
||||||
app:layout_constraintStart_toEndOf="@+id/call_toggle_microphone"
|
app:layout_constraintStart_toEndOf="@+id/call_toggle_microphone"
|
||||||
|
@ -54,6 +54,12 @@
|
|||||||
<string name="call_add">Add call</string>
|
<string name="call_add">Add call</string>
|
||||||
<string name="conference_manage">Manage conference call</string>
|
<string name="conference_manage">Manage conference call</string>
|
||||||
<string name="conference">Conference</string>
|
<string name="conference">Conference</string>
|
||||||
|
<string name="audio_route_speaker">Speaker</string>
|
||||||
|
<string name="audio_route_earpiece">Earpiece</string>
|
||||||
|
<string name="audio_route_bluetooth">Bluetooth</string>
|
||||||
|
<string name="audio_route_wired_headset">Wired Headset</string>
|
||||||
|
<string name="audio_route_wired_or_earpiece">Wired or Earpiece</string>
|
||||||
|
<string name="choose_audio_route">Choose audio route</string>
|
||||||
<!-- Speed dial -->
|
<!-- Speed dial -->
|
||||||
<string name="speed_dial">Speed dial</string>
|
<string name="speed_dial">Speed dial</string>
|
||||||
<string name="manage_speed_dial">Manage speed dial</string>
|
<string name="manage_speed_dial">Manage speed dial</string>
|
||||||
|
@ -54,6 +54,12 @@
|
|||||||
<string name="call_add">Add call</string>
|
<string name="call_add">Add call</string>
|
||||||
<string name="conference_manage">Manage conference call</string>
|
<string name="conference_manage">Manage conference call</string>
|
||||||
<string name="conference">Conference</string>
|
<string name="conference">Conference</string>
|
||||||
|
<string name="audio_route_speaker">Speaker</string>
|
||||||
|
<string name="audio_route_earpiece">Earpiece</string>
|
||||||
|
<string name="audio_route_bluetooth">Bluetooth</string>
|
||||||
|
<string name="audio_route_wired_headset">Wired Headset</string>
|
||||||
|
<string name="audio_route_wired_or_earpiece">Wired or Earpiece</string>
|
||||||
|
<string name="choose_audio_route">Choose audio route</string>
|
||||||
<!-- Speed dial -->
|
<!-- Speed dial -->
|
||||||
<string name="speed_dial">Speed dial</string>
|
<string name="speed_dial">Speed dial</string>
|
||||||
<string name="manage_speed_dial">Manage speed dial</string>
|
<string name="manage_speed_dial">Manage speed dial</string>
|
||||||
|
@ -54,6 +54,12 @@
|
|||||||
<string name="call_add">Дадаць выклік</string>
|
<string name="call_add">Дадаць выклік</string>
|
||||||
<string name="conference_manage">Кіраванне канферэнц-сувяззю</string>
|
<string name="conference_manage">Кіраванне канферэнц-сувяззю</string>
|
||||||
<string name="conference">Канферэнц-сувязь</string>
|
<string name="conference">Канферэнц-сувязь</string>
|
||||||
|
<string name="audio_route_speaker">Speaker</string>
|
||||||
|
<string name="audio_route_earpiece">Earpiece</string>
|
||||||
|
<string name="audio_route_bluetooth">Bluetooth</string>
|
||||||
|
<string name="audio_route_wired_headset">Wired Headset</string>
|
||||||
|
<string name="audio_route_wired_or_earpiece">Wired or Earpiece</string>
|
||||||
|
<string name="choose_audio_route">Choose audio route</string>
|
||||||
<!-- Speed dial -->
|
<!-- Speed dial -->
|
||||||
<string name="speed_dial">Хуткі набор</string>
|
<string name="speed_dial">Хуткі набор</string>
|
||||||
<string name="manage_speed_dial">Кіраванне хуткім наборам</string>
|
<string name="manage_speed_dial">Кіраванне хуткім наборам</string>
|
||||||
|
@ -54,6 +54,12 @@
|
|||||||
<string name="call_add">Добавяне на обаждане</string>
|
<string name="call_add">Добавяне на обаждане</string>
|
||||||
<string name="conference_manage">Управление на конферентен разговор</string>
|
<string name="conference_manage">Управление на конферентен разговор</string>
|
||||||
<string name="conference">Конференция</string>
|
<string name="conference">Конференция</string>
|
||||||
|
<string name="audio_route_speaker">Speaker</string>
|
||||||
|
<string name="audio_route_earpiece">Earpiece</string>
|
||||||
|
<string name="audio_route_bluetooth">Bluetooth</string>
|
||||||
|
<string name="audio_route_wired_headset">Wired Headset</string>
|
||||||
|
<string name="audio_route_wired_or_earpiece">Wired or Earpiece</string>
|
||||||
|
<string name="choose_audio_route">Choose audio route</string>
|
||||||
<!-- Speed dial -->
|
<!-- Speed dial -->
|
||||||
<string name="speed_dial">Бързо набиране</string>
|
<string name="speed_dial">Бързо набиране</string>
|
||||||
<string name="manage_speed_dial">Управление на бързото набиране</string>
|
<string name="manage_speed_dial">Управление на бързото набиране</string>
|
||||||
|
@ -54,6 +54,12 @@
|
|||||||
<string name="call_add">Afegeix una trucada</string>
|
<string name="call_add">Afegeix una trucada</string>
|
||||||
<string name="conference_manage">Gestiona una trucada de conferència</string>
|
<string name="conference_manage">Gestiona una trucada de conferència</string>
|
||||||
<string name="conference">Conferència</string>
|
<string name="conference">Conferència</string>
|
||||||
|
<string name="audio_route_speaker">Speaker</string>
|
||||||
|
<string name="audio_route_earpiece">Earpiece</string>
|
||||||
|
<string name="audio_route_bluetooth">Bluetooth</string>
|
||||||
|
<string name="audio_route_wired_headset">Wired Headset</string>
|
||||||
|
<string name="audio_route_wired_or_earpiece">Wired or Earpiece</string>
|
||||||
|
<string name="choose_audio_route">Choose audio route</string>
|
||||||
<!-- Speed dial -->
|
<!-- Speed dial -->
|
||||||
<string name="speed_dial">Marcatge ràpid</string>
|
<string name="speed_dial">Marcatge ràpid</string>
|
||||||
<string name="manage_speed_dial">Gestiona el marcatge ràpid</string>
|
<string name="manage_speed_dial">Gestiona el marcatge ràpid</string>
|
||||||
@ -71,4 +77,4 @@
|
|||||||
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>
|
||||||
|
@ -54,6 +54,12 @@
|
|||||||
<string name="call_add">Přidat hovor</string>
|
<string name="call_add">Přidat hovor</string>
|
||||||
<string name="conference_manage">Spravovat konferenční hovor</string>
|
<string name="conference_manage">Spravovat konferenční hovor</string>
|
||||||
<string name="conference">Konference</string>
|
<string name="conference">Konference</string>
|
||||||
|
<string name="audio_route_speaker">Speaker</string>
|
||||||
|
<string name="audio_route_earpiece">Earpiece</string>
|
||||||
|
<string name="audio_route_bluetooth">Bluetooth</string>
|
||||||
|
<string name="audio_route_wired_headset">Wired Headset</string>
|
||||||
|
<string name="audio_route_wired_or_earpiece">Wired or Earpiece</string>
|
||||||
|
<string name="choose_audio_route">Choose audio route</string>
|
||||||
<!-- Speed dial -->
|
<!-- Speed dial -->
|
||||||
<string name="speed_dial">Rychlé vytáčení</string>
|
<string name="speed_dial">Rychlé vytáčení</string>
|
||||||
<string name="manage_speed_dial">Spravovat rychlá vytáčení</string>
|
<string name="manage_speed_dial">Spravovat rychlá vytáčení</string>
|
||||||
@ -71,4 +77,4 @@
|
|||||||
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>
|
||||||
|
@ -54,6 +54,12 @@
|
|||||||
<string name="call_add">Add call</string>
|
<string name="call_add">Add call</string>
|
||||||
<string name="conference_manage">Manage conference call</string>
|
<string name="conference_manage">Manage conference call</string>
|
||||||
<string name="conference">Conference</string>
|
<string name="conference">Conference</string>
|
||||||
|
<string name="audio_route_speaker">Speaker</string>
|
||||||
|
<string name="audio_route_earpiece">Earpiece</string>
|
||||||
|
<string name="audio_route_bluetooth">Bluetooth</string>
|
||||||
|
<string name="audio_route_wired_headset">Wired Headset</string>
|
||||||
|
<string name="audio_route_wired_or_earpiece">Wired or Earpiece</string>
|
||||||
|
<string name="choose_audio_route">Choose audio route</string>
|
||||||
<!-- Speed dial -->
|
<!-- Speed dial -->
|
||||||
<string name="speed_dial">Hurtigopkald</string>
|
<string name="speed_dial">Hurtigopkald</string>
|
||||||
<string name="manage_speed_dial">Administrér hurtigopkald</string>
|
<string name="manage_speed_dial">Administrér hurtigopkald</string>
|
||||||
|
@ -54,6 +54,12 @@
|
|||||||
<string name="call_add">Anruf hinzufügen</string>
|
<string name="call_add">Anruf hinzufügen</string>
|
||||||
<string name="conference_manage">Telefonkonferenz verwalten</string>
|
<string name="conference_manage">Telefonkonferenz verwalten</string>
|
||||||
<string name="conference">Konferenz</string>
|
<string name="conference">Konferenz</string>
|
||||||
|
<string name="audio_route_speaker">Speaker</string>
|
||||||
|
<string name="audio_route_earpiece">Earpiece</string>
|
||||||
|
<string name="audio_route_bluetooth">Bluetooth</string>
|
||||||
|
<string name="audio_route_wired_headset">Wired Headset</string>
|
||||||
|
<string name="audio_route_wired_or_earpiece">Wired or Earpiece</string>
|
||||||
|
<string name="choose_audio_route">Choose audio route</string>
|
||||||
<!-- Speed dial -->
|
<!-- Speed dial -->
|
||||||
<string name="speed_dial">Kurzwahl</string>
|
<string name="speed_dial">Kurzwahl</string>
|
||||||
<string name="manage_speed_dial">Kurzwahlnummern verwalten</string>
|
<string name="manage_speed_dial">Kurzwahlnummern verwalten</string>
|
||||||
@ -71,4 +77,4 @@
|
|||||||
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>
|
||||||
|
@ -54,6 +54,12 @@
|
|||||||
<string name="call_add">Προσθήκη κλήσης</string>
|
<string name="call_add">Προσθήκη κλήσης</string>
|
||||||
<string name="conference_manage">Διαχείριση Συνδιάσκεψης</string>
|
<string name="conference_manage">Διαχείριση Συνδιάσκεψης</string>
|
||||||
<string name="conference">Συνδιάσκεψη</string>
|
<string name="conference">Συνδιάσκεψη</string>
|
||||||
|
<string name="audio_route_speaker">Speaker</string>
|
||||||
|
<string name="audio_route_earpiece">Earpiece</string>
|
||||||
|
<string name="audio_route_bluetooth">Bluetooth</string>
|
||||||
|
<string name="audio_route_wired_headset">Wired Headset</string>
|
||||||
|
<string name="audio_route_wired_or_earpiece">Wired or Earpiece</string>
|
||||||
|
<string name="choose_audio_route">Choose audio route</string>
|
||||||
<!-- Speed dial -->
|
<!-- Speed dial -->
|
||||||
<string name="speed_dial">Ταχεία κλήση</string>
|
<string name="speed_dial">Ταχεία κλήση</string>
|
||||||
<string name="manage_speed_dial">Διαχείριση ταχείας κλήσης</string>
|
<string name="manage_speed_dial">Διαχείριση ταχείας κλήσης</string>
|
||||||
|
@ -54,6 +54,12 @@
|
|||||||
<string name="call_add">Add call</string>
|
<string name="call_add">Add call</string>
|
||||||
<string name="conference_manage">Manage conference call</string>
|
<string name="conference_manage">Manage conference call</string>
|
||||||
<string name="conference">Conference</string>
|
<string name="conference">Conference</string>
|
||||||
|
<string name="audio_route_speaker">Speaker</string>
|
||||||
|
<string name="audio_route_earpiece">Earpiece</string>
|
||||||
|
<string name="audio_route_bluetooth">Bluetooth</string>
|
||||||
|
<string name="audio_route_wired_headset">Wired Headset</string>
|
||||||
|
<string name="audio_route_wired_or_earpiece">Wired or Earpiece</string>
|
||||||
|
<string name="choose_audio_route">Choose audio route</string>
|
||||||
<!-- Speed dial -->
|
<!-- Speed dial -->
|
||||||
<string name="speed_dial">Speed dial</string>
|
<string name="speed_dial">Speed dial</string>
|
||||||
<string name="manage_speed_dial">Manage speed dial</string>
|
<string name="manage_speed_dial">Manage speed dial</string>
|
||||||
|
@ -54,6 +54,12 @@
|
|||||||
<string name="call_add">Añadir llamada</string>
|
<string name="call_add">Añadir llamada</string>
|
||||||
<string name="conference_manage">Administrar conferencia</string>
|
<string name="conference_manage">Administrar conferencia</string>
|
||||||
<string name="conference">Conferencia</string>
|
<string name="conference">Conferencia</string>
|
||||||
|
<string name="audio_route_speaker">Speaker</string>
|
||||||
|
<string name="audio_route_earpiece">Earpiece</string>
|
||||||
|
<string name="audio_route_bluetooth">Bluetooth</string>
|
||||||
|
<string name="audio_route_wired_headset">Wired Headset</string>
|
||||||
|
<string name="audio_route_wired_or_earpiece">Wired or Earpiece</string>
|
||||||
|
<string name="choose_audio_route">Choose audio route</string>
|
||||||
<!-- Speed dial -->
|
<!-- Speed dial -->
|
||||||
<string name="speed_dial">Marcado rápido</string>
|
<string name="speed_dial">Marcado rápido</string>
|
||||||
<string name="manage_speed_dial">Administrar marcado rápido</string>
|
<string name="manage_speed_dial">Administrar marcado rápido</string>
|
||||||
@ -71,4 +77,4 @@
|
|||||||
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>
|
||||||
|
@ -54,6 +54,12 @@
|
|||||||
<string name="call_add">Lisa kõne</string>
|
<string name="call_add">Lisa kõne</string>
|
||||||
<string name="conference_manage">Halda rühmakõnet</string>
|
<string name="conference_manage">Halda rühmakõnet</string>
|
||||||
<string name="conference">Rühmakõne</string>
|
<string name="conference">Rühmakõne</string>
|
||||||
|
<string name="audio_route_speaker">Speaker</string>
|
||||||
|
<string name="audio_route_earpiece">Earpiece</string>
|
||||||
|
<string name="audio_route_bluetooth">Bluetooth</string>
|
||||||
|
<string name="audio_route_wired_headset">Wired Headset</string>
|
||||||
|
<string name="audio_route_wired_or_earpiece">Wired or Earpiece</string>
|
||||||
|
<string name="choose_audio_route">Choose audio route</string>
|
||||||
<!-- Speed dial -->
|
<!-- Speed dial -->
|
||||||
<string name="speed_dial">Kiirvalimine</string>
|
<string name="speed_dial">Kiirvalimine</string>
|
||||||
<string name="speed_dial_label">Klõpsa numbrit ja seosta ta konkreetse telefoniraamatu kirjega. Hiljem saad samale numbrile pikalt vajutades alustada kõnet määratud telefoninumbrile.</string>
|
<string name="speed_dial_label">Klõpsa numbrit ja seosta ta konkreetse telefoniraamatu kirjega. Hiljem saad samale numbrile pikalt vajutades alustada kõnet määratud telefoninumbrile.</string>
|
||||||
@ -71,4 +77,4 @@
|
|||||||
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>
|
||||||
|
@ -54,6 +54,12 @@
|
|||||||
<string name="call_add">Lisää puhelu</string>
|
<string name="call_add">Lisää puhelu</string>
|
||||||
<string name="conference_manage">Hallinnoi puhelinneuvottelua</string>
|
<string name="conference_manage">Hallinnoi puhelinneuvottelua</string>
|
||||||
<string name="conference">Neuvottelu</string>
|
<string name="conference">Neuvottelu</string>
|
||||||
|
<string name="audio_route_speaker">Speaker</string>
|
||||||
|
<string name="audio_route_earpiece">Earpiece</string>
|
||||||
|
<string name="audio_route_bluetooth">Bluetooth</string>
|
||||||
|
<string name="audio_route_wired_headset">Wired Headset</string>
|
||||||
|
<string name="audio_route_wired_or_earpiece">Wired or Earpiece</string>
|
||||||
|
<string name="choose_audio_route">Choose audio route</string>
|
||||||
<!-- Speed dial -->
|
<!-- Speed dial -->
|
||||||
<string name="speed_dial">Pikavalinta</string>
|
<string name="speed_dial">Pikavalinta</string>
|
||||||
<string name="manage_speed_dial">Pikavalinnan asetukset</string>
|
<string name="manage_speed_dial">Pikavalinnan asetukset</string>
|
||||||
@ -71,4 +77,4 @@
|
|||||||
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>
|
||||||
|
@ -54,6 +54,12 @@
|
|||||||
<string name="call_add">Ajouter un appel</string>
|
<string name="call_add">Ajouter un appel</string>
|
||||||
<string name="conference_manage">Gérer une conférence téléphonique</string>
|
<string name="conference_manage">Gérer une conférence téléphonique</string>
|
||||||
<string name="conference">Conférence</string>
|
<string name="conference">Conférence</string>
|
||||||
|
<string name="audio_route_speaker">Speaker</string>
|
||||||
|
<string name="audio_route_earpiece">Earpiece</string>
|
||||||
|
<string name="audio_route_bluetooth">Bluetooth</string>
|
||||||
|
<string name="audio_route_wired_headset">Wired Headset</string>
|
||||||
|
<string name="audio_route_wired_or_earpiece">Wired or Earpiece</string>
|
||||||
|
<string name="choose_audio_route">Choose audio route</string>
|
||||||
<!-- Speed dial -->
|
<!-- Speed dial -->
|
||||||
<string name="speed_dial">Numérotation rapide</string>
|
<string name="speed_dial">Numérotation rapide</string>
|
||||||
<string name="manage_speed_dial">Gérer la numérotation rapide</string>
|
<string name="manage_speed_dial">Gérer la numérotation rapide</string>
|
||||||
@ -71,4 +77,4 @@
|
|||||||
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>
|
||||||
|
@ -54,6 +54,12 @@
|
|||||||
<string name="call_add">Engadir chamada</string>
|
<string name="call_add">Engadir chamada</string>
|
||||||
<string name="conference_manage">Xestionar chamadas de conferencia</string>
|
<string name="conference_manage">Xestionar chamadas de conferencia</string>
|
||||||
<string name="conference">Conferencia</string>
|
<string name="conference">Conferencia</string>
|
||||||
|
<string name="audio_route_speaker">Speaker</string>
|
||||||
|
<string name="audio_route_earpiece">Earpiece</string>
|
||||||
|
<string name="audio_route_bluetooth">Bluetooth</string>
|
||||||
|
<string name="audio_route_wired_headset">Wired Headset</string>
|
||||||
|
<string name="audio_route_wired_or_earpiece">Wired or Earpiece</string>
|
||||||
|
<string name="choose_audio_route">Choose audio route</string>
|
||||||
<!-- Speed dial -->
|
<!-- Speed dial -->
|
||||||
<string name="speed_dial">Marcación rápida</string>
|
<string name="speed_dial">Marcación rápida</string>
|
||||||
<string name="manage_speed_dial">Xestionar marcacións rápidas</string>
|
<string name="manage_speed_dial">Xestionar marcacións rápidas</string>
|
||||||
@ -71,4 +77,4 @@
|
|||||||
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>
|
||||||
|
@ -54,6 +54,12 @@
|
|||||||
<string name="call_add">Dodaj poziv</string>
|
<string name="call_add">Dodaj poziv</string>
|
||||||
<string name="conference_manage">Upravljaj konferencijskim pozivima</string>
|
<string name="conference_manage">Upravljaj konferencijskim pozivima</string>
|
||||||
<string name="conference">Konferencija</string>
|
<string name="conference">Konferencija</string>
|
||||||
|
<string name="audio_route_speaker">Speaker</string>
|
||||||
|
<string name="audio_route_earpiece">Earpiece</string>
|
||||||
|
<string name="audio_route_bluetooth">Bluetooth</string>
|
||||||
|
<string name="audio_route_wired_headset">Wired Headset</string>
|
||||||
|
<string name="audio_route_wired_or_earpiece">Wired or Earpiece</string>
|
||||||
|
<string name="choose_audio_route">Choose audio route</string>
|
||||||
<!-- Speed dial -->
|
<!-- Speed dial -->
|
||||||
<string name="speed_dial">Brzo biranje</string>
|
<string name="speed_dial">Brzo biranje</string>
|
||||||
<string name="manage_speed_dial">Upravljaj brzim biranjem</string>
|
<string name="manage_speed_dial">Upravljaj brzim biranjem</string>
|
||||||
|
@ -54,6 +54,12 @@
|
|||||||
<string name="call_add">Hívás hozzáadása</string>
|
<string name="call_add">Hívás hozzáadása</string>
|
||||||
<string name="conference_manage">Konferenciahívás kezelése</string>
|
<string name="conference_manage">Konferenciahívás kezelése</string>
|
||||||
<string name="conference">Konferencia</string>
|
<string name="conference">Konferencia</string>
|
||||||
|
<string name="audio_route_speaker">Speaker</string>
|
||||||
|
<string name="audio_route_earpiece">Earpiece</string>
|
||||||
|
<string name="audio_route_bluetooth">Bluetooth</string>
|
||||||
|
<string name="audio_route_wired_headset">Wired Headset</string>
|
||||||
|
<string name="audio_route_wired_or_earpiece">Wired or Earpiece</string>
|
||||||
|
<string name="choose_audio_route">Choose audio route</string>
|
||||||
<!-- Speed dial -->
|
<!-- Speed dial -->
|
||||||
<string name="speed_dial">Gyors tárcsázó</string>
|
<string name="speed_dial">Gyors tárcsázó</string>
|
||||||
<string name="manage_speed_dial">Gyors tárcsázó kezelése</string>
|
<string name="manage_speed_dial">Gyors tárcsázó kezelése</string>
|
||||||
@ -71,4 +77,4 @@
|
|||||||
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>
|
||||||
|
@ -54,6 +54,12 @@
|
|||||||
<string name="call_add">Add call</string>
|
<string name="call_add">Add call</string>
|
||||||
<string name="conference_manage">Manage conference call</string>
|
<string name="conference_manage">Manage conference call</string>
|
||||||
<string name="conference">Conference</string>
|
<string name="conference">Conference</string>
|
||||||
|
<string name="audio_route_speaker">Speaker</string>
|
||||||
|
<string name="audio_route_earpiece">Earpiece</string>
|
||||||
|
<string name="audio_route_bluetooth">Bluetooth</string>
|
||||||
|
<string name="audio_route_wired_headset">Wired Headset</string>
|
||||||
|
<string name="audio_route_wired_or_earpiece">Wired or Earpiece</string>
|
||||||
|
<string name="choose_audio_route">Choose audio route</string>
|
||||||
<!-- Speed dial -->
|
<!-- Speed dial -->
|
||||||
<string name="speed_dial">Panggilan cepat</string>
|
<string name="speed_dial">Panggilan cepat</string>
|
||||||
<string name="manage_speed_dial">Kelola panggilan cepat</string>
|
<string name="manage_speed_dial">Kelola panggilan cepat</string>
|
||||||
|
@ -54,6 +54,12 @@
|
|||||||
<string name="call_add">Aggiungi una chiamata</string>
|
<string name="call_add">Aggiungi una chiamata</string>
|
||||||
<string name="conference_manage">Gestisci la teleconferenza</string>
|
<string name="conference_manage">Gestisci la teleconferenza</string>
|
||||||
<string name="conference">Conferenza</string>
|
<string name="conference">Conferenza</string>
|
||||||
|
<string name="audio_route_speaker">Speaker</string>
|
||||||
|
<string name="audio_route_earpiece">Earpiece</string>
|
||||||
|
<string name="audio_route_bluetooth">Bluetooth</string>
|
||||||
|
<string name="audio_route_wired_headset">Wired Headset</string>
|
||||||
|
<string name="audio_route_wired_or_earpiece">Wired or Earpiece</string>
|
||||||
|
<string name="choose_audio_route">Choose audio route</string>
|
||||||
<!-- Speed dial -->
|
<!-- Speed dial -->
|
||||||
<string name="speed_dial">Contatti veloci</string>
|
<string name="speed_dial">Contatti veloci</string>
|
||||||
<string name="manage_speed_dial">Gestisci i contatti veloci</string>
|
<string name="manage_speed_dial">Gestisci i contatti veloci</string>
|
||||||
@ -71,4 +77,4 @@
|
|||||||
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>
|
||||||
|
@ -54,6 +54,12 @@
|
|||||||
<string name="call_add">הוסף שיחה</string>
|
<string name="call_add">הוסף שיחה</string>
|
||||||
<string name="conference_manage">ניהול שיחת ועידה</string>
|
<string name="conference_manage">ניהול שיחת ועידה</string>
|
||||||
<string name="conference">ועידה</string>
|
<string name="conference">ועידה</string>
|
||||||
|
<string name="audio_route_speaker">Speaker</string>
|
||||||
|
<string name="audio_route_earpiece">Earpiece</string>
|
||||||
|
<string name="audio_route_bluetooth">Bluetooth</string>
|
||||||
|
<string name="audio_route_wired_headset">Wired Headset</string>
|
||||||
|
<string name="audio_route_wired_or_earpiece">Wired or Earpiece</string>
|
||||||
|
<string name="choose_audio_route">Choose audio route</string>
|
||||||
<!-- Speed dial -->
|
<!-- Speed dial -->
|
||||||
<string name="speed_dial">חיוג מהיר</string>
|
<string name="speed_dial">חיוג מהיר</string>
|
||||||
<string name="manage_speed_dial">נהל חיוג מהיר</string>
|
<string name="manage_speed_dial">נהל חיוג מהיר</string>
|
||||||
|
@ -54,6 +54,12 @@
|
|||||||
<string name="call_add">通話を追加する</string>
|
<string name="call_add">通話を追加する</string>
|
||||||
<string name="conference_manage">電話会議を管理する</string>
|
<string name="conference_manage">電話会議を管理する</string>
|
||||||
<string name="conference">会議</string>
|
<string name="conference">会議</string>
|
||||||
|
<string name="audio_route_speaker">Speaker</string>
|
||||||
|
<string name="audio_route_earpiece">Earpiece</string>
|
||||||
|
<string name="audio_route_bluetooth">Bluetooth</string>
|
||||||
|
<string name="audio_route_wired_headset">Wired Headset</string>
|
||||||
|
<string name="audio_route_wired_or_earpiece">Wired or Earpiece</string>
|
||||||
|
<string name="choose_audio_route">Choose audio route</string>
|
||||||
<!-- Speed dial -->
|
<!-- Speed dial -->
|
||||||
<string name="speed_dial">スピードダイヤル</string>
|
<string name="speed_dial">スピードダイヤル</string>
|
||||||
<string name="manage_speed_dial">スピードダイヤルの管理</string>
|
<string name="manage_speed_dial">スピードダイヤルの管理</string>
|
||||||
@ -71,4 +77,4 @@
|
|||||||
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>
|
||||||
|
@ -54,6 +54,12 @@
|
|||||||
<string name="call_add">Pridėti skambutį</string>
|
<string name="call_add">Pridėti skambutį</string>
|
||||||
<string name="conference_manage">Tvarkyti konferencinį skambutį</string>
|
<string name="conference_manage">Tvarkyti konferencinį skambutį</string>
|
||||||
<string name="conference">Konferencija</string>
|
<string name="conference">Konferencija</string>
|
||||||
|
<string name="audio_route_speaker">Speaker</string>
|
||||||
|
<string name="audio_route_earpiece">Earpiece</string>
|
||||||
|
<string name="audio_route_bluetooth">Bluetooth</string>
|
||||||
|
<string name="audio_route_wired_headset">Wired Headset</string>
|
||||||
|
<string name="audio_route_wired_or_earpiece">Wired or Earpiece</string>
|
||||||
|
<string name="choose_audio_route">Choose audio route</string>
|
||||||
<!-- Speed dial -->
|
<!-- Speed dial -->
|
||||||
<string name="speed_dial">Spartusis rinkimas</string>
|
<string name="speed_dial">Spartusis rinkimas</string>
|
||||||
<string name="manage_speed_dial">Tvarkyti spartųjį rinkimą</string>
|
<string name="manage_speed_dial">Tvarkyti spartųjį rinkimą</string>
|
||||||
|
@ -54,6 +54,12 @@
|
|||||||
<string name="call_add">Add call</string>
|
<string name="call_add">Add call</string>
|
||||||
<string name="conference_manage">Manage conference call</string>
|
<string name="conference_manage">Manage conference call</string>
|
||||||
<string name="conference">Conference</string>
|
<string name="conference">Conference</string>
|
||||||
|
<string name="audio_route_speaker">Speaker</string>
|
||||||
|
<string name="audio_route_earpiece">Earpiece</string>
|
||||||
|
<string name="audio_route_bluetooth">Bluetooth</string>
|
||||||
|
<string name="audio_route_wired_headset">Wired Headset</string>
|
||||||
|
<string name="audio_route_wired_or_earpiece">Wired or Earpiece</string>
|
||||||
|
<string name="choose_audio_route">Choose audio route</string>
|
||||||
<!-- Speed dial -->
|
<!-- Speed dial -->
|
||||||
<string name="speed_dial">സ്പീഡ് ഡയൽ</string>
|
<string name="speed_dial">സ്പീഡ് ഡയൽ</string>
|
||||||
<string name="manage_speed_dial">സ്പീഡ് ഡയൽ നിയന്ത്രിക്കുക</string>
|
<string name="manage_speed_dial">സ്പീഡ് ഡയൽ നിയന്ത്രിക്കുക</string>
|
||||||
|
@ -54,6 +54,12 @@
|
|||||||
<string name="call_add">Add call</string>
|
<string name="call_add">Add call</string>
|
||||||
<string name="conference_manage">Manage conference call</string>
|
<string name="conference_manage">Manage conference call</string>
|
||||||
<string name="conference">Conference</string>
|
<string name="conference">Conference</string>
|
||||||
|
<string name="audio_route_speaker">Speaker</string>
|
||||||
|
<string name="audio_route_earpiece">Earpiece</string>
|
||||||
|
<string name="audio_route_bluetooth">Bluetooth</string>
|
||||||
|
<string name="audio_route_wired_headset">Wired Headset</string>
|
||||||
|
<string name="audio_route_wired_or_earpiece">Wired or Earpiece</string>
|
||||||
|
<string name="choose_audio_route">Choose audio route</string>
|
||||||
<!-- Speed dial -->
|
<!-- Speed dial -->
|
||||||
<string name="speed_dial">Hurtigvalg</string>
|
<string name="speed_dial">Hurtigvalg</string>
|
||||||
<string name="manage_speed_dial">Administrer hurtigvalg</string>
|
<string name="manage_speed_dial">Administrer hurtigvalg</string>
|
||||||
|
@ -54,6 +54,12 @@
|
|||||||
<string name="call_add">Gesprek toevoegen</string>
|
<string name="call_add">Gesprek toevoegen</string>
|
||||||
<string name="conference_manage">Groepsgesprek beheren</string>
|
<string name="conference_manage">Groepsgesprek beheren</string>
|
||||||
<string name="conference">Groepsgesprek</string>
|
<string name="conference">Groepsgesprek</string>
|
||||||
|
<string name="audio_route_speaker">Speaker</string>
|
||||||
|
<string name="audio_route_earpiece">Earpiece</string>
|
||||||
|
<string name="audio_route_bluetooth">Bluetooth</string>
|
||||||
|
<string name="audio_route_wired_headset">Wired Headset</string>
|
||||||
|
<string name="audio_route_wired_or_earpiece">Wired or Earpiece</string>
|
||||||
|
<string name="choose_audio_route">Choose audio route</string>
|
||||||
<!-- Speed dial -->
|
<!-- Speed dial -->
|
||||||
<string name="speed_dial">Snelkiesnummer</string>
|
<string name="speed_dial">Snelkiesnummer</string>
|
||||||
<string name="manage_speed_dial">Snelkiezen beheren</string>
|
<string name="manage_speed_dial">Snelkiezen beheren</string>
|
||||||
@ -71,4 +77,4 @@
|
|||||||
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>
|
||||||
|
@ -54,6 +54,12 @@
|
|||||||
<string name="call_add">Add call</string>
|
<string name="call_add">Add call</string>
|
||||||
<string name="conference_manage">Manage conference call</string>
|
<string name="conference_manage">Manage conference call</string>
|
||||||
<string name="conference">Conference</string>
|
<string name="conference">Conference</string>
|
||||||
|
<string name="audio_route_speaker">Speaker</string>
|
||||||
|
<string name="audio_route_earpiece">Earpiece</string>
|
||||||
|
<string name="audio_route_bluetooth">Bluetooth</string>
|
||||||
|
<string name="audio_route_wired_headset">Wired Headset</string>
|
||||||
|
<string name="audio_route_wired_or_earpiece">Wired or Earpiece</string>
|
||||||
|
<string name="choose_audio_route">Choose audio route</string>
|
||||||
<!-- Speed dial -->
|
<!-- Speed dial -->
|
||||||
<string name="speed_dial">Speed dial</string>
|
<string name="speed_dial">Speed dial</string>
|
||||||
<string name="manage_speed_dial">Manage speed dial</string>
|
<string name="manage_speed_dial">Manage speed dial</string>
|
||||||
|
@ -54,6 +54,12 @@
|
|||||||
<string name="call_add">Dodaj połączenie</string>
|
<string name="call_add">Dodaj połączenie</string>
|
||||||
<string name="conference_manage">Zarządzaj połączeniem konferencyjnym</string>
|
<string name="conference_manage">Zarządzaj połączeniem konferencyjnym</string>
|
||||||
<string name="conference">Konferencja</string>
|
<string name="conference">Konferencja</string>
|
||||||
|
<string name="audio_route_speaker">Speaker</string>
|
||||||
|
<string name="audio_route_earpiece">Earpiece</string>
|
||||||
|
<string name="audio_route_bluetooth">Bluetooth</string>
|
||||||
|
<string name="audio_route_wired_headset">Wired Headset</string>
|
||||||
|
<string name="audio_route_wired_or_earpiece">Wired or Earpiece</string>
|
||||||
|
<string name="choose_audio_route">Choose audio route</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>
|
||||||
@ -71,4 +77,4 @@
|
|||||||
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>
|
||||||
|
@ -54,6 +54,12 @@
|
|||||||
<string name="call_add">Adicionar chamada</string>
|
<string name="call_add">Adicionar chamada</string>
|
||||||
<string name="conference_manage">Gerenciar chamada em conferência</string>
|
<string name="conference_manage">Gerenciar chamada em conferência</string>
|
||||||
<string name="conference">Conferência</string>
|
<string name="conference">Conferência</string>
|
||||||
|
<string name="audio_route_speaker">Speaker</string>
|
||||||
|
<string name="audio_route_earpiece">Earpiece</string>
|
||||||
|
<string name="audio_route_bluetooth">Bluetooth</string>
|
||||||
|
<string name="audio_route_wired_headset">Wired Headset</string>
|
||||||
|
<string name="audio_route_wired_or_earpiece">Wired or Earpiece</string>
|
||||||
|
<string name="choose_audio_route">Choose audio route</string>
|
||||||
<!-- Speed dial -->
|
<!-- Speed dial -->
|
||||||
<string name="speed_dial">Ligação rápida</string>
|
<string name="speed_dial">Ligação rápida</string>
|
||||||
<string name="manage_speed_dial">Gerenciar ligações rápidas</string>
|
<string name="manage_speed_dial">Gerenciar ligações rápidas</string>
|
||||||
|
@ -54,6 +54,12 @@
|
|||||||
<string name="call_add">Adicionar chamada</string>
|
<string name="call_add">Adicionar chamada</string>
|
||||||
<string name="conference_manage">Gerenciar chamada de conferência</string>
|
<string name="conference_manage">Gerenciar chamada de conferência</string>
|
||||||
<string name="conference">Conferência</string>
|
<string name="conference">Conferência</string>
|
||||||
|
<string name="audio_route_speaker">Speaker</string>
|
||||||
|
<string name="audio_route_earpiece">Earpiece</string>
|
||||||
|
<string name="audio_route_bluetooth">Bluetooth</string>
|
||||||
|
<string name="audio_route_wired_headset">Wired Headset</string>
|
||||||
|
<string name="audio_route_wired_or_earpiece">Wired or Earpiece</string>
|
||||||
|
<string name="choose_audio_route">Choose audio route</string>
|
||||||
<!-- Speed dial -->
|
<!-- Speed dial -->
|
||||||
<string name="speed_dial">Marcação rápida</string>
|
<string name="speed_dial">Marcação rápida</string>
|
||||||
<string name="manage_speed_dial">Gerir marcações rápidas</string>
|
<string name="manage_speed_dial">Gerir marcações rápidas</string>
|
||||||
|
@ -54,6 +54,12 @@
|
|||||||
<string name="call_add">Adăugați apel</string>
|
<string name="call_add">Adăugați apel</string>
|
||||||
<string name="conference_manage">Gestionați apelul de conferință</string>
|
<string name="conference_manage">Gestionați apelul de conferință</string>
|
||||||
<string name="conference">Conferință</string>
|
<string name="conference">Conferință</string>
|
||||||
|
<string name="audio_route_speaker">Speaker</string>
|
||||||
|
<string name="audio_route_earpiece">Earpiece</string>
|
||||||
|
<string name="audio_route_bluetooth">Bluetooth</string>
|
||||||
|
<string name="audio_route_wired_headset">Wired Headset</string>
|
||||||
|
<string name="audio_route_wired_or_earpiece">Wired or Earpiece</string>
|
||||||
|
<string name="choose_audio_route">Choose audio route</string>
|
||||||
<!-- Speed dial -->
|
<!-- Speed dial -->
|
||||||
<string name="speed_dial">Apelare rapidă</string>
|
<string name="speed_dial">Apelare rapidă</string>
|
||||||
<string name="manage_speed_dial">Gestionați apelarea rapidă</string>
|
<string name="manage_speed_dial">Gestionați apelarea rapidă</string>
|
||||||
@ -71,4 +77,4 @@
|
|||||||
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>
|
||||||
|
@ -54,6 +54,12 @@
|
|||||||
<string name="call_add">Добавить вызов</string>
|
<string name="call_add">Добавить вызов</string>
|
||||||
<string name="conference_manage">Управление конференц-связью</string>
|
<string name="conference_manage">Управление конференц-связью</string>
|
||||||
<string name="conference">Конференция</string>
|
<string name="conference">Конференция</string>
|
||||||
|
<string name="audio_route_speaker">Speaker</string>
|
||||||
|
<string name="audio_route_earpiece">Earpiece</string>
|
||||||
|
<string name="audio_route_bluetooth">Bluetooth</string>
|
||||||
|
<string name="audio_route_wired_headset">Wired Headset</string>
|
||||||
|
<string name="audio_route_wired_or_earpiece">Wired or Earpiece</string>
|
||||||
|
<string name="choose_audio_route">Choose audio route</string>
|
||||||
<!-- Speed dial -->
|
<!-- Speed dial -->
|
||||||
<string name="speed_dial">Быстрый вызов</string>
|
<string name="speed_dial">Быстрый вызов</string>
|
||||||
<string name="manage_speed_dial">Управление быстрым вызовом</string>
|
<string name="manage_speed_dial">Управление быстрым вызовом</string>
|
||||||
@ -71,4 +77,4 @@
|
|||||||
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>
|
||||||
|
@ -54,6 +54,12 @@
|
|||||||
<string name="call_add">Pridať hovor</string>
|
<string name="call_add">Pridať hovor</string>
|
||||||
<string name="conference_manage">Spravovať konferenčný hovor</string>
|
<string name="conference_manage">Spravovať konferenčný hovor</string>
|
||||||
<string name="conference">Konferencia</string>
|
<string name="conference">Konferencia</string>
|
||||||
|
<string name="audio_route_speaker">Speaker</string>
|
||||||
|
<string name="audio_route_earpiece">Earpiece</string>
|
||||||
|
<string name="audio_route_bluetooth">Bluetooth</string>
|
||||||
|
<string name="audio_route_wired_headset">Wired Headset</string>
|
||||||
|
<string name="audio_route_wired_or_earpiece">Wired or Earpiece</string>
|
||||||
|
<string name="choose_audio_route">Choose audio route</string>
|
||||||
<!-- Speed dial -->
|
<!-- Speed dial -->
|
||||||
<string name="speed_dial">Rýchle vytáčanie</string>
|
<string name="speed_dial">Rýchle vytáčanie</string>
|
||||||
<string name="manage_speed_dial">Spravovať rýchle vytáčanie</string>
|
<string name="manage_speed_dial">Spravovať rýchle vytáčanie</string>
|
||||||
|
@ -53,6 +53,12 @@
|
|||||||
<string name="call_add">Dodaj klic</string>
|
<string name="call_add">Dodaj klic</string>
|
||||||
<string name="conference_manage">Upravljaj konferenčni klic</string>
|
<string name="conference_manage">Upravljaj konferenčni klic</string>
|
||||||
<string name="conference">Konferenca</string>
|
<string name="conference">Konferenca</string>
|
||||||
|
<string name="audio_route_speaker">Speaker</string>
|
||||||
|
<string name="audio_route_earpiece">Earpiece</string>
|
||||||
|
<string name="audio_route_bluetooth">Bluetooth</string>
|
||||||
|
<string name="audio_route_wired_headset">Wired Headset</string>
|
||||||
|
<string name="audio_route_wired_or_earpiece">Wired or Earpiece</string>
|
||||||
|
<string name="choose_audio_route">Choose audio route</string>
|
||||||
<!-- Speed dial -->
|
<!-- Speed dial -->
|
||||||
<string name="speed_dial">Hitro klicanje</string>
|
<string name="speed_dial">Hitro klicanje</string>
|
||||||
<string name="manage_speed_dial">Upravljanje hitrega klica</string>
|
<string name="manage_speed_dial">Upravljanje hitrega klica</string>
|
||||||
|
@ -54,6 +54,12 @@
|
|||||||
<string name="call_add">Lägg till samtal</string>
|
<string name="call_add">Lägg till samtal</string>
|
||||||
<string name="conference_manage">Hantera konferenssamtal</string>
|
<string name="conference_manage">Hantera konferenssamtal</string>
|
||||||
<string name="conference">Konferens</string>
|
<string name="conference">Konferens</string>
|
||||||
|
<string name="audio_route_speaker">Speaker</string>
|
||||||
|
<string name="audio_route_earpiece">Earpiece</string>
|
||||||
|
<string name="audio_route_bluetooth">Bluetooth</string>
|
||||||
|
<string name="audio_route_wired_headset">Wired Headset</string>
|
||||||
|
<string name="audio_route_wired_or_earpiece">Wired or Earpiece</string>
|
||||||
|
<string name="choose_audio_route">Choose audio route</string>
|
||||||
<!-- Speed dial -->
|
<!-- Speed dial -->
|
||||||
<string name="speed_dial">Snabbuppringning</string>
|
<string name="speed_dial">Snabbuppringning</string>
|
||||||
<string name="manage_speed_dial">Hantera snabbuppringning</string>
|
<string name="manage_speed_dial">Hantera snabbuppringning</string>
|
||||||
@ -71,4 +77,4 @@
|
|||||||
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>
|
||||||
|
@ -54,6 +54,12 @@
|
|||||||
<string name="call_add">Add call</string>
|
<string name="call_add">Add call</string>
|
||||||
<string name="conference_manage">Manage conference call</string>
|
<string name="conference_manage">Manage conference call</string>
|
||||||
<string name="conference">Conference</string>
|
<string name="conference">Conference</string>
|
||||||
|
<string name="audio_route_speaker">Speaker</string>
|
||||||
|
<string name="audio_route_earpiece">Earpiece</string>
|
||||||
|
<string name="audio_route_bluetooth">Bluetooth</string>
|
||||||
|
<string name="audio_route_wired_headset">Wired Headset</string>
|
||||||
|
<string name="audio_route_wired_or_earpiece">Wired or Earpiece</string>
|
||||||
|
<string name="choose_audio_route">Choose audio route</string>
|
||||||
<!-- Speed dial -->
|
<!-- Speed dial -->
|
||||||
<string name="speed_dial">Speed dial</string>
|
<string name="speed_dial">Speed dial</string>
|
||||||
<string name="manage_speed_dial">Manage speed dial</string>
|
<string name="manage_speed_dial">Manage speed dial</string>
|
||||||
|
@ -54,6 +54,12 @@
|
|||||||
<string name="call_add">Arama ekle</string>
|
<string name="call_add">Arama ekle</string>
|
||||||
<string name="conference_manage">Konferans aramasını yönet</string>
|
<string name="conference_manage">Konferans aramasını yönet</string>
|
||||||
<string name="conference">Konferans</string>
|
<string name="conference">Konferans</string>
|
||||||
|
<string name="audio_route_speaker">Speaker</string>
|
||||||
|
<string name="audio_route_earpiece">Earpiece</string>
|
||||||
|
<string name="audio_route_bluetooth">Bluetooth</string>
|
||||||
|
<string name="audio_route_wired_headset">Wired Headset</string>
|
||||||
|
<string name="audio_route_wired_or_earpiece">Wired or Earpiece</string>
|
||||||
|
<string name="choose_audio_route">Choose audio route</string>
|
||||||
<!-- Speed dial -->
|
<!-- Speed dial -->
|
||||||
<string name="speed_dial">Hızlı arama</string>
|
<string name="speed_dial">Hızlı arama</string>
|
||||||
<string name="manage_speed_dial">Hızlı aramayı yönet</string>
|
<string name="manage_speed_dial">Hızlı aramayı yönet</string>
|
||||||
@ -71,4 +77,4 @@
|
|||||||
Bazı dizeleri bulamadınız mı? Burada daha fazlası var:
|
Bazı dizeleri bulamadınız mı? Burada daha fazlası var:
|
||||||
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>
|
||||||
|
@ -54,6 +54,12 @@
|
|||||||
<string name="call_add">Додати дзвінок</string>
|
<string name="call_add">Додати дзвінок</string>
|
||||||
<string name="conference_manage">Керувати конференц-викликом</string>
|
<string name="conference_manage">Керувати конференц-викликом</string>
|
||||||
<string name="conference">Конференц-виклик</string>
|
<string name="conference">Конференц-виклик</string>
|
||||||
|
<string name="audio_route_speaker">Speaker</string>
|
||||||
|
<string name="audio_route_earpiece">Earpiece</string>
|
||||||
|
<string name="audio_route_bluetooth">Bluetooth</string>
|
||||||
|
<string name="audio_route_wired_headset">Wired Headset</string>
|
||||||
|
<string name="audio_route_wired_or_earpiece">Wired or Earpiece</string>
|
||||||
|
<string name="choose_audio_route">Choose audio route</string>
|
||||||
<!-- Speed dial -->
|
<!-- Speed dial -->
|
||||||
<string name="speed_dial">Швидкий виклик</string>
|
<string name="speed_dial">Швидкий виклик</string>
|
||||||
<string name="manage_speed_dial">Управління швидким викликом</string>
|
<string name="manage_speed_dial">Управління швидким викликом</string>
|
||||||
|
@ -54,6 +54,12 @@
|
|||||||
<string name="call_add">添加通话</string>
|
<string name="call_add">添加通话</string>
|
||||||
<string name="conference_manage">管理电话会议</string>
|
<string name="conference_manage">管理电话会议</string>
|
||||||
<string name="conference">会议</string>
|
<string name="conference">会议</string>
|
||||||
|
<string name="audio_route_speaker">Speaker</string>
|
||||||
|
<string name="audio_route_earpiece">Earpiece</string>
|
||||||
|
<string name="audio_route_bluetooth">Bluetooth</string>
|
||||||
|
<string name="audio_route_wired_headset">Wired Headset</string>
|
||||||
|
<string name="audio_route_wired_or_earpiece">Wired or Earpiece</string>
|
||||||
|
<string name="choose_audio_route">Choose audio route</string>
|
||||||
<!-- Speed dial -->
|
<!-- Speed dial -->
|
||||||
<string name="speed_dial">快速拨号</string>
|
<string name="speed_dial">快速拨号</string>
|
||||||
<string name="manage_speed_dial">管理快速拨号</string>
|
<string name="manage_speed_dial">管理快速拨号</string>
|
||||||
@ -71,4 +77,4 @@
|
|||||||
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>
|
||||||
|
@ -54,6 +54,12 @@
|
|||||||
<string name="call_add">Add call</string>
|
<string name="call_add">Add call</string>
|
||||||
<string name="conference_manage">Manage conference call</string>
|
<string name="conference_manage">Manage conference call</string>
|
||||||
<string name="conference">Conference</string>
|
<string name="conference">Conference</string>
|
||||||
|
<string name="audio_route_speaker">Speaker</string>
|
||||||
|
<string name="audio_route_earpiece">Earpiece</string>
|
||||||
|
<string name="audio_route_bluetooth">Bluetooth</string>
|
||||||
|
<string name="audio_route_wired_headset">Wired Headset</string>
|
||||||
|
<string name="audio_route_wired_or_earpiece">Wired or Earpiece</string>
|
||||||
|
<string name="choose_audio_route">Choose audio route</string>
|
||||||
<!-- Speed dial -->
|
<!-- Speed dial -->
|
||||||
<string name="speed_dial">Speed dial</string>
|
<string name="speed_dial">Speed dial</string>
|
||||||
<string name="manage_speed_dial">Manage speed dial</string>
|
<string name="manage_speed_dial">Manage speed dial</string>
|
||||||
|
@ -58,6 +58,12 @@
|
|||||||
<string name="call_add">Add call</string>
|
<string name="call_add">Add call</string>
|
||||||
<string name="conference_manage">Manage conference call</string>
|
<string name="conference_manage">Manage conference call</string>
|
||||||
<string name="conference">Conference</string>
|
<string name="conference">Conference</string>
|
||||||
|
<string name="audio_route_speaker">Speaker</string>
|
||||||
|
<string name="audio_route_earpiece">Earpiece</string>
|
||||||
|
<string name="audio_route_bluetooth">Bluetooth</string>
|
||||||
|
<string name="audio_route_wired_headset">Wired Headset</string>
|
||||||
|
<string name="audio_route_wired_or_earpiece">Wired or Earpiece</string>
|
||||||
|
<string name="choose_audio_route">Choose audio route</string>
|
||||||
|
|
||||||
<!-- Speed dial -->
|
<!-- Speed dial -->
|
||||||
<string name="speed_dial">Speed dial</string>
|
<string name="speed_dial">Speed dial</string>
|
||||||
|
Reference in New Issue
Block a user