From 88fe874ce3d46bfe2ae5c9ed205869b4def134a1 Mon Sep 17 00:00:00 2001 From: Rupert Germann Date: Fri, 21 Aug 2009 12:42:37 +0000 Subject: [PATCH] Fixed bug #11699: Menu entries in template modules miss translation (Thanks to Christopher Stelmaszyk) git-svn-id: https://svn.typo3.org/TYPO3v4/Core/trunk@5809 709f56b5-9817-0410-a4d7-c38de5d9e867 --- ChangeLog | 1 + typo3/sysext/tstemplate/ts/locallang.xml | 4 ++++ typo3/sysext/tstemplate_analyzer/ext_tables.php | 2 +- typo3/sysext/tstemplate_ceditor/ext_tables.php | 2 +- typo3/sysext/tstemplate_info/ext_tables.php | 2 +- typo3/sysext/tstemplate_objbrowser/ext_tables.php | 2 +- 6 files changed, 9 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 9244fa2f5f03..b25f6a3810fc 100755 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,7 @@ 2009-08-21 Rupert Germann * Fixed bug #11747: Performance improvement: speed up list module by improving internal handling of references + * Fixed bug #11699: Menu entries in template modules miss translation (Thanks to Christopher Stelmaszyk) 2009-08-20 Rupert Germann diff --git a/typo3/sysext/tstemplate/ts/locallang.xml b/typo3/sysext/tstemplate/ts/locallang.xml index 633ee1f013ef..4ed0b3be2743 100644 --- a/typo3/sysext/tstemplate/ts/locallang.xml +++ b/typo3/sysext/tstemplate/ts/locallang.xml @@ -7,6 +7,10 @@ + + + + diff --git a/typo3/sysext/tstemplate_analyzer/ext_tables.php b/typo3/sysext/tstemplate_analyzer/ext_tables.php index 33ffdb1c04b5..ca8fb98edffb 100644 --- a/typo3/sysext/tstemplate_analyzer/ext_tables.php +++ b/typo3/sysext/tstemplate_analyzer/ext_tables.php @@ -6,7 +6,7 @@ if (TYPO3_MODE=='BE') { 'web_ts', 'tx_tstemplateanalyzer', t3lib_extMgm::extPath($_EXTKEY).'class.tx_tstemplateanalyzer.php', - 'Template Analyzer' + 'LLL:EXT:tstemplate/ts/locallang.xml:templateAnalyzer' ); } ?> \ No newline at end of file diff --git a/typo3/sysext/tstemplate_ceditor/ext_tables.php b/typo3/sysext/tstemplate_ceditor/ext_tables.php index 3ecd21971525..9b0bdb731e7e 100644 --- a/typo3/sysext/tstemplate_ceditor/ext_tables.php +++ b/typo3/sysext/tstemplate_ceditor/ext_tables.php @@ -6,7 +6,7 @@ if (TYPO3_MODE=='BE') { 'web_ts', 'tx_tstemplateceditor', t3lib_extMgm::extPath($_EXTKEY).'class.tx_tstemplateceditor.php', - 'Constant Editor' + 'LLL:EXT:tstemplate/ts/locallang.xml:constantEditor' ); } ?> \ No newline at end of file diff --git a/typo3/sysext/tstemplate_info/ext_tables.php b/typo3/sysext/tstemplate_info/ext_tables.php index 8070e77b0063..e5b1997cded5 100644 --- a/typo3/sysext/tstemplate_info/ext_tables.php +++ b/typo3/sysext/tstemplate_info/ext_tables.php @@ -6,7 +6,7 @@ if (TYPO3_MODE=='BE') { 'web_ts', 'tx_tstemplateinfo', t3lib_extMgm::extPath($_EXTKEY).'class.tx_tstemplateinfo.php', - 'Info/Modify' + 'LLL:EXT:tstemplate/ts/locallang.xml:infoModify' ); } ?> \ No newline at end of file diff --git a/typo3/sysext/tstemplate_objbrowser/ext_tables.php b/typo3/sysext/tstemplate_objbrowser/ext_tables.php index 5bba420e687a..bed49684d77a 100644 --- a/typo3/sysext/tstemplate_objbrowser/ext_tables.php +++ b/typo3/sysext/tstemplate_objbrowser/ext_tables.php @@ -6,7 +6,7 @@ if (TYPO3_MODE=='BE') { 'web_ts', 'tx_tstemplateobjbrowser', t3lib_extMgm::extPath($_EXTKEY).'class.tx_tstemplateobjbrowser.php', - 'TypoScript Object Browser' + 'LLL:EXT:tstemplate/ts/locallang.xml:objectBrowser' ); } ?> \ No newline at end of file -- 2.20.1