mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-07 00:48:55 +00:00
[markdown] added PL translation THX waldis
This commit is contained in:
parent
44636c1461
commit
dc4b91899b
2 changed files with 53 additions and 0 deletions
12
markdown/lang/pl/strings.php
Normal file
12
markdown/lang/pl/strings.php
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?php
|
||||
|
||||
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);;
|
||||
}}
|
||||
;
|
||||
$a->strings["Markdown"] = "Markdown";
|
||||
$a->strings["Enable Markdown parsing"] = "Włącz analizę Markdown";
|
||||
$a->strings["If enabled, self created items will additionally be parsed via Markdown."] = "Jeśli ta opcja jest włączona, utworzone przez ciebie elementy zostaną dodatkowo przeanalizowane poprzez Markdown.";
|
||||
$a->strings["Save Settings"] = "Zapisz Ustawienia";
|
Loading…
Add table
Add a link
Reference in a new issue