diff --git a/server/src/uds/templates/uds/html5/download_client.html b/server/src/uds/templates/uds/html5/download_client.html index 93f87e2a6..deeac384d 100644 --- a/server/src/uds/templates/uds/html5/download_client.html +++ b/server/src/uds/templates/uds/html5/download_client.html @@ -9,24 +9,24 @@
{% trans 'In order to be able to execute UDS services, you need to have UDS plugin installed.' %}
+{% trans 'In order to be able to execute UDS services, you need to download and install UDS Plugin.' %}
{% trans 'In case that your platform has been incorrectly detected, you can download manually the version required for your Operating System' %}
+{% trans 'In case that your operating system has not been correctly detected, you can download manually from' %}
{% if os != 'linux' %}
- {% trans 'Linux UDS plugin' %} + {% trans 'Download Linux UDS plugin' %}
{% endif %} {% if os != 'windows' %}- {% trans 'Windows UDS plugin' %} + {% trans 'Download Windows UDS plugin' %}
{% endif %} {% if os != 'mac' %}- {% trans 'Mac OSX (>10.5) UDS plugin' %} + {% trans 'Download Mac OS X (>10.5) UDS plugin' %}
{% endif %} diff --git a/server/src/uds/templatetags/html5.py b/server/src/uds/templatetags/html5.py index 91b00d146..6b2655a5f 100644 --- a/server/src/uds/templatetags/html5.py +++ b/server/src/uds/templatetags/html5.py @@ -211,11 +211,11 @@ def ifbrowser(parser, token): @register.filter(name='osName') def osName(os): if os == 'windows': - return 'Windows platform' + return 'Windows' elif os == 'linux': - return 'Linux platform' + return 'Linux' else: - return 'Mac OSX platform' + return 'Mac OS X' @register.filter(name='pluginDownloadUrl')