[markdown] added PL translation THX waldis

This commit is contained in:
Tobias Diekershoff 2019-12-30 07:58:26 +01:00
parent 44636c1461
commit dc4b91899b
2 changed files with 53 additions and 0 deletions

View File

@ -0,0 +1,41 @@
# ADDON markdown
# Copyright (C)
# This file is distributed under the same license as the Friendica markdown addon package.
#
#
# Translators:
# Waldemar Stoczkowski, 2019
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-12-26 10:04+0000\n"
"PO-Revision-Date: 2019-12-27 06:41+0000\n"
"Last-Translator: Waldemar Stoczkowski, 2019\n"
"Language-Team: Polish (https://www.transifex.com/Friendica/teams/12172/pl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: pl\n"
"Plural-Forms: nplurals=4; plural=(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);\n"
#: markdown.php:32
msgid "Markdown"
msgstr "Markdown"
#: markdown.php:33
msgid "Enable Markdown parsing"
msgstr "Włącz analizę Markdown"
#: markdown.php:33
msgid ""
"If enabled, self created items will additionally be parsed via Markdown."
msgstr ""
"Jeśli ta opcja jest włączona, utworzone przez ciebie elementy zostaną "
"dodatkowo przeanalizowane poprzez Markdown."
#: markdown.php:34
msgid "Save Settings"
msgstr "Zapisz Ustawienia"

View 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";