deprecated the BUFFER addon

This commit is contained in:
Tobias Diekershoff 2021-11-27 17:07:15 +01:00
commit 12274063bb
38 changed files with 2250 additions and 0 deletions

View file

@ -0,0 +1,77 @@
# ADDON buffer
# Copyright (C)
# This file is distributed under the same license as the Friendica buffer addon package.
#
#
# Translators:
# André Alves <and2099@riseup.net>, 2016
# Rui Andrada <shingonoide@gmail.com>, 2015
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-06-22 13:18+0200\n"
"PO-Revision-Date: 2016-01-03 06:19+0000\n"
"Last-Translator: André Alves <and2099@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"
#: buffer.php:31
msgid "Permission denied."
msgstr "Permissão negada."
#: buffer.php:57 buffer.php:185
msgid "Save Settings"
msgstr "Salvar configurações"
#: buffer.php:59
msgid "Client ID"
msgstr ""
#: buffer.php:60
msgid "Client Secret"
msgstr ""
#: buffer.php:67
msgid "Error when registering buffer connection:"
msgstr "Erro ao registrar conexão de buffer:"
#: buffer.php:86
msgid "You are now authenticated to buffer. "
msgstr "Você está autenticado no buffer."
#: buffer.php:87
msgid "return to the connector page"
msgstr "Volte a página de conectores."
#: buffer.php:103
msgid "Post to Buffer"
msgstr "Publicar no Buffer"
#: buffer.php:128 buffer.php:132
msgid "Buffer Export"
msgstr "Exportar Buffer"
#: buffer.php:142
msgid "Authenticate your Buffer connection"
msgstr "Autenticar sua conexão de Buffer"
#: buffer.php:146
msgid "Enable Buffer Post Addon"
msgstr "Habilita addon para publicar no Buffer"
#: buffer.php:151
msgid "Post to Buffer by default"
msgstr "Publica no Buffer por padrão"
#: buffer.php:156
msgid "Check to delete this preset"
msgstr "Marque para excluir este perfil"
#: buffer.php:165
msgid "Posts are going to all accounts that are enabled by default:"
msgstr ""

View file

@ -0,0 +1,18 @@
<?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['Permission denied.'] = 'Permissão negada.';
$a->strings['Save Settings'] = 'Salvar configurações';
$a->strings['Error when registering buffer connection:'] = 'Erro ao registrar conexão de buffer:';
$a->strings['You are now authenticated to buffer. '] = 'Você está autenticado no buffer.';
$a->strings['return to the connector page'] = 'Volte a página de conectores.';
$a->strings['Post to Buffer'] = 'Publicar no Buffer';
$a->strings['Buffer Export'] = 'Exportar Buffer';
$a->strings['Authenticate your Buffer connection'] = 'Autenticar sua conexão de Buffer';
$a->strings['Enable Buffer Post Addon'] = 'Habilita addon para publicar no Buffer';
$a->strings['Post to Buffer by default'] = 'Publica no Buffer por padrão';
$a->strings['Check to delete this preset'] = 'Marque para excluir este perfil';