summaryrefslogtreecommitdiff
path: root/app/src
diff options
context:
space:
mode:
authorcyBerta <cyberta@riseup.net>2024-12-09 03:53:14 +0100
committercyberta <cyberta@riseup.net>2024-12-11 00:08:30 +0000
commit3eb2fac776cc9222a756dcf474eaae6d386a1de3 (patch)
tree1ebcb46d7d2b767e5fee417a378972355b7abb3b /app/src
parent24acd81be534c15cd9f79f4077df5869c4115278 (diff)
change 'Any' to 'Automatically Select' in Circumvention Settings screen
Diffstat (limited to 'app/src')
-rw-r--r--app/src/main/java/se/leap/bitmaskclient/base/fragments/CensorshipCircumventionFragment.java4
-rw-r--r--app/src/main/res/values-cs/strings.xml2
-rw-r--r--app/src/main/res/values/strings.xml2
3 files changed, 4 insertions, 4 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 e97a8106..37f9eb18 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.any));
+ noneRadioButton.setText(getText(R.string.automatically_select));
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.any));
+ noneRadioButton.setText(getText(R.string.automatically_select));
noneRadioButton.setChecked(!getUseObfs4() && !getUseObfs4Kcp());
noneRadioButton.setId(TUNNELING_NONE);
binding.tunnelingRadioGroup.addView(noneRadioButton);
diff --git a/app/src/main/res/values-cs/strings.xml b/app/src/main/res/values-cs/strings.xml
index 72c88f03..7a90b78d 100644
--- a/app/src/main/res/values-cs/strings.xml
+++ b/app/src/main/res/values-cs/strings.xml
@@ -257,7 +257,7 @@
<string name="censorship_circumvention_description">Ruční nastavení vyžaduje technické znalosti. Postupujte opatrně.</string>
<string name="discovery">Objevování</string>
<string name="discovery_description">Cenzoři mohou blokovat zjišťování kritických informací o konfiguraci od vašeho poskytovatele. Chcete-li blokování obejít, zvolte možnost obcházení.</string>
- <string name="any">Jakékoli (automatický výběr)</string>
+ <string name="automatically_select">Automatický výběr</string>
<string name="invite_proxy">Proxy pozvánek</string>
<string name="tunnelling">Tunelování</string>
<string name="tunnelling_description">Cenzoři mohou blokovat přístup k otevřenému internetu. Chcete-li blokování obejít, zvolte možnost obcházení.</string>
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index b6ed322b..8c73c269 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="any">Any (automagically selected)</string>
+ <string name="automatically_select">Automatically select</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>