PL translation superblock THX waldis

This commit is contained in:
Tobias Diekershoff 2018-08-06 13:34:04 +02:00
parent 37312af8ca
commit e6a88fb161
2 changed files with 58 additions and 10 deletions

View File

@ -0,0 +1,44 @@
# ADDON superblock
# Copyright (C)
# This file is distributed under the same license as the Friendica superblock 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: 2017-04-21 08:45+0200\n"
"PO-Revision-Date: 2018-08-05 15:51+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"
#: superblock.php:53 superblock.php:57
msgid "\"Superblock\""
msgstr "\"Superblock\""
#: superblock.php:60
msgid "Comma separated profile URLS to block"
msgstr "Oddzielone przecinkami adresy URL profilu do zablokowania"
#: superblock.php:64
msgid "Save Settings"
msgstr "Zapisz ustawienia"
#: superblock.php:76
msgid "SUPERBLOCK Settings saved."
msgstr "SUPERBLOCK Zapisano ustawienia."
#: superblock.php:148
msgid "Block Completely"
msgstr "Całkowicie zablokuj"
#: superblock.php:168
msgid "superblock settings updated"
msgstr "zaktualizowano ustawienia superblock"

View File

@ -1,10 +1,14 @@
<?php
$a->strings["\"Blockem\" Settings"] = "";
$a->strings["Comma separated profile URLS to block"] = "";
$a->strings["Submit"] = "Potwierdź";
$a->strings["BLOCKEM Settings saved."] = "";
$a->strings["Blocked %s - Click to open/close"] = "";
$a->strings["Unblock Author"] = "Odblokuj autora";
$a->strings["Block Author"] = "Zablokuj autora";
$a->strings["blockem settings updated"] = "";
<?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["\"Superblock\""] = "\"Superblock\"";
$a->strings["Comma separated profile URLS to block"] = "Oddzielone przecinkami adresy URL profilu do zablokowania";
$a->strings["Save Settings"] = "Zapisz ustawienia";
$a->strings["SUPERBLOCK Settings saved."] = "SUPERBLOCK Zapisano ustawienia.";
$a->strings["Block Completely"] = "Całkowicie zablokuj";
$a->strings["superblock settings updated"] = "zaktualizowano ustawienia superblock";