Added Redirect Mode account setting that tells if call redirect requests

(3xx responses) can be followed automatically or if confirmation
  needs to be asked
This commit is contained in:
Juha Heinanen
2023-07-02 15:20:06 +03:00
parent 29708ea58f
commit 2394f3fba1
9 changed files with 125 additions and 3 deletions
@@ -368,6 +368,21 @@
android:paddingTop="8dp" >
</Spinner>
<TextView
android:id="@+id/RedirectModeTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingTop="14dp"
android:textSize="18sp"
android:text="@string/redirect_mode" >
</TextView>
<Spinner
android:id="@+id/redirectModeSpinner"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="8dp" >
</Spinner>
<TextView
android:id="@+id/VoicemailUriTitle"
android:layout_width="wrap_content"
+6
View File
@@ -186,6 +186,9 @@
<string name="answer_mode_help">Valitsee tulevien puheluiden vastaustavan.</string>
<string name="manual">Manuaalinen</string>
<string name="auto">Automaattinen</string>
<string name="redirect_mode">Uudelleenohjaustapa</string>
<string name="redirect_mode_help">Valitsee toteutetaanko puhelun uudelleenohjauspyyntö
automaattisesti vai kysytäänkö vahvistusta.</string>
<string name="voicemail_uri">Puhepostin URI</string>
<string name="voicemain_uri_help">SIP URI, jota käytetään
puhepostiviestien kuunteluun. Jos URI:a ei ole annettu, tietoa
@@ -521,6 +524,9 @@
<string name="verify_sas">Todennatko SAS:n &lt;%1$s&gt;\?</string>
<string name="transfer_request">Siirtopyyntö</string>
<string name="transfer_request_query">Hyväksytkö tämän puhelun siirron kohteeseen \'%1$s\'\?</string>
<string name="redirect_notice">Automaattinen uudelleenohjaus kohteeseen \'%1$s\'\</string>
<string name="redirect_request">Uudelleenohjauspyyntö</string>
<string name="redirect_request_query">Hyväksytkö puhelun uudelleenohjauksen kohteeseen \'%1$s\'\?</string>
<string name="call_failed">Puhelu epäonnistui</string>
<string name="call_closed">Puhelu on päättynyt</string>
<string name="call_not_secure">Tämä puhelu EI ole turvallinen!</string>
+6
View File
@@ -176,6 +176,9 @@
<string name="dtmf_info">SIP INFO Requests</string>
<string name="answer_mode">Answer Mode</string>
<string name="answer_mode_help">Selects how incoming calls are answered.</string>
<string name="redirect_mode">Redirect Mode</string>
<string name="redirect_mode_help">Selects if call redirect request is followed automatically or
if confirmation is requested.</string>
<string name="manual">Manual</string>
<string name="auto">Automatic</string>
<string name="voicemail_uri">Voicemail URI</string>
@@ -494,6 +497,9 @@
<string name="verify_sas">Do you want to verify SAS &lt;%1$s&gt;\?</string>
<string name="transfer_request">Transfer Request</string>
<string name="transfer_request_query">Do you accept to transfer this call to \'%1$s\'\?</string>
<string name="redirect_notice">Automatic redirection to \'%1$s\'\</string>
<string name="redirect_request">Redirect Request</string>
<string name="redirect_request_query">Do you accept to call redirection to \'%1$s\'\?</string>
<string name="call_failed">Call failed</string>
<string name="call_closed">Call is closed</string>
<string name="call_not_secure">This call is NOT secure!</string>