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,63 @@
# ADDON remote_permissions
# Copyright (C)
# This file is distributed under the same license as the Friendica remote_permissions addon package.
#
#
# Translators:
# fabrixxm <fabrix.xm@gmail.com>, 2014-2015
# Sylke Vicious <silkevicious@gmail.com>, 2021
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-02-01 18:15+0100\n"
"PO-Revision-Date: 2021-02-16 12:47+0000\n"
"Last-Translator: Sylke Vicious <silkevicious@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"
#: remote_permissions.php:44
msgid "Remote Permissions Settings"
msgstr "Impostazioni Permissi Remoti"
#: remote_permissions.php:45
msgid ""
"Allow recipients of your private posts to see the other recipients of the "
"posts"
msgstr "Permetti ai destinatari dei tuoi messaggi privati di vedere gli altri destinatari del messaggio"
#: remote_permissions.php:47 remote_permissions.php:196
msgid "Save Settings"
msgstr "Salva Impostazioni"
#: remote_permissions.php:124
msgid "Visible to:"
msgstr "Visibile a:"
#: remote_permissions.php:178
msgid "Visible to"
msgstr "Visibile a"
#: remote_permissions.php:178
msgid "may only be a partial list"
msgstr "può essere solo una lista parziale"
#: remote_permissions.php:197
msgid "Global"
msgstr "Globale"
#: remote_permissions.php:197
msgid "The posts of every user on this server show the post recipients"
msgstr "I messaggi di tutti gli utenti di questo server mostrano i destinatari"
#: remote_permissions.php:198
msgid "Individual"
msgstr "Individuale"
#: remote_permissions.php:198
msgid "Each user chooses whether his/her posts show the post recipients"
msgstr "Ogni utente sceglie se i suoi messaggi mostreranno i destinatari"

View file

@ -0,0 +1,18 @@
<?php
if(! function_exists("string_plural_select_it")) {
function string_plural_select_it($n){
$n = intval($n);
return intval($n != 1);
}}
;
$a->strings["Remote Permissions Settings"] = "Impostazioni Permissi Remoti";
$a->strings["Allow recipients of your private posts to see the other recipients of the posts"] = "Permetti ai destinatari dei tuoi messaggi privati di vedere gli altri destinatari del messaggio";
$a->strings["Save Settings"] = "Salva Impostazioni";
$a->strings["Visible to:"] = "Visibile a:";
$a->strings["Visible to"] = "Visibile a";
$a->strings["may only be a partial list"] = "può essere solo una lista parziale";
$a->strings["Global"] = "Globale";
$a->strings["The posts of every user on this server show the post recipients"] = "I messaggi di tutti gli utenti di questo server mostrano i destinatari";
$a->strings["Individual"] = "Individuale";
$a->strings["Each user chooses whether his/her posts show the post recipients"] = "Ogni utente sceglie se i suoi messaggi mostreranno i destinatari";