diff options
author | Norbel AMBANUMBEN <aanorbel@gmail.com> | 2024-11-27 18:45:50 +0100 |
---|---|---|
committer | cyBerta <cyberta@riseup.net> | 2024-11-28 22:53:30 +0100 |
commit | cb302ca754324620c1f305f38b2705691772801b (patch) | |
tree | 71cbee152132f1b24b31a85d2f6e9cd77ffc78fe | |
parent | 07e0d3f5400532ef371769527ba4477bc70a6483 (diff) |
chore: update app text
-rw-r--r-- | app/src/main/java/se/leap/bitmaskclient/base/fragments/CensorshipCircumventionFragment.java | 4 | ||||
-rw-r--r-- | app/src/main/res/values/strings.xml | 2 |
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> |