diff --git a/communityhome/README.md b/communityhome/README.md
deleted file mode 100644
index 61bbc99a..00000000
--- a/communityhome/README.md
+++ /dev/null
@@ -1,17 +0,0 @@
-Community Home
---------------
-
-This addon overwrites the default home page shown to anonymous users.
-On the sidebar there are the login form, last ten users (if they chose
-to be in the site directory), last ten public photos and last ten
-"likes" sent by a site user or about a site user's item.
-
-In the main content is shown the community stream. This addon doesn't
-honor your community page visibility site setting: the community
-stream is shown also if you have choose to not show the community page.
-
-If 'home.html' is found in your friendica root, its content is inserted
-before community stream
-
-By default no features are enabled, you can edit this addon's settings
-through the admin panel.
\ No newline at end of file
diff --git a/communityhome/communityhome.css b/communityhome/communityhome.css
deleted file mode 100644
index 09da8ea2..00000000
--- a/communityhome/communityhome.css
+++ /dev/null
@@ -1,48 +0,0 @@
-aside form { position: relative }
-aside #login_standard {
- width: 200px;
- position: absolute;
- float:none;
- height: 100px;
- display: block;
-}
-aside #login_openid {
- width: 200px;
- position: absolute;
- float:none;
- margin-left: 0px;
- height: 100px;
- display: none;
-}
-
-
-aside #label-login-name,
-aside #login-name,
-aside #label-login-password,
-aside #login-password {
- float: none !important;
-}
-aside #login-name-end,
-aside #login-password-end,
-aside #login-extra-end,
-aside #login-submit-end,
-aside #login-extra-filler {
- float: none; height: 5px;
- margin: 0px;
-}
-aside #login-submit-button { margin-left: 100px; }
-aside .items-wrapper,
-aside #login-extra-links { overflow: auto; width: 100%;}
-aside .directory-item { width: 55px; height: 55px; vertical-align: center; text-align: center; }
-aside .directory-photo { margin: 0px; }
-aside .directory-photo-img { max-width: 48px; max-height: 48px; }
-aside #likes { margin: 0px; padding: 0px; list-style: none; }
-
-
-aside #div_id_remember { overflow: auto; width: 100%; padding-top:120px;}
-#login_openid input { width: 160px; }
-
-/* frio fix */
-body.mod-home .navbar.navbar-fixed-top ul.nav.navbar-nav #nav-login {
- display: block;
-}
diff --git a/communityhome/communityhome.php b/communityhome/communityhome.php
deleted file mode 100644
index dc0a6baf..00000000
--- a/communityhome/communityhome.php
+++ /dev/null
@@ -1,225 +0,0 @@
-
- * Status: Unsupported
- */
-
-use Friendica\App;
-use Friendica\Core\Addon;
-use Friendica\Core\Config;
-use Friendica\Core\L10n;
-use Friendica\Module\Login;
-
-require_once 'mod/community.php';
-
-function communityhome_install()
-{
- Addon::registerHook('home_content', 'addon/communityhome/communityhome.php', 'communityhome_home');
- logger("installed communityhome");
-}
-
-function communityhome_uninstall()
-{
- Addon::unregisterHook('home_content', 'addon/communityhome/communityhome.php', 'communityhome_home');
- logger("removed communityhome");
-}
-
-function communityhome_getopts()
-{
- return [
- 'hidelogin' => L10n::t('Hide login form'),
- 'showlastusers' => L10n::t('Show last new users'),
- 'showlastphotos' => L10n::t('Show last photos'),
- 'showlastlike' => L10n::t('Show last liked items'),
- 'showcommunitystream' => L10n::t('Show community stream')
- ];
-}
-
-function communityhome_addon_admin(App $a, &$o)
-{
- $tpl = get_markup_template('settings.tpl', 'addon/communityhome/');
-
- $opts = communityhome_getopts();
- $ctx = [
- '$submit' => L10n::t("Submit"),
- '$fields' => [],
- ];
-
- foreach ($opts as $k => $v) {
- $ctx['fields'][] = ['communityhome_' . $k, $v, Config::get('communityhome', $k)];
- }
- $o = replace_macros($tpl, $ctx);
-}
-
-function communityhome_addon_admin_post(App $a)
-{
- if (x($_POST, 'communityhome-submit')) {
- $opts = communityhome_getopts();
- foreach ($opts as $k => $v) {
- Config::set('communityhome', $k, x($_POST, 'communityhome_' . $k));
- }
- }
-}
-
-function communityhome_home(App $a, &$o)
-{
- // custom css
- $a->page['htmlhead'] .= '';
-
- if (!Config::get('communityhome', 'hidelogin')) {
- $aside = [
- '$tab_1' => L10n::t('Login'),
- '$tab_2' => L10n::t('OpenID'),
- '$noOid' => Config::get('system', 'no_openid'),
- ];
-
- // login form
- $aside['$login_title'] = L10n::t('Login');
- $aside['$login_form'] = Login::form($a->query_string, $a->config['register_policy'] == REGISTER_CLOSED ? false : true);
- } else {
- $aside = [
- //'$tab_1' => L10n::t('Login'),
- //'$tab_2' => L10n::t('OpenID'),
- //'$noOid' => Config::get('system','no_openid'),
- ];
- }
-
- // last 12 users
- if (Config::get('communityhome', 'showlastusers')) {
- $aside['$lastusers_title'] = L10n::t('Latest users');
- $aside['$lastusers_items'] = [];
- $sql_extra = "";
- $publish = (Config::get('system', 'publish_all') ? '' : " AND `publish` = 1 " );
- $order = " ORDER BY `register_date` DESC ";
-
- $r = q("SELECT `profile`.*, `profile`.`uid` AS `profile_uid`, `user`.`nickname`
- FROM `profile` LEFT JOIN `user` ON `user`.`uid` = `profile`.`uid`
- WHERE `is-default` = 1 $publish AND `user`.`blocked` = 0 $sql_extra $order LIMIT %d, %d ",
- 0,
- 12
- );
- # $tpl = file_get_contents( dirname(__file__).'/directory_item.tpl');
- $tpl = get_markup_template('directory_item.tpl', 'addon/communityhome/');
- if (count($r)) {
- $photo = 'thumb';
- foreach ($r as $rr) {
- $profile_link = $a->get_baseurl() . '/profile/' . ((strlen($rr['nickname'])) ? $rr['nickname'] : $rr['profile_uid']);
- $entry = replace_macros($tpl, [
- '$id' => $rr['id'],
- '$profile_link' => $profile_link,
- '$photo' => $rr[$photo],
- '$alt_text' => $rr['name'],
- ]);
- $aside['$lastusers_items'][] = $entry;
- }
- }
- }
-
- // last 12 photos
- if (Config::get('communityhome', 'showlastphotos')) {
- $aside['$photos_title'] = L10n::t('Latest photos');
- $aside['$photos_items'] = [];
- $r = q("SELECT `photo`.`id`, `photo`.`resource-id`, `photo`.`scale`, `photo`.`desc`, `user`.`nickname`, `user`.`username` FROM
- (SELECT `resource-id`, MAX(`scale`) as maxscale FROM `photo`
- WHERE `profile`=0 AND `contact-id`=0 AND `album` NOT IN ('Contact Photos', '%s', 'Profile Photos', '%s')
- AND `allow_cid`='' AND `allow_gid`='' AND `deny_cid`='' AND `deny_gid`='' GROUP BY `resource-id`) AS `t1`
- INNER JOIN `photo` ON `photo`.`resource-id`=`t1`.`resource-id` AND `photo`.`scale` = `t1`.`maxscale`,
- `user`
- WHERE `user`.`uid` = `photo`.`uid`
- AND `user`.`blockwall`=0
- AND `user`.`hidewall` = 0
- ORDER BY `photo`.`edited` DESC
- LIMIT 0, 12",
- dbesc(L10n::t('Contact Photos')),
- dbesc(L10n::t('Profile Photos'))
- );
-
-
- if (count($r)) {
- # $tpl = file_get_contents( dirname(__file__).'/directory_item.tpl');
- $tpl = get_markup_template('directory_item.tpl', 'addon/communityhome/');
- foreach ($r as $rr) {
- $photo_page = $a->get_baseurl() . '/photos/' . $rr['nickname'] . '/image/' . $rr['resource-id'];
- $photo_url = $a->get_baseurl() . '/photo/' . $rr['resource-id'] . '-' . $rr['scale'] . '.jpg';
-
- $entry = replace_macros($tpl, [
- '$id' => $rr['id'],
- '$profile_link' => $photo_page,
- '$photo' => $photo_url,
- '$photo_user' => $rr['username'],
- '$photo_title' => $rr['desc']
- ]);
-
- $aside['$photos_items'][] = $entry;
- }
- }
- }
-
- // last 10 liked items
- if (Config::get('communityhome', 'showlastlike')) {
- $aside['$like_title'] = L10n::t('Latest likes');
- $aside['$like_items'] = [];
- $r = q("SELECT `T1`.`created`, `T1`.`liker`, `T1`.`liker-link`, `item`.* FROM
- (SELECT `parent-uri`, `created`, `author-name` AS `liker`,`author-link` AS `liker-link`
- FROM `item` WHERE `verb`='http://activitystrea.ms/schema/1.0/like' GROUP BY `parent-uri` ORDER BY `created` DESC) AS T1
- INNER JOIN `item` ON `item`.`uri`=`T1`.`parent-uri`
- WHERE `T1`.`liker-link` LIKE '%s%%' OR `item`.`author-link` LIKE '%s%%'
- GROUP BY `uri`
- ORDER BY `T1`.`created` DESC
- LIMIT 0,10",
- $a->get_baseurl(),
- $a->get_baseurl()
- );
-
- foreach ($r as $rr) {
- $author = '' . $rr['liker'] . '';
- $objauthor = '' . $rr['author-name'] . '';
-
- //var_dump($rr['verb'],$rr['object-type']); killme();
- switch ($rr['verb']) {
- case 'http://activitystrea.ms/schema/1.0/post':
- switch ($rr['object-type']) {
- case 'http://activitystrea.ms/schema/1.0/event':
- $post_type = L10n::t('event');
- break;
- default:
- $post_type = L10n::t('status');
- }
- break;
- default:
- if ($rr['resource-id']) {
- $post_type = L10n::t('photo');
- $m = [];
- preg_match("/\[url=([^]]*)\]/", $rr['body'], $m);
- $rr['plink'] = $m[1];
- } else {
- $post_type = L10n::t('status');
- }
- }
- $plink = '' . $post_type . '';
-
- $aside['$like_items'][] = L10n::t('%1$s likes %2$s\'s %3$s', $author, $objauthor, $plink);
- }
- }
-
-# $tpl = file_get_contents(dirname(__file__).'/communityhome.tpl');
- $tpl = get_markup_template('communityhome.tpl', 'addon/communityhome/');
- $a->page['aside'] = replace_macros($tpl, $aside);
-
- $o = '
' . ((x($a->config, 'sitename')) ? L10n::t("Welcome to %s", $a->config['sitename']) : "" ) . '
';
-
- if (file_exists('home.html')) $o = file_get_contents('home.html');
-
- if (Config::get('communityhome', 'showcommunitystream')) {
- $oldset = Config::get('system', 'community_page_style');
- if ($oldset == CP_NO_COMMUNITY_PAGE) Config::set('system', 'community_page_style', CP_USERS_ON_SERVER);
-
- $o .= community_content($a, 1);
-
- if ($oldset == CP_NO_COMMUNITY_PAGE) Config::set('system', 'community_page_style', $oldset);
- }
-}
diff --git a/communityhome/lang/C/messages.po b/communityhome/lang/C/messages.po
deleted file mode 100644
index ad51a85b..00000000
--- a/communityhome/lang/C/messages.po
+++ /dev/null
@@ -1,72 +0,0 @@
-# ADDON communityhome
-# Copyright (C)
-# This file is distributed under the same license as the Friendica communityhome 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 \n"
-"Language-Team: LANGUAGE \n"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: communityhome.php:28 communityhome.php:34
-msgid "Login"
-msgstr ""
-
-#: communityhome.php:29
-msgid "OpenID"
-msgstr ""
-
-#: communityhome.php:39
-msgid "Latest users"
-msgstr ""
-
-#: communityhome.php:84
-msgid "Most active users"
-msgstr ""
-
-#: communityhome.php:102
-msgid "Latest photos"
-msgstr ""
-
-#: communityhome.php:115
-msgid "Contact Photos"
-msgstr ""
-
-#: communityhome.php:116
-msgid "Profile Photos"
-msgstr ""
-
-#: communityhome.php:141
-msgid "Latest likes"
-msgstr ""
-
-#: communityhome.php:163
-msgid "event"
-msgstr ""
-
-#: communityhome.php:166 communityhome.php:175
-msgid "status"
-msgstr ""
-
-#: communityhome.php:171
-msgid "photo"
-msgstr ""
-
-#: communityhome.php:180
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr ""
-
-#: communityhome.php:189
-#, php-format
-msgid "Welcome to %s"
-msgstr ""
diff --git a/communityhome/lang/ca/strings.php b/communityhome/lang/ca/strings.php
deleted file mode 100644
index d0e6bd43..00000000
--- a/communityhome/lang/ca/strings.php
+++ /dev/null
@@ -1,14 +0,0 @@
-strings["Login"] = "Identifica't";
-$a->strings["OpenID"] = "OpenID";
-$a->strings["Latest users"] = "Últims usuaris";
-$a->strings["Most active users"] = "Usuaris més actius";
-$a->strings["Latest photos"] = "Darreres fotos";
-$a->strings["Contact Photos"] = "Fotos de Contacte";
-$a->strings["Profile Photos"] = "Fotos del Perfil";
-$a->strings["Latest likes"] = "Darrers agrada";
-$a->strings["event"] = "esdeveniment";
-$a->strings["status"] = "estatus";
-$a->strings["photo"] = "foto";
-$a->strings["Welcome to %s"] = "Benvingut a %s";
diff --git a/communityhome/lang/cs/messages.po b/communityhome/lang/cs/messages.po
deleted file mode 100644
index 681c43ff..00000000
--- a/communityhome/lang/cs/messages.po
+++ /dev/null
@@ -1,74 +0,0 @@
-# ADDON communityhome
-# Copyright (C)
-# This file is distributed under the same license as the Friendica communityhome addon package.
-#
-#
-# Translators:
-# Michal Šupler , 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-07-07 18:33+0000\n"
-"Last-Translator: Michal Šupler \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"
-
-#: communityhome.php:28 communityhome.php:34
-msgid "Login"
-msgstr "Přihlásit se"
-
-#: communityhome.php:29
-msgid "OpenID"
-msgstr "OpenID"
-
-#: communityhome.php:39
-msgid "Latest users"
-msgstr "Poslední uživatelé"
-
-#: communityhome.php:84
-msgid "Most active users"
-msgstr "Nejaktivnější uživatelé"
-
-#: communityhome.php:102
-msgid "Latest photos"
-msgstr "Poslední fotky"
-
-#: communityhome.php:115
-msgid "Contact Photos"
-msgstr "Fotogalerie kontaktu"
-
-#: communityhome.php:116
-msgid "Profile Photos"
-msgstr "Profilové fotografie"
-
-#: communityhome.php:141
-msgid "Latest likes"
-msgstr "Poslední \"líbí se mi\""
-
-#: communityhome.php:163
-msgid "event"
-msgstr "událost"
-
-#: communityhome.php:166 communityhome.php:175
-msgid "status"
-msgstr "Stav"
-
-#: communityhome.php:171
-msgid "photo"
-msgstr "fotografie"
-
-#: communityhome.php:180
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "Uživateli %1$s se líbí %3$s uživatele %2$s"
-
-#: communityhome.php:189
-#, php-format
-msgid "Welcome to %s"
-msgstr "Vítá Vás %s"
diff --git a/communityhome/lang/cs/strings.php b/communityhome/lang/cs/strings.php
deleted file mode 100644
index 06cf3f36..00000000
--- a/communityhome/lang/cs/strings.php
+++ /dev/null
@@ -1,20 +0,0 @@
-=2 && $n<=4) ? 1 : 2;;
-}}
-;
-$a->strings["Login"] = "Přihlásit se";
-$a->strings["OpenID"] = "OpenID";
-$a->strings["Latest users"] = "Poslední uživatelé";
-$a->strings["Most active users"] = "Nejaktivnější uživatelé";
-$a->strings["Latest photos"] = "Poslední fotky";
-$a->strings["Contact Photos"] = "Fotogalerie kontaktu";
-$a->strings["Profile Photos"] = "Profilové fotografie";
-$a->strings["Latest likes"] = "Poslední \"líbí se mi\"";
-$a->strings["event"] = "událost";
-$a->strings["status"] = "Stav";
-$a->strings["photo"] = "fotografie";
-$a->strings["%1\$s likes %2\$s's %3\$s"] = "Uživateli %1\$s se líbí %3\$s uživatele %2\$s";
-$a->strings["Welcome to %s"] = "Vítá Vás %s";
diff --git a/communityhome/lang/de/messages.po b/communityhome/lang/de/messages.po
deleted file mode 100644
index 65a8c1ea..00000000
--- a/communityhome/lang/de/messages.po
+++ /dev/null
@@ -1,74 +0,0 @@
-# ADDON communityhome
-# Copyright (C)
-# This file is distributed under the same license as the Friendica communityhome addon package.
-#
-#
-# Translators:
-# bavatar , 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-07-08 19:06+0000\n"
-"Last-Translator: bavatar \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"
-
-#: communityhome.php:28 communityhome.php:34
-msgid "Login"
-msgstr "Anmeldung"
-
-#: communityhome.php:29
-msgid "OpenID"
-msgstr "OpenID"
-
-#: communityhome.php:39
-msgid "Latest users"
-msgstr "Letzte Benutzer"
-
-#: communityhome.php:84
-msgid "Most active users"
-msgstr "Aktivste Nutzer"
-
-#: communityhome.php:102
-msgid "Latest photos"
-msgstr "Neueste Fotos"
-
-#: communityhome.php:115
-msgid "Contact Photos"
-msgstr "Kontaktbilder"
-
-#: communityhome.php:116
-msgid "Profile Photos"
-msgstr "Profilbilder"
-
-#: communityhome.php:141
-msgid "Latest likes"
-msgstr "Neueste Favoriten"
-
-#: communityhome.php:163
-msgid "event"
-msgstr "Veranstaltung"
-
-#: communityhome.php:166 communityhome.php:175
-msgid "status"
-msgstr "Status"
-
-#: communityhome.php:171
-msgid "photo"
-msgstr "Foto"
-
-#: communityhome.php:180
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s mag %2$s's %3$s"
-
-#: communityhome.php:189
-#, php-format
-msgid "Welcome to %s"
-msgstr "Willkommen zu %s"
diff --git a/communityhome/lang/de/strings.php b/communityhome/lang/de/strings.php
deleted file mode 100644
index 87b9bccf..00000000
--- a/communityhome/lang/de/strings.php
+++ /dev/null
@@ -1,20 +0,0 @@
-strings["Login"] = "Anmeldung";
-$a->strings["OpenID"] = "OpenID";
-$a->strings["Latest users"] = "Letzte Benutzer";
-$a->strings["Most active users"] = "Aktivste Nutzer";
-$a->strings["Latest photos"] = "Neueste Fotos";
-$a->strings["Contact Photos"] = "Kontaktbilder";
-$a->strings["Profile Photos"] = "Profilbilder";
-$a->strings["Latest likes"] = "Neueste Favoriten";
-$a->strings["event"] = "Veranstaltung";
-$a->strings["status"] = "Status";
-$a->strings["photo"] = "Foto";
-$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s mag %2\$s's %3\$s";
-$a->strings["Welcome to %s"] = "Willkommen zu %s";
diff --git a/communityhome/lang/eo/strings.php b/communityhome/lang/eo/strings.php
deleted file mode 100644
index db0fc8c0..00000000
--- a/communityhome/lang/eo/strings.php
+++ /dev/null
@@ -1,14 +0,0 @@
-strings["Login"] = "Ensaluti";
-$a->strings["OpenID"] = "OpenID";
-$a->strings["Latest users"] = "Ĵusaj uzantoj";
-$a->strings["Most active users"] = "Plej aktivaj uzantoj";
-$a->strings["Latest photos"] = "Ĵusaj bildoj";
-$a->strings["Contact Photos"] = "Kontaktbildoj";
-$a->strings["Profile Photos"] = "Profilbildoj";
-$a->strings["Latest likes"] = "Ĵusaj ŝatitaĵoj";
-$a->strings["event"] = "okazo";
-$a->strings["status"] = "staton";
-$a->strings["photo"] = "bildo";
-$a->strings["Welcome to %s"] = "Bonvenon ĉe %s";
diff --git a/communityhome/lang/es/messages.po b/communityhome/lang/es/messages.po
deleted file mode 100644
index 40be2be1..00000000
--- a/communityhome/lang/es/messages.po
+++ /dev/null
@@ -1,73 +0,0 @@
-# ADDON communityhome
-# Copyright (C)
-# This file is distributed under the same license as the Friendica communityhome 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: 2016-10-10 20:53+0000\n"
-"Last-Translator: Athalbert\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"
-
-#: communityhome.php:28 communityhome.php:34
-msgid "Login"
-msgstr "Acceder"
-
-#: communityhome.php:29
-msgid "OpenID"
-msgstr "ID Abierta"
-
-#: communityhome.php:39
-msgid "Latest users"
-msgstr "Usuarios recientes"
-
-#: communityhome.php:84
-msgid "Most active users"
-msgstr "Usuarios más activos"
-
-#: communityhome.php:102
-msgid "Latest photos"
-msgstr "Fotos recientes"
-
-#: communityhome.php:115
-msgid "Contact Photos"
-msgstr "Fotos de contacto"
-
-#: communityhome.php:116
-msgid "Profile Photos"
-msgstr "Fotos de perfil"
-
-#: communityhome.php:141
-msgid "Latest likes"
-msgstr "Últomos Me gusta"
-
-#: communityhome.php:163
-msgid "event"
-msgstr "evento"
-
-#: communityhome.php:166 communityhome.php:175
-msgid "status"
-msgstr "estatus social"
-
-#: communityhome.php:171
-msgid "photo"
-msgstr "foto"
-
-#: communityhome.php:180
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "A %1$s le gusta %2$s's %3$s"
-
-#: communityhome.php:189
-#, php-format
-msgid "Welcome to %s"
-msgstr "Bienvenido a %s"
diff --git a/communityhome/lang/es/strings.php b/communityhome/lang/es/strings.php
deleted file mode 100644
index 5023d631..00000000
--- a/communityhome/lang/es/strings.php
+++ /dev/null
@@ -1,20 +0,0 @@
-strings["Login"] = "Acceder";
-$a->strings["OpenID"] = "ID Abierta";
-$a->strings["Latest users"] = "Usuarios recientes";
-$a->strings["Most active users"] = "Usuarios más activos";
-$a->strings["Latest photos"] = "Fotos recientes";
-$a->strings["Contact Photos"] = "Fotos de contacto";
-$a->strings["Profile Photos"] = "Fotos de perfil";
-$a->strings["Latest likes"] = "Últomos Me gusta";
-$a->strings["event"] = "evento";
-$a->strings["status"] = "estatus social";
-$a->strings["photo"] = "foto";
-$a->strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s le gusta %2\$s's %3\$s";
-$a->strings["Welcome to %s"] = "Bienvenido a %s";
diff --git a/communityhome/lang/fi-fi/messages.po b/communityhome/lang/fi-fi/messages.po
deleted file mode 100644
index 9a2933bd..00000000
--- a/communityhome/lang/fi-fi/messages.po
+++ /dev/null
@@ -1,75 +0,0 @@
-# ADDON communityhome
-# Copyright (C)
-# This file is distributed under the same license as the Friendica communityhome 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-04-18 14:52+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"
-
-#: communityhome.php:28 communityhome.php:34
-msgid "Login"
-msgstr "Kirjaudu"
-
-#: communityhome.php:29
-msgid "OpenID"
-msgstr "OpenID"
-
-#: communityhome.php:39
-msgid "Latest users"
-msgstr "Viimeisimmät käyttäjät"
-
-#: communityhome.php:84
-msgid "Most active users"
-msgstr "Aktiivisimmat käyttäjät"
-
-#: communityhome.php:102
-msgid "Latest photos"
-msgstr "Viimeisimmät kuvat"
-
-#: communityhome.php:115
-msgid "Contact Photos"
-msgstr "Kontaktikuvat"
-
-#: communityhome.php:116
-msgid "Profile Photos"
-msgstr "Profiilikuvat"
-
-#: communityhome.php:141
-msgid "Latest likes"
-msgstr "Viimeisimmät tykkäykset"
-
-#: communityhome.php:163
-msgid "event"
-msgstr "tapahtuma"
-
-#: communityhome.php:166 communityhome.php:175
-msgid "status"
-msgstr "tila"
-
-#: communityhome.php:171
-msgid "photo"
-msgstr "kuva"
-
-#: communityhome.php:180
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr ""
-
-#: communityhome.php:189
-#, php-format
-msgid "Welcome to %s"
-msgstr "Tervetuloa %s"
diff --git a/communityhome/lang/fi-fi/strings.php b/communityhome/lang/fi-fi/strings.php
deleted file mode 100644
index fa674102..00000000
--- a/communityhome/lang/fi-fi/strings.php
+++ /dev/null
@@ -1,20 +0,0 @@
-strings["Login"] = "Kirjaudu";
-$a->strings["OpenID"] = "OpenID";
-$a->strings["Latest users"] = "Viimeisimmät käyttäjät";
-$a->strings["Most active users"] = "Aktiivisimmat käyttäjät";
-$a->strings["Latest photos"] = "Viimeisimmät kuvat";
-$a->strings["Contact Photos"] = "Kontaktikuvat";
-$a->strings["Profile Photos"] = "Profiilikuvat";
-$a->strings["Latest likes"] = "Viimeisimmät tykkäykset";
-$a->strings["event"] = "tapahtuma";
-$a->strings["status"] = "tila";
-$a->strings["photo"] = "kuva";
-$a->strings["%1\$s likes %2\$s's %3\$s"] = "";
-$a->strings["Welcome to %s"] = "Tervetuloa %s";
diff --git a/communityhome/lang/fr/messages.po b/communityhome/lang/fr/messages.po
deleted file mode 100644
index 0d54a9c6..00000000
--- a/communityhome/lang/fr/messages.po
+++ /dev/null
@@ -1,75 +0,0 @@
-# ADDON communityhome
-# Copyright (C)
-# This file is distributed under the same license as the Friendica communityhome addon package.
-#
-#
-# Translators:
-# Hypolite Petovan , 2016
-# StefOfficiel , 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: 2016-09-24 03:05+0000\n"
-"Last-Translator: Hypolite Petovan \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=2; plural=(n > 1);\n"
-
-#: communityhome.php:28 communityhome.php:34
-msgid "Login"
-msgstr "Identifiant"
-
-#: communityhome.php:29
-msgid "OpenID"
-msgstr "OpenID"
-
-#: communityhome.php:39
-msgid "Latest users"
-msgstr "Derniers utilisateurs"
-
-#: communityhome.php:84
-msgid "Most active users"
-msgstr "Utilisateurs les plus actifs"
-
-#: communityhome.php:102
-msgid "Latest photos"
-msgstr "Dernières photos"
-
-#: communityhome.php:115
-msgid "Contact Photos"
-msgstr "Photos du contact"
-
-#: communityhome.php:116
-msgid "Profile Photos"
-msgstr "Photos de profil"
-
-#: communityhome.php:141
-msgid "Latest likes"
-msgstr "Derniers likes"
-
-#: communityhome.php:163
-msgid "event"
-msgstr "événement"
-
-#: communityhome.php:166 communityhome.php:175
-msgid "status"
-msgstr "statut"
-
-#: communityhome.php:171
-msgid "photo"
-msgstr "photo"
-
-#: communityhome.php:180
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s aime %3$s de %2$s"
-
-#: communityhome.php:189
-#, php-format
-msgid "Welcome to %s"
-msgstr "Bienvenue sur %s"
diff --git a/communityhome/lang/fr/strings.php b/communityhome/lang/fr/strings.php
deleted file mode 100644
index 42a98c84..00000000
--- a/communityhome/lang/fr/strings.php
+++ /dev/null
@@ -1,20 +0,0 @@
- 1);;
-}}
-;
-$a->strings["Login"] = "Identifiant";
-$a->strings["OpenID"] = "OpenID";
-$a->strings["Latest users"] = "Derniers utilisateurs";
-$a->strings["Most active users"] = "Utilisateurs les plus actifs";
-$a->strings["Latest photos"] = "Dernières photos";
-$a->strings["Contact Photos"] = "Photos du contact";
-$a->strings["Profile Photos"] = "Photos de profil";
-$a->strings["Latest likes"] = "Derniers likes";
-$a->strings["event"] = "événement";
-$a->strings["status"] = "statut";
-$a->strings["photo"] = "photo";
-$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s aime %3\$s de %2\$s";
-$a->strings["Welcome to %s"] = "Bienvenue sur %s";
diff --git a/communityhome/lang/is/messages.po b/communityhome/lang/is/messages.po
deleted file mode 100644
index 8fddda5c..00000000
--- a/communityhome/lang/is/messages.po
+++ /dev/null
@@ -1,74 +0,0 @@
-# ADDON communityhome
-# Copyright (C)
-# This file is distributed under the same license as the Friendica communityhome addon package.
-#
-#
-# Translators:
-# Sveinn í Felli , 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-24 15:16+0000\n"
-"Last-Translator: Sveinn í Felli \n"
-"Language-Team: Icelandic (http://www.transifex.com/Friendica/friendica/language/is/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: is\n"
-"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"
-
-#: communityhome.php:28 communityhome.php:34
-msgid "Login"
-msgstr "Innskráning"
-
-#: communityhome.php:29
-msgid "OpenID"
-msgstr ""
-
-#: communityhome.php:39
-msgid "Latest users"
-msgstr ""
-
-#: communityhome.php:84
-msgid "Most active users"
-msgstr ""
-
-#: communityhome.php:102
-msgid "Latest photos"
-msgstr ""
-
-#: communityhome.php:115
-msgid "Contact Photos"
-msgstr ""
-
-#: communityhome.php:116
-msgid "Profile Photos"
-msgstr ""
-
-#: communityhome.php:141
-msgid "Latest likes"
-msgstr ""
-
-#: communityhome.php:163
-msgid "event"
-msgstr ""
-
-#: communityhome.php:166 communityhome.php:175
-msgid "status"
-msgstr ""
-
-#: communityhome.php:171
-msgid "photo"
-msgstr ""
-
-#: communityhome.php:180
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr ""
-
-#: communityhome.php:189
-#, php-format
-msgid "Welcome to %s"
-msgstr ""
diff --git a/communityhome/lang/is/strings.php b/communityhome/lang/is/strings.php
deleted file mode 100644
index 19d602fd..00000000
--- a/communityhome/lang/is/strings.php
+++ /dev/null
@@ -1,21 +0,0 @@
-strings["Login"] = "Innskráning";
-$a->strings["OpenID"] = "";
-$a->strings["Latest users"] = "";
-$a->strings["Most active users"] = "";
-$a->strings["Latest photos"] = "";
-$a->strings["Contact Photos"] = "";
-$a->strings["Profile Photos"] = "";
-$a->strings["Latest likes"] = "";
-$a->strings["event"] = "";
-$a->strings["status"] = "";
-$a->strings["photo"] = "";
-$a->strings["%1\$s likes %2\$s's %3\$s"] = "";
-$a->strings["Welcome to %s"] = "";
diff --git a/communityhome/lang/it/messages.po b/communityhome/lang/it/messages.po
deleted file mode 100644
index 808cc632..00000000
--- a/communityhome/lang/it/messages.po
+++ /dev/null
@@ -1,74 +0,0 @@
-# ADDON communityhome
-# Copyright (C)
-# This file is distributed under the same license as the Friendica communityhome addon package.
-#
-#
-# Translators:
-# fabrixxm , 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: 2017-09-20 06:07+0000\n"
-"Last-Translator: fabrixxm \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"
-
-#: communityhome.php:28 communityhome.php:34
-msgid "Login"
-msgstr "Accedi"
-
-#: communityhome.php:29
-msgid "OpenID"
-msgstr "OpenID"
-
-#: communityhome.php:39
-msgid "Latest users"
-msgstr "Ultimi utenti"
-
-#: communityhome.php:84
-msgid "Most active users"
-msgstr "Utenti più attivi"
-
-#: communityhome.php:102
-msgid "Latest photos"
-msgstr "Ultime foto"
-
-#: communityhome.php:115
-msgid "Contact Photos"
-msgstr "Foto dei contatti"
-
-#: communityhome.php:116
-msgid "Profile Photos"
-msgstr "Foto del profilo"
-
-#: communityhome.php:141
-msgid "Latest likes"
-msgstr "Ultimi \"mi piace\""
-
-#: communityhome.php:163
-msgid "event"
-msgstr "l'evento"
-
-#: communityhome.php:166 communityhome.php:175
-msgid "status"
-msgstr "lo stato"
-
-#: communityhome.php:171
-msgid "photo"
-msgstr "la foto"
-
-#: communityhome.php:180
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "a %1$s piace %2$s di %3$s"
-
-#: communityhome.php:189
-#, php-format
-msgid "Welcome to %s"
-msgstr "Benvenuto su %s"
diff --git a/communityhome/lang/it/strings.php b/communityhome/lang/it/strings.php
deleted file mode 100644
index 422b35df..00000000
--- a/communityhome/lang/it/strings.php
+++ /dev/null
@@ -1,20 +0,0 @@
-strings["Login"] = "Accedi";
-$a->strings["OpenID"] = "OpenID";
-$a->strings["Latest users"] = "Ultimi utenti";
-$a->strings["Most active users"] = "Utenti più attivi";
-$a->strings["Latest photos"] = "Ultime foto";
-$a->strings["Contact Photos"] = "Foto dei contatti";
-$a->strings["Profile Photos"] = "Foto del profilo";
-$a->strings["Latest likes"] = "Ultimi \"mi piace\"";
-$a->strings["event"] = "l'evento";
-$a->strings["status"] = "lo stato";
-$a->strings["photo"] = "la foto";
-$a->strings["%1\$s likes %2\$s's %3\$s"] = "a %1\$s piace %2\$s di %3\$s";
-$a->strings["Welcome to %s"] = "Benvenuto su %s";
diff --git a/communityhome/lang/nb-no/strings.php b/communityhome/lang/nb-no/strings.php
deleted file mode 100644
index d4ef19d3..00000000
--- a/communityhome/lang/nb-no/strings.php
+++ /dev/null
@@ -1,14 +0,0 @@
-strings["Login"] = "Logg inn";
-$a->strings["OpenID"] = "";
-$a->strings["Latest users"] = "";
-$a->strings["Most active users"] = "";
-$a->strings["Latest photos"] = "";
-$a->strings["Contact Photos"] = "Kontaktbilder";
-$a->strings["Profile Photos"] = "Profilbilder";
-$a->strings["Latest likes"] = "";
-$a->strings["event"] = "hendelse";
-$a->strings["status"] = "status";
-$a->strings["photo"] = "bilde";
-$a->strings["Welcome to %s"] = "Velkommen til %s";
diff --git a/communityhome/lang/pl/messages.po b/communityhome/lang/pl/messages.po
deleted file mode 100644
index 2ec6eef2..00000000
--- a/communityhome/lang/pl/messages.po
+++ /dev/null
@@ -1,74 +0,0 @@
-# ADDON communityhome
-# Copyright (C)
-# This file is distributed under the same license as the Friendica communityhome addon package.
-#
-#
-# Translators:
-# Waldemar Stoczkowski , 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-04-18 20:16+0000\n"
-"Last-Translator: Waldemar Stoczkowski \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"
-
-#: communityhome.php:28 communityhome.php:34
-msgid "Login"
-msgstr "Zaloguj się"
-
-#: communityhome.php:29
-msgid "OpenID"
-msgstr "OpenID"
-
-#: communityhome.php:39
-msgid "Latest users"
-msgstr "Ostatni użytkownicy"
-
-#: communityhome.php:84
-msgid "Most active users"
-msgstr "Najbardziej aktywni użytkownicy"
-
-#: communityhome.php:102
-msgid "Latest photos"
-msgstr "Najnowsze Zdjęcia"
-
-#: communityhome.php:115
-msgid "Contact Photos"
-msgstr "Zdjęcia kontaktu"
-
-#: communityhome.php:116
-msgid "Profile Photos"
-msgstr "Zdjęcie profilowe"
-
-#: communityhome.php:141
-msgid "Latest likes"
-msgstr "Najnowsze polubienia"
-
-#: communityhome.php:163
-msgid "event"
-msgstr "zdarzenie"
-
-#: communityhome.php:166 communityhome.php:175
-msgid "status"
-msgstr "status"
-
-#: communityhome.php:171
-msgid "photo"
-msgstr "zdjęcie"
-
-#: communityhome.php:180
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$slubi %2$s %3$s "
-
-#: communityhome.php:189
-#, php-format
-msgid "Welcome to %s"
-msgstr "Witamy w %s"
diff --git a/communityhome/lang/pl/strings.php b/communityhome/lang/pl/strings.php
deleted file mode 100644
index ad97bcb9..00000000
--- a/communityhome/lang/pl/strings.php
+++ /dev/null
@@ -1,20 +0,0 @@
-=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);;
-}}
-;
-$a->strings["Login"] = "Zaloguj się";
-$a->strings["OpenID"] = "OpenID";
-$a->strings["Latest users"] = "Ostatni użytkownicy";
-$a->strings["Most active users"] = "Najbardziej aktywni użytkownicy";
-$a->strings["Latest photos"] = "Najnowsze Zdjęcia";
-$a->strings["Contact Photos"] = "Zdjęcia kontaktu";
-$a->strings["Profile Photos"] = "Zdjęcie profilowe";
-$a->strings["Latest likes"] = "Najnowsze polubienia";
-$a->strings["event"] = "zdarzenie";
-$a->strings["status"] = "status";
-$a->strings["photo"] = "zdjęcie";
-$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$slubi %2\$s %3\$s ";
-$a->strings["Welcome to %s"] = "Witamy w %s";
diff --git a/communityhome/lang/pt-br/messages.po b/communityhome/lang/pt-br/messages.po
deleted file mode 100644
index e453d72b..00000000
--- a/communityhome/lang/pt-br/messages.po
+++ /dev/null
@@ -1,74 +0,0 @@
-# ADDON communityhome
-# Copyright (C)
-# This file is distributed under the same license as the Friendica communityhome addon package.
-#
-#
-# Translators:
-# John Brazil, 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-01-31 01:36+0000\n"
-"Last-Translator: John Brazil\n"
-"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/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"
-
-#: communityhome.php:28 communityhome.php:34
-msgid "Login"
-msgstr "Entrar"
-
-#: communityhome.php:29
-msgid "OpenID"
-msgstr "OpenID"
-
-#: communityhome.php:39
-msgid "Latest users"
-msgstr "Usuários mais recentes"
-
-#: communityhome.php:84
-msgid "Most active users"
-msgstr "Usuários mais ativos"
-
-#: communityhome.php:102
-msgid "Latest photos"
-msgstr "Fotos mais recentes"
-
-#: communityhome.php:115
-msgid "Contact Photos"
-msgstr "Fotos dos Contatos"
-
-#: communityhome.php:116
-msgid "Profile Photos"
-msgstr "Fotos do Perfil"
-
-#: communityhome.php:141
-msgid "Latest likes"
-msgstr "Curtidas recentes"
-
-#: communityhome.php:163
-msgid "event"
-msgstr "evento"
-
-#: communityhome.php:166 communityhome.php:175
-msgid "status"
-msgstr "status"
-
-#: communityhome.php:171
-msgid "photo"
-msgstr "foto"
-
-#: communityhome.php:180
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s curtiu %2$s que publicou %3$s"
-
-#: communityhome.php:189
-#, php-format
-msgid "Welcome to %s"
-msgstr "Bem-vindo a %s"
diff --git a/communityhome/lang/pt-br/strings.php b/communityhome/lang/pt-br/strings.php
deleted file mode 100644
index d8dfeece..00000000
--- a/communityhome/lang/pt-br/strings.php
+++ /dev/null
@@ -1,20 +0,0 @@
- 1);;
-}}
-;
-$a->strings["Login"] = "Entrar";
-$a->strings["OpenID"] = "OpenID";
-$a->strings["Latest users"] = "Usuários mais recentes";
-$a->strings["Most active users"] = "Usuários mais ativos";
-$a->strings["Latest photos"] = "Fotos mais recentes";
-$a->strings["Contact Photos"] = "Fotos dos Contatos";
-$a->strings["Profile Photos"] = "Fotos do Perfil";
-$a->strings["Latest likes"] = "Curtidas recentes";
-$a->strings["event"] = "evento";
-$a->strings["status"] = "status";
-$a->strings["photo"] = "foto";
-$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s curtiu %2\$s que publicou %3\$s";
-$a->strings["Welcome to %s"] = "Bem-vindo a %s";
diff --git a/communityhome/lang/ro/messages.po b/communityhome/lang/ro/messages.po
deleted file mode 100644
index ce4e27cb..00000000
--- a/communityhome/lang/ro/messages.po
+++ /dev/null
@@ -1,73 +0,0 @@
-# ADDON communityhome
-# Copyright (C)
-# This file is distributed under the same license as the Friendica communityhome 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:46+0000\n"
-"Last-Translator: Arian - Cazare Muncitori \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"
-
-#: communityhome.php:28 communityhome.php:34
-msgid "Login"
-msgstr "Autentificare"
-
-#: communityhome.php:29
-msgid "OpenID"
-msgstr "OpenID"
-
-#: communityhome.php:39
-msgid "Latest users"
-msgstr "Cei mai recenți utilizatori"
-
-#: communityhome.php:84
-msgid "Most active users"
-msgstr "Cei mai activi utilizatori"
-
-#: communityhome.php:102
-msgid "Latest photos"
-msgstr "Cele mai recente fotografii"
-
-#: communityhome.php:115
-msgid "Contact Photos"
-msgstr "Fotografiile Contactului"
-
-#: communityhome.php:116
-msgid "Profile Photos"
-msgstr "Fotografii de Profil"
-
-#: communityhome.php:141
-msgid "Latest likes"
-msgstr "Cele mai recente aprecieri"
-
-#: communityhome.php:163
-msgid "event"
-msgstr "eveniment"
-
-#: communityhome.php:166 communityhome.php:175
-msgid "status"
-msgstr "status"
-
-#: communityhome.php:171
-msgid "photo"
-msgstr "fotografie"
-
-#: communityhome.php:180
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s apreciază %3$s lui %2$s"
-
-#: communityhome.php:189
-#, php-format
-msgid "Welcome to %s"
-msgstr "Bine ați venit la %s"
diff --git a/communityhome/lang/ro/strings.php b/communityhome/lang/ro/strings.php
deleted file mode 100644
index faaf2c7e..00000000
--- a/communityhome/lang/ro/strings.php
+++ /dev/null
@@ -1,20 +0,0 @@
-19)||(($n%100==0)&&($n!=0)))?2:1));;
-}}
-;
-$a->strings["Login"] = "Autentificare";
-$a->strings["OpenID"] = "OpenID";
-$a->strings["Latest users"] = "Cei mai recenți utilizatori";
-$a->strings["Most active users"] = "Cei mai activi utilizatori";
-$a->strings["Latest photos"] = "Cele mai recente fotografii";
-$a->strings["Contact Photos"] = "Fotografiile Contactului";
-$a->strings["Profile Photos"] = "Fotografii de Profil";
-$a->strings["Latest likes"] = "Cele mai recente aprecieri";
-$a->strings["event"] = "eveniment";
-$a->strings["status"] = "status";
-$a->strings["photo"] = "fotografie";
-$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s apreciază %3\$s lui %2\$s";
-$a->strings["Welcome to %s"] = "Bine ați venit la %s";
diff --git a/communityhome/lang/ru/messages.po b/communityhome/lang/ru/messages.po
deleted file mode 100644
index 223fde4d..00000000
--- a/communityhome/lang/ru/messages.po
+++ /dev/null
@@ -1,74 +0,0 @@
-# ADDON communityhome
-# Copyright (C)
-# This file is distributed under the same license as the Friendica communityhome addon package.
-#
-#
-# Translators:
-# Stanislav N. , 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:08+0000\n"
-"Last-Translator: Stanislav N. \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"
-
-#: communityhome.php:28 communityhome.php:34
-msgid "Login"
-msgstr "Вход"
-
-#: communityhome.php:29
-msgid "OpenID"
-msgstr "OpenID"
-
-#: communityhome.php:39
-msgid "Latest users"
-msgstr "Последние пользователи"
-
-#: communityhome.php:84
-msgid "Most active users"
-msgstr "Самые активные пользователи"
-
-#: communityhome.php:102
-msgid "Latest photos"
-msgstr "Последние фото"
-
-#: communityhome.php:115
-msgid "Contact Photos"
-msgstr "Фотографии контакта"
-
-#: communityhome.php:116
-msgid "Profile Photos"
-msgstr "Фотографии профиля"
-
-#: communityhome.php:141
-msgid "Latest likes"
-msgstr "Последние отметки \"нравится\""
-
-#: communityhome.php:163
-msgid "event"
-msgstr "событие"
-
-#: communityhome.php:166 communityhome.php:175
-msgid "status"
-msgstr "статус"
-
-#: communityhome.php:171
-msgid "photo"
-msgstr "фото"
-
-#: communityhome.php:180
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s нравится %3$s от %2$s "
-
-#: communityhome.php:189
-#, php-format
-msgid "Welcome to %s"
-msgstr "Добро пожаловать на %s!"
diff --git a/communityhome/lang/ru/strings.php b/communityhome/lang/ru/strings.php
deleted file mode 100644
index 42d28c9e..00000000
--- a/communityhome/lang/ru/strings.php
+++ /dev/null
@@ -1,20 +0,0 @@
-=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["Login"] = "Вход";
-$a->strings["OpenID"] = "OpenID";
-$a->strings["Latest users"] = "Последние пользователи";
-$a->strings["Most active users"] = "Самые активные пользователи";
-$a->strings["Latest photos"] = "Последние фото";
-$a->strings["Contact Photos"] = "Фотографии контакта";
-$a->strings["Profile Photos"] = "Фотографии профиля";
-$a->strings["Latest likes"] = "Последние отметки \"нравится\"";
-$a->strings["event"] = "событие";
-$a->strings["status"] = "статус";
-$a->strings["photo"] = "фото";
-$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s нравится %3\$s от %2\$s ";
-$a->strings["Welcome to %s"] = "Добро пожаловать на %s!";
diff --git a/communityhome/lang/sv/strings.php b/communityhome/lang/sv/strings.php
deleted file mode 100644
index 0f350650..00000000
--- a/communityhome/lang/sv/strings.php
+++ /dev/null
@@ -1,8 +0,0 @@
-strings["Login"] = "Logga in";
-$a->strings["Contact Photos"] = "Dina kontakters bilder";
-$a->strings["Profile Photos"] = "Profilbilder";
-$a->strings["status"] = "status";
-$a->strings["photo"] = "bild";
-$a->strings["Welcome to %s"] = "Välkommen till %s";
diff --git a/communityhome/lang/zh-cn/strings.php b/communityhome/lang/zh-cn/strings.php
deleted file mode 100644
index 3cabe94d..00000000
--- a/communityhome/lang/zh-cn/strings.php
+++ /dev/null
@@ -1,14 +0,0 @@
-strings["Login"] = "登录";
-$a->strings["OpenID"] = "OpenID";
-$a->strings["Latest users"] = "最近用户";
-$a->strings["Most active users"] = "最积极用户";
-$a->strings["Latest photos"] = "最近照片";
-$a->strings["Contact Photos"] = "熟人照片";
-$a->strings["Profile Photos"] = "简介照片";
-$a->strings["Latest likes"] = "最近喜欢";
-$a->strings["event"] = "项目";
-$a->strings["status"] = "现状";
-$a->strings["photo"] = "照片";
-$a->strings["Welcome to %s"] = "%s欢迎你";
diff --git a/communityhome/templates/communityhome.tpl b/communityhome/templates/communityhome.tpl
deleted file mode 100644
index c2e458be..00000000
--- a/communityhome/templates/communityhome.tpl
+++ /dev/null
@@ -1,61 +0,0 @@
-
-{{if $noOid}}
- {{$login_title}}
-{{else}}
-
-{{/if}}
-{{$login_form}}
-
-
-{{if $lastusers_title}}
-{{$lastusers_title}}
-
-{{foreach $lastusers_items as $i}}
- {{$i}}
-{{/foreach}}
-
-{{/if}}
-
-
-{{if $photos_title}}
-{{$photos_title}}
-
-{{foreach $photos_items as $i}}
- {{$i}}
-{{/foreach}}
-
-{{/if}}
-
-
-{{if $like_title}}
-{{$like_title}}
-
-{{foreach $like_items as $i}}
- - {{$i}}
-{{/foreach}}
-
-{{/if}}
diff --git a/communityhome/templates/directory_item.tpl b/communityhome/templates/directory_item.tpl
deleted file mode 100644
index 30512f4e..00000000
--- a/communityhome/templates/directory_item.tpl
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
diff --git a/communityhome/templates/settings.tpl b/communityhome/templates/settings.tpl
deleted file mode 100644
index d73ed74c..00000000
--- a/communityhome/templates/settings.tpl
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-