Thanks for sending this patch. Adjusted the entry on the translations section for using the translated string from the selected language file instead of an hardcoded string. Best regards, -Stefan > Signed-off-by: Matthias Fischer > --- >  html/cgi-bin/logs.cgi/log.dat | 6 ++++-- >  1 file changed, 4 insertions(+), 2 deletions(-) > > diff --git a/html/cgi-bin/logs.cgi/log.dat b/html/cgi- > bin/logs.cgi/log.dat > index a8a7ba4..cf7d32d 100644 > --- a/html/cgi-bin/logs.cgi/log.dat > +++ b/html/cgi-bin/logs.cgi/log.dat > @@ -67,7 +67,8 @@ my %sections = ( >          'pakfire' => '(pakfire:) ', >          'wireless' => '(hostapd:|kernel: ath.*:|kernel: wifi[0-9]:) > ', >          'squid' => '(squid\[.*\]: |squid: )', > -        'snort' => '(snort\[.*\]: )' > +        'snort' => '(snort\[.*\]: )', > +        'guardian' => '(guardian\[.*\]: )' >    ); >   >  # Translations for the %sections array. > @@ -90,7 +91,8 @@ my %trsections = ( >          'pakfire' => 'Pakfire', >          'wireless' => 'Wireless', >          'squid' => "$Lang::tr{'web proxy'}", > -        'snort' => "$Lang::tr{'intrusion detection'}" > +        'snort' => "$Lang::tr{'intrusion detection'}", > +        'guardian' => 'Guardian' >   ); >   >