2018-04-01 11:44:46 +02:00
< ? php
if ( ! function_exists ( " string_plural_select_pl " )) {
function string_plural_select_pl ( $n ){
2018-08-06 14:24:07 +02:00
$n = intval ( $n );
2021-02-01 18:47:38 +01:00
if ( $n == 1 ) { return 0 ; } else if (( $n % 10 >= 2 && $n % 10 <= 4 ) && ( $n % 100 < 12 || $n % 100 > 14 )) { return 1 ; } else if ( $n != 1 && ( $n % 10 >= 0 && $n % 10 <= 1 ) || ( $n % 10 >= 5 && $n % 10 <= 9 ) || ( $n % 100 >= 12 && $n % 100 <= 14 )) { return 2 ; } else { return 3 ; }
2018-04-01 11:44:46 +02:00
}}
;
2018-08-06 14:24:07 +02:00
$a -> strings [ " Could NOT install Libravatar successfully.<br>It requires PHP >= 5.3 " ] = " Nie można zainstalować dodatku Libravatar. <br>Wymaga PHP> = 5.3 " ;
2018-04-01 11:44:46 +02:00
$a -> strings [ " generic profile image " ] = " ogólny obraz profilu " ;
$a -> strings [ " random geometric pattern " ] = " losowy wzór geometryczny " ;
$a -> strings [ " monster face " ] = " twarz potwora " ;
2018-08-06 14:24:07 +02:00
$a -> strings [ " computer generated face " ] = " twarz wygenerowana komputerowo " ;
2018-04-01 11:44:46 +02:00
$a -> strings [ " retro arcade style face " ] = " twarz w stylu retro arcade " ;
$a -> strings [ " Warning " ] = " Ostrzeżenie " ;
2018-08-06 14:24:07 +02:00
$a -> strings [ " Your PHP version %s is lower than the required PHP >= 5.3. " ] = " Twoja wersja PHP %s jest niższa niż wymagana PHP> = 5.3. " ;
2018-04-01 11:44:46 +02:00
$a -> strings [ " This addon is not functional on your server. " ] = " Ten dodatek nie działa na twoim serwerze. " ;
$a -> strings [ " Information " ] = " Informacja " ;
$a -> strings [ " Gravatar addon is installed. Please disable the Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar. " ] = " Dodatek Gravatar jest zainstalowany. Wyłącz dodatek Gravatar. Dodatek Libravatar powróci do Gravatar, jeśli w Libravatar nie zostanie znaleziony żaden przedmiot. " ;
2018-08-06 14:24:07 +02:00
$a -> strings [ " Submit " ] = " Prześlij " ;
2018-04-01 11:44:46 +02:00
$a -> strings [ " Default avatar image " ] = " Domyślny obraz awatara " ;
$a -> strings [ " Select default avatar image if none was found. See README " ] = " Wybierz domyślny obraz awatara, jeśli nie został znaleziony. Zobacz README " ;
2018-04-01 20:02:21 +02:00
$a -> strings [ " Libravatar settings updated. " ] = " Zaktualizowano ustawienia Libravatar. " ;