diff options
| -rw-r--r-- | app/src/main/java/se/leap/bitmaskclient/base/fragments/CensorshipCircumventionFragment.java | 4 | ||||
| -rw-r--r-- | app/src/main/res/values-cs/strings.xml | 2 | ||||
| -rw-r--r-- | app/src/main/res/values/strings.xml | 2 | 
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>  | 
