From e4bbf74fd92c46f2d79dae8574b325b40530da86 Mon Sep 17 00:00:00 2001 From: Georg Ringer <georg.ringer@gmail.com> Date: Tue, 28 Nov 2017 07:59:17 +0100 Subject: [PATCH] [BUGFIX] Use correct language file in element information popup Use the correct language file which changed by accident during the fluid transformation. Resolves: #83126 Releases: master, 8.7 Change-Id: I9da27976ac3c72a5c1161adf605d10fbf422bf6e Reviewed-on: https://review.typo3.org/54812 Tested-by: TYPO3com <no-reply@typo3.com> Reviewed-by: Joerg Boesche <typo3@joergboesche.de> Tested-by: Joerg Boesche <typo3@joergboesche.de> Reviewed-by: Wouter Wolters <typo3@wouterwolters.nl> Tested-by: Wouter Wolters <typo3@wouterwolters.nl> --- .../Private/Templates/ContentElement/ElementInformation.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/typo3/sysext/backend/Resources/Private/Templates/ContentElement/ElementInformation.html b/typo3/sysext/backend/Resources/Private/Templates/ContentElement/ElementInformation.html index 5a19c67795ab..1c1884ead6c1 100644 --- a/typo3/sysext/backend/Resources/Private/Templates/ContentElement/ElementInformation.html +++ b/typo3/sysext/backend/Resources/Private/Templates/ContentElement/ElementInformation.html @@ -184,7 +184,7 @@ <f:section name="action"> <div class="btn-group" role="group"> <f:if condition="{line.webListUrl}"> - <a class="btn btn-default btn-sm" href="#" onclick="{line.viewOnClick}" title="{f:translate(key: 'LLL:EXT:lang/Resources/Private/Language/locallang_common.xlf:labels.showPage')}"> + <a class="btn btn-default btn-sm" href="#" onclick="{line.viewOnClick}" title="{f:translate(key: 'LLL:EXT:lang/Resources/Private/Language/locallang_core.xlf:labels.showPage')}"> <core:icon identifier="actions-document-view" size="small" /> </a> </f:if> @@ -199,7 +199,7 @@ </div> <f:if condition="{line.webListUrl}"> <div class="btn-group" role="group"> - <a class="btn btn-default btn-sm" href="{line.webListUrl}" title="{f:translate(key: 'LLL:EXT:lang/Resources/Private/Language/locallang_common.xlf:labels.showList')}"> + <a class="btn btn-default btn-sm" href="{line.webListUrl}" title="{f:translate(key: 'LLL:EXT:lang/Resources/Private/Language/locallang_core.xlf:labels.showList')}"> <core:icon identifier="actions-system-list-open" size="small" /> </a> </div> -- GitLab