]> git.mxchange.org Git - friendica-addons.git/blob - newmemberwidget/lang/pl/strings.php
translation updates
[friendica-addons.git] / newmemberwidget / 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         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; }
7 }}
8 $a->strings['New Member'] = 'Nowy użytkownik';
9 $a->strings['Tips for New Members'] = 'Wskazówki dla nowych użytkowników';
10 $a->strings['Save Settings'] = 'Zapisz ustawienia';
11 $a->strings['Message'] = 'Wiadomość';
12 $a->strings['Your message for new members. You can use bbcode here.'] = 'Twoja wiadomość dla nowych członków. Możesz tutaj użyć bbcode.';
13 $a->strings['Name of the local support group'] = 'Nazwa grupy lokalnej pomocy technicznej';
14 $a->strings['If you checked the above, specify the <em>nickname</em> of the local support group here (i.e. helpers)'] = 'Jeśli zaznaczyłeś powyższe, określ tutaj pseudonim lokalnej grupy wsparcia (np. Pomocnicy)';