summaryrefslogtreecommitdiffhomepage
path: root/gui/src
diff options
context:
space:
mode:
authorAndrej Mihajlov <and@mullvad.net>2019-09-16 12:25:47 +0200
committerAndrej Mihajlov <and@mullvad.net>2019-09-17 09:51:13 +0200
commit71b7697f125d1430ef1ad20606e8af43aa010ee6 (patch)
tree294a02b5100b88243fe3e534dc9efe62af241414 /gui/src
parent833a0073163f28d79b85e1cf83ebf49788eae6b0 (diff)
downloadmullvadvpn-71b7697f125d1430ef1ad20606e8af43aa010ee6.tar.xz
mullvadvpn-71b7697f125d1430ef1ad20606e8af43aa010ee6.zip
Use alt description only when allowBridgeSelection = true
Diffstat (limited to 'gui/src')
-rw-r--r--gui/src/renderer/components/SelectLocation.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/gui/src/renderer/components/SelectLocation.tsx b/gui/src/renderer/components/SelectLocation.tsx
index 7a1340c44f..fe0e66b237 100644
--- a/gui/src/renderer/components/SelectLocation.tsx
+++ b/gui/src/renderer/components/SelectLocation.tsx
@@ -75,14 +75,14 @@ export default class SelectLocation extends Component<IProps> {
{messages.pgettext('select-location-view', 'Select location')}
</HeaderTitle>
<HeaderSubTitle>
- {this.props.locationScope === LocationScope.relay
+ {this.props.allowBridgeSelection
? messages.pgettext(
'select-location-view',
- 'While connected, your real location is masked with a private and secure location in the selected region',
+ 'While connected, your traffic will be routed through two secure locations, the entry point (a bridge server) and the exit point (a VPN server).',
)
: messages.pgettext(
'select-location-view',
- 'While connected, your traffic will be routed through two secure locations, the entry point (a bridge server) and the exit point (a VPN server)',
+ 'While connected, your real location is masked with a private and secure location in the selected region.',
)}
</HeaderSubTitle>
</SettingsHeader>