wireguard: Update descriptions in form labels

Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
This commit is contained in:
Sunil Mohan Adapa 2019-10-30 14:47:54 -07:00 committed by James Valleroy
parent 39fade1095
commit b96c5e5433
No known key found for this signature in database
GPG Key ID: 77C0C75E7B650808

View File

@ -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(