nsfw PL translation
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Sun, 1 Apr 2018 17:14:58 +0000 (19:14 +0200)
committerTobias Diekershoff <tobias.diekershoff@gmx.net>
Sun, 1 Apr 2018 17:14:58 +0000 (19:14 +0200)
nsfw/lang/pl/messages.po [new file with mode: 0644]
nsfw/lang/pl/strings.php

diff --git a/nsfw/lang/pl/messages.po b/nsfw/lang/pl/messages.po
new file mode 100644 (file)
index 0000000..7293f2c
--- /dev/null
@@ -0,0 +1,57 @@
+# ADDON nsfw
+# Copyright (C)
+# This file is distributed under the same license as the Friendica nsfw addon package.
+# 
+# 
+# Translators:
+# Waldemar Stoczkowski <waldemar.stoczkowski@gmail.com>, 2018
+msgid ""
+msgstr ""
+"Project-Id-Version: friendica\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2018-03-15 17:54+0700\n"
+"PO-Revision-Date: 2018-03-31 17:30+0000\n"
+"Last-Translator: Waldemar Stoczkowski <waldemar.stoczkowski@gmail.com>\n"
+"Language-Team: Polish (http://www.transifex.com/Friendica/friendica/language/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"
+
+#: nsfw.php:77 nsfw.php:81
+msgid "Content Filter (NSFW and more)"
+msgstr "Filtr zawartości (NSFW i więcej)"
+
+#: nsfw.php:85
+msgid ""
+"This addon searches for specified words/text in posts and collapses them. It"
+" can be used to filter content tagged with for instance #NSFW that may be "
+"deemed inappropriate at certain times or places, such as being at work. It "
+"is also useful for hiding irrelevant or annoying content from direct view."
+msgstr "Ten dodatek szuka określonych słów/tekstów w postach i zwija je. Może służyć do filtrowania treści oznaczonych np. NSFW, które mogą zostać uznane za nieodpowiednie w określonych momentach lub miejscach, na przykład w pracy. Jest to również przydatne do ukrywania nieistotnych lub irytujących treści z bezpośredniego widoku."
+
+#: nsfw.php:86
+msgid "Enable Content filter"
+msgstr "Włącz filtr treści"
+
+#: nsfw.php:89
+msgid "Comma separated list of keywords to hide"
+msgstr "Rozdzielana przecinkami lista słów kluczowych do ukrycia"
+
+#: nsfw.php:93
+msgid "Save Settings"
+msgstr "Zapisz ustawienia"
+
+#: nsfw.php:94
+msgid "Use /expression/ to provide regular expressions"
+msgstr "Użyj /wyrażenia/, aby zapewnić wyrażenia regularne"
+
+#: nsfw.php:109
+msgid "NSFW Settings saved."
+msgstr "Ustawienia NSFW zostały zapisane."
+
+#: nsfw.php:167
+#, php-format
+msgid "%s - Click to open/close"
+msgstr "%s - Kliknij, aby otworzyć/zamknąć"
index ea2189c..8e8ce55 100644 (file)
@@ -1,10 +1,15 @@
-<?php\r
-\r
-$a->strings["Not Safe For Work (General Purpose Content Filter) settings"] = "";\r
-$a->strings["This addon looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW.  This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = "";\r
-$a->strings["Enable Content filter"] = "";\r
-$a->strings["Comma separated list of keywords to hide"] = "";\r
-$a->strings["Submit"] = "Potwierdź";\r
-$a->strings["Use /expression/ to provide regular expressions"] = "";\r
-$a->strings["NSFW Settings saved."] = "NSFW Ustawienia zapisane.";\r
-$a->strings["%s - Click to open/close"] = "%s - kliknij by otworzyć/zamknąć";\r
+<?php
+
+if(! function_exists("string_plural_select_pl")) {
+function string_plural_select_pl($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["Content Filter (NSFW and more)"] = "Filtr zawartości (NSFW i więcej)";
+$a->strings["This addon searches for specified words/text in posts and collapses them. It can be used to filter content tagged with for instance #NSFW that may be deemed inappropriate at certain times or places, such as being at work. It is also useful for hiding irrelevant or annoying content from direct view."] = "Ten dodatek szuka określonych słów/tekstów w postach i zwija je. Może służyć do filtrowania treści oznaczonych np. NSFW, które mogą zostać uznane za nieodpowiednie w określonych momentach lub miejscach, na przykład w pracy. Jest to również przydatne do ukrywania nieistotnych lub irytujących treści z bezpośredniego widoku.";
+$a->strings["Enable Content filter"] = "Włącz filtr treści";
+$a->strings["Comma separated list of keywords to hide"] = "Rozdzielana przecinkami lista słów kluczowych do ukrycia";
+$a->strings["Save Settings"] = "Zapisz ustawienia";
+$a->strings["Use /expression/ to provide regular expressions"] = "Użyj /wyrażenia/, aby zapewnić wyrażenia regularne";
+$a->strings["NSFW Settings saved."] = "Ustawienia NSFW zostały zapisane.";
+$a->strings["%s - Click to open/close"] = "%s - Kliknij, aby otworzyć/zamknąć";