From b96c5e5433ef55df716cb9dc76a0cdd22adace0e Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Wed, 30 Oct 2019 14:47:54 -0700 Subject: [PATCH] wireguard: Update descriptions in form labels Signed-off-by: Sunil Mohan Adapa Reviewed-by: James Valleroy --- plinth/modules/wireguard/forms.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/plinth/modules/wireguard/forms.py b/plinth/modules/wireguard/forms.py index bb4cc0978..1c4059c1a 100644 --- a/plinth/modules/wireguard/forms.py +++ b/plinth/modules/wireguard/forms.py @@ -37,7 +37,8 @@ class AddServerForm(forms.Form): client_ip_address = forms.CharField( label=_('Client IP address provided by server'), strip=True, - help_text=_('Client IP address provided by server.')) + help_text=_('IP address assigned to the client on the VPN after ' + 'connecting to the endpoint.')) public_key = forms.CharField( label=_('Public key of the server'), strip=True, @@ -50,7 +51,7 @@ class AddServerForm(forms.Form): pre_shared_key = forms.CharField( label=_('Pre-shared key'), strip=True, required=False, - help_text=_('Optional: a shared secret key provided by the server to ' + help_text=_('Optional. A shared secret key provided by the server to ' 'add an additional layer of encryption.')) all_outgoing_traffic = forms.BooleanField(