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:
Andy H 2022-12-14 14:07:16 +07:00
commit 3686a143f9
42 changed files with 1105 additions and 0 deletions

View file

@ -0,0 +1,53 @@
# ADDON blockem
# Copyright (C)
# This file is distributed under the same license as the Friendica blockem addon package.
#
#
# Translators:
# Beatriz Vital <vitalb@riseup.net>, 2016
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-02-27 05:01-0500\n"
"PO-Revision-Date: 2016-08-16 12:51+0000\n"
"Last-Translator: Beatriz Vital <vitalb@riseup.net>\n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/Friendica/friendica/language/pt_BR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: pt_BR\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#: blockem.php:51
msgid "\"Blockem\" Settings"
msgstr "Configurações do \"Blockem\""
#: blockem.php:53
msgid "Comma separated profile URLS to block"
msgstr "URLs de perfis a serem bloqueados, separados por vírgulas"
#: blockem.php:57
msgid "Submit"
msgstr "Enviar"
#: blockem.php:70
msgid "BLOCKEM Settings saved."
msgstr "As configurações do Blockem foram salvas."
#: blockem.php:105
#, php-format
msgid "Blocked %s - Click to open/close"
msgstr "Bloqueou %s - Clique para abrir/fechar"
#: blockem.php:160
msgid "Unblock Author"
msgstr "Desbloquear autor"
#: blockem.php:162
msgid "Block Author"
msgstr "Bloquear autor"
#: blockem.php:194
msgid "blockem settings updated"
msgstr "As configurações do Blockem foram atualizadas."

View file

@ -0,0 +1,15 @@
<?php
if(! function_exists("string_plural_select_pt_br")) {
function string_plural_select_pt_br($n){
$n = intval($n);
return intval($n > 1);
}}
$a->strings['"Blockem" Settings'] = 'Configurações do "Blockem"';
$a->strings['Comma separated profile URLS to block'] = 'URLs de perfis a serem bloqueados, separados por vírgulas';
$a->strings['Submit'] = 'Enviar';
$a->strings['BLOCKEM Settings saved.'] = 'As configurações do Blockem foram salvas.';
$a->strings['Blocked %s - Click to open/close'] = 'Bloqueou %s - Clique para abrir/fechar';
$a->strings['Unblock Author'] = 'Desbloquear autor';
$a->strings['Block Author'] = 'Bloquear autor';
$a->strings['blockem settings updated'] = 'As configurações do Blockem foram atualizadas.';