forked from friendica/deprecated-addons
new file: superblock/lang/C/messages.po
new file: superblock/lang/ar/messages.po new file: superblock/lang/ar/strings.php new file: superblock/lang/ca/strings.php new file: superblock/lang/cs/messages.po new file: superblock/lang/cs/strings.php new file: superblock/lang/da-dk/messages.po new file: superblock/lang/da-dk/strings.php new file: superblock/lang/de/messages.po new file: superblock/lang/de/strings.php new file: superblock/lang/en-gb/messages.po new file: superblock/lang/en-gb/strings.php new file: superblock/lang/en-us/messages.po new file: superblock/lang/en-us/strings.php new file: superblock/lang/eo/strings.php new file: superblock/lang/es/messages.po new file: superblock/lang/es/strings.php new file: superblock/lang/fi-fi/messages.po new file: superblock/lang/fi-fi/strings.php new file: superblock/lang/fr/messages.po new file: superblock/lang/fr/strings.php new file: superblock/lang/hu/messages.po new file: superblock/lang/hu/strings.php new file: superblock/lang/is/strings.php new file: superblock/lang/it/messages.po new file: superblock/lang/it/strings.php new file: superblock/lang/nb-no/strings.php new file: superblock/lang/nl/messages.po new file: superblock/lang/nl/strings.php new file: superblock/lang/pl/messages.po new file: superblock/lang/pl/strings.php new file: superblock/lang/pt-br/messages.po new file: superblock/lang/pt-br/strings.php new file: superblock/lang/ro/messages.po new file: superblock/lang/ro/strings.php new file: superblock/lang/ru/messages.po new file: superblock/lang/ru/strings.php new file: superblock/lang/sv/messages.po new file: superblock/lang/sv/strings.php new file: superblock/lang/zh-cn/strings.php new file: superblock/superblock.php new file: superblock/templates/settings.tpl
This commit is contained in:
parent
be0a36be84
commit
3686a143f9
42 changed files with 1105 additions and 0 deletions
33
superblock/lang/pl/messages.po
Normal file
33
superblock/lang/pl/messages.po
Normal file
|
@ -0,0 +1,33 @@
|
|||
# ADDON superblock
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica superblock addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Piotr Strębski <strebski@gmail.com>, 2022
|
||||
# Waldemar Stoczkowski, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:16-0500\n"
|
||||
"PO-Revision-Date: 2014-06-23 12:55+0000\n"
|
||||
"Last-Translator: Piotr Strębski <strebski@gmail.com>, 2022\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:35
|
||||
msgid "Comma separated profile URLs to block"
|
||||
msgstr "Oddzielone przecinkami adresy URL profilów do zablokowania"
|
||||
|
||||
#: superblock.php:40
|
||||
msgid "Superblock"
|
||||
msgstr "Superblock"
|
||||
|
||||
#: superblock.php:129
|
||||
msgid "Block Completely"
|
||||
msgstr "Całkowicie zablokuj"
|
10
superblock/lang/pl/strings.php
Normal file
10
superblock/lang/pl/strings.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_pl")) {
|
||||
function string_plural_select_pl($n){
|
||||
$n = intval($n);
|
||||
if ($n==1) { return 0; } else if (($n%10>=2 && $n%10<=4) && ($n%100<12 || $n%100>14)) { return 1; } else if ($n!=1 && ($n%10>=0 && $n%10<=1) || ($n%10>=5 && $n%10<=9) || ($n%100>=12 && $n%100<=14)) { return 2; } else { return 3; }
|
||||
}}
|
||||
$a->strings['Comma separated profile URLs to block'] = 'Oddzielone przecinkami adresy URL profilów do zablokowania';
|
||||
$a->strings['Superblock'] = 'Superblock';
|
||||
$a->strings['Block Completely'] = 'Całkowicie zablokuj';
|
Loading…
Add table
Add a link
Reference in a new issue