From fc14fa453174d5804b656194879c2d2c528e1ea2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Christian=20E=C3=9Fl?= <indy.essl@gmail.com>
Date: Fri, 21 Feb 2020 21:36:42 +0100
Subject: [PATCH] [BUGFIX] Fix missing labels in reports module

The reports module was missing some descriptions and headers, because
the localization files were wrongly referenced.

Resolves: #90476
Releases: master, 9.5
Change-Id: I902c25cb404c607913099663ac599dc5e881f1c3
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/63359
Tested-by: TYPO3com <noreply@typo3.com>
Tested-by: Oliver Bartsch <bo@cedev.de>
Tested-by: Daniel Goerz <daniel.goerz@posteo.de>
Reviewed-by: Oliver Bartsch <bo@cedev.de>
Reviewed-by: Daniel Goerz <daniel.goerz@posteo.de>
---
 .../Resources/Private/Templates/ServicesListReport.html     | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/typo3/sysext/reports/Resources/Private/Templates/ServicesListReport.html b/typo3/sysext/reports/Resources/Private/Templates/ServicesListReport.html
index 741f4570f35f..bb1501ffbc08 100644
--- a/typo3/sysext/reports/Resources/Private/Templates/ServicesListReport.html
+++ b/typo3/sysext/reports/Resources/Private/Templates/ServicesListReport.html
@@ -1,15 +1,15 @@
 <p class="lead">
-    <f:translate key="report_explanation" />
+    <f:translate key="LLL:EXT:reports/Resources/Private/Language/locallang_servicereport.xlf:report_explanation" />
 </p>
 <p class="help">
-    <f:translate key="externals_explanation" />
+    <f:translate key="LLL:EXT:reports/Resources/Private/Language/locallang_servicereport.xlf:externals_explanation" />
 </p>
 
 <f:for each="{servicesList}" as="serviceList">
     <f:render section="ServiceTypeList" arguments="{serviceList: serviceList}" />
 </f:for>
 
-<h3><f:translate key="search_paths" /></h3>
+<h3><f:translate key="LLL:EXT:reports/Resources/Private/Language/locallang_servicereport.xlf:search_paths" /></h3>
 <f:if condition="{searchPaths}">
     <f:then>
         <table class="table table-striped table-hover tx_sv_reportlist">
-- 
GitLab