]> git.mxchange.org Git - friendica-addons.git/blob - libravatar/lang/pl/strings.php
Merge pull request #948 from nupplaphil/task/di_config
[friendica-addons.git] / libravatar / lang / pl / strings.php
1 <?php
2
3 if(! function_exists("string_plural_select_pl")) {
4 function string_plural_select_pl($n){
5         $n = intval($n);
6         return ($n==1 ? 0 : ($n%10>=2 && $n%10<=4) && ($n%100<12 || $n%100>14) ? 1 : $n!=1 && ($n%10>=0 && $n%10<=1) || ($n%10>=5 && $n%10<=9) || ($n%100>=12 && $n%100<=14) ? 2 : 3);;
7 }}
8 ;
9 $a->strings["Could NOT install Libravatar successfully.<br>It requires PHP >= 5.3"] = "Nie można zainstalować dodatku Libravatar. <br>Wymaga PHP> = 5.3";
10 $a->strings["generic profile image"] = "ogólny obraz profilu";
11 $a->strings["random geometric pattern"] = "losowy wzór geometryczny";
12 $a->strings["monster face"] = "twarz potwora";
13 $a->strings["computer generated face"] = "twarz wygenerowana komputerowo";
14 $a->strings["retro arcade style face"] = "twarz w stylu retro arcade";
15 $a->strings["Warning"] = "Ostrzeżenie";
16 $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.";
17 $a->strings["This addon is not functional on your server."] = "Ten dodatek nie działa na twoim serwerze.";
18 $a->strings["Information"] = "Informacja";
19 $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.";
20 $a->strings["Submit"] = "Prześlij";
21 $a->strings["Default avatar image"] = "Domyślny obraz awatara";
22 $a->strings["Select default avatar image if none was found. See README"] = "Wybierz domyślny obraz awatara, jeśli nie został znaleziony. Zobacz README";
23 $a->strings["Libravatar settings updated."] = "Zaktualizowano ustawienia Libravatar.";