diff options
author | cyBerta <cyberta@riseup.net> | 2021-11-26 11:03:04 +0100 |
---|---|---|
committer | cyBerta <cyberta@riseup.net> | 2021-11-26 11:03:04 +0100 |
commit | 7c5e7d7a76ca84a320ef66f636276cb5e03a5e0c (patch) | |
tree | 406ff7b2e2255955bce378fcfaf9e1d105439b4a /app/src/main/java/se | |
parent | c233ed6544cae0d89c08d0a9a7a24fa265ef30f4 (diff) |
use already translated strings
Diffstat (limited to 'app/src/main/java/se')
-rw-r--r-- | app/src/main/java/se/leap/bitmaskclient/base/fragments/EipFragment.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/src/main/java/se/leap/bitmaskclient/base/fragments/EipFragment.java b/app/src/main/java/se/leap/bitmaskclient/base/fragments/EipFragment.java index e9300584..45c6307a 100644 --- a/app/src/main/java/se/leap/bitmaskclient/base/fragments/EipFragment.java +++ b/app/src/main/java/se/leap/bitmaskclient/base/fragments/EipFragment.java @@ -419,7 +419,7 @@ public class EipFragment extends Fragment implements Observer { if (eipStatus.isConnecting() ) { setMainButtonEnabled(true); showConnectionTransitionLayout(true); - locationButton.setText(getString(R.string.finding_best_connection)); + locationButton.setText(getString(R.string.eip_status_start_pending)); locationButton.setLocationLoad(UNKNOWN); locationButton.showBridgeIndicator(false); locationButton.showRecommendedIndicator(false); @@ -450,7 +450,7 @@ public class EipFragment extends Fragment implements Observer { } else if (eipStatus.isDisconnected() && reconnectingWithDifferentGateway()) { showConnectionTransitionLayout(true); // showRetryToast(activity); - locationButton.setText(getString(R.string.finding_best_connection)); + locationButton.setText(getString(R.string.eip_status_start_pending)); locationButton.setLocationLoad(UNKNOWN); locationButton.showBridgeIndicator(false); locationButton.showRecommendedIndicator(false); @@ -464,7 +464,7 @@ public class EipFragment extends Fragment implements Observer { setMainButtonEnabled(true); mainButton.updateState(true, false, true); colorBackgroundALittle(); - locationButton.setText(getString(R.string.finding_best_connection)); + locationButton.setText(getString(R.string.no_location)); locationButton.setLocationLoad(UNKNOWN); locationButton.showBridgeIndicator(false); locationButton.showRecommendedIndicator(false); |