summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/src/main/java/se/leap/bitmaskclient/base/fragments/CensorshipCircumventionFragment.java4
-rw-r--r--app/src/main/res/values/strings.xml2
2 files changed, 3 insertions, 3 deletions
diff --git a/app/src/main/java/se/leap/bitmaskclient/base/fragments/CensorshipCircumventionFragment.java b/app/src/main/java/se/leap/bitmaskclient/base/fragments/CensorshipCircumventionFragment.java
index 7ca93f2b..e97a8106 100644
--- a/app/src/main/java/se/leap/bitmaskclient/base/fragments/CensorshipCircumventionFragment.java
+++ b/app/src/main/java/se/leap/bitmaskclient/base/fragments/CensorshipCircumventionFragment.java
@@ -70,7 +70,7 @@ public class CensorshipCircumventionFragment extends Fragment {
private void initDiscovery() {
RadioButton noneRadioButton = new RadioButton(binding.getRoot().getContext());
- noneRadioButton.setText(getText(R.string.none));
+ noneRadioButton.setText(getText(R.string.any));
noneRadioButton.setId(DISCOVERY_NONE);
noneRadioButton.setChecked(!(hasSnowflakePrefs() && getUseSnowflake()) && !ProviderObservable.getInstance().getCurrentProvider().hasIntroducer());
binding.discoveryRadioGroup.addView(noneRadioButton);
@@ -113,7 +113,7 @@ public class CensorshipCircumventionFragment extends Fragment {
private void initTunneling() {
RadioButton noneRadioButton = new RadioButton(binding.getRoot().getContext());
- noneRadioButton.setText(getText(R.string.none));
+ noneRadioButton.setText(getText(R.string.any));
noneRadioButton.setChecked(!getUseObfs4() && !getUseObfs4Kcp());
noneRadioButton.setId(TUNNELING_NONE);
binding.tunnelingRadioGroup.addView(noneRadioButton);
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index 656a8ea5..b6ed322b 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -256,7 +256,7 @@
<string name="censorship_circumvention_description">Manual configuration requires technical understanding. Proceed with caution.</string>
<string name="discovery">Discovery</string>
<string name="discovery_description">Censors can block the discovery of critical configuration information from your provider. Choose a circumvention option to bypass blocks.</string>
- <string name="none">None</string>
+ <string name="any">Any (automagically selected)</string>
<string name="invite_proxy">Invite Proxy</string>
<string name="tunnelling">Tunneling</string>
<string name="tunnelling_description">Censors can block access to the open internet. Choose a circumvention option to bypass blocks.</string>