]> git.mxchange.org Git - friendica-addons.git/commitdiff
[various] Rename forum to group
authorHypolite Petovan <hypolite@mrpetovan.com>
Sat, 3 Jun 2023 19:57:29 +0000 (15:57 -0400)
committerheluecht <heluecht@noreply.git.friendi.ca>
Sat, 3 Jun 2023 22:20:07 +0000 (00:20 +0200)
- Drop support for forumdirectory
- Add support for groupdirectory

51 files changed:
forumdirectory/forumdirectory.php
groupdirectory/groupdirectory.php [new file with mode: 0644]
groupdirectory/lang/C/messages.po [new file with mode: 0644]
groupdirectory/lang/ar/messages.po [new file with mode: 0644]
groupdirectory/lang/ar/strings.php [new file with mode: 0644]
groupdirectory/lang/ca/messages.po [new file with mode: 0644]
groupdirectory/lang/ca/strings.php [new file with mode: 0644]
groupdirectory/lang/cs/messages.po [new file with mode: 0644]
groupdirectory/lang/cs/strings.php [new file with mode: 0644]
groupdirectory/lang/da-dk/messages.po [new file with mode: 0644]
groupdirectory/lang/da-dk/strings.php [new file with mode: 0644]
groupdirectory/lang/de/messages.po [new file with mode: 0644]
groupdirectory/lang/de/strings.php [new file with mode: 0644]
groupdirectory/lang/eo/strings.php [new file with mode: 0644]
groupdirectory/lang/es/messages.po [new file with mode: 0644]
groupdirectory/lang/es/strings.php [new file with mode: 0644]
groupdirectory/lang/fi-fi/messages.po [new file with mode: 0644]
groupdirectory/lang/fi-fi/strings.php [new file with mode: 0644]
groupdirectory/lang/fr/messages.po [new file with mode: 0644]
groupdirectory/lang/fr/strings.php [new file with mode: 0644]
groupdirectory/lang/hu/messages.po [new file with mode: 0644]
groupdirectory/lang/hu/strings.php [new file with mode: 0644]
groupdirectory/lang/is/strings.php [new file with mode: 0644]
groupdirectory/lang/it/messages.po [new file with mode: 0644]
groupdirectory/lang/it/strings.php [new file with mode: 0644]
groupdirectory/lang/nb-no/strings.php [new file with mode: 0644]
groupdirectory/lang/nl/messages.po [new file with mode: 0644]
groupdirectory/lang/nl/strings.php [new file with mode: 0644]
groupdirectory/lang/pl/messages.po [new file with mode: 0644]
groupdirectory/lang/pl/strings.php [new file with mode: 0644]
groupdirectory/lang/pt-br/messages.po [new file with mode: 0644]
groupdirectory/lang/pt-br/strings.php [new file with mode: 0644]
groupdirectory/lang/ro/messages.po [new file with mode: 0644]
groupdirectory/lang/ro/strings.php [new file with mode: 0644]
groupdirectory/lang/ru/messages.po [new file with mode: 0644]
groupdirectory/lang/ru/strings.php [new file with mode: 0644]
groupdirectory/lang/sv/messages.po [new file with mode: 0644]
groupdirectory/lang/sv/strings.php [new file with mode: 0644]
groupdirectory/lang/zh-cn/strings.php [new file with mode: 0644]
libertree/lang/C/messages.po
libertree/libertree.php
newmemberwidget/README.md
newmemberwidget/lang/C/messages.po
newmemberwidget/newmemberwidget.php
pumpio/lang/C/messages.po
pumpio/pumpio.php
statusnet/statusnet.php
twitter/lang/C/messages.po
twitter/twitter.php
wppost/lang/C/messages.po
wppost/wppost.php

index 61d3efd4bbb5e110dde824ddfb40a6c0f33e6756..79267c4ee5ee72388255a91d5c95d1071746562b 100644 (file)
@@ -4,6 +4,8 @@
  * Description: Add a directory of forums hosted on your server, with verbose descriptions.
  * Version: 1.1
  * Author: Thomas Willingham <https://beardyunixer.com/profile/beardyunixer>
+ * Status: Unsupported
+ * Note: Please use Group Directory instead
  */
 
 use Friendica\App;
diff --git a/groupdirectory/groupdirectory.php b/groupdirectory/groupdirectory.php
new file mode 100644 (file)
index 0000000..7bad1ef
--- /dev/null
@@ -0,0 +1,155 @@
+<?php
+/**
+ * Name: Group Directory
+ * Description: Add a directory of groups hosted on your server, with verbose descriptions.
+ * Version: 1.1
+ * Author: Thomas Willingham <https://beardyunixer.com/profile/beardyunixer>
+ */
+
+use Friendica\Content\Nav;
+use Friendica\Content\Pager;
+use Friendica\Content\Widget;
+use Friendica\Core\Hook;
+use Friendica\Core\Renderer;
+use Friendica\Database\DBA;
+use Friendica\DI;
+use Friendica\Model\Profile;
+use Friendica\Model\User;
+
+global $groupdirectory_search;
+
+function groupdirectory_install()
+{
+       Hook::register('app_menu', __FILE__, 'groupdirectory_app_menu');
+}
+
+/**
+ * This is a statement rather than an actual function definition. The simple
+ * existence of this method is checked to figure out if the addon offers a
+ * module.
+ */
+/**
+ * This is a statement rather than an actual function definition. The simple
+ * existence of this method is checked to figure out if the addon offers a
+ * module.
+ */
+function groupdirectory_module() {}
+
+function groupdirectory_app_menu(array &$b)
+{
+       $b['app_menu'][] = '<div class="app-title"><a href="groupdirectory">' . DI::l10n()->t('Group Directory') . '</a></div>';
+}
+
+function groupdirectory_init()
+{
+       if (DI::userSession()->getLocalUserId()) {
+               DI::page()['aside'] .= Widget::findPeople();
+       }
+}
+
+function groupdirectory_post()
+{
+       global $groupdirectory_search;
+
+       if (!empty($_POST['search'])) {
+               $groupdirectory_search = $_POST['search'];
+       }
+}
+
+function groupdirectory_content()
+{
+       global $groupdirectory_search;
+
+       if (DI::config()->get('system', 'block_public') && !DI::userSession()->getLocalUserId() && !DI::userSession()->getRemoteUserId()) {
+               DI::sysmsg()->addNotice(DI::l10n()->t('Public access denied.'));
+               return '';
+       }
+
+       $o       = '';
+       $entries = [];
+
+       Nav::setSelected('directory');
+
+       if (!empty($groupdirectory_search)) {
+               $search = trim($groupdirectory_search);
+       } else {
+               $search = (!empty($_GET['search']) ? trim(rawurldecode($_GET['search'])) : '');
+       }
+
+       $gdirpath = '';
+       $dirurl   = DI::config()->get('system', 'directory');
+       if (strlen($dirurl)) {
+               $gdirpath = Profile::zrl($dirurl, true);
+       }
+
+       $sql_extra = '';
+       if (strlen($search)) {
+               $search = DBA::escape($search);
+
+               $sql_extra = " AND ((`profile`.`name` LIKE '%$search%') OR
+                               (`user`.`nickname` LIKE '%$search%') OR
+                               (`profile`.`about` LIKE '%$search%') OR
+                               (`profile`.`locality` LIKE '%$search%') OR
+                               (`profile`.`region` LIKE '%$search%') OR
+                               (`profile`.`country-name` LIKE '%$search%') OR
+                               (`profile`.`pub_keywords` LIKE '%$search%') OR
+                               (`profile`.`prv_keywords` LIKE '%$search%'))";
+       }
+
+       $publish = DI::config()->get('system', 'publish_all') ? '' : "`publish` = 1";
+
+       $total = 0;
+       $cnt   = DBA::fetchFirst("SELECT COUNT(*) AS `total` FROM `profile`
+                               INNER JOIN `user` ON `user`.`uid` = `profile`.`uid`
+                               WHERE $publish AND NOT `user`.`blocked` AND NOT `user`.`account_removed` AND `user`.`page-flags` = ? $sql_extra",
+               User::PAGE_FLAGS_COMMUNITY);
+       if (DBA::isResult($cnt)) {
+               $total = $cnt['total'];
+       }
+
+       $pager = new Pager(DI::l10n(), DI::args()->getQueryString(), 60);
+
+       $order = " ORDER BY `name` ASC ";
+
+       $limit = $pager->getStart() . "," . $pager->getItemsPerPage();
+
+       $r = DBA::p("SELECT `profile`.*, `user`.`nickname`, `user`.`timezone` , `user`.`page-flags`,
+                       `contact`.`addr`, `contact`.`url` FROM `profile`
+                       INNER JOIN `user` ON `user`.`uid` = `profile`.`uid`
+                       INNER JOIN `contact` ON `contact`.`uid` = `user`.`uid`
+                       WHERE $publish AND NOT `user`.`blocked` AND NOT `user`.`account_removed` AND `user`.`page-flags` = ? AND `contact`.`self`
+                       $sql_extra $order LIMIT $limit", User::PAGE_FLAGS_COMMUNITY
+       );
+
+       if (DBA::isResult($r)) {
+               if (in_array('small', DI::args()->getArgv())) {
+                       $photo = 'thumb';
+               } else {
+                       $photo = 'photo';
+               }
+
+               while ($rr = DBA::fetch($r)) {
+                       $entries[] = Friendica\Module\Directory::formatEntry($rr, $photo);
+               }
+               DBA::close($r);
+       } else {
+               DI::sysmsg()->addNotice(DI::l10n()->t('No entries (some entries may be hidden).'));
+       }
+
+       $tpl = Renderer::getMarkupTemplate('directory_header.tpl');
+       $o   .= Renderer::replaceMacros($tpl, [
+               '$search'     => $search,
+               '$globaldir'  => DI::l10n()->t('Global Directory'),
+               '$gdirpath'   => $gdirpath,
+               '$desc'       => DI::l10n()->t('Find on this site'),
+               '$contacts'   => $entries,
+               '$finding'    => DI::l10n()->t('Results for:'),
+               '$findterm'   => (strlen($search) ? $search : ""),
+               '$title'      => DI::l10n()->t('Group Directory'),
+               '$search_mod' => 'groupdirectory',
+               '$submit'     => DI::l10n()->t('Find'),
+               '$paginate'   => $pager->renderFull($total),
+       ]);
+
+       return $o;
+}
diff --git a/groupdirectory/lang/C/messages.po b/groupdirectory/lang/C/messages.po
new file mode 100644 (file)
index 0000000..f83171f
--- /dev/null
@@ -0,0 +1,46 @@
+# ADDON groupdirectory
+# Copyright (C) 
+# This file is distributed under the same license as the Friendica groupdirectory addon package.
+# 
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2023-06-03 15:49-0400\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"
+
+#: groupdirectory.php:40 groupdirectory.php:148
+msgid "Group Directory"
+msgstr ""
+
+#: groupdirectory.php:64
+msgid "Public access denied."
+msgstr ""
+
+#: groupdirectory.php:136
+msgid "No entries (some entries may be hidden)."
+msgstr ""
+
+#: groupdirectory.php:142
+msgid "Global Directory"
+msgstr ""
+
+#: groupdirectory.php:144
+msgid "Find on this site"
+msgstr ""
+
+#: groupdirectory.php:146
+msgid "Results for:"
+msgstr ""
+
+#: groupdirectory.php:150
+msgid "Find"
+msgstr ""
diff --git a/groupdirectory/lang/ar/messages.po b/groupdirectory/lang/ar/messages.po
new file mode 100644 (file)
index 0000000..24380f0
--- /dev/null
@@ -0,0 +1,50 @@
+# ADDON forumdirectory
+# Copyright (C)
+# This file is distributed under the same license as the Friendica forumdirectory addon package.
+# 
+# 
+# Translators:
+# abidin toumi <abidin24@tutanota.com>, 2021
+# ButterflyOfFire, 2019
+# Farida Khalaf <faridakhalaf@hotmail.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-10-29 10:27+0000\n"
+"Last-Translator: abidin toumi <abidin24@tutanota.com>\n"
+"Language-Team: Arabic (http://www.transifex.com/Friendica/friendica/language/ar/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: ar\n"
+"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
+
+#: forumdirectory.php:33 forumdirectory.php:137
+msgid "Forum Directory"
+msgstr "دليل المنتدى"
+
+#: forumdirectory.php:53
+msgid "Public access denied."
+msgstr "رُفض الوصول العمومي."
+
+#: forumdirectory.php:125
+msgid "No entries (some entries may be hidden)."
+msgstr "لا توجد مدخلات (قد تكون بعض المدخلات مخفية)."
+
+#: forumdirectory.php:131
+msgid "Global Directory"
+msgstr "الدليل العالمي"
+
+#: forumdirectory.php:133
+msgid "Find on this site"
+msgstr "ابحث في هذا الموقع"
+
+#: forumdirectory.php:135
+msgid "Results for:"
+msgstr "النتائج:"
+
+#: forumdirectory.php:139
+msgid "Find"
+msgstr "ابحث"
diff --git a/groupdirectory/lang/ar/strings.php b/groupdirectory/lang/ar/strings.php
new file mode 100644 (file)
index 0000000..eb6f307
--- /dev/null
@@ -0,0 +1,14 @@
+<?php
+
+if(! function_exists("string_plural_select_ar")) {
+function string_plural_select_ar($n){
+       $n = intval($n);
+       if ($n==0) { return 0; } else if ($n==1) { return 1; } else if ($n==2) { return 2; } else if ($n%100>=3 && $n%100<=10) { return 3; } else if ($n%100>=11 && $n%100<=99) { return 4; } else  { return 5; }
+}}
+$a->strings['Forum Directory'] = 'دليل المنتدى';
+$a->strings['Public access denied.'] = 'رُفض الوصول العمومي.';
+$a->strings['No entries (some entries may be hidden).'] = 'لا توجد مدخلات (قد تكون بعض المدخلات مخفية).';
+$a->strings['Global Directory'] = 'الدليل العالمي';
+$a->strings['Find on this site'] = 'ابحث في هذا الموقع';
+$a->strings['Results for:'] = 'النتائج:';
+$a->strings['Find'] = 'ابحث';
diff --git a/groupdirectory/lang/ca/messages.po b/groupdirectory/lang/ca/messages.po
new file mode 100644 (file)
index 0000000..0aa19b1
--- /dev/null
@@ -0,0 +1,80 @@
+# ADDON forumdirectory
+# Copyright (C)
+# This file is distributed under the same license as the Friendica forumdirectory addon package.
+# 
+# 
+# Translators:
+# Joan Bar <friendica@tutanota.com>, 2019
+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: 2019-10-18 18:57+0000\n"
+"Last-Translator: Joan Bar <friendica@tutanota.com>\n"
+"Language-Team: Catalan (http://www.transifex.com/Friendica/friendica/language/ca/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: ca\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: forumdirectory.php:22
+msgid "Forum Directory"
+msgstr "Directori de fòrums"
+
+#: forumdirectory.php:53
+msgid "Public access denied."
+msgstr "L'accés al públic s'ha denegat."
+
+#: forumdirectory.php:71
+msgid "Global Directory"
+msgstr "Directori global"
+
+#: forumdirectory.php:79
+msgid "Find on this site"
+msgstr "Cerqueu en aquest lloc"
+
+#: forumdirectory.php:81
+msgid "Finding: "
+msgstr "Trobament:"
+
+#: forumdirectory.php:82
+msgid "Site Directory"
+msgstr "Directori de llocs"
+
+#: forumdirectory.php:83
+msgid "Find"
+msgstr "trobar"
+
+#: forumdirectory.php:133
+msgid "Age: "
+msgstr "Edat:"
+
+#: forumdirectory.php:136
+msgid "Gender: "
+msgstr "Gènere:"
+
+#: forumdirectory.php:156
+msgid "Location:"
+msgstr "Ubicació:"
+
+#: forumdirectory.php:158
+msgid "Gender:"
+msgstr "Gènere:"
+
+#: forumdirectory.php:160
+msgid "Status:"
+msgstr "Estat:"
+
+#: forumdirectory.php:162
+msgid "Homepage:"
+msgstr "Pàgina inicial:"
+
+#: forumdirectory.php:164
+msgid "About:"
+msgstr "Sobre:"
+
+#: forumdirectory.php:201
+msgid "No entries (some entries may be hidden)."
+msgstr "No hi ha entrades (algunes entrades poden estar ocultes)."
diff --git a/groupdirectory/lang/ca/strings.php b/groupdirectory/lang/ca/strings.php
new file mode 100644 (file)
index 0000000..07a3948
--- /dev/null
@@ -0,0 +1,22 @@
+<?php
+
+if(! function_exists("string_plural_select_ca")) {
+function string_plural_select_ca($n){
+       $n = intval($n);
+       return intval($n != 1);
+}}
+$a->strings['Forum Directory'] = 'Directori de fòrums';
+$a->strings['Public access denied.'] = 'L\'accés al públic s\'ha denegat.';
+$a->strings['Global Directory'] = 'Directori global';
+$a->strings['Find on this site'] = 'Cerqueu en aquest lloc';
+$a->strings['Finding: '] = 'Trobament:';
+$a->strings['Site Directory'] = 'Directori de llocs';
+$a->strings['Find'] = 'trobar';
+$a->strings['Age: '] = 'Edat:';
+$a->strings['Gender: '] = 'Gènere:';
+$a->strings['Location:'] = 'Ubicació:';
+$a->strings['Gender:'] = 'Gènere:';
+$a->strings['Status:'] = 'Estat:';
+$a->strings['Homepage:'] = 'Pàgina inicial:';
+$a->strings['About:'] = 'Sobre:';
+$a->strings['No entries (some entries may be hidden).'] = 'No hi ha entrades (algunes entrades poden estar ocultes).';
diff --git a/groupdirectory/lang/cs/messages.po b/groupdirectory/lang/cs/messages.po
new file mode 100644 (file)
index 0000000..138c26f
--- /dev/null
@@ -0,0 +1,81 @@
+# ADDON forumdirectory
+# Copyright (C)
+# This file is distributed under the same license as the Friendica forumdirectory 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-09-11 19:04+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"
+
+#: forumdirectory.php:22
+msgid "Forum Directory"
+msgstr "Adresář fór"
+
+#: forumdirectory.php:53
+msgid "Public access denied."
+msgstr "Veřejný přístup odepřen."
+
+#: forumdirectory.php:71
+msgid "Global Directory"
+msgstr "Globální adresář"
+
+#: forumdirectory.php:79
+msgid "Find on this site"
+msgstr "Najít na tomto webu"
+
+#: forumdirectory.php:81
+msgid "Finding: "
+msgstr "Hledání: "
+
+#: forumdirectory.php:82
+msgid "Site Directory"
+msgstr "Adresář serveru"
+
+#: forumdirectory.php:83
+msgid "Find"
+msgstr "Najít"
+
+#: forumdirectory.php:133
+msgid "Age: "
+msgstr "Věk: "
+
+#: forumdirectory.php:136
+msgid "Gender: "
+msgstr "Pohlaví: "
+
+#: forumdirectory.php:156
+msgid "Location:"
+msgstr "Poloha:"
+
+#: forumdirectory.php:158
+msgid "Gender:"
+msgstr "Pohlaví:"
+
+#: forumdirectory.php:160
+msgid "Status:"
+msgstr "Stav:"
+
+#: forumdirectory.php:162
+msgid "Homepage:"
+msgstr "Domovská stránka:"
+
+#: forumdirectory.php:164
+msgid "About:"
+msgstr "O mě:"
+
+#: forumdirectory.php:201
+msgid "No entries (some entries may be hidden)."
+msgstr "Žádné záznamy (některé položky mohou být skryty)."
diff --git a/groupdirectory/lang/cs/strings.php b/groupdirectory/lang/cs/strings.php
new file mode 100644 (file)
index 0000000..2e7d637
--- /dev/null
@@ -0,0 +1,22 @@
+<?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['Forum Directory'] = 'Adresář fór';
+$a->strings['Public access denied.'] = 'Veřejný přístup odepřen.';
+$a->strings['Global Directory'] = 'Globální adresář';
+$a->strings['Find on this site'] = 'Najít na tomto webu';
+$a->strings['Finding: '] = 'Hledání: ';
+$a->strings['Site Directory'] = 'Adresář serveru';
+$a->strings['Find'] = 'Najít';
+$a->strings['Age: '] = 'Věk: ';
+$a->strings['Gender: '] = 'Pohlaví: ';
+$a->strings['Location:'] = 'Poloha:';
+$a->strings['Gender:'] = 'Pohlaví:';
+$a->strings['Status:'] = 'Stav:';
+$a->strings['Homepage:'] = 'Domovská stránka:';
+$a->strings['About:'] = 'O mě:';
+$a->strings['No entries (some entries may be hidden).'] = 'Žádné záznamy (některé položky mohou být skryty).';
diff --git a/groupdirectory/lang/da-dk/messages.po b/groupdirectory/lang/da-dk/messages.po
new file mode 100644 (file)
index 0000000..882c896
--- /dev/null
@@ -0,0 +1,48 @@
+# ADDON forumdirectory
+# Copyright (C)
+# This file is distributed under the same license as the Friendica forumdirectory addon package.
+# 
+# 
+# Translators:
+# Anton <dev@atjn.dk>, 2022
+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: 2014-06-22 12:31+0000\n"
+"Last-Translator: Anton <dev@atjn.dk>, 2022\n"
+"Language-Team: Danish (Denmark) (http://www.transifex.com/Friendica/friendica/language/da_DK/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: da_DK\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: forumdirectory.php:33 forumdirectory.php:137
+msgid "Forum Directory"
+msgstr "Forum adressebog"
+
+#: forumdirectory.php:53
+msgid "Public access denied."
+msgstr "Offentlig adgang nægtet."
+
+#: forumdirectory.php:125
+msgid "No entries (some entries may be hidden)."
+msgstr "Ingen poster (nogle poster er måske skjulte)."
+
+#: forumdirectory.php:131
+msgid "Global Directory"
+msgstr "Global adressebog"
+
+#: forumdirectory.php:133
+msgid "Find on this site"
+msgstr "Find på denne side"
+
+#: forumdirectory.php:135
+msgid "Results for:"
+msgstr "Resultater for:"
+
+#: forumdirectory.php:139
+msgid "Find"
+msgstr "Find"
diff --git a/groupdirectory/lang/da-dk/strings.php b/groupdirectory/lang/da-dk/strings.php
new file mode 100644 (file)
index 0000000..fecaed7
--- /dev/null
@@ -0,0 +1,14 @@
+<?php
+
+if(! function_exists("string_plural_select_da_dk")) {
+function string_plural_select_da_dk($n){
+       $n = intval($n);
+       return intval($n != 1);
+}}
+$a->strings['Forum Directory'] = 'Forum adressebog';
+$a->strings['Public access denied.'] = 'Offentlig adgang nægtet.';
+$a->strings['No entries (some entries may be hidden).'] = 'Ingen poster (nogle poster er måske skjulte).';
+$a->strings['Global Directory'] = 'Global adressebog';
+$a->strings['Find on this site'] = 'Find på denne side';
+$a->strings['Results for:'] = 'Resultater for:';
+$a->strings['Find'] = 'Find';
diff --git a/groupdirectory/lang/de/messages.po b/groupdirectory/lang/de/messages.po
new file mode 100644 (file)
index 0000000..35ee4a5
--- /dev/null
@@ -0,0 +1,49 @@
+# ADDON forumdirectory
+# Copyright (C)
+# This file is distributed under the same license as the Friendica forumdirectory addon package.
+# 
+# 
+# Translators:
+# Tobias Diekershoff <tobias.diekershoff@gmx.net>, 2014
+# Tobias Diekershoff <tobias.diekershoff@gmx.net>, 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: 2014-06-22 12:31+0000\n"
+"Last-Translator: Tobias Diekershoff <tobias.diekershoff@gmx.net>, 2021\n"
+"Language-Team: German (http://app.transifex.com/Friendica/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"
+
+#: forumdirectory.php:33 forumdirectory.php:137
+msgid "Forum Directory"
+msgstr "Foren Verzeichnis"
+
+#: forumdirectory.php:53
+msgid "Public access denied."
+msgstr "Öffentlicher Zugriff verweigert."
+
+#: forumdirectory.php:125
+msgid "No entries (some entries may be hidden)."
+msgstr "Keine Einträge (einige Einträge könnten versteckt sein)."
+
+#: forumdirectory.php:131
+msgid "Global Directory"
+msgstr "Weltweites Verzeichnis"
+
+#: forumdirectory.php:133
+msgid "Find on this site"
+msgstr "Auf diesem Server suchen"
+
+#: forumdirectory.php:135
+msgid "Results for:"
+msgstr "Ergebnis für:"
+
+#: forumdirectory.php:139
+msgid "Find"
+msgstr "Finde"
diff --git a/groupdirectory/lang/de/strings.php b/groupdirectory/lang/de/strings.php
new file mode 100644 (file)
index 0000000..081f315
--- /dev/null
@@ -0,0 +1,14 @@
+<?php
+
+if(! function_exists("string_plural_select_de")) {
+function string_plural_select_de($n){
+       $n = intval($n);
+       return intval($n != 1);
+}}
+$a->strings['Forum Directory'] = 'Foren Verzeichnis';
+$a->strings['Public access denied.'] = 'Öffentlicher Zugriff verweigert.';
+$a->strings['No entries (some entries may be hidden).'] = 'Keine Einträge (einige Einträge könnten versteckt sein).';
+$a->strings['Global Directory'] = 'Weltweites Verzeichnis';
+$a->strings['Find on this site'] = 'Auf diesem Server suchen';
+$a->strings['Results for:'] = 'Ergebnis für:';
+$a->strings['Find'] = 'Finde';
diff --git a/groupdirectory/lang/eo/strings.php b/groupdirectory/lang/eo/strings.php
new file mode 100644 (file)
index 0000000..4ec15e7
--- /dev/null
@@ -0,0 +1,16 @@
+<?php\r
+\r
+$a->strings["Public access denied."] = "Publika atingo ne permesita.";\r
+$a->strings["Global Directory"] = "Tutmonda Katalogo";\r
+$a->strings["Find on this site"] = "Trovi en ĉi retejo";\r
+$a->strings["Finding: "] = "Trovata:";\r
+$a->strings["Site Directory"] = "Reteja Katalogo";\r
+$a->strings["Find"] = "Trovi";\r
+$a->strings["Age: "] = "Aĝo:";\r
+$a->strings["Gender: "] = "Sekso:";\r
+$a->strings["Location:"] = "Loko:";\r
+$a->strings["Gender:"] = "Sekso:";\r
+$a->strings["Status:"] = "Stato:";\r
+$a->strings["Homepage:"] = "Hejmpaĝo:";\r
+$a->strings["About:"] = "Pri:";\r
+$a->strings["No entries (some entries may be hidden)."] = "Neniom da afiŝoj (kelkaj afiŝoj eble ne estas videbla).";\r
diff --git a/groupdirectory/lang/es/messages.po b/groupdirectory/lang/es/messages.po
new file mode 100644 (file)
index 0000000..7494822
--- /dev/null
@@ -0,0 +1,49 @@
+# ADDON forumdirectory
+# Copyright (C)
+# This file is distributed under the same license as the Friendica forumdirectory addon package.
+# 
+# 
+# Translators:
+# Albert, 2016
+# Senex Petrovic <javierruizo@hotmail.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-04-01 09:54+0000\n"
+"Last-Translator: Senex Petrovic <javierruizo@hotmail.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"
+
+#: forumdirectory.php:33 forumdirectory.php:137
+msgid "Forum Directory"
+msgstr "Directorio de foro"
+
+#: forumdirectory.php:53
+msgid "Public access denied."
+msgstr "Acceso público denegado."
+
+#: forumdirectory.php:125
+msgid "No entries (some entries may be hidden)."
+msgstr "Sin entradas (algunas entradas pueden estar ocultas)."
+
+#: forumdirectory.php:131
+msgid "Global Directory"
+msgstr "Directorio global"
+
+#: forumdirectory.php:133
+msgid "Find on this site"
+msgstr "Encontrar en esta página"
+
+#: forumdirectory.php:135
+msgid "Results for:"
+msgstr "Resultados para:"
+
+#: forumdirectory.php:139
+msgid "Find"
+msgstr "Encontrar"
diff --git a/groupdirectory/lang/es/strings.php b/groupdirectory/lang/es/strings.php
new file mode 100644 (file)
index 0000000..4f1a59f
--- /dev/null
@@ -0,0 +1,14 @@
+<?php
+
+if(! function_exists("string_plural_select_es")) {
+function string_plural_select_es($n){
+       $n = intval($n);
+       return intval($n != 1);
+}}
+$a->strings['Forum Directory'] = 'Directorio de foro';
+$a->strings['Public access denied.'] = 'Acceso público denegado.';
+$a->strings['No entries (some entries may be hidden).'] = 'Sin entradas (algunas entradas pueden estar ocultas).';
+$a->strings['Global Directory'] = 'Directorio global';
+$a->strings['Find on this site'] = 'Encontrar en esta página';
+$a->strings['Results for:'] = 'Resultados para:';
+$a->strings['Find'] = 'Encontrar';
diff --git a/groupdirectory/lang/fi-fi/messages.po b/groupdirectory/lang/fi-fi/messages.po
new file mode 100644 (file)
index 0000000..6c4f08c
--- /dev/null
@@ -0,0 +1,81 @@
+# ADDON forumdirectory
+# Copyright (C)
+# This file is distributed under the same license as the Friendica forumdirectory addon package.
+# 
+# 
+# Translators:
+# Kris, 2018
+# Kris, 2018
+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-05-12 12:50+0000\n"
+"Last-Translator: Kris\n"
+"Language-Team: Finnish (Finland) (http://www.transifex.com/Friendica/friendica/language/fi_FI/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: fi_FI\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: forumdirectory.php:22
+msgid "Forum Directory"
+msgstr "Foorumihakemisto"
+
+#: forumdirectory.php:53
+msgid "Public access denied."
+msgstr "Julkinen käyttö estetty."
+
+#: forumdirectory.php:71
+msgid "Global Directory"
+msgstr "Maailmanlaajuinen hakemisto"
+
+#: forumdirectory.php:79
+msgid "Find on this site"
+msgstr "Sivustohaku"
+
+#: forumdirectory.php:81
+msgid "Finding: "
+msgstr ""
+
+#: forumdirectory.php:82
+msgid "Site Directory"
+msgstr "Sivustoluettelo"
+
+#: forumdirectory.php:83
+msgid "Find"
+msgstr "Etsi"
+
+#: forumdirectory.php:133
+msgid "Age: "
+msgstr "Ikä:"
+
+#: forumdirectory.php:136
+msgid "Gender: "
+msgstr "Sukupuoli:"
+
+#: forumdirectory.php:156
+msgid "Location:"
+msgstr "Sijainti:"
+
+#: forumdirectory.php:158
+msgid "Gender:"
+msgstr "Sukupuoli:"
+
+#: forumdirectory.php:160
+msgid "Status:"
+msgstr "Tila:"
+
+#: forumdirectory.php:162
+msgid "Homepage:"
+msgstr "Kotisivu:"
+
+#: forumdirectory.php:164
+msgid "About:"
+msgstr "Lisätietoja:"
+
+#: forumdirectory.php:201
+msgid "No entries (some entries may be hidden)."
+msgstr "Ei kohteita (jotkut kohteet saattaa olla piilotettuja)."
diff --git a/groupdirectory/lang/fi-fi/strings.php b/groupdirectory/lang/fi-fi/strings.php
new file mode 100644 (file)
index 0000000..70657d3
--- /dev/null
@@ -0,0 +1,21 @@
+<?php
+
+if(! function_exists("string_plural_select_fi_fi")) {
+function string_plural_select_fi_fi($n){
+       $n = intval($n);
+       return intval($n != 1);
+}}
+$a->strings['Forum Directory'] = 'Foorumihakemisto';
+$a->strings['Public access denied.'] = 'Julkinen käyttö estetty.';
+$a->strings['Global Directory'] = 'Maailmanlaajuinen hakemisto';
+$a->strings['Find on this site'] = 'Sivustohaku';
+$a->strings['Site Directory'] = 'Sivustoluettelo';
+$a->strings['Find'] = 'Etsi';
+$a->strings['Age: '] = 'Ikä:';
+$a->strings['Gender: '] = 'Sukupuoli:';
+$a->strings['Location:'] = 'Sijainti:';
+$a->strings['Gender:'] = 'Sukupuoli:';
+$a->strings['Status:'] = 'Tila:';
+$a->strings['Homepage:'] = 'Kotisivu:';
+$a->strings['About:'] = 'Lisätietoja:';
+$a->strings['No entries (some entries may be hidden).'] = 'Ei kohteita (jotkut kohteet saattaa olla piilotettuja).';
diff --git a/groupdirectory/lang/fr/messages.po b/groupdirectory/lang/fr/messages.po
new file mode 100644 (file)
index 0000000..7f9e245
--- /dev/null
@@ -0,0 +1,51 @@
+# ADDON forumdirectory
+# Copyright (C)
+# This file is distributed under the same license as the Friendica forumdirectory addon package.
+# 
+# 
+# Translators:
+# bob lebonche <lebonche@tutanota.com>, 2021
+# Hypolite Petovan <hypolite@mrpetovan.com>, 2016
+# StefOfficiel <pichard.stephane@free.fr>, 2015
+# Valvin <vincent-forum@valvin.fr>, 2019
+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: 2014-06-22 12:31+0000\n"
+"Last-Translator: bob lebonche <lebonche@tutanota.com>, 2021\n"
+"Language-Team: French (http://www.transifex.com/Friendica/friendica/language/fr/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: fr\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
+
+#: forumdirectory.php:33 forumdirectory.php:137
+msgid "Forum Directory"
+msgstr "Annuaire de Forums"
+
+#: forumdirectory.php:53
+msgid "Public access denied."
+msgstr "Accès public refusé."
+
+#: forumdirectory.php:125
+msgid "No entries (some entries may be hidden)."
+msgstr "Pas de résultats (certains résultats peuvent être cachés)."
+
+#: forumdirectory.php:131
+msgid "Global Directory"
+msgstr "Annuaire Global"
+
+#: forumdirectory.php:133
+msgid "Find on this site"
+msgstr "Trouver sur cette instance"
+
+#: forumdirectory.php:135
+msgid "Results for:"
+msgstr "Résultats pour :"
+
+#: forumdirectory.php:139
+msgid "Find"
+msgstr "Chercher"
diff --git a/groupdirectory/lang/fr/strings.php b/groupdirectory/lang/fr/strings.php
new file mode 100644 (file)
index 0000000..ac0e232
--- /dev/null
@@ -0,0 +1,14 @@
+<?php
+
+if(! function_exists("string_plural_select_fr")) {
+function string_plural_select_fr($n){
+       $n = intval($n);
+       if (($n == 0 || $n == 1)) { return 0; } else if ($n != 0 && $n % 1000000 == 0) { return 1; } else  { return 2; }
+}}
+$a->strings['Forum Directory'] = 'Annuaire de Forums';
+$a->strings['Public access denied.'] = 'Accès public refusé.';
+$a->strings['No entries (some entries may be hidden).'] = 'Pas de résultats (certains résultats peuvent être cachés).';
+$a->strings['Global Directory'] = 'Annuaire Global';
+$a->strings['Find on this site'] = 'Trouver sur cette instance';
+$a->strings['Results for:'] = 'Résultats pour :';
+$a->strings['Find'] = 'Chercher';
diff --git a/groupdirectory/lang/hu/messages.po b/groupdirectory/lang/hu/messages.po
new file mode 100644 (file)
index 0000000..996d310
--- /dev/null
@@ -0,0 +1,48 @@
+# ADDON forumdirectory
+# Copyright (C)
+# This file is distributed under the same license as the Friendica forumdirectory addon package.
+# 
+# 
+# Translators:
+# Balázs Úr, 2020-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: 2014-06-22 12:31+0000\n"
+"Last-Translator: Balázs Úr, 2020-2021\n"
+"Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: hu\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: forumdirectory.php:33 forumdirectory.php:137
+msgid "Forum Directory"
+msgstr "Fórumkönyvtár"
+
+#: forumdirectory.php:53
+msgid "Public access denied."
+msgstr "Nyilvános hozzáférés megtagadva."
+
+#: forumdirectory.php:125
+msgid "No entries (some entries may be hidden)."
+msgstr "Nincsenek bejegyzések (néhány bejegyzés rejtve lehet)."
+
+#: forumdirectory.php:131
+msgid "Global Directory"
+msgstr "Globális könyvtár"
+
+#: forumdirectory.php:133
+msgid "Find on this site"
+msgstr "Keresés ezen az oldalon"
+
+#: forumdirectory.php:135
+msgid "Results for:"
+msgstr "Találatok ehhez:"
+
+#: forumdirectory.php:139
+msgid "Find"
+msgstr "Keresés"
diff --git a/groupdirectory/lang/hu/strings.php b/groupdirectory/lang/hu/strings.php
new file mode 100644 (file)
index 0000000..290cf7e
--- /dev/null
@@ -0,0 +1,14 @@
+<?php
+
+if(! function_exists("string_plural_select_hu")) {
+function string_plural_select_hu($n){
+       $n = intval($n);
+       return intval($n != 1);
+}}
+$a->strings['Forum Directory'] = 'Fórumkönyvtár';
+$a->strings['Public access denied.'] = 'Nyilvános hozzáférés megtagadva.';
+$a->strings['No entries (some entries may be hidden).'] = 'Nincsenek bejegyzések (néhány bejegyzés rejtve lehet).';
+$a->strings['Global Directory'] = 'Globális könyvtár';
+$a->strings['Find on this site'] = 'Keresés ezen az oldalon';
+$a->strings['Results for:'] = 'Találatok ehhez:';
+$a->strings['Find'] = 'Keresés';
diff --git a/groupdirectory/lang/is/strings.php b/groupdirectory/lang/is/strings.php
new file mode 100644 (file)
index 0000000..da710b7
--- /dev/null
@@ -0,0 +1,16 @@
+<?php\r
+\r
+$a->strings["Public access denied."] = "Alemennings aðgangur ekki veittur.";\r
+$a->strings["Global Directory"] = "Heims tengiliða skrá";\r
+$a->strings["Find on this site"] = "Leita á þessum vef";\r
+$a->strings["Finding: "] = "Niðurstöður:";\r
+$a->strings["Site Directory"] = "Vef tengiliða skrá";\r
+$a->strings["Find"] = "Finna";\r
+$a->strings["Age: "] = "Aldur:";\r
+$a->strings["Gender: "] = "Kyn:";\r
+$a->strings["Location:"] = "Staðsetning:";\r
+$a->strings["Gender:"] = "Kyn:";\r
+$a->strings["Status:"] = "Staða:";\r
+$a->strings["Homepage:"] = "Heimasíða:";\r
+$a->strings["About:"] = "Um:";\r
+$a->strings["No entries (some entries may be hidden)."] = "Engar færslur (sumar geta verið faldar).";\r
diff --git a/groupdirectory/lang/it/messages.po b/groupdirectory/lang/it/messages.po
new file mode 100644 (file)
index 0000000..8e3e5fa
--- /dev/null
@@ -0,0 +1,49 @@
+# ADDON forumdirectory
+# Copyright (C)
+# This file is distributed under the same license as the Friendica forumdirectory addon package.
+# 
+# 
+# Translators:
+# fabrixxm <fabrix.xm@gmail.com>, 2014
+# 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:56+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"
+
+#: forumdirectory.php:33 forumdirectory.php:137
+msgid "Forum Directory"
+msgstr "Elenco Forum"
+
+#: forumdirectory.php:53
+msgid "Public access denied."
+msgstr "Accesso negato."
+
+#: forumdirectory.php:125
+msgid "No entries (some entries may be hidden)."
+msgstr "Nessuna voce (qualche voce potrebbe essere nascosta)."
+
+#: forumdirectory.php:131
+msgid "Global Directory"
+msgstr "Elenco globale"
+
+#: forumdirectory.php:133
+msgid "Find on this site"
+msgstr "Cerca nel sito"
+
+#: forumdirectory.php:135
+msgid "Results for:"
+msgstr "Risultati per:"
+
+#: forumdirectory.php:139
+msgid "Find"
+msgstr "Trova"
diff --git a/groupdirectory/lang/it/strings.php b/groupdirectory/lang/it/strings.php
new file mode 100644 (file)
index 0000000..4378cec
--- /dev/null
@@ -0,0 +1,14 @@
+<?php
+
+if(! function_exists("string_plural_select_it")) {
+function string_plural_select_it($n){
+       $n = intval($n);
+       return intval($n != 1);
+}}
+$a->strings['Forum Directory'] = 'Elenco Forum';
+$a->strings['Public access denied.'] = 'Accesso negato.';
+$a->strings['No entries (some entries may be hidden).'] = 'Nessuna voce (qualche voce potrebbe essere nascosta).';
+$a->strings['Global Directory'] = 'Elenco globale';
+$a->strings['Find on this site'] = 'Cerca nel sito';
+$a->strings['Results for:'] = 'Risultati per:';
+$a->strings['Find'] = 'Trova';
diff --git a/groupdirectory/lang/nb-no/strings.php b/groupdirectory/lang/nb-no/strings.php
new file mode 100644 (file)
index 0000000..bcc9423
--- /dev/null
@@ -0,0 +1,17 @@
+<?php\r
+\r
+$a->strings["Forum Directory"] = "";\r
+$a->strings["Public access denied."] = "Offentlig tilgang ikke tillatt.";\r
+$a->strings["Global Directory"] = "Global katalog";\r
+$a->strings["Find on this site"] = "";\r
+$a->strings["Finding: "] = "Fant:";\r
+$a->strings["Site Directory"] = "Stedets katalog";\r
+$a->strings["Find"] = "Finn";\r
+$a->strings["Age: "] = "Alder:";\r
+$a->strings["Gender: "] = "Kjønn:";\r
+$a->strings["Location:"] = "Plassering:";\r
+$a->strings["Gender:"] = "Kjønn:";\r
+$a->strings["Status:"] = "Status:";\r
+$a->strings["Homepage:"] = "Hjemmeside:";\r
+$a->strings["About:"] = "Om:";\r
+$a->strings["No entries (some entries may be hidden)."] = "Ingen oppføringer (noen oppføringer kan være skjulte).";\r
diff --git a/groupdirectory/lang/nl/messages.po b/groupdirectory/lang/nl/messages.po
new file mode 100644 (file)
index 0000000..746e1bf
--- /dev/null
@@ -0,0 +1,80 @@
+# ADDON forumdirectory
+# Copyright (C)
+# This file is distributed under the same license as the Friendica forumdirectory addon package.
+# 
+# 
+# Translators:
+# Jeroen De Meerleer <me@jeroened.be>, 2018
+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-08-24 13:21+0000\n"
+"Last-Translator: Jeroen De Meerleer <me@jeroened.be>\n"
+"Language-Team: Dutch (http://www.transifex.com/Friendica/friendica/language/nl/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: nl\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: forumdirectory.php:22
+msgid "Forum Directory"
+msgstr "Forum index"
+
+#: forumdirectory.php:53
+msgid "Public access denied."
+msgstr "Publieke toegang geweigerd"
+
+#: forumdirectory.php:71
+msgid "Global Directory"
+msgstr "Globaal overzicht"
+
+#: forumdirectory.php:79
+msgid "Find on this site"
+msgstr "Zoeken"
+
+#: forumdirectory.php:81
+msgid "Finding: "
+msgstr "Zoeken..."
+
+#: forumdirectory.php:82
+msgid "Site Directory"
+msgstr "Site overzicht"
+
+#: forumdirectory.php:83
+msgid "Find"
+msgstr "Zoek"
+
+#: forumdirectory.php:133
+msgid "Age: "
+msgstr "Leeftijd:"
+
+#: forumdirectory.php:136
+msgid "Gender: "
+msgstr "Geslacht:"
+
+#: forumdirectory.php:156
+msgid "Location:"
+msgstr "Woonplaats:"
+
+#: forumdirectory.php:158
+msgid "Gender:"
+msgstr "Geslacht:"
+
+#: forumdirectory.php:160
+msgid "Status:"
+msgstr "Status:"
+
+#: forumdirectory.php:162
+msgid "Homepage:"
+msgstr "Website:"
+
+#: forumdirectory.php:164
+msgid "About:"
+msgstr "Over:"
+
+#: forumdirectory.php:201
+msgid "No entries (some entries may be hidden)."
+msgstr "Geen berichten (sommige berichten kunnen verborgen zijn)."
diff --git a/groupdirectory/lang/nl/strings.php b/groupdirectory/lang/nl/strings.php
new file mode 100644 (file)
index 0000000..ae764ed
--- /dev/null
@@ -0,0 +1,22 @@
+<?php
+
+if(! function_exists("string_plural_select_nl")) {
+function string_plural_select_nl($n){
+       $n = intval($n);
+       return intval($n != 1);
+}}
+$a->strings['Forum Directory'] = 'Forum index';
+$a->strings['Public access denied.'] = 'Publieke toegang geweigerd';
+$a->strings['Global Directory'] = 'Globaal overzicht';
+$a->strings['Find on this site'] = 'Zoeken';
+$a->strings['Finding: '] = 'Zoeken...';
+$a->strings['Site Directory'] = 'Site overzicht';
+$a->strings['Find'] = 'Zoek';
+$a->strings['Age: '] = 'Leeftijd:';
+$a->strings['Gender: '] = 'Geslacht:';
+$a->strings['Location:'] = 'Woonplaats:';
+$a->strings['Gender:'] = 'Geslacht:';
+$a->strings['Status:'] = 'Status:';
+$a->strings['Homepage:'] = 'Website:';
+$a->strings['About:'] = 'Over:';
+$a->strings['No entries (some entries may be hidden).'] = 'Geen berichten (sommige berichten kunnen verborgen zijn).';
diff --git a/groupdirectory/lang/pl/messages.po b/groupdirectory/lang/pl/messages.po
new file mode 100644 (file)
index 0000000..49226ac
--- /dev/null
@@ -0,0 +1,50 @@
+# ADDON forumdirectory
+# Copyright (C)
+# This file is distributed under the same license as the Friendica forumdirectory addon package.
+# 
+# 
+# Translators:
+# TORminator <dominik+foss@danelski.pl>, 2015
+# Piotr Strębski <strebski@gmail.com>, 2022
+# Waldemar Stoczkowski, 2018
+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: 2014-06-22 12:31+0000\n"
+"Last-Translator: Piotr Strębski <strebski@gmail.com>, 2022\n"
+"Language-Team: Polish (http://www.transifex.com/Friendica/friendica/language/pl/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: pl\n"
+"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
+
+#: forumdirectory.php:33 forumdirectory.php:137
+msgid "Forum Directory"
+msgstr "Katalog forum"
+
+#: forumdirectory.php:53
+msgid "Public access denied."
+msgstr "Odmowa dostępu publicznego."
+
+#: forumdirectory.php:125
+msgid "No entries (some entries may be hidden)."
+msgstr "Brak wpisów (niektóre wpisy mogą być ukryte)."
+
+#: forumdirectory.php:131
+msgid "Global Directory"
+msgstr "Globalny katalog"
+
+#: forumdirectory.php:133
+msgid "Find on this site"
+msgstr "Znajdź na tej stronie"
+
+#: forumdirectory.php:135
+msgid "Results for:"
+msgstr "Wyniki dla:"
+
+#: forumdirectory.php:139
+msgid "Find"
+msgstr "Szukaj"
diff --git a/groupdirectory/lang/pl/strings.php b/groupdirectory/lang/pl/strings.php
new file mode 100644 (file)
index 0000000..9bf60bd
--- /dev/null
@@ -0,0 +1,14 @@
+<?php
+
+if(! function_exists("string_plural_select_pl")) {
+function string_plural_select_pl($n){
+       $n = intval($n);
+       if ($n==1) { return 0; } else if (($n%10>=2 && $n%10<=4) && ($n%100<12 || $n%100>14)) { return 1; } else if ($n!=1 && ($n%10>=0 && $n%10<=1) || ($n%10>=5 && $n%10<=9) || ($n%100>=12 && $n%100<=14)) { return 2; } else  { return 3; }
+}}
+$a->strings['Forum Directory'] = 'Katalog forum';
+$a->strings['Public access denied.'] = 'Odmowa dostępu publicznego.';
+$a->strings['No entries (some entries may be hidden).'] = 'Brak wpisów (niektóre wpisy mogą być ukryte).';
+$a->strings['Global Directory'] = 'Globalny katalog';
+$a->strings['Find on this site'] = 'Znajdź na tej stronie';
+$a->strings['Results for:'] = 'Wyniki dla:';
+$a->strings['Find'] = 'Szukaj';
diff --git a/groupdirectory/lang/pt-br/messages.po b/groupdirectory/lang/pt-br/messages.po
new file mode 100644 (file)
index 0000000..c8d528e
--- /dev/null
@@ -0,0 +1,80 @@
+# ADDON forumdirectory
+# Copyright (C)
+# This file is distributed under the same license as the Friendica forumdirectory addon package.
+# 
+# 
+# Translators:
+# Beatriz Vital <vitalb@riseup.net>, 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-08-19 17:03+0000\n"
+"Last-Translator: Beatriz Vital <vitalb@riseup.net>\n"
+"Language-Team: Portuguese (Brazil) (http://www.transifex.com/Friendica/friendica/language/pt_BR/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: pt_BR\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#: forumdirectory.php:22
+msgid "Forum Directory"
+msgstr "Diretório de Fóruns"
+
+#: forumdirectory.php:53
+msgid "Public access denied."
+msgstr "Acesso do público negado."
+
+#: forumdirectory.php:71
+msgid "Global Directory"
+msgstr "Diretório Global"
+
+#: forumdirectory.php:79
+msgid "Find on this site"
+msgstr "Procurar neste site"
+
+#: forumdirectory.php:81
+msgid "Finding: "
+msgstr "Procurando:"
+
+#: forumdirectory.php:82
+msgid "Site Directory"
+msgstr "Diretório do Site"
+
+#: forumdirectory.php:83
+msgid "Find"
+msgstr "Procurar"
+
+#: forumdirectory.php:133
+msgid "Age: "
+msgstr "Idade:"
+
+#: forumdirectory.php:136
+msgid "Gender: "
+msgstr "Sexo:"
+
+#: forumdirectory.php:156
+msgid "Location:"
+msgstr "Local:"
+
+#: forumdirectory.php:158
+msgid "Gender:"
+msgstr "Sexo:"
+
+#: forumdirectory.php:160
+msgid "Status:"
+msgstr "Estado:"
+
+#: forumdirectory.php:162
+msgid "Homepage:"
+msgstr "Página principal:"
+
+#: forumdirectory.php:164
+msgid "About:"
+msgstr "Sobre:"
+
+#: forumdirectory.php:201
+msgid "No entries (some entries may be hidden)."
+msgstr "Sem resultados (alguns resultados podem estar ocultos)."
diff --git a/groupdirectory/lang/pt-br/strings.php b/groupdirectory/lang/pt-br/strings.php
new file mode 100644 (file)
index 0000000..8c6d216
--- /dev/null
@@ -0,0 +1,22 @@
+<?php
+
+if(! function_exists("string_plural_select_pt_br")) {
+function string_plural_select_pt_br($n){
+       $n = intval($n);
+       return intval($n > 1);
+}}
+$a->strings['Forum Directory'] = 'Diretório de Fóruns';
+$a->strings['Public access denied.'] = 'Acesso do público negado.';
+$a->strings['Global Directory'] = 'Diretório Global';
+$a->strings['Find on this site'] = 'Procurar neste site';
+$a->strings['Finding: '] = 'Procurando:';
+$a->strings['Site Directory'] = 'Diretório do Site';
+$a->strings['Find'] = 'Procurar';
+$a->strings['Age: '] = 'Idade:';
+$a->strings['Gender: '] = 'Sexo:';
+$a->strings['Location:'] = 'Local:';
+$a->strings['Gender:'] = 'Sexo:';
+$a->strings['Status:'] = 'Estado:';
+$a->strings['Homepage:'] = 'Página principal:';
+$a->strings['About:'] = 'Sobre:';
+$a->strings['No entries (some entries may be hidden).'] = 'Sem resultados (alguns resultados podem estar ocultos).';
diff --git a/groupdirectory/lang/ro/messages.po b/groupdirectory/lang/ro/messages.po
new file mode 100644 (file)
index 0000000..84de16f
--- /dev/null
@@ -0,0 +1,79 @@
+# ADDON forumdirectory
+# Copyright (C)
+# This file is distributed under the same license as the Friendica forumdirectory addon package.
+# 
+# 
+# Translators:
+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-07-08 11:49+0000\n"
+"Last-Translator: Arian - Cazare Muncitori <arianserv@gmail.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"
+
+#: forumdirectory.php:22
+msgid "Forum Directory"
+msgstr "Director Forum"
+
+#: forumdirectory.php:53
+msgid "Public access denied."
+msgstr "Acces public refuzat."
+
+#: forumdirectory.php:71
+msgid "Global Directory"
+msgstr "Director Global"
+
+#: forumdirectory.php:79
+msgid "Find on this site"
+msgstr "Căutați pe acest site"
+
+#: forumdirectory.php:81
+msgid "Finding: "
+msgstr "Căutare:"
+
+#: forumdirectory.php:82
+msgid "Site Directory"
+msgstr "Director Site"
+
+#: forumdirectory.php:83
+msgid "Find"
+msgstr "Căutați"
+
+#: forumdirectory.php:133
+msgid "Age: "
+msgstr "Vârsta:"
+
+#: forumdirectory.php:136
+msgid "Gender: "
+msgstr "Sex:"
+
+#: forumdirectory.php:156
+msgid "Location:"
+msgstr "Locație:"
+
+#: forumdirectory.php:158
+msgid "Gender:"
+msgstr "Sex:"
+
+#: forumdirectory.php:160
+msgid "Status:"
+msgstr "Status:"
+
+#: forumdirectory.php:162
+msgid "Homepage:"
+msgstr "Pagină web:"
+
+#: forumdirectory.php:164
+msgid "About:"
+msgstr "Despre:"
+
+#: forumdirectory.php:201
+msgid "No entries (some entries may be hidden)."
+msgstr "Fără înregistrări (unele înregistrări pot fi ascunse)."
diff --git a/groupdirectory/lang/ro/strings.php b/groupdirectory/lang/ro/strings.php
new file mode 100644 (file)
index 0000000..750fe1e
--- /dev/null
@@ -0,0 +1,22 @@
+<?php
+
+if(! function_exists("string_plural_select_ro")) {
+function string_plural_select_ro($n){
+       $n = intval($n);
+       if ($n==1) { return 0; } else if ((($n%100>19)||(($n%100==0)&&($n!=0)))) { return 2; } else  { return 1; }
+}}
+$a->strings['Forum Directory'] = 'Director Forum';
+$a->strings['Public access denied.'] = 'Acces public refuzat.';
+$a->strings['Global Directory'] = 'Director Global';
+$a->strings['Find on this site'] = 'Căutați pe acest site';
+$a->strings['Finding: '] = 'Căutare:';
+$a->strings['Site Directory'] = 'Director Site';
+$a->strings['Find'] = 'Căutați';
+$a->strings['Age: '] = 'Vârsta:';
+$a->strings['Gender: '] = 'Sex:';
+$a->strings['Location:'] = 'Locație:';
+$a->strings['Gender:'] = 'Sex:';
+$a->strings['Status:'] = 'Status:';
+$a->strings['Homepage:'] = 'Pagină web:';
+$a->strings['About:'] = 'Despre:';
+$a->strings['No entries (some entries may be hidden).'] = 'Fără înregistrări (unele înregistrări pot fi ascunse).';
diff --git a/groupdirectory/lang/ru/messages.po b/groupdirectory/lang/ru/messages.po
new file mode 100644 (file)
index 0000000..48250ba
--- /dev/null
@@ -0,0 +1,80 @@
+# ADDON forumdirectory
+# Copyright (C)
+# This file is distributed under the same license as the Friendica forumdirectory 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:12+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"
+
+#: forumdirectory.php:22
+msgid "Forum Directory"
+msgstr "Каталог форумов"
+
+#: forumdirectory.php:53
+msgid "Public access denied."
+msgstr "Свободный доступ закрыт."
+
+#: forumdirectory.php:71
+msgid "Global Directory"
+msgstr "Глобальный каталог"
+
+#: forumdirectory.php:79
+msgid "Find on this site"
+msgstr "Найти на этом сайте"
+
+#: forumdirectory.php:81
+msgid "Finding: "
+msgstr "Результат поиска: "
+
+#: forumdirectory.php:82
+msgid "Site Directory"
+msgstr "Каталог сайта"
+
+#: forumdirectory.php:83
+msgid "Find"
+msgstr "Найти"
+
+#: forumdirectory.php:133
+msgid "Age: "
+msgstr "Возраст: "
+
+#: forumdirectory.php:136
+msgid "Gender: "
+msgstr "Пол: "
+
+#: forumdirectory.php:156
+msgid "Location:"
+msgstr "Откуда:"
+
+#: forumdirectory.php:158
+msgid "Gender:"
+msgstr "Пол:"
+
+#: forumdirectory.php:160
+msgid "Status:"
+msgstr "Статус:"
+
+#: forumdirectory.php:162
+msgid "Homepage:"
+msgstr "Домашняя страничка:"
+
+#: forumdirectory.php:164
+msgid "About:"
+msgstr "О себе:"
+
+#: forumdirectory.php:201
+msgid "No entries (some entries may be hidden)."
+msgstr "Нет записей (некоторые записи могут быть скрыты)."
diff --git a/groupdirectory/lang/ru/strings.php b/groupdirectory/lang/ru/strings.php
new file mode 100644 (file)
index 0000000..54954d7
--- /dev/null
@@ -0,0 +1,22 @@
+<?php
+
+if(! function_exists("string_plural_select_ru")) {
+function string_plural_select_ru($n){
+       $n = intval($n);
+       if ($n%10==1 && $n%100!=11) { return 0; } else if ($n%10>=2 && $n%10<=4 && ($n%100<12 || $n%100>14)) { return 1; } else if ($n%10==0 || ($n%10>=5 && $n%10<=9) || ($n%100>=11 && $n%100<=14)) { return 2; } else  { return 3; }
+}}
+$a->strings['Forum Directory'] = 'Каталог форумов';
+$a->strings['Public access denied.'] = 'Свободный доступ закрыт.';
+$a->strings['Global Directory'] = 'Глобальный каталог';
+$a->strings['Find on this site'] = 'Найти на этом сайте';
+$a->strings['Finding: '] = 'Результат поиска: ';
+$a->strings['Site Directory'] = 'Каталог сайта';
+$a->strings['Find'] = 'Найти';
+$a->strings['Age: '] = 'Возраст: ';
+$a->strings['Gender: '] = 'Пол: ';
+$a->strings['Location:'] = 'Откуда:';
+$a->strings['Gender:'] = 'Пол:';
+$a->strings['Status:'] = 'Статус:';
+$a->strings['Homepage:'] = 'Домашняя страничка:';
+$a->strings['About:'] = 'О себе:';
+$a->strings['No entries (some entries may be hidden).'] = 'Нет записей (некоторые записи могут быть скрыты).';
diff --git a/groupdirectory/lang/sv/messages.po b/groupdirectory/lang/sv/messages.po
new file mode 100644 (file)
index 0000000..cf3ebfd
--- /dev/null
@@ -0,0 +1,49 @@
+# ADDON forumdirectory
+# Copyright (C)
+# This file is distributed under the same license as the Friendica forumdirectory addon package.
+# 
+# 
+# Translators:
+# Hypolite Petovan <hypolite@mrpetovan.com>, 2019
+# Kristoffer Grundström <lovaren@gmail.com>, 2022
+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: 2022-01-15 23:39+0000\n"
+"Last-Translator: Kristoffer Grundström <lovaren@gmail.com>\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"
+
+#: forumdirectory.php:33 forumdirectory.php:137
+msgid "Forum Directory"
+msgstr "Forum-mapp"
+
+#: forumdirectory.php:53
+msgid "Public access denied."
+msgstr "Publik åtkomst nekades."
+
+#: forumdirectory.php:125
+msgid "No entries (some entries may be hidden)."
+msgstr "Inget att visa. (Man kan välja att inte synas här)"
+
+#: forumdirectory.php:131
+msgid "Global Directory"
+msgstr "Medlemskatalog för flera sajter (global)"
+
+#: forumdirectory.php:133
+msgid "Find on this site"
+msgstr "Hitta på den här sidan"
+
+#: forumdirectory.php:135
+msgid "Results for:"
+msgstr ""
+
+#: forumdirectory.php:139
+msgid "Find"
+msgstr "Sök"
diff --git a/groupdirectory/lang/sv/strings.php b/groupdirectory/lang/sv/strings.php
new file mode 100644 (file)
index 0000000..0f06eaa
--- /dev/null
@@ -0,0 +1,13 @@
+<?php
+
+if(! function_exists("string_plural_select_sv")) {
+function string_plural_select_sv($n){
+       $n = intval($n);
+       return intval($n != 1);
+}}
+$a->strings['Forum Directory'] = 'Forum-mapp';
+$a->strings['Public access denied.'] = 'Publik åtkomst nekades.';
+$a->strings['No entries (some entries may be hidden).'] = 'Inget att visa. (Man kan välja att inte synas här)';
+$a->strings['Global Directory'] = 'Medlemskatalog för flera sajter (global)';
+$a->strings['Find on this site'] = 'Hitta på den här sidan';
+$a->strings['Find'] = 'Sök';
diff --git a/groupdirectory/lang/zh-cn/strings.php b/groupdirectory/lang/zh-cn/strings.php
new file mode 100644 (file)
index 0000000..4b5c78b
--- /dev/null
@@ -0,0 +1,17 @@
+<?php\r
+\r
+$a->strings["Forum Directory"] = "评坛目录";\r
+$a->strings["Public access denied."] = "公众看拒绝";\r
+$a->strings["Global Directory"] = "综合目录";\r
+$a->strings["Find on this site"] = "找在这网站";\r
+$a->strings["Finding: "] = "找着:";\r
+$a->strings["Site Directory"] = "网站目录";\r
+$a->strings["Find"] = "搜索";\r
+$a->strings["Age: "] = "年纪:";\r
+$a->strings["Gender: "] = "性别:";\r
+$a->strings["Location:"] = "位置:";\r
+$a->strings["Gender:"] = "性别:";\r
+$a->strings["Status:"] = "现状:";\r
+$a->strings["Homepage:"] = "主页:";\r
+$a->strings["About:"] = "关于:";\r
+$a->strings["No entries (some entries may be hidden)."] = "没有文章(有的文章会被隐藏)。";\r
index 6feeef8d53b0a0807757de09b34462ae9898e772..3162b6a751c708908279a6b9cd2b797c4cd7570e 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2021-11-21 19:17-0500\n"
+"POT-Creation-Date: 2023-06-03 15:49-0400\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"
@@ -21,22 +21,22 @@ msgstr ""
 msgid "Post to libertree"
 msgstr ""
 
-#: libertree.php:60
+#: libertree.php:59
 msgid "Enable Libertree Post Addon"
 msgstr ""
 
-#: libertree.php:61
+#: libertree.php:60
 msgid "Libertree site URL"
 msgstr ""
 
-#: libertree.php:62
+#: libertree.php:61
 msgid "Libertree API token"
 msgstr ""
 
-#: libertree.php:63
+#: libertree.php:62
 msgid "Post to Libertree by default"
 msgstr ""
 
-#: libertree.php:68
+#: libertree.php:67
 msgid "Libertree Export"
 msgstr ""
index 8e8c9ba980cc828de28063255fde6d9063fa4019..c0f896c0c43346e295af163f63aeb29bb5538033 100644 (file)
@@ -151,7 +151,7 @@ function libertree_send(array &$b)
        }
 
        // Dont't post if the post doesn't belong to us.
-       // This is a check for forum postings
+       // This is a check for group postings
        $self = DBA::selectFirst('contact', ['id'], ['uid' => $b['uid'], 'self' => true]);
        if ($b['contact-id'] != $self['id']) {
                return;
index 39522238a304a2ea46a96c18b8b40d65ae691ab7..e467708ec7289c1ec1ec084854049fceaee7a8fa 100644 (file)
@@ -5,8 +5,8 @@ With this addon you can enable a widget for the sidebar of the network tab,
 which will be displayed for new members. It contains a linkt to friendicas
 introduction pages at /newmember and optionally
 
- * a link to the global support forum
- * a link to an eventually existing local support forum
+ * a link to the global support group
+ * a link to an eventually existing local support group
  * a welcome message you might want to send to your new members.
 
 There is no extra styling added for this added, so it should work with any
index 1e7d608a7c73ebb4dbbacf79d88132f03f84e5f8..0dc91e136ffb56f33716e26e0478371bdee376f3 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2021-02-01 18:15+0100\n"
+"POT-Creation-Date: 2023-06-03 15:50-0400\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"
@@ -26,48 +26,48 @@ msgid "Tips for New Members"
 msgstr ""
 
 #: newmemberwidget.php:33
-msgid "Global Support Forum"
+msgid "Global Support Group"
 msgstr ""
 
 #: newmemberwidget.php:37
-msgid "Local Support Forum"
+msgid "Local Support Group"
 msgstr ""
 
-#: newmemberwidget.php:65
+#: newmemberwidget.php:62
 msgid "Save Settings"
 msgstr ""
 
-#: newmemberwidget.php:66
+#: newmemberwidget.php:63
 msgid "Message"
 msgstr ""
 
-#: newmemberwidget.php:66
+#: newmemberwidget.php:63
 msgid "Your message for new members. You can use bbcode here."
 msgstr ""
 
-#: newmemberwidget.php:67
-msgid "Add a link to global support forum"
+#: newmemberwidget.php:64
+msgid "Add a link to global support group"
 msgstr ""
 
-#: newmemberwidget.php:67
-msgid "Should a link to the global support forum be displayed?"
+#: newmemberwidget.php:64
+msgid "Should a link to the global support group be displayed?"
 msgstr ""
 
-#: newmemberwidget.php:68
-msgid "Add a link to the local support forum"
+#: newmemberwidget.php:65
+msgid "Add a link to the local support group"
 msgstr ""
 
-#: newmemberwidget.php:68
+#: newmemberwidget.php:65
 msgid ""
-"If you have a local support forum and want to have a link displayed in the "
+"If you have a local support group and want to have a link displayed in the "
 "widget, check this box."
 msgstr ""
 
-#: newmemberwidget.php:69
+#: newmemberwidget.php:66
 msgid "Name of the local support group"
 msgstr ""
 
-#: newmemberwidget.php:69
+#: newmemberwidget.php:66
 msgid ""
 "If you checked the above, specify the <em>nickname</em> of the local support "
 "group here (i.e. helpers)"
index 356597b76ce6cc569b1ea0abb1b88f8920ab9ef7..6cd79c37bd50baa3848d181e35f9fbfe319511fa 100644 (file)
@@ -30,11 +30,11 @@ function newmemberwidget_network_mod_init ($b)
        $t .= '<a href="newmember" id="newmemberwidget-tips">' . DI::l10n()->t('Tips for New Members') . '</a><br />';
 
        if (DI::config()->get('newmemberwidget','linkglobalsupport', false)) {
-               $t .= '<a href="https://forum.friendi.ca/profile/helpers" target="_new">'.DI::l10n()->t('Global Support Forum').'</a><br />';
+               $t .= '<a href="https://forum.friendi.ca/profile/helpers" target="_new">' . DI::l10n()->t('Global Support Group') . '</a><br />';
        }
 
        if (DI::config()->get('newmemberwidget','linklocalsupport', false)) {
-               $t .= '<a href="'.DI::baseUrl().'/profile/'.DI::config()->get('newmemberwidget','localsupport').'" target="_new">'.DI::l10n()->t('Local Support Forum').'</a><br />';
+               $t .= '<a href="' . DI::baseUrl() . '/profile/' . DI::config()->get('newmemberwidget', 'localsupport') . '" target="_new">' . DI::l10n()->t('Local Support Group') . '</a><br />';
        }
 
        $ft = DI::config()->get('newmemberwidget','freetext', '');
@@ -61,8 +61,8 @@ function newmemberwidget_addon_admin(string &$o)
        $o = Renderer::replaceMacros($t, [
                '$submit' => DI::l10n()->t('Save Settings'),
                '$freetext' => ["freetext", DI::l10n()->t("Message"), DI::config()->get("newmemberwidget", "freetext"), DI::l10n()->t("Your message for new members. You can use bbcode here.")],
-               '$linkglobalsupport' => ["linkglobalsupport", DI::l10n()->t('Add a link to global support forum'), DI::config()->get('newmemberwidget', 'linkglobalsupport'), DI::l10n()->t('Should a link to the global support forum be displayed?')." (<a href='https://forum.friendi.ca/profile/helpers'>@helpers</a>)"],
-               '$linklocalsupport' => ["linklocalsupport", DI::l10n()->t('Add a link to the local support forum'), DI::config()->get('newmemberwidget', 'linklocalsupport'), DI::l10n()->t('If you have a local support forum and want to have a link displayed in the widget, check this box.')],
+               '$linkglobalsupport' => ["linkglobalsupport", DI::l10n()->t('Add a link to global support group'), DI::config()->get('newmemberwidget', 'linkglobalsupport'), DI::l10n()->t('Should a link to the global support group be displayed?')." (<a href='https://forum.friendi.ca/profile/helpers'>@helpers</a>)"],
+               '$linklocalsupport' => ["linklocalsupport", DI::l10n()->t('Add a link to the local support group'), DI::config()->get('newmemberwidget', 'linklocalsupport'), DI::l10n()->t('If you have a local support group and want to have a link displayed in the widget, check this box.')],
                '$localsupportname' => ["localsupportname", DI::l10n()->t('Name of the local support group'), DI::config()->get('newmemberwidget', 'localsupport'), DI::l10n()->t('If you checked the above, specify the <em>nickname</em> of the local support group here (i.e. helpers)')],
        ]);
 }
index baac56e65706ad809908fb36f6daebe4b2edc5da..7e14cd796d086f7b8ebf2076bdd7c387851fc125 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2021-11-21 19:17-0500\n"
+"POT-Creation-Date: 2023-06-03 15:50-0400\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"
@@ -17,76 +17,76 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: pumpio.php:57
+#: pumpio.php:62
 msgid "Permission denied."
 msgstr ""
 
-#: pumpio.php:152
+#: pumpio.php:156
 #, php-format
 msgid "Unable to register the client at the pump.io server '%s'."
 msgstr ""
 
-#: pumpio.php:192
+#: pumpio.php:196
 msgid "You are now authenticated to pumpio."
 msgstr ""
 
-#: pumpio.php:193
+#: pumpio.php:197
 msgid "return to the connector page"
 msgstr ""
 
-#: pumpio.php:213
+#: pumpio.php:217
 msgid "Post to pumpio"
 msgstr ""
 
-#: pumpio.php:237
+#: pumpio.php:241
 msgid "Save Settings"
 msgstr ""
 
-#: pumpio.php:239
+#: pumpio.php:243
 msgid "Delete this preset"
 msgstr ""
 
-#: pumpio.php:245
+#: pumpio.php:249
 msgid "Authenticate your pump.io connection"
 msgstr ""
 
-#: pumpio.php:252
+#: pumpio.php:256
 msgid "Pump.io servername (without \"http://\" or \"https://\" )"
 msgstr ""
 
-#: pumpio.php:253
+#: pumpio.php:257
 msgid "Pump.io username (without the servername)"
 msgstr ""
 
-#: pumpio.php:254
+#: pumpio.php:258
 msgid "Import the remote timeline"
 msgstr ""
 
-#: pumpio.php:255
+#: pumpio.php:259
 msgid "Enable Pump.io Post Addon"
 msgstr ""
 
-#: pumpio.php:256
+#: pumpio.php:260
 msgid "Post to Pump.io by default"
 msgstr ""
 
-#: pumpio.php:257
+#: pumpio.php:261
 msgid "Should posts be public?"
 msgstr ""
 
-#: pumpio.php:258
+#: pumpio.php:262
 msgid "Mirror all public posts"
 msgstr ""
 
-#: pumpio.php:263
+#: pumpio.php:267
 msgid "Pump.io Import/Export/Mirror"
 msgstr ""
 
-#: pumpio.php:920
+#: pumpio.php:924
 msgid "status"
 msgstr ""
 
-#: pumpio.php:924
+#: pumpio.php:928
 #, php-format
 msgid "%1$s likes %2$s's %3$s"
 msgstr ""
index c27501df65ed58e965de44d2cfc4f130f2709b3e..6600696ec93a29714939f6ad82929003e8ab9250 100644 (file)
@@ -417,7 +417,7 @@ function pumpio_send(array &$b)
                }
 
                // Dont't post if the post doesn't belong to us.
-               // This is a check for forum postings
+               // This is a check for group postings
                $self = User::getOwnerDataById($b['uid']);
                if ($b['contact-id'] != $self['id']) {
                        return;
index 8fe64f34a9993d9b9f955a292bb0ab7490e86788..f0372852af07eb6ba242812a50f019465a86711e 100644 (file)
@@ -350,7 +350,7 @@ function statusnet_post_hook(array &$b)
        }
 
        // Dont't post if the post doesn't belong to us.
-       // This is a check for forum postings
+       // This is a check for group postings
        $self = DBA::selectFirst('contact', ['id'], ['uid' => $b['uid'], 'self' => true]);
        if ($b['contact-id'] != $self['id']) {
                return;
index 43d00fc1c09af505ed50bbe3cd10146491b69bc7..bbab254d65a44cec7ac19b50319fc0f76b372b9a 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-11-13 10:15+0000\n"
+"POT-Creation-Date: 2023-06-03 15:50-0400\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"
@@ -17,23 +17,23 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: twitter.php:216
+#: twitter.php:220
 msgid "Post to Twitter"
 msgstr ""
 
-#: twitter.php:263
+#: twitter.php:267
 msgid ""
 "You submitted an empty PIN, please Sign In with Twitter again to get a new "
 "one."
 msgstr ""
 
-#: twitter.php:330
+#: twitter.php:334
 msgid ""
 "No consumer key pair for Twitter found. Please contact your site "
 "administrator."
 msgstr ""
 
-#: twitter.php:343
+#: twitter.php:347
 msgid ""
 "At this Friendica instance the Twitter addon was enabled but you have not "
 "yet connected your account to your Twitter account. To do so click the "
@@ -42,26 +42,26 @@ msgid ""
 "be posted to Twitter."
 msgstr ""
 
-#: twitter.php:344
+#: twitter.php:348
 msgid "Log in with Twitter"
 msgstr ""
 
-#: twitter.php:346
+#: twitter.php:350
 msgid "Copy the PIN from Twitter here"
 msgstr ""
 
-#: twitter.php:354 twitter.php:399
+#: twitter.php:358 twitter.php:403
 msgid "An error occured: "
 msgstr ""
 
-#: twitter.php:368
+#: twitter.php:372
 #, php-format
 msgid ""
 "Currently connected to: <a href=\"https://twitter.com/%1$s\" target="
 "\"_twitter\">%1$s</a>"
 msgstr ""
 
-#: twitter.php:374
+#: twitter.php:378
 msgid ""
 "<strong>Note</strong>: Due to your privacy settings (<em>Hide your profile "
 "details from unknown viewers?</em>) the link potentially included in public "
@@ -69,46 +69,46 @@ msgid ""
 "the visitor that the access to your profile has been restricted."
 msgstr ""
 
-#: twitter.php:381
+#: twitter.php:385
 msgid "Invalid Twitter info"
 msgstr ""
 
-#: twitter.php:382
+#: twitter.php:386
 msgid "Disconnect"
 msgstr ""
 
-#: twitter.php:387
+#: twitter.php:391
 msgid "Allow posting to Twitter"
 msgstr ""
 
-#: twitter.php:387
+#: twitter.php:391
 msgid ""
 "If enabled all your <strong>public</strong> postings can be posted to the "
 "associated Twitter account. You can choose to do so by default (here) or for "
 "every posting separately in the posting options when writing the entry."
 msgstr ""
 
-#: twitter.php:388
+#: twitter.php:392
 msgid "Send public postings to Twitter by default"
 msgstr ""
 
-#: twitter.php:389
+#: twitter.php:393
 msgid "Use threads instead of truncating the content"
 msgstr ""
 
-#: twitter.php:390
+#: twitter.php:394
 msgid "Mirror all posts from twitter that are no replies"
 msgstr ""
 
-#: twitter.php:391
+#: twitter.php:395
 msgid "Import the remote timeline"
 msgstr ""
 
-#: twitter.php:392
+#: twitter.php:396
 msgid "Automatically create contacts"
 msgstr ""
 
-#: twitter.php:392
+#: twitter.php:396
 msgid ""
 "This will automatically create a contact in Friendica as soon as you receive "
 "a message from an existing contact via the Twitter network. If you do not "
@@ -116,44 +116,44 @@ msgid ""
 "from whom you would like to see posts here."
 msgstr ""
 
-#: twitter.php:393
+#: twitter.php:397
 msgid "Follow in fediverse"
 msgstr ""
 
-#: twitter.php:393
+#: twitter.php:397
 msgid ""
 "Automatically subscribe to the contact in the fediverse, when a fediverse "
 "account is mentioned in name or description and we are following the Twitter "
 "contact."
 msgstr ""
 
-#: twitter.php:406
+#: twitter.php:410
 msgid "Twitter Import/Export/Mirror"
 msgstr ""
 
-#: twitter.php:558
+#: twitter.php:567
 msgid ""
 "Please connect a Twitter account in your Social Network settings to import "
 "Twitter posts."
 msgstr ""
 
-#: twitter.php:565
+#: twitter.php:574
 msgid "Twitter post not found."
 msgstr ""
 
-#: twitter.php:965
+#: twitter.php:999
 msgid "Save Settings"
 msgstr ""
 
-#: twitter.php:967
+#: twitter.php:1001
 msgid "Consumer key"
 msgstr ""
 
-#: twitter.php:968
+#: twitter.php:1002
 msgid "Consumer secret"
 msgstr ""
 
-#: twitter.php:1167
+#: twitter.php:1200
 #, php-format
 msgid "%s on Twitter"
 msgstr ""
index 80e1a70e557e7c5375aa7f04b9816b7201dd3bc5..c6475aba09426ca1884a84094d2d89be22ba4302 100644 (file)
@@ -695,7 +695,7 @@ function twitter_post_hook(array &$b)
                }
 
                // Dont't post if the post doesn't belong to us.
-               // This is a check for forum postings
+               // This is a check for group postings
                $self = DBA::selectFirst('contact', ['id'], ['uid' => $b['uid'], 'self' => true]);
                if ($b['contact-id'] != $self['id']) {
                        return;
@@ -952,7 +952,7 @@ function twitter_delete_item(array $item)
                }
 
                // Don't delete if the post doesn't belong to us.
-               // This is a check for forum postings
+               // This is a check for group postings
                $self = DBA::selectFirst('contact', ['id'], ['uid' => $item['uid'], 'self' => true]);
                if ($item['contact-id'] != $self['id']) {
                        DI::logger()->info('Don\'t delete if the post doesn\'t belong to the user', ['contact-id' => $item['contact-id'], 'self' => $self['id']]);
index fea16eee3a0c50c2993c9be09b1c77835418ad05..187b031631ab640818c25b8c6b52fe2b301f5772 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2021-11-21 19:18-0500\n"
+"POT-Creation-Date: 2023-06-03 15:51-0400\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"
@@ -59,10 +59,10 @@ msgstr ""
 msgid "Wordpress Export"
 msgstr ""
 
-#: wppost.php:182
+#: wppost.php:185
 msgid "Read the orig­i­nal post and com­ment stream on Friendica"
 msgstr ""
 
-#: wppost.php:240
+#: wppost.php:235
 msgid "Post from Friendica"
 msgstr ""
index 1d609bac3d71d53cb342d3ca6bd6cc863414ce5e..51ee7247f80b97d5472b108861a7710339d1bb08 100644 (file)
@@ -169,7 +169,7 @@ function wppost_send(array &$b)
        }
 
        // Dont't post if the post doesn't belong to us.
-       // This is a check for forum postings
+       // This is a check for group postings
        $self = DBA::selectFirst('contact', ['id'], ['uid' => $b['uid'], 'self' => true]);
        if ($b['contact-id'] != $self['id']) {
                return;