summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/leap/config/providerconfig.py5
-rw-r--r--src/leap/gui/mainwindow.py8
2 files changed, 8 insertions, 5 deletions
diff --git a/src/leap/config/providerconfig.py b/src/leap/config/providerconfig.py
index 68099ad4..6bbd7422 100644
--- a/src/leap/config/providerconfig.py
+++ b/src/leap/config/providerconfig.py
@@ -93,7 +93,10 @@ class ProviderConfig(BaseConfig):
Returns a string with the services supported by the current
provider, ready to be shown to the user.
"""
- return ", ".join(self.get_services())
+ services_str = ", ".join(self.get_services())
+ services_str = services_str.replace(
+ "openvpn", "Encrypted Internet")
+ return services_str
def get_ca_cert_path(self, about_to_download=False):
"""
diff --git a/src/leap/gui/mainwindow.py b/src/leap/gui/mainwindow.py
index 5a303830..cf20c6eb 100644
--- a/src/leap/gui/mainwindow.py
+++ b/src/leap/gui/mainwindow.py
@@ -477,8 +477,8 @@ class MainWindow(QtGui.QMainWindow):
default_provider = self._settings.get_defaultprovider()
if default_provider is None:
- logger.info("Cannot autostart EIP because there's no default "
- "provider configured")
+ logger.info("Cannot autostart Encrypted Internet because there is "
+ "no default provider configured")
return
self._action_eip_provider.setText(default_provider)
@@ -986,7 +986,7 @@ class MainWindow(QtGui.QMainWindow):
error=True)
except OpenVPNNotFoundException:
self._status_panel.set_eip_status(
- self.tr("We couldn't find openvpn"),
+ self.tr("We couldn't find openvpn binary"),
error=True)
except VPNLauncherException as e:
self._status_panel.set_eip_status("%s" % (e,), error=True)
@@ -1090,7 +1090,7 @@ class MainWindow(QtGui.QMainWindow):
else:
if data[self._eip_bootstrapper.PASSED_KEY]:
self._status_panel.set_eip_status(
- self.tr("Could not load EIP Configuration"),
+ self.tr("Could not load Encrypted Internet Configuration"),
error=True)
else:
self._status_panel.set_eip_status(