Replace "Get the newest version at"

This commit is contained in:
Chris Mayo 2021-12-06 19:36:22 +00:00
parent b6d97be46c
commit d08f6a0730
3 changed files with 3 additions and 3 deletions

View file

@ -382,7 +382,7 @@ class _Logger(abc.ABC):
% {"app": configuration.AppName, "time": strformat.strtime(self.starttime)}
)
self.comment(
_("Get the newest version at %(url)s") % {'url': configuration.Url}
_("Read the documentation at %(url)s") % {'url': configuration.Url}
)
self.comment(
_("Write comments and bugs to %(url)s") % {'url': configuration.SupportUrl}

View file

@ -398,7 +398,7 @@ class HtmlLogger(_Logger):
'</blockquote><br/><hr><small>' + configuration.HtmlAppInfo + "<br/>"
)
self.writeln(
_("Get the newest version at %s")
_("Read the documentation at %s")
% (
'<a href="'
+ configuration.Url

View file

@ -97,7 +97,7 @@ class TextLogger(_Logger):
self.writeln(configuration.Copyright)
self.writeln(configuration.Freeware)
self.writeln(
_("Get the newest version at %(url)s") % {'url': configuration.Url}
_("Read the documentation at %(url)s") % {'url': configuration.Url}
)
self.writeln(
_("Write comments and bugs to %(url)s") % {'url': configuration.SupportUrl}