2014-09-06 17:59:46 +02:00
< ? php
2014-09-06 18:27:03 +02:00
if ( ! function_exists ( " string_plural_select_cs " )) {
function string_plural_select_cs ( $n ){
2018-06-10 08:27:16 +02:00
$n = intval ( $n );
return ( $n == 1 && $n % 1 == 0 ) ? 0 : ( $n >= 2 && $n <= 4 && $n % 1 == 0 ) ? 1 : ( $n % 1 != 0 ) ? 2 : 3 ;;
2014-09-06 18:27:03 +02:00
}}
;
2018-06-10 08:27:16 +02:00
$a -> strings [ " Content Filter (NSFW and more) " ] = " " ;
$a -> strings [ " This addon searches for specified words/text in posts and collapses them. It can be used to filter content tagged with for instance #NSFW that may be deemed inappropriate at certain times or places, such as being at work. It is also useful for hiding irrelevant or annoying content from direct view. " ] = " " ;
2014-09-06 18:27:03 +02:00
$a -> strings [ " Enable Content filter " ] = " Povolit Kontextový filtr " ;
$a -> strings [ " Comma separated list of keywords to hide " ] = " Čárkou oddělený seznam klíčových slov ke skrytí " ;
2018-06-10 08:27:16 +02:00
$a -> strings [ " Save Settings " ] = " Uložit nastavení " ;
2014-09-06 18:27:03 +02:00
$a -> strings [ " Use /expression/ to provide regular expressions " ] = " Použít /výraz/ pro použití regulárních výrazů " ;
$a -> strings [ " NSFW Settings saved. " ] = " NSFW nastavení uloženo " ;
2018-06-10 08:27:16 +02:00
$a -> strings [ " Filtered tag: %s " ] = " Filtrovaná značka: %s " ;
$a -> strings [ " Filtered word: %s " ] = " Filtrované slovo: %s " ;