diff --git a/app/templates/404.html b/app/templates/404.html index 5d44ec1..7dc41e3 100644 --- a/app/templates/404.html +++ b/app/templates/404.html @@ -1,13 +1,12 @@ {% extends "base.html" %} {% block title %} - Page not found + {{ _("Page not found") }} {% endblock %} {% block content %} -

Page not found

+

{{ self.title() }}

- That page could not be found. The link may be broken, the page may have been deleted, - or you may not have access to it. + {{ _("That page could not be found. The link may be broken, the page may have been deleted, or you may not have access to it.") }}

{% endblock %} diff --git a/app/templates/base.html b/app/templates/base.html index 0d5c687..beb26ec 100644 --- a/app/templates/base.html +++ b/app/templates/base.html @@ -121,16 +121,24 @@ @@ -225,7 +235,7 @@