+++ /dev/null
-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
+++ /dev/null
-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;
-}
+++ /dev/null
-<?php
-
-/**
- * Name: Community home
- * Description: Show last community activity in homepage
- * Version: 2.0
- * Author: Fabio Comuni <http://kirgroup.com/profile/fabrixxm>
- * 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'] .= '<link rel="stylesheet" type="text/css" href="' . $a->get_baseurl() . '/addon/communityhome/communityhome.css" media="all" />';
-
- 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 = '<a href="' . $rr['liker-link'] . '">' . $rr['liker'] . '</a>';
- $objauthor = '<a href="' . $rr['author-link'] . '">' . $rr['author-name'] . '</a>';
-
- //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 = '<a href="' . $rr['plink'] . '">' . $post_type . '</a>';
-
- $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 = '<h1>' . ((x($a->config, 'sitename')) ? L10n::t("Welcome to %s", $a->config['sitename']) : "" ) . '</h1>';
-
- 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);
- }
-}
+++ /dev/null
-# 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 <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"
-
-#: 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 ""
+++ /dev/null
-<?php\r
-\r
-$a->strings["Login"] = "Identifica't";\r
-$a->strings["OpenID"] = "OpenID";\r
-$a->strings["Latest users"] = "Últims usuaris";\r
-$a->strings["Most active users"] = "Usuaris més actius";\r
-$a->strings["Latest photos"] = "Darreres fotos";\r
-$a->strings["Contact Photos"] = "Fotos de Contacte";\r
-$a->strings["Profile Photos"] = "Fotos del Perfil";\r
-$a->strings["Latest likes"] = "Darrers agrada";\r
-$a->strings["event"] = "esdeveniment";\r
-$a->strings["status"] = "estatus";\r
-$a->strings["photo"] = "foto";\r
-$a->strings["Welcome to %s"] = "Benvingut a %s";\r
+++ /dev/null
-# ADDON communityhome
-# Copyright (C)
-# This file is distributed under the same license as the Friendica communityhome addon package.
-#
-#
-# Translators:
-# Michal Šupler <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: 2014-07-07 18:33+0000\n"
-"Last-Translator: Michal Šupler <msupler@gmail.com>\n"
-"Language-Team: Czech (http://www.transifex.com/projects/p/friendica/language/cs/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: cs\n"
-"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-
-#: 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"
+++ /dev/null
-<?php
-
-if(! function_exists("string_plural_select_cs")) {
-function string_plural_select_cs($n){
- return ($n==1) ? 0 : ($n>=2 && $n<=4) ? 1 : 2;;
-}}
-;
-$a->strings["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";
+++ /dev/null
-# ADDON communityhome
-# Copyright (C)
-# This file is distributed under the same license as the Friendica communityhome addon package.
-#
-#
-# Translators:
-# bavatar <tobias.diekershoff@gmx.net>, 2014
-msgid ""
-msgstr ""
-"Project-Id-Version: friendica\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-02-27 05:01-0500\n"
-"PO-Revision-Date: 2014-07-08 19:06+0000\n"
-"Last-Translator: bavatar <tobias.diekershoff@gmx.net>\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"
+++ /dev/null
-<?php
-
-if(! function_exists("string_plural_select_de")) {
-function string_plural_select_de($n){
- return ($n != 1);;
-}}
-;
-$a->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";
+++ /dev/null
-<?php\r
-\r
-$a->strings["Login"] = "Ensaluti";\r
-$a->strings["OpenID"] = "OpenID";\r
-$a->strings["Latest users"] = "Ĵusaj uzantoj";\r
-$a->strings["Most active users"] = "Plej aktivaj uzantoj";\r
-$a->strings["Latest photos"] = "Ĵusaj bildoj";\r
-$a->strings["Contact Photos"] = "Kontaktbildoj";\r
-$a->strings["Profile Photos"] = "Profilbildoj";\r
-$a->strings["Latest likes"] = "Ĵusaj ŝatitaĵoj";\r
-$a->strings["event"] = "okazo";\r
-$a->strings["status"] = "staton";\r
-$a->strings["photo"] = "bildo";\r
-$a->strings["Welcome to %s"] = "Bonvenon ĉe %s";\r
+++ /dev/null
-# 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"
+++ /dev/null
-<?php
-
-if(! function_exists("string_plural_select_es")) {
-function string_plural_select_es($n){
- return ($n != 1);;
-}}
-;
-$a->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";
+++ /dev/null
-# 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"
+++ /dev/null
-<?php
-
-if(! function_exists("string_plural_select_fi_fi")) {
-function string_plural_select_fi_fi($n){
- return ($n != 1);;
-}}
-;
-$a->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";
+++ /dev/null
-# ADDON communityhome
-# Copyright (C)
-# This file is distributed under the same license as the Friendica communityhome addon package.
-#
-#
-# Translators:
-# Hypolite Petovan <mrpetovan@gmail.com>, 2016
-# StefOfficiel <pichard.stephane@free.fr>, 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 <mrpetovan@gmail.com>\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"
+++ /dev/null
-<?php
-
-if(! function_exists("string_plural_select_fr")) {
-function string_plural_select_fr($n){
- return ($n > 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";
+++ /dev/null
-# ADDON communityhome
-# Copyright (C)
-# This file is distributed under the same license as the Friendica communityhome addon package.
-#
-#
-# Translators:
-# Sveinn í Felli <sv1@fellsnet.is>, 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 <sv1@fellsnet.is>\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 ""
+++ /dev/null
-<?php
-
-if(! function_exists("string_plural_select_is")) {
-function string_plural_select_is($n){
- $n = intval($n);
- return ($n % 10 != 1 || $n % 100 == 11);;
-}}
-;
-$a->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"] = "";
+++ /dev/null
-# ADDON communityhome
-# Copyright (C)
-# This file is distributed under the same license as the Friendica communityhome addon package.
-#
-#
-# Translators:
-# fabrixxm <fabrix.xm@gmail.com>, 2014
-msgid ""
-msgstr ""
-"Project-Id-Version: friendica\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-02-27 05:01-0500\n"
-"PO-Revision-Date: 2017-09-20 06:07+0000\n"
-"Last-Translator: fabrixxm <fabrix.xm@gmail.com>\n"
-"Language-Team: Italian (http://www.transifex.com/Friendica/friendica/language/it/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: it\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: 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"
+++ /dev/null
-<?php
-
-if(! function_exists("string_plural_select_it")) {
-function string_plural_select_it($n){
- return ($n != 1);;
-}}
-;
-$a->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";
+++ /dev/null
-<?php\r
-\r
-$a->strings["Login"] = "Logg inn";\r
-$a->strings["OpenID"] = "";\r
-$a->strings["Latest users"] = "";\r
-$a->strings["Most active users"] = "";\r
-$a->strings["Latest photos"] = "";\r
-$a->strings["Contact Photos"] = "Kontaktbilder";\r
-$a->strings["Profile Photos"] = "Profilbilder";\r
-$a->strings["Latest likes"] = "";\r
-$a->strings["event"] = "hendelse";\r
-$a->strings["status"] = "status";\r
-$a->strings["photo"] = "bilde";\r
-$a->strings["Welcome to %s"] = "Velkommen til %s";\r
+++ /dev/null
-# ADDON communityhome
-# Copyright (C)
-# This file is distributed under the same license as the Friendica communityhome addon package.
-#
-#
-# Translators:
-# Waldemar Stoczkowski <waldemar.stoczkowski@gmail.com>, 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 <waldemar.stoczkowski@gmail.com>\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"
+++ /dev/null
-<?php
-
-if(! function_exists("string_plural_select_pl")) {
-function string_plural_select_pl($n){
- return ($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);;
-}}
-;
-$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";
+++ /dev/null
-# 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"
+++ /dev/null
-<?php
-
-if(! function_exists("string_plural_select_pt_br")) {
-function string_plural_select_pt_br($n){
- return ($n > 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";
+++ /dev/null
-# 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 <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"
-
-#: 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"
+++ /dev/null
-<?php
-
-if(! function_exists("string_plural_select_ro")) {
-function string_plural_select_ro($n){
- return ($n==1?0:((($n%100>19)||(($n%100==0)&&($n!=0)))?2:1));;
-}}
-;
-$a->strings["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";
+++ /dev/null
-# ADDON communityhome
-# Copyright (C)
-# This file is distributed under the same license as the Friendica communityhome 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:08+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"
-
-#: 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!"
+++ /dev/null
-<?php
-
-if(! function_exists("string_plural_select_ru")) {
-function string_plural_select_ru($n){
- return ($n%10==1 && $n%100!=11 ? 0 : $n%10>=2 && $n%10<=4 && ($n%100<12 || $n%100>14) ? 1 : $n%10==0 || ($n%10>=5 && $n%10<=9) || ($n%100>=11 && $n%100<=14)? 2 : 3);;
-}}
-;
-$a->strings["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!";
+++ /dev/null
-<?php\r
-\r
-$a->strings["Login"] = "Logga in";\r
-$a->strings["Contact Photos"] = "Dina kontakters bilder";\r
-$a->strings["Profile Photos"] = "Profilbilder";\r
-$a->strings["status"] = "status";\r
-$a->strings["photo"] = "bild";\r
-$a->strings["Welcome to %s"] = "Välkommen till %s";\r
+++ /dev/null
-<?php\r
-\r
-$a->strings["Login"] = "登录";\r
-$a->strings["OpenID"] = "OpenID";\r
-$a->strings["Latest users"] = "最近用户";\r
-$a->strings["Most active users"] = "最积极用户";\r
-$a->strings["Latest photos"] = "最近照片";\r
-$a->strings["Contact Photos"] = "熟人照片";\r
-$a->strings["Profile Photos"] = "简介照片";\r
-$a->strings["Latest likes"] = "最近喜欢";\r
-$a->strings["event"] = "项目";\r
-$a->strings["status"] = "现状";\r
-$a->strings["photo"] = "照片";\r
-$a->strings["Welcome to %s"] = "%s欢迎你";\r
+++ /dev/null
-<script>
- $(function(){
- $("#tab_1 a").click(function(e){
- $("#login_standard").show();
- $("#login_openid").hide();
- $("#tab_1").addClass("active");
- $("#tab_2").removeClass("active");
- e.preventDefault();
- return false;
- });
- $("#tab_2 a").click(function(e){
- $("#login_openid").show();
- $("#login_standard").hide();
- $("#tab_2").addClass("active");
- $("#tab_1").removeClass("active");
- e.preventDefault();
- return false;
-
- });
-
- });
-</script>
-{{if $noOid}}
- <h3>{{$login_title}}</h3>
-{{else}}
-<ul class="tabs">
- <li id="tab_1" class="tab button active"><a href="#">{{$tab_1}}</a></li>
- <li id="tab_2" class="tab button"><a href="#">{{$tab_2}}</a></li>
-</ul>
-{{/if}}
-{{$login_form}}
-
-
-{{if $lastusers_title}}
-<h3>{{$lastusers_title}}</h3>
-<div class='items-wrapper'>
-{{foreach $lastusers_items as $i}}
- {{$i}}
-{{/foreach}}
-</div>
-{{/if}}
-
-
-{{if $photos_title}}
-<h3>{{$photos_title}}</h3>
-<div class='items-wrapper'>
-{{foreach $photos_items as $i}}
- {{$i}}
-{{/foreach}}
-</div>
-{{/if}}
-
-
-{{if $like_title}}
-<h3>{{$like_title}}</h3>
-<ul id='likes'>
-{{foreach $like_items as $i}}
- <li>{{$i}}</li>
-{{/foreach}}
-</ul>
-{{/if}}
+++ /dev/null
-
-<div class="directory-item" id="directory-item-{{$id}}" >
- <div class="directory-photo-wrapper" id="directory-photo-wrapper-{{$id}}" >
- <div class="directory-photo" id="directory-photo-{{$id}}" >
- <a href="{{$profile_link}}" class="directory-profile-link" id="directory-profile-link-{{$id}}" >
- <img class="directory-photo-img" src="{{$photo}}" alt="{{$photo_user}} {{if $photo_title}}: {{$photo_title}}{{/if}}" title="{{$alt_text}}" />
- </a>
- </div>
- </div>
-</div>
+++ /dev/null
- <div id="communityhome-wrapper">
- {{foreach $fields as $field}}
- {{include file="field_checkbox.tpl" field=$field}}
- {{/foreach}}
- </div>
- <div class="settings-submit-wrapper" >
- <input type="submit" id="communityhome-submit" name="communityhome-submit" class="settings-submit" value="{{$submit}}" />
- </div>
-