mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 11:28:06 +00:00
Change transfer call action label when more than one call
This commit is contained in:
parent
5e50ef4045
commit
2686f80502
3 changed files with 4 additions and 3 deletions
|
|
@ -172,7 +172,7 @@
|
|||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingBottom="15dp"
|
||||
android:text="@string/call_action_transfer"
|
||||
android:text="@{callsViewModel.callsCount == 1 ? @string/call_action_blind_transfer : @string/call_action_attended_transfer, default=@string/call_action_blind_transfer}"
|
||||
app:layout_constraintEnd_toStartOf="@id/new_call_label"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@id/transfer"/>
|
||||
|
|
|
|||
|
|
@ -171,7 +171,7 @@
|
|||
android:onClick="@{() -> viewModel.transferClicked()}"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/call_action_transfer"
|
||||
android:text="@{callsViewModel.callsCount == 1 ? @string/call_action_blind_transfer : @string/call_action_attended_transfer, default=@string/call_action_blind_transfer}"
|
||||
app:layout_constraintTop_toBottomOf="@id/transfer"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintEnd_toStartOf="@id/new_call_label"/>
|
||||
|
|
|
|||
|
|
@ -296,7 +296,8 @@
|
|||
|
||||
<string name="operation_in_progress_overlay">Operation in progress, please wait</string>
|
||||
|
||||
<string name="call_action_transfer">Transfer</string>
|
||||
<string name="call_action_blind_transfer">Transfer</string>
|
||||
<string name="call_action_attended_transfer">Attended transfer</string>
|
||||
<string name="call_action_start_new_call">New call</string>
|
||||
<string name="call_action_go_to_calls_list">Calls list</string>
|
||||
<string name="call_action_show_dialer">Dialer</string>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue