diff options
| author | Andrej Mihajlov <and@mullvad.net> | 2019-09-16 12:25:47 +0200 |
|---|---|---|
| committer | Andrej Mihajlov <and@mullvad.net> | 2019-09-17 09:51:13 +0200 |
| commit | 71b7697f125d1430ef1ad20606e8af43aa010ee6 (patch) | |
| tree | 294a02b5100b88243fe3e534dc9efe62af241414 /gui/src | |
| parent | 833a0073163f28d79b85e1cf83ebf49788eae6b0 (diff) | |
| download | mullvadvpn-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.tsx | 6 |
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> |
