From 44b5cc311ccd18685e306b7051301eb1e46c6f52 Mon Sep 17 00:00:00 2001 From: Thijs Kinkhorst <thijs@kinkhorst.com> Date: Mon, 22 Aug 2022 14:48:15 +0000 Subject: [PATCH] Fix debug info text translation --- templates/error.twig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/error.twig b/templates/error.twig index 9f9bcf907..041139615 100644 --- a/templates/error.twig +++ b/templates/error.twig @@ -27,8 +27,8 @@ {# print out exception only if the exception is available #} {% if showerrors -%} - <h2>{{'{errors:debuginfo_header}' | trans}}</h2> - <p>{{'{errors:debuginfo_text}' | trans}}</p> + <h2>{{'Debug information' | trans}}</h2> + <p>{{'The debug information below may be of interest to the administrator / help desk:' | trans}}</p> <div class="code-box code-box-content"> <pre>{{ error.exceptionMsg }}<br />{{ error.exceptionTrace }} </pre> -- GitLab