mirror of
https://github.com/oxen-io/session-android.git
synced 2023-12-14 02:53:01 +01:00
Explain why SMS fallback is disabled when it is
This commit is contained in:
parent
25e03b3579
commit
a0aaa7d724
2 changed files with 6 additions and 1 deletions
|
@ -690,7 +690,8 @@
|
|||
<string name="preferences__use_the_data_channel_for_communication_with_other_textsecure_users">
|
||||
Increase privacy and avoid SMS fees by using the data channel for communication with other TextSecure users
|
||||
</string>
|
||||
<string name="preferences__allow_sms_fallback">Allow SMS Fallback</string>
|
||||
<string name="preferences__allow_sms_fallback">SMS Fallback</string>
|
||||
<string name="preferences__allow_sms_fallback_disabled_reason">TextSecure is currently your default SMS app. Please set another default SMS app first to change this preference.</string>
|
||||
<string name="preferences__send_and_receive_sms_messages_when_push_is_not_available">Send and receive SMS messages when push is not available</string>
|
||||
<string name="preferences__refresh_push_directory">Refresh Push Directory</string>
|
||||
|
||||
|
|
|
@ -210,8 +210,10 @@ public class ApplicationPreferencesActivity extends PassphraseRequiredSherlockPr
|
|||
if (Util.isDefaultSmsProvider(this) || !TextSecurePreferences.isPushRegistered(this)) {
|
||||
allowSmsPreference.setEnabled(false);
|
||||
allowSmsPreference.setChecked(true);
|
||||
allowSmsPreference.setSummary(R.string.preferences__allow_sms_fallback_disabled_reason);
|
||||
} else {
|
||||
allowSmsPreference.setEnabled(true);
|
||||
allowSmsPreference.setSummary(R.string.preferences__send_and_receive_sms_messages_when_push_is_not_available);
|
||||
}
|
||||
} else {
|
||||
if (TextSecurePreferences.isInterceptAllMmsEnabled(this) ||
|
||||
|
@ -220,8 +222,10 @@ public class ApplicationPreferencesActivity extends PassphraseRequiredSherlockPr
|
|||
{
|
||||
allowSmsPreference.setEnabled(false);
|
||||
allowSmsPreference.setChecked(true);
|
||||
allowSmsPreference.setSummary(R.string.preferences__allow_sms_fallback_disabled_reason);
|
||||
} else {
|
||||
allowSmsPreference.setEnabled(true);
|
||||
allowSmsPreference.setSummary(R.string.preferences__send_and_receive_sms_messages_when_push_is_not_available);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue