From edabce9a96bd2a91a84e6f91d5e729808d4ceea4 Mon Sep 17 00:00:00 2001 From: Steve Desmond Date: Fri, 30 Oct 2015 14:47:23 -0400 Subject: [PATCH] improved language consistency in error/help messages --- letsencrypt/auth_handler.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/letsencrypt/auth_handler.py b/letsencrypt/auth_handler.py index 5f6365167..4f2a6fa3e 100644 --- a/letsencrypt/auth_handler.py +++ b/letsencrypt/auth_handler.py @@ -486,29 +486,29 @@ def is_preferred(offered_challb, satisfied, _ERROR_HELP_COMMON = ( "To fix these errors, please make sure that your domain name was entered " - "correctly and the DNS A record(s) for that domain contains the " + "correctly and the DNS A record(s) for that domain contain(s) the " "right IP address.") _ERROR_HELP = { "connection": _ERROR_HELP_COMMON + " Additionally, please check that your computer " - "has publicly routable IP address and no firewalls are preventing the " - "server from communicating with the client.", + "has a publicly routable IP address and that no firewalls are preventing " + "the server from communicating with the client.", "dnssec": _ERROR_HELP_COMMON + " Additionally, if you have DNSSEC enabled for " - "your domain, please ensure the signature is valid.", + "your domain, please ensure that the signature is valid.", "malformed": "To fix these errors, please make sure that you did not provide any " - "invalid information to the client and try running Let's Encrypt " + "invalid information to the client, and try running Let's Encrypt " "again.", "serverInternal": "Unfortunately, an error on the ACME server prevented you from completing " "authorization. Please try again later.", "tls": - _ERROR_HELP_COMMON + " Additionally, please check that you have an up " - "to date TLS configuration that allows the server to communicate with " - "the Let's Encrypt client.", + _ERROR_HELP_COMMON + " Additionally, please check that you have an " + "up-to-date TLS configuration that allows the server to communicate " + "with the Let's Encrypt client.", "unauthorized": _ERROR_HELP_COMMON, "unknownHost": _ERROR_HELP_COMMON, }