Moved widgets and remote permissions to the deprecated addons

This commit is contained in:
Michael 2021-10-05 05:53:21 +00:00
commit 6d2a6408e8
55 changed files with 1762 additions and 0 deletions

View file

@ -0,0 +1,71 @@
# ADDON remote_permissions
# Copyright (C)
# This file is distributed under the same license as the Friendica remote_permissions addon package.
#
#
# Translators:
# Aditoo, 2018
# michal_s <msupler@gmail.com>, 2014
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: 2018-06-13 18:01+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"
#: remote_permissions.php:45
msgid "Remote Permissions Settings"
msgstr "Nastavení Vzdálených oprávnění"
#: remote_permissions.php:46
msgid ""
"Allow recipients of your private posts to see the other recipients of the "
"posts"
msgstr "Umožnit příjemcům Vašich soukromých příspěvků vidět ostatní příjemce příspěvků"
#: remote_permissions.php:48 remote_permissions.php:196
msgid "Submit"
msgstr "Odeslat"
#: remote_permissions.php:58
msgid "Remote Permissions settings updated."
msgstr "Nastavení Vzdálených opravnění aktualizováno."
#: remote_permissions.php:124
msgid "Visible to:"
msgstr "Viditelné pro:"
#: remote_permissions.php:178
msgid "Visible to"
msgstr "Viditelné pro"
#: remote_permissions.php:178
msgid "may only be a partial list"
msgstr "pouze pro část seznamu"
#: remote_permissions.php:197
msgid "Global"
msgstr "Globální"
#: remote_permissions.php:197
msgid "The posts of every user on this server show the post recipients"
msgstr "Příspěvek každého uživatele na tomto serveru zobrazuje příjemce příspěvků"
#: remote_permissions.php:198
msgid "Individual"
msgstr "Individuálové"
#: remote_permissions.php:198
msgid "Each user chooses whether his/her posts show the post recipients"
msgstr "Každý uživatel si zvolí, zda-li jeho/její příspěvek zobrazí příjemce příspěvku."
#: remote_permissions.php:205
msgid "Settings updated."
msgstr "Nastavení aktualizováno."

View file

@ -0,0 +1,20 @@
<?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["Remote Permissions Settings"] = "Nastavení Vzdálených oprávnění";
$a->strings["Allow recipients of your private posts to see the other recipients of the posts"] = "Umožnit příjemcům Vašich soukromých příspěvků vidět ostatní příjemce příspěvků";
$a->strings["Submit"] = "Odeslat";
$a->strings["Remote Permissions settings updated."] = "Nastavení Vzdálených opravnění aktualizováno.";
$a->strings["Visible to:"] = "Viditelné pro:";
$a->strings["Visible to"] = "Viditelné pro";
$a->strings["may only be a partial list"] = "pouze pro část seznamu";
$a->strings["Global"] = "Globální";
$a->strings["The posts of every user on this server show the post recipients"] = "Příspěvek každého uživatele na tomto serveru zobrazuje příjemce příspěvků";
$a->strings["Individual"] = "Individuálové";
$a->strings["Each user chooses whether his/her posts show the post recipients"] = "Každý uživatel si zvolí, zda-li jeho/její příspěvek zobrazí příjemce příspěvku.";
$a->strings["Settings updated."] = "Nastavení aktualizováno.";