]> git.mxchange.org Git - friendica-addons.git/blob - impressum/lang/pl/strings.php
7491978a95423dedbb816c5d47724ac7e4ccdf00
[friendica-addons.git] / impressum / 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['Impressum'] = 'Stopka redakcyjna';
9 $a->strings['Site Owner'] = 'Właściciel witryny';
10 $a->strings['Email Address'] = 'Adres e-mail';
11 $a->strings['Postal Address'] = 'Adres pocztowy';
12 $a->strings['The impressum addon needs to be configured!<br />Please add at least the <tt>owner</tt> variable to your config file. For other variables please refer to the README file of the addon.'] = 'Dodatek impressum musi zostać skonfigurowany!<br />Dodaj co najmniej zmienną <tt>właściciela</tt> do pliku konfiguracyjnego. Inne zmienne można znaleźć w pliku README dodatku.';
13 $a->strings['Settings updated.'] = 'Ustawienia zaktualizowane.';
14 $a->strings['Submit'] = 'Wyślij';
15 $a->strings['The page operators name.'] = 'Nazwa operatora strony.';
16 $a->strings['Site Owners Profile'] = 'Profil właściciela witryny';
17 $a->strings['Profile address of the operator.'] = 'Adres profilu operatora.';
18 $a->strings['How to contact the operator via snail mail. You can use BBCode here.'] = 'Jak skontaktować się z operatorem za pośrednictwem poczty elektronicznej. Możesz użyć BBCode tutaj.';
19 $a->strings['Notes'] = 'Notatki';
20 $a->strings['Additional notes that are displayed beneath the contact information. You can use BBCode here.'] = 'Dodatkowe uwagi, które są wyświetlane pod danymi kontaktowymi. Możesz użyć BBCode tutaj.';
21 $a->strings['How to contact the operator via email. (will be displayed obfuscated)'] = 'Jak skontaktować się z operatorem za pośrednictwem poczty elektronicznej. (zostanie wyświetlony ukryty)';
22 $a->strings['Footer note'] = 'Notatka w stopce';
23 $a->strings['Text for the footer. You can use BBCode here.'] = 'Tekst stopki. Tutaj można użyć BBCode.';