forked from friendica/deprecated-addons
Removed many deprecated addons
This commit is contained in:
parent
8ea198a97e
commit
1b7283c72b
247 changed files with 28554 additions and 0 deletions
22
forumlist/forumlist.css
Normal file
22
forumlist/forumlist.css
Normal file
|
@ -0,0 +1,22 @@
|
|||
|
||||
#hide-forum-list {
|
||||
opacity: 0.3;
|
||||
filter:alpha(opacity=30);
|
||||
}
|
||||
|
||||
#hide-forum-list:hover {
|
||||
opacity: 1.0;
|
||||
filter:alpha(opacity=100);
|
||||
}
|
||||
|
||||
|
||||
#forumlist-settings-label, #forumlist-random-label, #forumlist-profile-label, #forumlist-network-label {
|
||||
float: left;
|
||||
width: 200px;
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
|
||||
#forumlist-max-forumlists, #forumlist-random, #forumlist-profile, #forumlist-network {
|
||||
float: left;
|
||||
}
|
||||
|
188
forumlist/forumlist.php
Normal file
188
forumlist/forumlist.php
Normal file
|
@ -0,0 +1,188 @@
|
|||
<?php
|
||||
/**
|
||||
* Name: ForumList
|
||||
* Description: Shows list of subscribed community forums on network sidebar
|
||||
* Version: 1.1
|
||||
* Author: Mike Macgirvin <mike@macgirvin.com>
|
||||
* based on pages plugin by
|
||||
* Author: Michael Vogel <ike@piratenpartei.de>
|
||||
* Status: Unsupported
|
||||
*
|
||||
*/
|
||||
|
||||
function forumlist_install() {
|
||||
register_hook('network_mod_init', 'addon/forumlist/forumlist.php', 'forumlist_network_mod_init');
|
||||
register_hook('plugin_settings', 'addon/forumlist/forumlist.php', 'forumlist_plugin_settings');
|
||||
register_hook('plugin_settings_post', 'addon/forumlist/forumlist.php', 'forumlist_plugin_settings_post');
|
||||
register_hook('profile_advanced', 'addon/forumlist/forumlist.php', 'forumlist_profile_advanced');
|
||||
|
||||
}
|
||||
|
||||
function forumlist_uninstall() {
|
||||
unregister_hook('network_mod_init', 'addon/forumlist/forumlist.php', 'forumlist_network_mod_init');
|
||||
unregister_hook('plugin_settings', 'addon/forumlist/forumlist.php', 'forumlist_plugin_settings');
|
||||
unregister_hook('plugin_settings_post', 'addon/forumlist/forumlist.php', 'forumlist_plugin_settings_post');
|
||||
unregister_hook('profile_advanced', 'addon/forumlist/forumlist.php', 'forumlist_profile_advanced');
|
||||
|
||||
}
|
||||
|
||||
|
||||
function forumlist_getpage($uid,$showhidden = true,$randomise = false, $showprivate = false) {
|
||||
|
||||
|
||||
$forumlist = array();
|
||||
|
||||
$order = (($showhidden) ? '' : " and hidden = 0 ");
|
||||
$order .= (($randomise) ? ' order by rand() ' : ' order by name asc ');
|
||||
$select = "`forum` = 1";
|
||||
if ($showprivate) {
|
||||
$select = "( `forum` = 1 OR `prv` = 1 )";
|
||||
}
|
||||
|
||||
$contacts = q("SELECT `contact`.`id`, `contact`.`url`, `contact`.`name`, `contact`.`micro` from contact
|
||||
WHERE `network`= 'dfrn' AND $select AND `uid` = %d
|
||||
and blocked = 0 and hidden = 0 and pending = 0 and archive = 0
|
||||
$order ",
|
||||
intval($uid)
|
||||
);
|
||||
|
||||
// Look if the profile is a community page
|
||||
foreach($contacts as $contact) {
|
||||
$forumlist[] = array("url"=>$contact["url"], "name"=>$contact["name"], "id"=>$contact["id"], "micro"=>$contact['micro']);
|
||||
}
|
||||
return($forumlist);
|
||||
}
|
||||
|
||||
function forumlist_network_mod_init($a,$b) {
|
||||
|
||||
if(! intval(get_pconfig(local_user(),'forumlist','show_on_network')))
|
||||
return;
|
||||
|
||||
$a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="' . $a->get_baseurl() . '/addon/forumlist/forumlist.css' . '" media="all" />' . "\r\n";
|
||||
|
||||
$forumlist = '<div id="forumlist-sidebar" class="widget">
|
||||
<div class="title tool">
|
||||
<h3>'.t("Forums").'</h3></div>';
|
||||
|
||||
$forumlist .= '<div id="hide-forum-list" class="fakelink" onclick="openClose(\'forum-list\');" >'
|
||||
. t('show/hide') . '</div>'
|
||||
. '<div role="menu" id="forum-list" style="display: none;">';
|
||||
|
||||
|
||||
$randomise = intval(get_pconfig(local_user(),'forumlist','randomise'));
|
||||
|
||||
$contacts = forumlist_getpage($a->user['uid'],true,$randomise, true);
|
||||
|
||||
if(count($contacts)) {
|
||||
foreach($contacts as $contact) {
|
||||
$forumlist .= '<div role="menuitem"><a href="' . $a->get_baseurl() . '/redir/' . $contact["id"] . '" title="'.t('External link to forum').'" class="label sparkle" target="_blank"><img class="forumlist-img" height="20" width="20" src="' . $contact['micro'] .'" alt="'.t('External link to forum').'" /></a> <a href="' . $a->get_baseurl() . '/network?f=&cid=' . $contact['id'] . '" >' . $contact["name"]."</a></div>";
|
||||
}
|
||||
}
|
||||
else {
|
||||
$forumlist .= t('No forum subscriptions');
|
||||
}
|
||||
|
||||
$forumlist .= "</div></div>";
|
||||
if (sizeof($contacts) > 0)
|
||||
$a->page['aside'] = $forumlist . $a->page['aside'];
|
||||
}
|
||||
|
||||
|
||||
function forumlist_profile_advanced($a,&$b) {
|
||||
$a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="' . $a->get_baseurl() . '/addon/forumlist/forumlist.css' . '" media="all" />' . "\r\n";
|
||||
|
||||
$profile = intval(get_pconfig($a->profile['profile_uid'],'forumlist','show_on_profile'));
|
||||
if(! $profile)
|
||||
return;
|
||||
|
||||
$forumlist = '<div id="forumlist-profile">
|
||||
<div class="title">'.t("Forums:").'</div>
|
||||
<div id="profile-forumlist-list">';
|
||||
|
||||
// place holder in case somebody wants configurability
|
||||
$show_total = 9999;
|
||||
|
||||
$randomise = true;
|
||||
|
||||
$contacts = forumlist_getpage($a->user['uid'],false,$randomise,false);
|
||||
|
||||
$total_shown = 0;
|
||||
$more = false;
|
||||
|
||||
foreach($contacts as $contact) {
|
||||
$forumlist .= micropro($contact,false,'forumlist-profile-advanced');
|
||||
$total_shown ++;
|
||||
if($total_shown == $show_total)
|
||||
break;
|
||||
}
|
||||
$forumlist .= '</div></div><div class="clear"></div>';
|
||||
|
||||
if(count($contacts) > 0)
|
||||
$b .= $forumlist;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
function forumlist_plugin_settings_post($a,$post) {
|
||||
if(! local_user() || (! x($_POST,'forumlist-settings-submit')))
|
||||
return;
|
||||
// set_pconfig(local_user(),'forumlist','max_forumlists',intval($_POST['forumlist_max_forumlists']));
|
||||
set_pconfig(local_user(),'forumlist','randomise',intval($_POST['forumlist_random']));
|
||||
set_pconfig(local_user(),'forumlist','show_on_profile',intval($_POST['forumlist_profile']));
|
||||
set_pconfig(local_user(),'forumlist','show_on_network',intval($_POST['forumlist_network']));
|
||||
|
||||
info( t('Forumlist settings updated.') . EOL);
|
||||
}
|
||||
|
||||
|
||||
function forumlist_plugin_settings(&$a,&$s) {
|
||||
|
||||
if(! local_user())
|
||||
return;
|
||||
|
||||
/* Add our stylesheet to the forumlist so we can make our settings look nice */
|
||||
|
||||
$a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="' . $a->get_baseurl() . '/addon/forumlist/forumlist.css' . '" media="all" />' . "\r\n";
|
||||
|
||||
/* Get the current state of our config variable */
|
||||
|
||||
$randomise = intval(get_pconfig(local_user(),'forumlist','randomise'));
|
||||
$randomise_checked = (($randomise) ? ' checked="checked" ' : '');
|
||||
|
||||
$profile = intval(get_pconfig(local_user(),'forumlist','show_on_profile'));
|
||||
$profile_checked = (($profile) ? ' checked="checked" ' : '');
|
||||
|
||||
$network = intval(get_pconfig(local_user(),'forumlist','show_on_network'));
|
||||
$network_checked = (($network) ? ' checked="checked" ' : '');
|
||||
|
||||
|
||||
/* Add some HTML to the existing form */
|
||||
$s .= '<span id="settings_forumlist_inflated" class="settings-block fakelink" style="display: block;" onclick="openClose(\'settings_forumlist_expanded\'); openClose(\'settings_forumlist_inflated\');">';
|
||||
$s .= '<h3>' . t('Forumlist') . '</h3>';
|
||||
$s .= '</span>';
|
||||
$s .= '<div id="settings_forumlist_expanded" class="settings-block" style="display: none;">';
|
||||
$s .= '<span class="fakelink" onclick="openClose(\'settings_forumlist_expanded\'); openClose(\'settings_forumlist_inflated\');">';
|
||||
$s .= '<h3>' . t('Forumlist') . '</h3>';
|
||||
$s .= '</span>';
|
||||
|
||||
$s .= '<div id="forumlist-settings-wrapper">';
|
||||
$s .= '<label id="forumlist-random-label" for="forumlist-random">' . t('Randomise forum list') . '</label>';
|
||||
$s .= '<input id="forumlist-random" type="checkbox" name="forumlist_random" value="1" ' . $randomise_checked . '/>';
|
||||
$s .= '<div class="clear"></div>';
|
||||
$s .= '<label id="forumlist-profile-label" for="forumlist-profile">' . t('Show forums on profile page') . '</label>';
|
||||
$s .= '<input id="forumlist-profile" type="checkbox" name="forumlist_profile" value="1" ' . $profile_checked . '/>';
|
||||
$s .= '<div class="clear"></div>';
|
||||
$s .= '<label id="forumlist-network-label" for="forumlist-network">' . t('Show forums on network page') . '</label>';
|
||||
$s .= '<input id="forumlist-network" type="checkbox" name="forumlist_network" value="1" ' . $network_checked . '/>';
|
||||
$s .= '<div class="clear"></div>';
|
||||
|
||||
$s .= '</div>';
|
||||
|
||||
/* provide a submit button */
|
||||
|
||||
$s .= '<div class="settings-submit-wrapper" ><input type="submit" name="forumlist-settings-submit" class="settings-submit" value="' . t('Save Settings') . '" /></div></div>';
|
||||
|
||||
}
|
||||
|
||||
|
58
forumlist/lang/C/messages.po
Normal file
58
forumlist/lang/C/messages.po
Normal file
|
@ -0,0 +1,58 @@
|
|||
# ADDON forumlist
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica forumlist addon package.
|
||||
#
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2013-02-27 05:01-0500\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: forumlist.php:64
|
||||
msgid "Forums"
|
||||
msgstr ""
|
||||
|
||||
#: forumlist.php:67
|
||||
msgid "show/hide"
|
||||
msgstr ""
|
||||
|
||||
#: forumlist.php:81
|
||||
msgid "No forum subscriptions"
|
||||
msgstr ""
|
||||
|
||||
#: forumlist.php:98
|
||||
msgid "Forums:"
|
||||
msgstr ""
|
||||
|
||||
#: forumlist.php:134
|
||||
msgid "Forumlist settings updated."
|
||||
msgstr ""
|
||||
|
||||
#: forumlist.php:162
|
||||
msgid "Forumlist Settings"
|
||||
msgstr ""
|
||||
|
||||
#: forumlist.php:164
|
||||
msgid "Randomise forum list"
|
||||
msgstr ""
|
||||
|
||||
#: forumlist.php:167
|
||||
msgid "Show forums on profile page"
|
||||
msgstr ""
|
||||
|
||||
#: forumlist.php:170
|
||||
msgid "Show forums on network page"
|
||||
msgstr ""
|
||||
|
||||
#: forumlist.php:178
|
||||
msgid "Submit"
|
||||
msgstr ""
|
12
forumlist/lang/ca/strings.php
Normal file
12
forumlist/lang/ca/strings.php
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?php
|
||||
|
||||
$a->strings["Forums"] = "Forums";
|
||||
$a->strings["show/hide"] = "mostra/amaga";
|
||||
$a->strings["No forum subscriptions"] = "No hi ha subscripcions al fòrum";
|
||||
$a->strings["Forums:"] = "Fòrums:";
|
||||
$a->strings["Forumlist settings updated."] = "Ajustos de Forumlist actualitzats.";
|
||||
$a->strings["Forumlist Settings"] = "Ajustos de Forumlist";
|
||||
$a->strings["Randomise forum list"] = "";
|
||||
$a->strings["Show forums on profile page"] = "";
|
||||
$a->strings["Show forums on network page"] = "";
|
||||
$a->strings["Submit"] = "Enviar";
|
60
forumlist/lang/cs/messages.po
Normal file
60
forumlist/lang/cs/messages.po
Normal file
|
@ -0,0 +1,60 @@
|
|||
# ADDON forumlist
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica forumlist addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Michal Šupler <msupler@gmail.com>, 2014-2015
|
||||
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: 2015-02-11 19:40+0000\n"
|
||||
"Last-Translator: Michal Šupler <msupler@gmail.com>\n"
|
||||
"Language-Team: Czech (http://www.transifex.com/projects/p/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=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
|
||||
#: forumlist.php:64
|
||||
msgid "Forums"
|
||||
msgstr "Fóra"
|
||||
|
||||
#: forumlist.php:67
|
||||
msgid "show/hide"
|
||||
msgstr "zobrazit/skrýt"
|
||||
|
||||
#: forumlist.php:81
|
||||
msgid "No forum subscriptions"
|
||||
msgstr "Žádné registrace k fórům"
|
||||
|
||||
#: forumlist.php:98
|
||||
msgid "Forums:"
|
||||
msgstr "Fóra:"
|
||||
|
||||
#: forumlist.php:134
|
||||
msgid "Forumlist settings updated."
|
||||
msgstr "Nastavení Forumlist aktualizováno."
|
||||
|
||||
#: forumlist.php:162
|
||||
msgid "Forumlist Settings"
|
||||
msgstr "Nastavení Forumlist"
|
||||
|
||||
#: forumlist.php:164
|
||||
msgid "Randomise forum list"
|
||||
msgstr "Zamíchat lis fór"
|
||||
|
||||
#: forumlist.php:167
|
||||
msgid "Show forums on profile page"
|
||||
msgstr "Zobrazit fóra na profilové stránce"
|
||||
|
||||
#: forumlist.php:170
|
||||
msgid "Show forums on network page"
|
||||
msgstr "Zobrazit fóra na stránce Síť"
|
||||
|
||||
#: forumlist.php:178
|
||||
msgid "Submit"
|
||||
msgstr "Odeslat"
|
17
forumlist/lang/cs/strings.php
Normal file
17
forumlist/lang/cs/strings.php
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_cs")) {
|
||||
function string_plural_select_cs($n){
|
||||
return ($n==1) ? 0 : ($n>=2 && $n<=4) ? 1 : 2;;
|
||||
}}
|
||||
;
|
||||
$a->strings["Forums"] = "Fóra";
|
||||
$a->strings["show/hide"] = "zobrazit/skrýt";
|
||||
$a->strings["No forum subscriptions"] = "Žádné registrace k fórům";
|
||||
$a->strings["Forums:"] = "Fóra:";
|
||||
$a->strings["Forumlist settings updated."] = "Nastavení Forumlist aktualizováno.";
|
||||
$a->strings["Forumlist Settings"] = "Nastavení Forumlist";
|
||||
$a->strings["Randomise forum list"] = "Zamíchat lis fór";
|
||||
$a->strings["Show forums on profile page"] = "Zobrazit fóra na profilové stránce";
|
||||
$a->strings["Show forums on network page"] = "Zobrazit fóra na stránce Síť";
|
||||
$a->strings["Submit"] = "Odeslat";
|
61
forumlist/lang/de/messages.po
Normal file
61
forumlist/lang/de/messages.po
Normal file
|
@ -0,0 +1,61 @@
|
|||
# ADDON forumlist
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica forumlist addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Abrax <webmaster@a-zwenkau.de>, 2014
|
||||
# bavatar <tobias.diekershoff@gmx.net>, 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: 2014-10-15 12:28+0000\n"
|
||||
"Last-Translator: Abrax <webmaster@a-zwenkau.de>\n"
|
||||
"Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: de\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: forumlist.php:64
|
||||
msgid "Forums"
|
||||
msgstr "Foren"
|
||||
|
||||
#: forumlist.php:67
|
||||
msgid "show/hide"
|
||||
msgstr "anzeigen/verbergen"
|
||||
|
||||
#: forumlist.php:81
|
||||
msgid "No forum subscriptions"
|
||||
msgstr "Keine Foren-Mitgliedschaften."
|
||||
|
||||
#: forumlist.php:98
|
||||
msgid "Forums:"
|
||||
msgstr "Foren:"
|
||||
|
||||
#: forumlist.php:134
|
||||
msgid "Forumlist settings updated."
|
||||
msgstr "Einstellungen zur Foren-Liste aktualisiert."
|
||||
|
||||
#: forumlist.php:162
|
||||
msgid "Forumlist Settings"
|
||||
msgstr "Foren-Liste Einstellungen"
|
||||
|
||||
#: forumlist.php:164
|
||||
msgid "Randomise forum list"
|
||||
msgstr "Zufällige Zusammenstellung der Foren-Liste"
|
||||
|
||||
#: forumlist.php:167
|
||||
msgid "Show forums on profile page"
|
||||
msgstr "Zeige die Liste der Foren auf der Profilseite"
|
||||
|
||||
#: forumlist.php:170
|
||||
msgid "Show forums on network page"
|
||||
msgstr "Zeige Foren auf der Netzwerk-Seite"
|
||||
|
||||
#: forumlist.php:178
|
||||
msgid "Submit"
|
||||
msgstr "Senden"
|
17
forumlist/lang/de/strings.php
Normal file
17
forumlist/lang/de/strings.php
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_de")) {
|
||||
function string_plural_select_de($n){
|
||||
return ($n != 1);;
|
||||
}}
|
||||
;
|
||||
$a->strings["Forums"] = "Foren";
|
||||
$a->strings["show/hide"] = "anzeigen/verbergen";
|
||||
$a->strings["No forum subscriptions"] = "Keine Foren-Mitgliedschaften.";
|
||||
$a->strings["Forums:"] = "Foren:";
|
||||
$a->strings["Forumlist settings updated."] = "Einstellungen zur Foren-Liste aktualisiert.";
|
||||
$a->strings["Forumlist Settings"] = "Foren-Liste Einstellungen";
|
||||
$a->strings["Randomise forum list"] = "Zufällige Zusammenstellung der Foren-Liste";
|
||||
$a->strings["Show forums on profile page"] = "Zeige die Liste der Foren auf der Profilseite";
|
||||
$a->strings["Show forums on network page"] = "Zeige Foren auf der Netzwerk-Seite";
|
||||
$a->strings["Submit"] = "Senden";
|
9
forumlist/lang/eo/strings.php
Normal file
9
forumlist/lang/eo/strings.php
Normal file
|
@ -0,0 +1,9 @@
|
|||
<?php
|
||||
|
||||
$a->strings["Forums"] = "Forumoj";
|
||||
$a->strings["show/hide"] = "";
|
||||
$a->strings["No forum subscriptions"] = "";
|
||||
$a->strings["Forums:"] = "Forumoj:";
|
||||
$a->strings["Forumlist settings updated."] = "";
|
||||
$a->strings["Forumlist Settings"] = "";
|
||||
$a->strings["Submit"] = "Sendi";
|
60
forumlist/lang/es/messages.po
Normal file
60
forumlist/lang/es/messages.po
Normal file
|
@ -0,0 +1,60 @@
|
|||
# ADDON forumlist
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica forumlist addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Alberto Díaz Tormo <albertodiaztormo@gmail.com>, 2016
|
||||
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: 2016-10-23 11:41+0000\n"
|
||||
"Last-Translator: Alberto Díaz Tormo <albertodiaztormo@gmail.com>\n"
|
||||
"Language-Team: Spanish (http://www.transifex.com/Friendica/friendica/language/es/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: es\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: forumlist.php:64
|
||||
msgid "Forums"
|
||||
msgstr "Foros"
|
||||
|
||||
#: forumlist.php:67
|
||||
msgid "show/hide"
|
||||
msgstr "mostrar/ocultar"
|
||||
|
||||
#: forumlist.php:81
|
||||
msgid "No forum subscriptions"
|
||||
msgstr "Sin subscripciones de foro"
|
||||
|
||||
#: forumlist.php:98
|
||||
msgid "Forums:"
|
||||
msgstr "Foros:"
|
||||
|
||||
#: forumlist.php:134
|
||||
msgid "Forumlist settings updated."
|
||||
msgstr "Ajustes de la lista de foros actualizados."
|
||||
|
||||
#: forumlist.php:162
|
||||
msgid "Forumlist Settings"
|
||||
msgstr "Ajustes de la lista de foros"
|
||||
|
||||
#: forumlist.php:164
|
||||
msgid "Randomise forum list"
|
||||
msgstr "Aleatorizar la lista de foros"
|
||||
|
||||
#: forumlist.php:167
|
||||
msgid "Show forums on profile page"
|
||||
msgstr "Mostrar foros en la página de perfil"
|
||||
|
||||
#: forumlist.php:170
|
||||
msgid "Show forums on network page"
|
||||
msgstr "Mostrar foros en la página de red"
|
||||
|
||||
#: forumlist.php:178
|
||||
msgid "Submit"
|
||||
msgstr "Enviar"
|
17
forumlist/lang/es/strings.php
Normal file
17
forumlist/lang/es/strings.php
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_es")) {
|
||||
function string_plural_select_es($n){
|
||||
return ($n != 1);;
|
||||
}}
|
||||
;
|
||||
$a->strings["Forums"] = "Foros";
|
||||
$a->strings["show/hide"] = "mostrar/ocultar";
|
||||
$a->strings["No forum subscriptions"] = "Sin subscripciones de foro";
|
||||
$a->strings["Forums:"] = "Foros:";
|
||||
$a->strings["Forumlist settings updated."] = "Ajustes de la lista de foros actualizados.";
|
||||
$a->strings["Forumlist Settings"] = "Ajustes de la lista de foros";
|
||||
$a->strings["Randomise forum list"] = "Aleatorizar la lista de foros";
|
||||
$a->strings["Show forums on profile page"] = "Mostrar foros en la página de perfil";
|
||||
$a->strings["Show forums on network page"] = "Mostrar foros en la página de red";
|
||||
$a->strings["Submit"] = "Enviar";
|
12
forumlist/lang/fr/strings.php
Normal file
12
forumlist/lang/fr/strings.php
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?php
|
||||
|
||||
$a->strings["Forums"] = "Forums";
|
||||
$a->strings["show/hide"] = "Montrer/cacher";
|
||||
$a->strings["No forum subscriptions"] = "Pas d'abonnement au forum";
|
||||
$a->strings["Forums:"] = "Forums:";
|
||||
$a->strings["Forumlist settings updated."] = "Paramètres de la liste des forums mis à jour.";
|
||||
$a->strings["Forumlist Settings"] = "Paramètres de la liste des forums";
|
||||
$a->strings["Randomise forum list"] = "Mélanger la liste de forums";
|
||||
$a->strings["Show forums on profile page"] = "Montrer les forums sur le profil";
|
||||
$a->strings["Show forums on network page"] = "";
|
||||
$a->strings["Submit"] = "Envoyer";
|
9
forumlist/lang/is/strings.php
Normal file
9
forumlist/lang/is/strings.php
Normal file
|
@ -0,0 +1,9 @@
|
|||
<?php
|
||||
|
||||
$a->strings["Forums"] = "";
|
||||
$a->strings["show/hide"] = "";
|
||||
$a->strings["No forum subscriptions"] = "";
|
||||
$a->strings["Forums:"] = "";
|
||||
$a->strings["Forumlist settings updated."] = "";
|
||||
$a->strings["Forumlist Settings"] = "";
|
||||
$a->strings["Submit"] = "Senda inn";
|
60
forumlist/lang/it/messages.po
Normal file
60
forumlist/lang/it/messages.po
Normal file
|
@ -0,0 +1,60 @@
|
|||
# ADDON forumlist
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica forumlist addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# fabrixxm <fabrix.xm@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: 2015-12-14 11:14+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"
|
||||
|
||||
#: forumlist.php:64
|
||||
msgid "Forums"
|
||||
msgstr "Forum"
|
||||
|
||||
#: forumlist.php:67
|
||||
msgid "show/hide"
|
||||
msgstr "mostra/nascondi"
|
||||
|
||||
#: forumlist.php:81
|
||||
msgid "No forum subscriptions"
|
||||
msgstr "Nessun forum collegato"
|
||||
|
||||
#: forumlist.php:98
|
||||
msgid "Forums:"
|
||||
msgstr "Forum:"
|
||||
|
||||
#: forumlist.php:134
|
||||
msgid "Forumlist settings updated."
|
||||
msgstr "Impostazioni Elenco Forum aggiornate."
|
||||
|
||||
#: forumlist.php:162
|
||||
msgid "Forumlist Settings"
|
||||
msgstr "Impostazioni Elenco Forum"
|
||||
|
||||
#: forumlist.php:164
|
||||
msgid "Randomise forum list"
|
||||
msgstr "Ordina casualmente l'elenco"
|
||||
|
||||
#: forumlist.php:167
|
||||
msgid "Show forums on profile page"
|
||||
msgstr "Mostra i forum sulla pagina profilo"
|
||||
|
||||
#: forumlist.php:170
|
||||
msgid "Show forums on network page"
|
||||
msgstr "Mostra i forum sulla pagina Rete"
|
||||
|
||||
#: forumlist.php:178
|
||||
msgid "Submit"
|
||||
msgstr "Invia"
|
17
forumlist/lang/it/strings.php
Normal file
17
forumlist/lang/it/strings.php
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_it")) {
|
||||
function string_plural_select_it($n){
|
||||
return ($n != 1);;
|
||||
}}
|
||||
;
|
||||
$a->strings["Forums"] = "Forum";
|
||||
$a->strings["show/hide"] = "mostra/nascondi";
|
||||
$a->strings["No forum subscriptions"] = "Nessun forum collegato";
|
||||
$a->strings["Forums:"] = "Forum:";
|
||||
$a->strings["Forumlist settings updated."] = "Impostazioni Elenco Forum aggiornate.";
|
||||
$a->strings["Forumlist Settings"] = "Impostazioni Elenco Forum";
|
||||
$a->strings["Randomise forum list"] = "Ordina casualmente l'elenco";
|
||||
$a->strings["Show forums on profile page"] = "Mostra i forum sulla pagina profilo";
|
||||
$a->strings["Show forums on network page"] = "Mostra i forum sulla pagina Rete";
|
||||
$a->strings["Submit"] = "Invia";
|
12
forumlist/lang/nb-no/strings.php
Normal file
12
forumlist/lang/nb-no/strings.php
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?php
|
||||
|
||||
$a->strings["Forums"] = "";
|
||||
$a->strings["show/hide"] = "";
|
||||
$a->strings["No forum subscriptions"] = "";
|
||||
$a->strings["Forums:"] = "";
|
||||
$a->strings["Forumlist settings updated."] = "";
|
||||
$a->strings["Forumlist Settings"] = "";
|
||||
$a->strings["Randomise forum list"] = "";
|
||||
$a->strings["Show forums on profile page"] = "";
|
||||
$a->strings["Show forums on network page"] = "";
|
||||
$a->strings["Submit"] = "Lagre";
|
12
forumlist/lang/pl/strings.php
Normal file
12
forumlist/lang/pl/strings.php
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?php
|
||||
|
||||
$a->strings["Forums"] = "Fora";
|
||||
$a->strings["show/hide"] = "pokaż/ukryj";
|
||||
$a->strings["No forum subscriptions"] = "";
|
||||
$a->strings["Forums:"] = "";
|
||||
$a->strings["Forumlist settings updated."] = "";
|
||||
$a->strings["Forumlist Settings"] = "";
|
||||
$a->strings["Randomise forum list"] = "";
|
||||
$a->strings["Show forums on profile page"] = "";
|
||||
$a->strings["Show forums on network page"] = "";
|
||||
$a->strings["Submit"] = "Potwierdź";
|
12
forumlist/lang/pt-br/strings.php
Normal file
12
forumlist/lang/pt-br/strings.php
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?php
|
||||
|
||||
$a->strings["Forums"] = "Fóruns";
|
||||
$a->strings["show/hide"] = "";
|
||||
$a->strings["No forum subscriptions"] = "";
|
||||
$a->strings["Forums:"] = "Fóruns:";
|
||||
$a->strings["Forumlist settings updated."] = "";
|
||||
$a->strings["Forumlist Settings"] = "";
|
||||
$a->strings["Randomise forum list"] = "";
|
||||
$a->strings["Show forums on profile page"] = "";
|
||||
$a->strings["Show forums on network page"] = "";
|
||||
$a->strings["Submit"] = "Enviar";
|
60
forumlist/lang/ro/messages.po
Normal file
60
forumlist/lang/ro/messages.po
Normal file
|
@ -0,0 +1,60 @@
|
|||
# ADDON forumlist
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica forumlist addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Doru DEACONU <dumitrudeaconu@yahoo.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: 2014-11-27 14:19+0000\n"
|
||||
"Last-Translator: Doru DEACONU <dumitrudeaconu@yahoo.com>\n"
|
||||
"Language-Team: Romanian (Romania) (http://www.transifex.com/projects/p/friendica/language/ro_RO/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ro_RO\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
|
||||
|
||||
#: forumlist.php:64
|
||||
msgid "Forums"
|
||||
msgstr "Forumuri"
|
||||
|
||||
#: forumlist.php:67
|
||||
msgid "show/hide"
|
||||
msgstr "afișare/ascundere"
|
||||
|
||||
#: forumlist.php:81
|
||||
msgid "No forum subscriptions"
|
||||
msgstr "Nu există subscrieri pe forum"
|
||||
|
||||
#: forumlist.php:98
|
||||
msgid "Forums:"
|
||||
msgstr "Forumuri:"
|
||||
|
||||
#: forumlist.php:134
|
||||
msgid "Forumlist settings updated."
|
||||
msgstr "Configurările Forumlist au fost actualizate."
|
||||
|
||||
#: forumlist.php:162
|
||||
msgid "Forumlist Settings"
|
||||
msgstr "Configurări Forumlist "
|
||||
|
||||
#: forumlist.php:164
|
||||
msgid "Randomise forum list"
|
||||
msgstr "Randomizare listă forum"
|
||||
|
||||
#: forumlist.php:167
|
||||
msgid "Show forums on profile page"
|
||||
msgstr "Afișare forumuri pe pagina de profil"
|
||||
|
||||
#: forumlist.php:170
|
||||
msgid "Show forums on network page"
|
||||
msgstr "Afișare forumuri pe pagina de rețea"
|
||||
|
||||
#: forumlist.php:178
|
||||
msgid "Submit"
|
||||
msgstr "Trimite"
|
17
forumlist/lang/ro/strings.php
Normal file
17
forumlist/lang/ro/strings.php
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_ro")) {
|
||||
function string_plural_select_ro($n){
|
||||
return ($n==1?0:((($n%100>19)||(($n%100==0)&&($n!=0)))?2:1));;
|
||||
}}
|
||||
;
|
||||
$a->strings["Forums"] = "Forumuri";
|
||||
$a->strings["show/hide"] = "afișare/ascundere";
|
||||
$a->strings["No forum subscriptions"] = "Nu există subscrieri pe forum";
|
||||
$a->strings["Forums:"] = "Forumuri:";
|
||||
$a->strings["Forumlist settings updated."] = "Configurările Forumlist au fost actualizate.";
|
||||
$a->strings["Forumlist Settings"] = "Configurări Forumlist ";
|
||||
$a->strings["Randomise forum list"] = "Randomizare listă forum";
|
||||
$a->strings["Show forums on profile page"] = "Afișare forumuri pe pagina de profil";
|
||||
$a->strings["Show forums on network page"] = "Afișare forumuri pe pagina de rețea";
|
||||
$a->strings["Submit"] = "Trimite";
|
60
forumlist/lang/ru/messages.po
Normal file
60
forumlist/lang/ru/messages.po
Normal file
|
@ -0,0 +1,60 @@
|
|||
# ADDON forumlist
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica forumlist addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Stanislav N. <pztrn@pztrn.name>, 2017
|
||||
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: 2017-04-08 17:11+0000\n"
|
||||
"Last-Translator: Stanislav N. <pztrn@pztrn.name>\n"
|
||||
"Language-Team: Russian (http://www.transifex.com/Friendica/friendica/language/ru/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ru\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#: forumlist.php:64
|
||||
msgid "Forums"
|
||||
msgstr "Форумы"
|
||||
|
||||
#: forumlist.php:67
|
||||
msgid "show/hide"
|
||||
msgstr "показать/скрыть"
|
||||
|
||||
#: forumlist.php:81
|
||||
msgid "No forum subscriptions"
|
||||
msgstr "Нет подписок на форумы"
|
||||
|
||||
#: forumlist.php:98
|
||||
msgid "Forums:"
|
||||
msgstr "Форумы:"
|
||||
|
||||
#: forumlist.php:134
|
||||
msgid "Forumlist settings updated."
|
||||
msgstr "Настройки Forumlist обновлены."
|
||||
|
||||
#: forumlist.php:162
|
||||
msgid "Forumlist Settings"
|
||||
msgstr "Настройки Forumlist"
|
||||
|
||||
#: forumlist.php:164
|
||||
msgid "Randomise forum list"
|
||||
msgstr "Случайный список форумов"
|
||||
|
||||
#: forumlist.php:167
|
||||
msgid "Show forums on profile page"
|
||||
msgstr "Показывать форумы на странице профиля"
|
||||
|
||||
#: forumlist.php:170
|
||||
msgid "Show forums on network page"
|
||||
msgstr "Показывать форумы на странице сети"
|
||||
|
||||
#: forumlist.php:178
|
||||
msgid "Submit"
|
||||
msgstr "Добавить"
|
17
forumlist/lang/ru/strings.php
Normal file
17
forumlist/lang/ru/strings.php
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_ru")) {
|
||||
function string_plural_select_ru($n){
|
||||
return ($n%10==1 && $n%100!=11 ? 0 : $n%10>=2 && $n%10<=4 && ($n%100<12 || $n%100>14) ? 1 : $n%10==0 || ($n%10>=5 && $n%10<=9) || ($n%100>=11 && $n%100<=14)? 2 : 3);;
|
||||
}}
|
||||
;
|
||||
$a->strings["Forums"] = "Форумы";
|
||||
$a->strings["show/hide"] = "показать/скрыть";
|
||||
$a->strings["No forum subscriptions"] = "Нет подписок на форумы";
|
||||
$a->strings["Forums:"] = "Форумы:";
|
||||
$a->strings["Forumlist settings updated."] = "Настройки Forumlist обновлены.";
|
||||
$a->strings["Forumlist Settings"] = "Настройки Forumlist";
|
||||
$a->strings["Randomise forum list"] = "Случайный список форумов";
|
||||
$a->strings["Show forums on profile page"] = "Показывать форумы на странице профиля";
|
||||
$a->strings["Show forums on network page"] = "Показывать форумы на странице сети";
|
||||
$a->strings["Submit"] = "Добавить";
|
60
forumlist/lang/sv/messages.po
Normal file
60
forumlist/lang/sv/messages.po
Normal file
|
@ -0,0 +1,60 @@
|
|||
# ADDON forumlist
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica forumlist addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Jonatan Nyberg <jonatan@autistici.org>, 2017
|
||||
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: 2017-02-13 20:15+0000\n"
|
||||
"Last-Translator: Jonatan Nyberg <jonatan@autistici.org>\n"
|
||||
"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: sv\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: forumlist.php:64
|
||||
msgid "Forums"
|
||||
msgstr "Forum"
|
||||
|
||||
#: forumlist.php:67
|
||||
msgid "show/hide"
|
||||
msgstr ""
|
||||
|
||||
#: forumlist.php:81
|
||||
msgid "No forum subscriptions"
|
||||
msgstr ""
|
||||
|
||||
#: forumlist.php:98
|
||||
msgid "Forums:"
|
||||
msgstr ""
|
||||
|
||||
#: forumlist.php:134
|
||||
msgid "Forumlist settings updated."
|
||||
msgstr ""
|
||||
|
||||
#: forumlist.php:162
|
||||
msgid "Forumlist Settings"
|
||||
msgstr ""
|
||||
|
||||
#: forumlist.php:164
|
||||
msgid "Randomise forum list"
|
||||
msgstr ""
|
||||
|
||||
#: forumlist.php:167
|
||||
msgid "Show forums on profile page"
|
||||
msgstr ""
|
||||
|
||||
#: forumlist.php:170
|
||||
msgid "Show forums on network page"
|
||||
msgstr ""
|
||||
|
||||
#: forumlist.php:178
|
||||
msgid "Submit"
|
||||
msgstr "Spara"
|
17
forumlist/lang/sv/strings.php
Normal file
17
forumlist/lang/sv/strings.php
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_sv")) {
|
||||
function string_plural_select_sv($n){
|
||||
return ($n != 1);;
|
||||
}}
|
||||
;
|
||||
$a->strings["Forums"] = "Forum";
|
||||
$a->strings["show/hide"] = "";
|
||||
$a->strings["No forum subscriptions"] = "";
|
||||
$a->strings["Forums:"] = "";
|
||||
$a->strings["Forumlist settings updated."] = "";
|
||||
$a->strings["Forumlist Settings"] = "";
|
||||
$a->strings["Randomise forum list"] = "";
|
||||
$a->strings["Show forums on profile page"] = "";
|
||||
$a->strings["Show forums on network page"] = "";
|
||||
$a->strings["Submit"] = "Spara";
|
12
forumlist/lang/zh-cn/strings.php
Normal file
12
forumlist/lang/zh-cn/strings.php
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?php
|
||||
|
||||
$a->strings["Forums"] = "论坛";
|
||||
$a->strings["show/hide"] = "表示/隐藏";
|
||||
$a->strings["No forum subscriptions"] = "没有评坛订阅";
|
||||
$a->strings["Forums:"] = "评坛:";
|
||||
$a->strings["Forumlist settings updated."] = "评坛单设置更新了。";
|
||||
$a->strings["Forumlist Settings"] = "评坛单设置";
|
||||
$a->strings["Randomise forum list"] = "洗牌评坛单";
|
||||
$a->strings["Show forums on profile page"] = "表示评坛在简介页";
|
||||
$a->strings["Show forums on network page"] = "表示评坛在网络页";
|
||||
$a->strings["Submit"] = "提交";
|
Loading…
Add table
Add a link
Reference in a new issue