mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-09 18:08:49 +00:00
regenerated all strings.php files from the current translation strings (message.po)
This commit is contained in:
parent
7f3704ae54
commit
500aab3c53
716 changed files with 1081 additions and 1607 deletions
|
@ -3,7 +3,7 @@
|
|||
if(! function_exists("string_plural_select_pl")) {
|
||||
function string_plural_select_pl($n){
|
||||
$n = intval($n);
|
||||
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);;
|
||||
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; }
|
||||
}}
|
||||
;
|
||||
$a->strings["Filtered by rule: %s"] = " Filtruj według reguły: %s";
|
||||
|
@ -11,9 +11,7 @@ $a->strings["Advanced Content Filter"] = "Zaawansowany filtr zawartości";
|
|||
$a->strings["Back to Addon Settings"] = "Powrót do ustawień dodatków";
|
||||
$a->strings["Add a Rule"] = "Dodaj regułę";
|
||||
$a->strings["Help"] = "Pomoc";
|
||||
$a->strings["Add and manage your personal content filter rules in this screen. Rules have a name and an arbitrary expression that will be matched against post data. For a complete reference of the available operations and variables, check the <a href=\"advancedcontentfilter/help\">help page</a>."] = "Dodaj i zarządzaj regułami filtrowania treści osobistych na tym ekranie. Reguły mają nazwę i dowolne wyrażenie, które zostanie dopasowane do danych postów. Aby uzyskać pełne informacje o dostępnych operacjach i zmiennych, sprawdź <a href=\"advancedcontentfilter/help\">stronę pomocy</a>.";
|
||||
$a->strings["Your rules"] = "Twoje zasady";
|
||||
$a->strings["You have no rules yet! Start adding one by clicking on the button above next to the title."] = "Nie masz jeszcze żadnych zasad! Zacznij dodawać jedną, klikając przycisk znajdujący się nad tytułem.";
|
||||
$a->strings["Disabled"] = "Wyłącz";
|
||||
$a->strings["Enabled"] = "Włącz";
|
||||
$a->strings["Disable this rule"] = "Wyłącz tę regułę";
|
||||
|
@ -27,7 +25,6 @@ $a->strings["Close"] = "Zamknij";
|
|||
$a->strings["Add new rule"] = "Dodaj nową regułę";
|
||||
$a->strings["Rule Name"] = "Nazwa reguły";
|
||||
$a->strings["Rule Expression"] = "Wyrażanie reguły";
|
||||
$a->strings["<p>Examples:</p><ul><li><pre>author_link == 'https://friendica.mrpetovan.com/profile/hypolite'</pre></li><li>tags</li></ul>"] = "<p>przykład</p><ul><li><pre>author_link == 'https://friendica.mrpetovan.com/profile/hypolite'</pre></li><li>tagi</li></ul>";
|
||||
$a->strings["Cancel"] = "Anuluj";
|
||||
$a->strings["You must be logged in to use this method"] = "Musisz być zalogowany, aby skorzystać z tej metody";
|
||||
$a->strings["Invalid form security token, please refresh the page."] = "Nieprawidłowy token zabezpieczający formularz, odśwież stronę.";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue