Skip to content

Commit 1f6851d

Browse files
committed
Merge pull request certbot#1218 from stevedesmond-ca/master
improved language consistency in error/help messages
2 parents 1e8586e + edabce9 commit 1f6851d

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

letsencrypt/auth_handler.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -486,29 +486,29 @@ def is_preferred(offered_challb, satisfied,
486486

487487
_ERROR_HELP_COMMON = (
488488
"To fix these errors, please make sure that your domain name was entered "
489-
"correctly and the DNS A record(s) for that domain contains the "
489+
"correctly and the DNS A record(s) for that domain contain(s) the "
490490
"right IP address.")
491491

492492

493493
_ERROR_HELP = {
494494
"connection":
495495
_ERROR_HELP_COMMON + " Additionally, please check that your computer "
496-
"has publicly routable IP address and no firewalls are preventing the "
497-
"server from communicating with the client.",
496+
"has a publicly routable IP address and that no firewalls are preventing "
497+
"the server from communicating with the client.",
498498
"dnssec":
499499
_ERROR_HELP_COMMON + " Additionally, if you have DNSSEC enabled for "
500-
"your domain, please ensure the signature is valid.",
500+
"your domain, please ensure that the signature is valid.",
501501
"malformed":
502502
"To fix these errors, please make sure that you did not provide any "
503-
"invalid information to the client and try running Let's Encrypt "
503+
"invalid information to the client, and try running Let's Encrypt "
504504
"again.",
505505
"serverInternal":
506506
"Unfortunately, an error on the ACME server prevented you from completing "
507507
"authorization. Please try again later.",
508508
"tls":
509-
_ERROR_HELP_COMMON + " Additionally, please check that you have an up "
510-
"to date TLS configuration that allows the server to communicate with "
511-
"the Let's Encrypt client.",
509+
_ERROR_HELP_COMMON + " Additionally, please check that you have an "
510+
"up-to-date TLS configuration that allows the server to communicate "
511+
"with the Let's Encrypt client.",
512512
"unauthorized": _ERROR_HELP_COMMON,
513513
"unknownHost": _ERROR_HELP_COMMON,
514514
}

0 commit comments

Comments
 (0)