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,78 @@
# ADDON buffer
# Copyright (C)
# This file is distributed under the same license as the Friendica buffer addon package.
#
#
# Translators:
# Aditoo, 2018
# Aditoo, 2018
# michal_s <msupler@gmail.com>, 2014
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-09-12 09:43+0000\n"
"Last-Translator: Aditoo\n"
"Language-Team: Czech (http://www.transifex.com/Friendica/friendica/language/cs/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: cs\n"
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
#: buffer.php:31
msgid "Permission denied."
msgstr "Přístup odmítnut."
#: buffer.php:57 buffer.php:185
msgid "Save Settings"
msgstr "Uložit Nastavení"
#: 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 "Chyba při registraci připojení na buffer:"
#: buffer.php:86
msgid "You are now authenticated to buffer. "
msgstr "Nyní jste přihlášen/a na buffer."
#: buffer.php:87
msgid "return to the connector page"
msgstr "zpět ke stránce konektoru"
#: buffer.php:103
msgid "Post to Buffer"
msgstr "Posílat na Buffer"
#: buffer.php:128 buffer.php:132
msgid "Buffer Export"
msgstr "Buffer Export"
#: buffer.php:142
msgid "Authenticate your Buffer connection"
msgstr "Autentikujte své připojení na Buffer"
#: buffer.php:146
msgid "Enable Buffer Post Addon"
msgstr "Povolit doplněk Buffer Post"
#: buffer.php:151
msgid "Post to Buffer by default"
msgstr "Ve výchozím stavu posílat na Buffer"
#: buffer.php:156
msgid "Check to delete this preset"
msgstr "Zaškrtnutím smažete toto nastavení"
#: buffer.php:165
msgid "Posts are going to all accounts that are enabled by default:"
msgstr "Příspěvky budou posílány na všechny účty, které jsou ve výchozím stavu povoleny:"

View file

@ -0,0 +1,21 @@
<?php
if(! function_exists("string_plural_select_cs")) {
function string_plural_select_cs($n){
$n = intval($n);
if (($n == 1 && $n % 1 == 0)) { return 0; } else if (($n >= 2 && $n <= 4 && $n % 1 == 0)) { return 1; } else if (($n % 1 != 0 )) { return 2; } else { return 3; }
}}
$a->strings['Permission denied.'] = 'Přístup odmítnut.';
$a->strings['Save Settings'] = 'Uložit Nastavení';
$a->strings['Client ID'] = 'Client ID';
$a->strings['Client Secret'] = 'Client Secret';
$a->strings['Error when registering buffer connection:'] = 'Chyba při registraci připojení na buffer:';
$a->strings['You are now authenticated to buffer. '] = 'Nyní jste přihlášen/a na buffer.';
$a->strings['return to the connector page'] = 'zpět ke stránce konektoru';
$a->strings['Post to Buffer'] = 'Posílat na Buffer';
$a->strings['Buffer Export'] = 'Buffer Export';
$a->strings['Authenticate your Buffer connection'] = 'Autentikujte své připojení na Buffer';
$a->strings['Enable Buffer Post Addon'] = 'Povolit doplněk Buffer Post';
$a->strings['Post to Buffer by default'] = 'Ve výchozím stavu posílat na Buffer';
$a->strings['Check to delete this preset'] = 'Zaškrtnutím smažete toto nastavení';
$a->strings['Posts are going to all accounts that are enabled by default:'] = 'Příspěvky budou posílány na všechny účty, které jsou ve výchozím stavu povoleny:';