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:
# fabrixxm <fabrix.xm@gmail.com>, 2014,2018
# Sandro Santilli <strk@kbt.io>, 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: 2018-03-19 13:21+0000\n"
"Last-Translator: fabrixxm <fabrix.xm@gmail.com>\n"
"Language-Team: Italian (http://www.transifex.com/Friendica/friendica/language/it/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: it\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: buffer.php:31
msgid "Permission denied."
msgstr "Permesso negato."
#: buffer.php:57 buffer.php:185
msgid "Save Settings"
msgstr "Salva Impostazioni"
#: buffer.php:59
msgid "Client ID"
msgstr "Client ID"
#: buffer.php:60
msgid "Client Secret"
msgstr "Client Secret"
#: buffer.php:67
msgid "Error when registering buffer connection:"
msgstr "Errore registrando la connessione a buffer:"
#: buffer.php:86
msgid "You are now authenticated to buffer. "
msgstr "Sei autenticato su buffer."
#: buffer.php:87
msgid "return to the connector page"
msgstr "ritorna alla pagina del connettore"
#: buffer.php:103
msgid "Post to Buffer"
msgstr "Invia a Buffer"
#: buffer.php:128 buffer.php:132
msgid "Buffer Export"
msgstr "Esporta Buffer"
#: buffer.php:142
msgid "Authenticate your Buffer connection"
msgstr "Autentica la tua connessione a Buffer"
#: buffer.php:146
msgid "Enable Buffer Post Addon"
msgstr "Abilita il componente aggiuntivo di invio a Buffer"
#: buffer.php:151
msgid "Post to Buffer by default"
msgstr "Invia sempre a Buffer"
#: buffer.php:156
msgid "Check to delete this preset"
msgstr "Seleziona per eliminare questo preset"
#: buffer.php:165
msgid "Posts are going to all accounts that are enabled by default:"
msgstr "I messaggi andranno a tutti gli account che sono abilitati:"

View file

@ -0,0 +1,21 @@
<?php
if(! function_exists("string_plural_select_it")) {
function string_plural_select_it($n){
$n = intval($n);
return intval($n != 1);
}}
$a->strings['Permission denied.'] = 'Permesso negato.';
$a->strings['Save Settings'] = 'Salva Impostazioni';
$a->strings['Client ID'] = 'Client ID';
$a->strings['Client Secret'] = 'Client Secret';
$a->strings['Error when registering buffer connection:'] = 'Errore registrando la connessione a buffer:';
$a->strings['You are now authenticated to buffer. '] = 'Sei autenticato su buffer.';
$a->strings['return to the connector page'] = 'ritorna alla pagina del connettore';
$a->strings['Post to Buffer'] = 'Invia a Buffer';
$a->strings['Buffer Export'] = 'Esporta Buffer';
$a->strings['Authenticate your Buffer connection'] = 'Autentica la tua connessione a Buffer';
$a->strings['Enable Buffer Post Addon'] = 'Abilita il componente aggiuntivo di invio a Buffer';
$a->strings['Post to Buffer by default'] = 'Invia sempre a Buffer';
$a->strings['Check to delete this preset'] = 'Seleziona per eliminare questo preset';
$a->strings['Posts are going to all accounts that are enabled by default:'] = 'I messaggi andranno a tutti gli account che sono abilitati:';