Project

General

Profile

Feature #98394

Updated by Daniel Siepmann over 1 year ago

TYPO3 will try to fetch language packs for all installed extensions in all available languages. 
 This exposes locally installed extensions to the outer world (the language server). 
 Furthermore, there might be an extension in the wild with same name, leading to unexpected downloading foreign language packs. Otherwise unnecessary 404 to TYPO3 translation server will happen. 

 It would be cool if extensions could be defined to ignore the procedure. E.g. via  

 <pre> 
 { 
     "extra": { 
         "typo3/cms": { 
             "updateLanguages": false 
         } 
     } 
 } 
 </pre> 

 Furthermore: There is no way to do that via composer only right now. But there was a way via ext_emconf.php, see: https://github.com/TYPO3/typo3/blob/9d5ff89a9e9f086eca3a1d594797e50a24623ed5/typo3/sysext/install/Classes/Service/LanguagePackService.php#L170

Back