Project

General

Profile

Feature #78904

Updated by Wouter Wolters over 7 years ago


 if respectWordBoundaries = true and language = german append default should be <pre>&nbsp;&hellip;</pre> or ' ...' and not '...' like now. in german '...' is only used if its in the middle of the Wor... . When at the end, its ... (with withespace). But every language is different, see here: https://en.wikipedia.org/wiki/Ellipsis 

 So this should implemented via language strings?! 

 in fluid/Classes/ViewHelpers/Format/CropViewHelper.php  

 <pre> 
     public function render($maxCharacters, $append = '...', $respectWordBoundaries = true, $respectHtml = true) 
     { 
         return static::renderStatic( 
             [ 
                 'maxCharacters' => $maxCharacters, 
                 'append' => $append, 
                 'respectWordBoundaries' => $respectWordBoundaries, 
                 'respectHtml' => $respectHtml, 
             ], 
             $this->buildRenderChildrenClosure(), 
             $this->renderingContext 
         ); 
     } 

 </pre> 

 thanks

Back