Actions

Translations

Translations:New Template System in LS3.x/69/en

From LimeSurvey Manual

'font-noto' => array(

       'devBaseUrl' => 'assets/fonts/',
       'basePath' => 'fonts',
       'css' => array(
           'noto.css',
       ),
   ),

</syntaxhighlight>
The noto.css file it contains is here: https://github.com/LimeSurvey/LimeSurvey/blob/4c40b61afb0dba8fd80154b50f5831045df8d814/assets/fonts/noto.css
Notice the definition of the css class ".font-noto" at the end of it: <syntaxhighlight lang="css"> @font-face {

 font-family: 'Noto Sans';
 ...

} ... .font-noto{

   font-family: 'Noto Sans';

}