Merge pull request #879 from tobiasd/20190827-blockbotPL

added blockbot PL translation THX waldis
This commit is contained in:
Hypolite Petovan 2019-08-27 09:01:49 -04:00 committed by GitHub
commit d85ac84e77
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 55 additions and 0 deletions

View File

@ -0,0 +1,42 @@
# ADDON blockbot
# Copyright (C)
# This file is distributed under the same license as the Friendica blockbot addon package.
#
#
# Translators:
# Waldemar Stoczkowski, 2019
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-08-07 09:03+0200\n"
"PO-Revision-Date: 2019-08-07 07:43+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"
#: blockbot.php:35
msgid "Save Settings"
msgstr "Zapisz ustawienia"
#: blockbot.php:36
msgid "Allow \"good\" crawlers"
msgstr "Pozwól „dobrym” robotom"
#: blockbot.php:37
msgid "Block GabSocial"
msgstr "Zablokuj GabSocial"
#: blockbot.php:38
msgid "Training mode"
msgstr "Tryb treningowy"
#: blockbot.php:46
msgid "Settings updated."
msgstr "Ustawienia zaktualizowane."

View File

@ -0,0 +1,13 @@
<?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["Save Settings"] = "Zapisz ustawienia";
$a->strings["Allow \"good\" crawlers"] = "Pozwól „dobrym” robotom";
$a->strings["Block GabSocial"] = "Zablokuj GabSocial";
$a->strings["Training mode"] = "Tryb treningowy";
$a->strings["Settings updated."] = "Ustawienia zaktualizowane.";