[markdown] added PL translation THX waldis
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Mon, 30 Dec 2019 06:58:26 +0000 (07:58 +0100)
committerTobias Diekershoff <tobias.diekershoff@gmx.net>
Mon, 30 Dec 2019 06:58:26 +0000 (07:58 +0100)
markdown/lang/pl/messages.po [new file with mode: 0644]
markdown/lang/pl/strings.php [new file with mode: 0644]

diff --git a/markdown/lang/pl/messages.po b/markdown/lang/pl/messages.po
new file mode 100644 (file)
index 0000000..1237d7f
--- /dev/null
@@ -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"
diff --git a/markdown/lang/pl/strings.php b/markdown/lang/pl/strings.php
new file mode 100644 (file)
index 0000000..bbfa44b
--- /dev/null
@@ -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";