1
0
Fork 0

Merge pull request #9401 from annando/accounttype

Filter for account type for contacts
This commit is contained in:
Hypolite Petovan 2020-10-10 07:16:32 -04:00 committed by GitHub
commit e3cf708dd8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 333 additions and 312 deletions

View file

@ -132,7 +132,7 @@ function network_init(App $a)
DI::page()['aside'] = ''; DI::page()['aside'] = '';
} }
if (!empty($a->argv[1]) && in_array($a->argv[1], ['person', 'organisation', 'news', 'community'])) { if (!empty(User::getAccountTypeByString($a->argv[1] ?? ''))) {
$accounttype = $a->argv[1]; $accounttype = $a->argv[1];
} else { } else {
$accounttype = ''; $accounttype = '';
@ -300,23 +300,7 @@ function network_content(App $a, $update = 0, $parent = 0)
$o = ''; $o = '';
} }
switch ($a->argv[1] ?? '') { $account = User::getAccountTypeByString($a->argv[1] ?? '');
case 'person':
$account = User::ACCOUNT_TYPE_PERSON;
break;
case 'organisation':
$account = User::ACCOUNT_TYPE_ORGANISATION;
break;
case 'news':
$account = User::ACCOUNT_TYPE_NEWS;
break;
case 'community':
$account = User::ACCOUNT_TYPE_COMMUNITY;
break;
default:
$account = null;
break;
}
if (!empty($_GET['file'])) { if (!empty($_GET['file'])) {
$o .= networkFlatView($a, $update, $account); $o .= networkFlatView($a, $update, $account);

View file

@ -24,17 +24,13 @@ namespace Friendica\Content;
use Friendica\Core\Addon; use Friendica\Core\Addon;
use Friendica\Core\Protocol; use Friendica\Core\Protocol;
use Friendica\Core\Renderer; use Friendica\Core\Renderer;
use Friendica\Core\Session;
use Friendica\Database\DBA; use Friendica\Database\DBA;
use Friendica\DI; use Friendica\DI;
use Friendica\Model\Contact; use Friendica\Model\Contact;
use Friendica\Model\FileTag; use Friendica\Model\FileTag;
use Friendica\Model\GContact;
use Friendica\Model\Group; use Friendica\Model\Group;
use Friendica\Model\Item; use Friendica\Model\Item;
use Friendica\Model\Profile;
use Friendica\Util\DateTimeFormat; use Friendica\Util\DateTimeFormat;
use Friendica\Util\Strings;
use Friendica\Util\Temporal; use Friendica\Util\Temporal;
class Widget class Widget
@ -526,8 +522,30 @@ class Widget
return $o; return $o;
} }
/**
* Display the account types sidebar
* The account type value is added as a parameter to the url
*
* @param string $base Basepath
* @param int $accounttype Acount type
* @return string
*/
public static function accounttypes(string $base, $accounttype)
{
$accounts = [
['ref' => 'person', 'name' => DI::l10n()->t('Persons')],
['ref' => 'organisation', 'name' => DI::l10n()->t('Organisations')],
['ref' => 'news', 'name' => DI::l10n()->t('News')],
['ref' => 'community', 'name' => DI::l10n()->t('Forums')],
];
return self::filter('accounttype', DI::l10n()->t('Account Types'), '',
DI::l10n()->t('All'), $base, $accounts, $accounttype);
}
/** /**
* Display the accounts sidebar * Display the accounts sidebar
* The account type is added to the path
* *
* @param string $base Basepath * @param string $base Basepath
* @param string $accounttype Acount type (person, organisation, news, community) * @param string $accounttype Acount type (person, organisation, news, community)
@ -536,7 +554,7 @@ class Widget
public static function accounts(string $base, string $accounttype) public static function accounts(string $base, string $accounttype)
{ {
return Renderer::replaceMacros(Renderer::getMarkupTemplate('widget/accounts.tpl'), [ return Renderer::replaceMacros(Renderer::getMarkupTemplate('widget/accounts.tpl'), [
'$title' => DI::l10n()->t('Accounts'), '$title' => DI::l10n()->t('Account Types'),
'$content' => $base, '$content' => $base,
'$accounttype' => ($accounttype ?? ''), '$accounttype' => ($accounttype ?? ''),
'$all' => DI::l10n()->t('All'), '$all' => DI::l10n()->t('All'),

View file

@ -469,7 +469,7 @@ class Relation
); );
return DI::dba()->selectToArray('contact', [], $condition, return DI::dba()->selectToArray('contact', [], $condition,
['limit' => [$offset, $count], 'order' => [$shuffle ? 'name' : 'RAND()']] ['limit' => [$offset, $count], 'order' => [$shuffle ? 'RAND()' : 'name']]
); );
} }
@ -485,8 +485,8 @@ class Relation
public static function countAll(int $cid, array $condition = []) public static function countAll(int $cid, array $condition = [])
{ {
$condition = DBA::mergeConditions($condition, $condition = DBA::mergeConditions($condition,
['`id` IN (SELECT `relation-cid` FROM `contact-relation` WHERE `cid` = ? AND `follows`) ['(`id` IN (SELECT `relation-cid` FROM `contact-relation` WHERE `cid` = ? AND `follows`)
OR `id` IN (SELECT `cid` FROM `contact-relation` WHERE `relation-cid` = ? AND `follows`)', OR `id` IN (SELECT `cid` FROM `contact-relation` WHERE `relation-cid` = ? AND `follows`))',
$cid, $cid] $cid, $cid]
); );
@ -507,13 +507,13 @@ class Relation
public static function listAll(int $cid, array $condition = [], int $count = 30, int $offset = 0, bool $shuffle = false) public static function listAll(int $cid, array $condition = [], int $count = 30, int $offset = 0, bool $shuffle = false)
{ {
$condition = DBA::mergeConditions($condition, $condition = DBA::mergeConditions($condition,
['`id` IN (SELECT `relation-cid` FROM `contact-relation` WHERE `cid` = ? AND `follows`) ['(`id` IN (SELECT `relation-cid` FROM `contact-relation` WHERE `cid` = ? AND `follows`)
OR `id` IN (SELECT `cid` FROM `contact-relation` WHERE `relation-cid` = ? AND `follows`)', OR `id` IN (SELECT `cid` FROM `contact-relation` WHERE `relation-cid` = ? AND `follows`))',
$cid, $cid] $cid, $cid]
); );
return DI::dba()->selectToArray('contact', [], $condition, return DI::dba()->selectToArray('contact', [], $condition,
['limit' => [$offset, $count], 'order' => [$shuffle ? 'name' : 'RAND()']] ['limit' => [$offset, $count], 'order' => [$shuffle ? 'RAND()' : 'name']]
); );
} }
@ -560,7 +560,7 @@ class Relation
); );
return DI::dba()->selectToArray('contact', [], $condition, return DI::dba()->selectToArray('contact', [], $condition,
['limit' => [$offset, $count], 'order' => [$shuffle ? 'name' : 'RAND()']] ['limit' => [$offset, $count], 'order' => [$shuffle ? 'RAND()' : 'name']]
); );
} }
@ -605,7 +605,7 @@ class Relation
); );
return DI::dba()->selectToArray('contact', [], $condition, return DI::dba()->selectToArray('contact', [], $condition,
['limit' => [$offset, $count], 'order' => [$shuffle ? 'name' : 'RAND()']] ['limit' => [$offset, $count], 'order' => [$shuffle ? 'RAND()' : 'name']]
); );
} }
@ -650,7 +650,7 @@ class Relation
); );
return DI::dba()->selectToArray('contact', [], $condition, return DI::dba()->selectToArray('contact', [], $condition,
['limit' => [$offset, $count], 'order' => [$shuffle ? 'name' : 'RAND()']] ['limit' => [$offset, $count], 'order' => [$shuffle ? 'RAND()' : 'name']]
); );
} }
} }

View file

@ -102,6 +102,29 @@ class User
private static $owner; private static $owner;
/**
* Returns the numeric account type by their string
*
* @param string $accounttype as string constant
* @return int|null Numeric account type - or null when not set
*/
public static function getAccountTypeByString(string $accounttype)
{
switch ($accounttype) {
case 'person':
return User::ACCOUNT_TYPE_PERSON;
case 'organisation':
return User::ACCOUNT_TYPE_ORGANISATION;
case 'news':
return User::ACCOUNT_TYPE_NEWS;
case 'community':
return User::ACCOUNT_TYPE_COMMUNITY;
default:
return null;
break;
}
}
/** /**
* Fetch the system account * Fetch the system account
* *

View file

@ -37,6 +37,7 @@ use Friendica\Core\Worker;
use Friendica\Database\DBA; use Friendica\Database\DBA;
use Friendica\DI; use Friendica\DI;
use Friendica\Model; use Friendica\Model;
use Friendica\Model\User;
use Friendica\Module\Security\Login; use Friendica\Module\Security\Login;
use Friendica\Network\HTTPException\BadRequestException; use Friendica\Network\HTTPException\BadRequestException;
use Friendica\Network\HTTPException\NotFoundException; use Friendica\Network\HTTPException\NotFoundException;
@ -260,6 +261,9 @@ class Contact extends BaseModule
$rel = Strings::escapeTags(trim($_GET['rel'] ?? '')); $rel = Strings::escapeTags(trim($_GET['rel'] ?? ''));
$group = Strings::escapeTags(trim($_GET['group'] ?? '')); $group = Strings::escapeTags(trim($_GET['group'] ?? ''));
$accounttype = $_GET['accounttype'] ?? '';
$accounttypeid = User::getAccountTypeByString($accounttype);
$page = DI::page(); $page = DI::page();
$page->registerFooterScript(Theme::getPathForFile('asset/typeahead.js/dist/typeahead.bundle.js')); $page->registerFooterScript(Theme::getPathForFile('asset/typeahead.js/dist/typeahead.bundle.js'));
@ -339,6 +343,7 @@ class Contact extends BaseModule
$findpeople_widget = ''; $findpeople_widget = '';
$follow_widget = ''; $follow_widget = '';
$account_widget = '';
$networks_widget = ''; $networks_widget = '';
$rel_widget = ''; $rel_widget = '';
@ -356,12 +361,13 @@ class Contact extends BaseModule
$follow_widget = Widget::follow(); $follow_widget = Widget::follow();
} }
$account_widget = Widget::accounttypes($_SERVER['REQUEST_URI'], $accounttype);
$networks_widget = Widget::networks($_SERVER['REQUEST_URI'], $nets); $networks_widget = Widget::networks($_SERVER['REQUEST_URI'], $nets);
$rel_widget = Widget::contactRels($_SERVER['REQUEST_URI'], $rel); $rel_widget = Widget::contactRels($_SERVER['REQUEST_URI'], $rel);
$groups_widget = Widget::groups($_SERVER['REQUEST_URI'], $group); $groups_widget = Widget::groups($_SERVER['REQUEST_URI'], $group);
} }
DI::page()['aside'] .= $vcard_widget . $findpeople_widget . $follow_widget . $groups_widget . $networks_widget . $rel_widget; DI::page()['aside'] .= $vcard_widget . $findpeople_widget . $follow_widget . $account_widget . $groups_widget . $networks_widget . $rel_widget;
$tpl = Renderer::getMarkupTemplate('contacts-head.tpl'); $tpl = Renderer::getMarkupTemplate('contacts-head.tpl');
DI::page()['htmlhead'] .= Renderer::replaceMacros($tpl, [ DI::page()['htmlhead'] .= Renderer::replaceMacros($tpl, [
@ -664,6 +670,11 @@ class Contact extends BaseModule
break; break;
} }
if (isset($accounttypeid)) {
$sql_extra .= " AND `contact-type` = ?";
$sql_values[] = $accounttypeid;
}
$searching = false; $searching = false;
$search_hdr = null; $search_hdr = null;
if ($search) { if ($search) {

View file

@ -4,10 +4,11 @@ namespace Friendica\Module\Contact;
use Friendica\BaseModule; use Friendica\BaseModule;
use Friendica\Content\Pager; use Friendica\Content\Pager;
use Friendica\Content\Widget;
use Friendica\Core\Renderer; use Friendica\Core\Renderer;
use Friendica\Core\Session;
use Friendica\DI; use Friendica\DI;
use Friendica\Model; use Friendica\Model;
use Friendica\Model\User;
use Friendica\Module; use Friendica\Module;
use Friendica\Network\HTTPException; use Friendica\Network\HTTPException;
@ -23,6 +24,8 @@ class Contacts extends BaseModule
$cid = $parameters['id']; $cid = $parameters['id'];
$type = $parameters['type'] ?? 'all'; $type = $parameters['type'] ?? 'all';
$accounttype = $_GET['accounttype'] ?? '';
$accounttypeid = User::getAccountTypeByString($accounttype);
if (!$cid) { if (!$cid) {
throw new HTTPException\BadRequestException(DI::l10n()->t('Invalid contact.')); throw new HTTPException\BadRequestException(DI::l10n()->t('Invalid contact.'));
@ -44,6 +47,10 @@ class Contacts extends BaseModule
'failed' => false, 'failed' => false,
]; ];
if (isset($accounttypeid)) {
$condition['contact-type'] = $accounttypeid;
}
$noresult_label = DI::l10n()->t('No known contacts.'); $noresult_label = DI::l10n()->t('No known contacts.');
switch ($type) { switch ($type) {
@ -57,10 +64,6 @@ class Contacts extends BaseModule
$total = Model\Contact\Relation::countMutuals($cid, $condition); $total = Model\Contact\Relation::countMutuals($cid, $condition);
break; break;
case 'common': case 'common':
$condition = [
'NOT `self` AND NOT `blocked` AND NOT `hidden` AND `id` != ?',
$localContactId,
];
$total = Model\Contact\Relation::countCommon($localContactId, $cid, $condition); $total = Model\Contact\Relation::countCommon($localContactId, $cid, $condition);
$noresult_label = DI::l10n()->t('No common contacts.'); $noresult_label = DI::l10n()->t('No common contacts.');
break; break;
@ -119,6 +122,8 @@ class Contacts extends BaseModule
'$paginate' => $pager->renderFull($total), '$paginate' => $pager->renderFull($total),
]); ]);
DI::page()['aside'] .= Widget::accounttypes($_SERVER['REQUEST_URI'], $accounttype);
return $o; return $o;
} }
} }

View file

@ -192,23 +192,7 @@ class Community extends BaseModule
throw new HTTPException\ForbiddenException(DI::l10n()->t('Access denied.')); throw new HTTPException\ForbiddenException(DI::l10n()->t('Access denied.'));
} }
switch ($parameters['accounttype'] ?? '') { self::$accounttype = User::getAccountTypeByString($parameters['accounttype'] ?? '');
case 'person':
self::$accounttype = User::ACCOUNT_TYPE_PERSON;
break;
case 'organisation':
self::$accounttype = User::ACCOUNT_TYPE_ORGANISATION;
break;
case 'news':
self::$accounttype = User::ACCOUNT_TYPE_NEWS;
break;
case 'community':
self::$accounttype = User::ACCOUNT_TYPE_COMMUNITY;
break;
default:
self::$accounttype = null;
break;
}
self::$content = $parameters['content'] ?? ''; self::$content = $parameters['content'] ?? '';
if (!self::$content) { if (!self::$content) {

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 2020.12-dev\n" "Project-Id-Version: 2020.12-dev\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-10-07 04:10+0000\n" "POT-Creation-Date: 2020-10-10 07:11+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -55,7 +55,7 @@ msgstr ""
#: src/Module/Profile/Profile.php:241 src/Module/FriendSuggest.php:129 #: src/Module/Profile/Profile.php:241 src/Module/FriendSuggest.php:129
#: src/Module/Install.php:230 src/Module/Install.php:270 #: src/Module/Install.php:230 src/Module/Install.php:270
#: src/Module/Install.php:306 src/Module/Delegation.php:151 #: src/Module/Install.php:306 src/Module/Delegation.php:151
#: src/Module/Contact.php:572 src/Module/Invite.php:175 #: src/Module/Contact.php:578 src/Module/Invite.php:175
#: src/Module/Item/Compose.php:144 src/Module/Contact/Poke.php:156 #: src/Module/Item/Compose.php:144 src/Module/Contact/Poke.php:156
#: src/Module/Contact/Advanced.php:140 #: src/Module/Contact/Advanced.php:140
#: src/Module/Settings/Profile/Index.php:237 #: src/Module/Settings/Profile/Index.php:237
@ -136,57 +136,57 @@ msgstr ""
msgid "Last users" msgid "Last users"
msgstr "" msgstr ""
#: view/theme/vier/theme.php:169 src/Content/Widget.php:77 #: view/theme/vier/theme.php:169 src/Content/Widget.php:73
msgid "Find People" msgid "Find People"
msgstr "" msgstr ""
#: view/theme/vier/theme.php:170 src/Content/Widget.php:78 #: view/theme/vier/theme.php:170 src/Content/Widget.php:74
msgid "Enter name or interest" msgid "Enter name or interest"
msgstr "" msgstr ""
#: view/theme/vier/theme.php:171 include/conversation.php:930 #: view/theme/vier/theme.php:171 include/conversation.php:930
#: mod/follow.php:163 src/Model/Contact.php:964 src/Model/Contact.php:977 #: mod/follow.php:163 src/Model/Contact.php:964 src/Model/Contact.php:977
#: src/Content/Widget.php:79 #: src/Content/Widget.php:75
msgid "Connect/Follow" msgid "Connect/Follow"
msgstr "" msgstr ""
#: view/theme/vier/theme.php:172 src/Content/Widget.php:80 #: view/theme/vier/theme.php:172 src/Content/Widget.php:76
msgid "Examples: Robert Morgenstein, Fishing" msgid "Examples: Robert Morgenstein, Fishing"
msgstr "" msgstr ""
#: view/theme/vier/theme.php:173 src/Module/Contact.php:832 #: view/theme/vier/theme.php:173 src/Module/Contact.php:843
#: src/Module/Directory.php:105 src/Content/Widget.php:81 #: src/Module/Directory.php:105 src/Content/Widget.php:77
msgid "Find" msgid "Find"
msgstr "" msgstr ""
#: view/theme/vier/theme.php:174 mod/suggest.php:55 src/Content/Widget.php:82 #: view/theme/vier/theme.php:174 mod/suggest.php:55 src/Content/Widget.php:78
msgid "Friend Suggestions" msgid "Friend Suggestions"
msgstr "" msgstr ""
#: view/theme/vier/theme.php:175 src/Content/Widget.php:83 #: view/theme/vier/theme.php:175 src/Content/Widget.php:79
msgid "Similar Interests" msgid "Similar Interests"
msgstr "" msgstr ""
#: view/theme/vier/theme.php:176 src/Content/Widget.php:84 #: view/theme/vier/theme.php:176 src/Content/Widget.php:80
msgid "Random Profile" msgid "Random Profile"
msgstr "" msgstr ""
#: view/theme/vier/theme.php:177 src/Content/Widget.php:85 #: view/theme/vier/theme.php:177 src/Content/Widget.php:81
msgid "Invite Friends" msgid "Invite Friends"
msgstr "" msgstr ""
#: view/theme/vier/theme.php:178 src/Module/Directory.php:97 #: view/theme/vier/theme.php:178 src/Module/Directory.php:97
#: src/Content/Widget.php:86 #: src/Content/Widget.php:82
msgid "Global Directory" msgid "Global Directory"
msgstr "" msgstr ""
#: view/theme/vier/theme.php:180 src/Content/Widget.php:88 #: view/theme/vier/theme.php:180 src/Content/Widget.php:84
msgid "Local Directory" msgid "Local Directory"
msgstr "" msgstr ""
#: view/theme/vier/theme.php:220 src/Content/Widget.php:546 #: view/theme/vier/theme.php:220 src/Content/Widget.php:539
#: src/Content/Nav.php:229 src/Content/ForumManager.php:144 #: src/Content/Widget.php:564 src/Content/Nav.php:229
#: src/Content/Text/HTML.php:917 #: src/Content/ForumManager.php:144 src/Content/Text/HTML.php:917
msgid "Forums" msgid "Forums"
msgstr "" msgstr ""
@ -194,8 +194,8 @@ msgstr ""
msgid "External link to forum" msgid "External link to forum"
msgstr "" msgstr ""
#: view/theme/vier/theme.php:225 src/Content/Widget.php:428 #: view/theme/vier/theme.php:225 src/Content/Widget.php:424
#: src/Content/Widget.php:523 src/Content/ForumManager.php:149 #: src/Content/Widget.php:519 src/Content/ForumManager.php:149
msgid "show more" msgid "show more"
msgstr "" msgstr ""
@ -329,8 +329,8 @@ msgstr ""
msgid "Visitor" msgid "Visitor"
msgstr "" msgstr ""
#: view/theme/frio/theme.php:225 src/Module/Contact.php:623 #: view/theme/frio/theme.php:225 src/Module/Contact.php:629
#: src/Module/Contact.php:876 src/Module/BaseProfile.php:60 #: src/Module/Contact.php:887 src/Module/BaseProfile.php:60
#: src/Module/Settings/TwoFactor/Index.php:107 src/Content/Nav.php:177 #: src/Module/Settings/TwoFactor/Index.php:107 src/Content/Nav.php:177
msgid "Status" msgid "Status"
msgstr "" msgstr ""
@ -341,8 +341,8 @@ msgid "Your posts and conversations"
msgstr "" msgstr ""
#: view/theme/frio/theme.php:226 src/Module/Profile/Profile.php:236 #: view/theme/frio/theme.php:226 src/Module/Profile/Profile.php:236
#: src/Module/Welcome.php:57 src/Module/Contact.php:625 #: src/Module/Welcome.php:57 src/Module/Contact.php:631
#: src/Module/Contact.php:892 src/Module/BaseProfile.php:52 #: src/Module/Contact.php:903 src/Module/BaseProfile.php:52
#: src/Module/BaseSettings.php:57 src/Content/Nav.php:178 #: src/Module/BaseSettings.php:57 src/Content/Nav.php:178
msgid "Profile" msgid "Profile"
msgstr "" msgstr ""
@ -412,8 +412,8 @@ msgstr ""
msgid "Account settings" msgid "Account settings"
msgstr "" msgstr ""
#: view/theme/frio/theme.php:236 src/Module/Contact.php:811 #: view/theme/frio/theme.php:236 src/Module/Contact.php:822
#: src/Module/Contact.php:899 src/Module/BaseProfile.php:121 #: src/Module/Contact.php:910 src/Module/BaseProfile.php:121
#: src/Module/BaseProfile.php:124 src/Content/Nav.php:225 #: src/Module/BaseProfile.php:124 src/Content/Nav.php:225
#: src/Content/Nav.php:284 src/Content/Text/HTML.php:913 #: src/Content/Nav.php:284 src/Content/Text/HTML.php:913
msgid "Contacts" msgid "Contacts"
@ -504,7 +504,7 @@ msgid "Select"
msgstr "" msgstr ""
#: include/conversation.php:561 mod/settings.php:560 mod/settings.php:702 #: include/conversation.php:561 mod/settings.php:560 mod/settings.php:702
#: mod/photos.php:1489 src/Module/Contact.php:842 src/Module/Contact.php:1146 #: mod/photos.php:1489 src/Module/Contact.php:853 src/Module/Contact.php:1157
#: src/Module/Admin/Users.php:248 #: src/Module/Admin/Users.php:248
msgid "Delete" msgid "Delete"
msgstr "" msgstr ""
@ -636,16 +636,16 @@ msgstr ""
msgid "Send PM" msgid "Send PM"
msgstr "" msgstr ""
#: include/conversation.php:916 src/Module/Contact.php:593 #: include/conversation.php:916 src/Module/Contact.php:599
#: src/Module/Contact.php:839 src/Module/Contact.php:1121 #: src/Module/Contact.php:850 src/Module/Contact.php:1132
#: src/Module/Admin/Users.php:249 src/Module/Admin/Blocklist/Contact.php:84 #: src/Module/Admin/Users.php:249 src/Module/Admin/Blocklist/Contact.php:84
msgid "Block" msgid "Block"
msgstr "" msgstr ""
#: include/conversation.php:917 src/Module/Notifications/Notification.php:59 #: include/conversation.php:917 src/Module/Notifications/Notification.php:59
#: src/Module/Notifications/Introductions.php:112 #: src/Module/Notifications/Introductions.php:112
#: src/Module/Notifications/Introductions.php:187 src/Module/Contact.php:594 #: src/Module/Notifications/Introductions.php:187 src/Module/Contact.php:600
#: src/Module/Contact.php:840 src/Module/Contact.php:1129 #: src/Module/Contact.php:851 src/Module/Contact.php:1140
msgid "Ignore" msgid "Ignore"
msgstr "" msgstr ""
@ -891,13 +891,13 @@ msgstr ""
#: mod/unfollow.php:137 mod/tagrm.php:36 mod/tagrm.php:126 #: mod/unfollow.php:137 mod/tagrm.php:36 mod/tagrm.php:126
#: mod/dfrn_request.php:648 mod/editpost.php:128 mod/follow.php:169 #: mod/dfrn_request.php:648 mod/editpost.php:128 mod/follow.php:169
#: mod/fbrowser.php:105 mod/fbrowser.php:134 mod/photos.php:1045 #: mod/fbrowser.php:105 mod/fbrowser.php:134 mod/photos.php:1045
#: mod/photos.php:1151 src/Module/Contact.php:449 #: mod/photos.php:1151 src/Module/Contact.php:455
#: src/Module/RemoteFollow.php:110 #: src/Module/RemoteFollow.php:110
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
#: include/conversation.php:1215 mod/editpost.php:132 #: include/conversation.php:1215 mod/editpost.php:132
#: src/Module/Contact.php:336 src/Model/Profile.php:444 #: src/Module/Contact.php:340 src/Model/Profile.php:445
msgid "Message" msgid "Message"
msgstr "" msgstr ""
@ -1260,8 +1260,8 @@ msgstr ""
#: src/Module/Settings/Profile/Photo/Crop.php:129 #: src/Module/Settings/Profile/Photo/Crop.php:129
#: src/Module/Settings/Profile/Photo/Crop.php:178 #: src/Module/Settings/Profile/Photo/Crop.php:178
#: src/Module/Settings/Profile/Photo/Index.php:96 #: src/Module/Settings/Profile/Photo/Index.php:96
#: src/Module/Settings/Profile/Photo/Index.php:102 src/Model/User.php:999 #: src/Module/Settings/Profile/Photo/Index.php:102 src/Model/User.php:1022
#: src/Model/User.php:1007 src/Model/User.php:1015 #: src/Model/User.php:1030 src/Model/User.php:1038
msgid "Profile Photos" msgid "Profile Photos"
msgstr "" msgstr ""
@ -1279,7 +1279,7 @@ msgstr ""
#: mod/redir.php:56 mod/redir.php:157 mod/dfrn_confirm.php:139 #: mod/redir.php:56 mod/redir.php:157 mod/dfrn_confirm.php:139
#: src/Module/FriendSuggest.php:54 src/Module/FriendSuggest.php:93 #: src/Module/FriendSuggest.php:54 src/Module/FriendSuggest.php:93
#: src/Module/Group.php:105 src/Module/Contact/Advanced.php:53 #: src/Module/Group.php:105 src/Module/Contact/Advanced.php:53
#: src/Module/Contact/Advanced.php:106 src/Module/Contact/Contacts.php:33 #: src/Module/Contact/Advanced.php:106 src/Module/Contact/Contacts.php:36
msgid "Contact not found." msgid "Contact not found."
msgstr "" msgstr ""
@ -1300,7 +1300,7 @@ msgstr ""
#: src/Module/Register.php:75 src/Module/Register.php:195 #: src/Module/Register.php:75 src/Module/Register.php:195
#: src/Module/Register.php:234 src/Module/FriendSuggest.php:44 #: src/Module/Register.php:234 src/Module/FriendSuggest.php:44
#: src/Module/BaseApi.php:59 src/Module/BaseApi.php:65 #: src/Module/BaseApi.php:59 src/Module/BaseApi.php:65
#: src/Module/Delegation.php:118 src/Module/Contact.php:375 #: src/Module/Delegation.php:118 src/Module/Contact.php:381
#: src/Module/FollowConfirm.php:16 src/Module/Invite.php:40 #: src/Module/FollowConfirm.php:16 src/Module/Invite.php:40
#: src/Module/Invite.php:128 src/Module/Attach.php:56 src/Module/Group.php:45 #: src/Module/Invite.php:128 src/Module/Attach.php:56 src/Module/Group.php:45
#: src/Module/Group.php:90 src/Module/Search/Directory.php:38 #: src/Module/Group.php:90 src/Module/Search/Directory.php:38
@ -1500,7 +1500,7 @@ msgstr ""
msgid "Missing some important data!" msgid "Missing some important data!"
msgstr "" msgstr ""
#: mod/settings.php:92 mod/settings.php:525 src/Module/Contact.php:838 #: mod/settings.php:92 mod/settings.php:525 src/Module/Contact.php:849
msgid "Update" msgid "Update"
msgstr "" msgstr ""
@ -1816,7 +1816,7 @@ msgstr ""
msgid "Unable to find your profile. Please contact your admin." msgid "Unable to find your profile. Please contact your admin."
msgstr "" msgstr ""
#: mod/settings.php:753 #: mod/settings.php:753 src/Content/Widget.php:542 src/Content/Widget.php:557
msgid "Account Types" msgid "Account Types"
msgstr "" msgstr ""
@ -2293,52 +2293,52 @@ msgstr ""
msgid "{0} requested registration" msgid "{0} requested registration"
msgstr "" msgstr ""
#: mod/network.php:328 #: mod/network.php:312
msgid "No items found" msgid "No items found"
msgstr "" msgstr ""
#: mod/network.php:567 #: mod/network.php:551
msgid "No such group" msgid "No such group"
msgstr "" msgstr ""
#: mod/network.php:575 #: mod/network.php:559
#, php-format #, php-format
msgid "Group: %s" msgid "Group: %s"
msgstr "" msgstr ""
#: mod/network.php:587 src/Module/Contact/Contacts.php:28 #: mod/network.php:571 src/Module/Contact/Contacts.php:31
msgid "Invalid contact." msgid "Invalid contact."
msgstr "" msgstr ""
#: mod/network.php:723 #: mod/network.php:707
msgid "Latest Activity" msgid "Latest Activity"
msgstr "" msgstr ""
#: mod/network.php:726 #: mod/network.php:710
msgid "Sort by latest activity" msgid "Sort by latest activity"
msgstr "" msgstr ""
#: mod/network.php:731 #: mod/network.php:715
msgid "Latest Posts" msgid "Latest Posts"
msgstr "" msgstr ""
#: mod/network.php:734 #: mod/network.php:718
msgid "Sort by post received date" msgid "Sort by post received date"
msgstr "" msgstr ""
#: mod/network.php:741 src/Module/Settings/Profile/Index.php:242 #: mod/network.php:725 src/Module/Settings/Profile/Index.php:242
msgid "Personal" msgid "Personal"
msgstr "" msgstr ""
#: mod/network.php:744 #: mod/network.php:728
msgid "Posts that mention or involve you" msgid "Posts that mention or involve you"
msgstr "" msgstr ""
#: mod/network.php:750 #: mod/network.php:734
msgid "Starred" msgid "Starred"
msgstr "" msgstr ""
#: mod/network.php:753 #: mod/network.php:737
msgid "Favourite Posts" msgid "Favourite Posts"
msgstr "" msgstr ""
@ -2385,12 +2385,12 @@ msgstr ""
#: mod/unfollow.php:140 mod/follow.php:166 #: mod/unfollow.php:140 mod/follow.php:166
#: src/Module/Notifications/Introductions.php:107 #: src/Module/Notifications/Introductions.php:107
#: src/Module/Notifications/Introductions.php:179 src/Module/Contact.php:610 #: src/Module/Notifications/Introductions.php:179 src/Module/Contact.php:616
#: src/Module/Admin/Blocklist/Contact.php:100 #: src/Module/Admin/Blocklist/Contact.php:100
msgid "Profile URL" msgid "Profile URL"
msgstr "" msgstr ""
#: mod/unfollow.php:150 mod/follow.php:188 src/Module/Contact.php:887 #: mod/unfollow.php:150 mod/follow.php:188 src/Module/Contact.php:898
#: src/Module/BaseProfile.php:63 #: src/Module/BaseProfile.php:63
msgid "Status Messages and Posts" msgid "Status Messages and Posts"
msgstr "" msgstr ""
@ -2805,7 +2805,7 @@ msgstr ""
msgid "Blocked domain" msgid "Blocked domain"
msgstr "" msgstr ""
#: mod/dfrn_request.php:428 src/Module/Contact.php:154 #: mod/dfrn_request.php:428 src/Module/Contact.php:155
msgid "Failed to update contact record." msgid "Failed to update contact record."
msgstr "" msgstr ""
@ -2902,7 +2902,7 @@ msgid ""
msgstr "" msgstr ""
#: mod/api.php:127 src/Module/Notifications/Introductions.php:121 #: mod/api.php:127 src/Module/Notifications/Introductions.php:121
#: src/Module/Register.php:115 src/Module/Contact.php:446 #: src/Module/Register.php:115 src/Module/Contact.php:452
msgid "Yes" msgid "Yes"
msgstr "" msgstr ""
@ -3044,7 +3044,7 @@ msgstr ""
#: mod/cal.php:296 src/Console/User.php:152 src/Console/User.php:250 #: mod/cal.php:296 src/Console/User.php:152 src/Console/User.php:250
#: src/Console/User.php:283 src/Console/User.php:309 #: src/Console/User.php:283 src/Console/User.php:309
#: src/Module/Api/Twitter/ContactEndpoint.php:73 src/Module/Admin/Users.php:110 #: src/Module/Api/Twitter/ContactEndpoint.php:73 src/Module/Admin/Users.php:110
#: src/Model/User.php:561 #: src/Model/User.php:584
msgid "User not found" msgid "User not found"
msgstr "" msgstr ""
@ -3147,7 +3147,7 @@ msgid "Description:"
msgstr "" msgstr ""
#: mod/events.php:560 src/Module/Notifications/Introductions.php:168 #: mod/events.php:560 src/Module/Notifications/Introductions.php:168
#: src/Module/Profile/Profile.php:190 src/Module/Contact.php:614 #: src/Module/Profile/Profile.php:190 src/Module/Contact.php:620
#: src/Module/Directory.php:156 src/Model/Event.php:84 src/Model/Event.php:111 #: src/Module/Directory.php:156 src/Model/Event.php:84 src/Model/Event.php:111
#: src/Model/Event.php:454 src/Model/Event.php:948 src/Model/Profile.php:358 #: src/Model/Event.php:454 src/Model/Event.php:948 src/Model/Profile.php:358
msgid "Location:" msgid "Location:"
@ -3166,7 +3166,7 @@ msgid "Basic"
msgstr "" msgstr ""
#: mod/events.php:574 src/Module/Profile/Profile.php:243 #: mod/events.php:574 src/Module/Profile/Profile.php:243
#: src/Module/Contact.php:909 src/Module/Admin/Site.php:590 #: src/Module/Contact.php:920 src/Module/Admin/Site.php:590
msgid "Advanced" msgid "Advanced"
msgstr "" msgstr ""
@ -3195,7 +3195,7 @@ msgid "OStatus support is disabled. Contact can't be added."
msgstr "" msgstr ""
#: mod/follow.php:167 src/Module/Notifications/Introductions.php:172 #: mod/follow.php:167 src/Module/Notifications/Introductions.php:172
#: src/Module/Profile/Profile.php:202 src/Module/Contact.php:620 #: src/Module/Profile/Profile.php:202 src/Module/Contact.php:626
msgid "Tags:" msgid "Tags:"
msgstr "" msgstr ""
@ -3412,7 +3412,7 @@ msgid "I don't like this (toggle)"
msgstr "" msgstr ""
#: mod/photos.php:1397 mod/photos.php:1454 mod/photos.php:1527 #: mod/photos.php:1397 mod/photos.php:1454 mod/photos.php:1527
#: src/Object/Post.php:940 src/Module/Contact.php:1052 #: src/Object/Post.php:940 src/Module/Contact.php:1063
#: src/Module/Item/Compose.php:142 #: src/Module/Item/Compose.php:142
msgid "This is you" msgid "This is you"
msgstr "" msgstr ""
@ -3451,13 +3451,13 @@ msgstr ""
msgid "Login failed." msgid "Login failed."
msgstr "" msgstr ""
#: src/Security/Authentication.php:224 src/Model/User.php:797 #: src/Security/Authentication.php:224 src/Model/User.php:820
msgid "" msgid ""
"We encountered a problem while logging in with the OpenID you provided. " "We encountered a problem while logging in with the OpenID you provided. "
"Please check the correct spelling of the ID." "Please check the correct spelling of the ID."
msgstr "" msgstr ""
#: src/Security/Authentication.php:224 src/Model/User.php:797 #: src/Security/Authentication.php:224 src/Model/User.php:820
msgid "The error message was:" msgid "The error message was:"
msgstr "" msgstr ""
@ -3509,11 +3509,6 @@ msgstr ""
msgid "%s: updating %s table." msgid "%s: updating %s table."
msgstr "" msgstr ""
#: src/Database/Database.php:661 src/Database/Database.php:764
#, php-format
msgid "Database error %d \"%s\" at \"%s\""
msgstr ""
#: src/Core/Renderer.php:91 src/Core/Renderer.php:120 src/Core/Renderer.php:147 #: src/Core/Renderer.php:91 src/Core/Renderer.php:120 src/Core/Renderer.php:147
#: src/Core/Renderer.php:181 src/Render/FriendicaSmartyEngine.php:56 #: src/Core/Renderer.php:181 src/Render/FriendicaSmartyEngine.php:56
msgid "" msgid ""
@ -3569,8 +3564,8 @@ msgid "Yourself"
msgstr "" msgstr ""
#: src/Core/ACL.php:182 src/Module/PermissionTooltip.php:76 #: src/Core/ACL.php:182 src/Module/PermissionTooltip.php:76
#: src/Module/PermissionTooltip.php:98 src/Module/Contact.php:808 #: src/Module/PermissionTooltip.php:98 src/Module/Contact.php:819
#: src/Content/Widget.php:241 src/BaseModule.php:184 #: src/Content/Widget.php:237 src/BaseModule.php:184
msgid "Followers" msgid "Followers"
msgstr "" msgstr ""
@ -4650,17 +4645,17 @@ msgstr ""
msgid "Subscriber" msgid "Subscriber"
msgstr "" msgstr ""
#: src/Module/Notifications/Introductions.php:170 src/Module/Contact.php:618 #: src/Module/Notifications/Introductions.php:170 src/Module/Contact.php:624
#: src/Model/Profile.php:362 #: src/Model/Profile.php:362
msgid "About:" msgid "About:"
msgstr "" msgstr ""
#: src/Module/Notifications/Introductions.php:173 src/Module/Contact.php:602 #: src/Module/Notifications/Introductions.php:173 src/Module/Contact.php:608
msgid "Hide this contact from others" msgid "Hide this contact from others"
msgstr "" msgstr ""
#: src/Module/Notifications/Introductions.php:182 src/Module/Contact.php:330 #: src/Module/Notifications/Introductions.php:182 src/Module/Contact.php:334
#: src/Model/Profile.php:450 #: src/Model/Profile.php:451
msgid "Network:" msgid "Network:"
msgstr "" msgstr ""
@ -5043,21 +5038,21 @@ msgstr ""
msgid "Lookup address" msgid "Lookup address"
msgstr "" msgstr ""
#: src/Module/Profile/Common.php:87 src/Module/Contact/Contacts.php:92 #: src/Module/Profile/Common.php:87 src/Module/Contact/Contacts.php:96
#, php-format #, php-format
msgid "Common contact (%s)" msgid "Common contact (%s)"
msgid_plural "Common contacts (%s)" msgid_plural "Common contacts (%s)"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: src/Module/Profile/Common.php:89 src/Module/Contact/Contacts.php:94 #: src/Module/Profile/Common.php:89 src/Module/Contact/Contacts.php:98
#, php-format #, php-format
msgid "" msgid ""
"Both <strong>%s</strong> and yourself have publicly interacted with these " "Both <strong>%s</strong> and yourself have publicly interacted with these "
"contacts (follow, comment or likes on public posts)." "contacts (follow, comment or likes on public posts)."
msgstr "" msgstr ""
#: src/Module/Profile/Common.php:99 src/Module/Contact/Contacts.php:64 #: src/Module/Profile/Common.php:99 src/Module/Contact/Contacts.php:68
msgid "No common contacts." msgid "No common contacts."
msgstr "" msgstr ""
@ -5080,40 +5075,40 @@ msgstr ""
msgid "%s's comments" msgid "%s's comments"
msgstr "" msgstr ""
#: src/Module/Profile/Contacts.php:96 src/Module/Contact/Contacts.php:76 #: src/Module/Profile/Contacts.php:97 src/Module/Contact/Contacts.php:80
#, php-format #, php-format
msgid "Follower (%s)" msgid "Follower (%s)"
msgid_plural "Followers (%s)" msgid_plural "Followers (%s)"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: src/Module/Profile/Contacts.php:99 src/Module/Contact/Contacts.php:80 #: src/Module/Profile/Contacts.php:100 src/Module/Contact/Contacts.php:84
#, php-format #, php-format
msgid "Following (%s)" msgid "Following (%s)"
msgid_plural "Following (%s)" msgid_plural "Following (%s)"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: src/Module/Profile/Contacts.php:102 src/Module/Contact/Contacts.php:84 #: src/Module/Profile/Contacts.php:103 src/Module/Contact/Contacts.php:88
#, php-format #, php-format
msgid "Mutual friend (%s)" msgid "Mutual friend (%s)"
msgid_plural "Mutual friends (%s)" msgid_plural "Mutual friends (%s)"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: src/Module/Profile/Contacts.php:104 src/Module/Contact/Contacts.php:86 #: src/Module/Profile/Contacts.php:105 src/Module/Contact/Contacts.php:90
#, php-format #, php-format
msgid "These contacts both follow and are followed by <strong>%s</strong>." msgid "These contacts both follow and are followed by <strong>%s</strong>."
msgstr "" msgstr ""
#: src/Module/Profile/Contacts.php:110 src/Module/Contact/Contacts.php:100 #: src/Module/Profile/Contacts.php:111 src/Module/Contact/Contacts.php:104
#, php-format #, php-format
msgid "Contact (%s)" msgid "Contact (%s)"
msgid_plural "Contacts (%s)" msgid_plural "Contacts (%s)"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: src/Module/Profile/Contacts.php:120 #: src/Module/Profile/Contacts.php:121
msgid "No contacts." msgid "No contacts."
msgstr "" msgstr ""
@ -5153,7 +5148,7 @@ msgid_plural "%d years old"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: src/Module/Profile/Profile.php:176 src/Module/Contact.php:616 #: src/Module/Profile/Profile.php:176 src/Module/Contact.php:622
#: src/Model/Profile.php:363 #: src/Model/Profile.php:363
msgid "XMPP:" msgid "XMPP:"
msgstr "" msgstr ""
@ -5666,11 +5661,11 @@ msgid ""
"not reflect the opinions of this nodes users." "not reflect the opinions of this nodes users."
msgstr "" msgstr ""
#: src/Module/Conversation/Community.php:225 #: src/Module/Conversation/Community.php:209
msgid "Community option not available." msgid "Community option not available."
msgstr "" msgstr ""
#: src/Module/Conversation/Community.php:241 #: src/Module/Conversation/Community.php:225
msgid "Not available." msgid "Not available."
msgstr "" msgstr ""
@ -5807,8 +5802,8 @@ msgid ""
"hours." "hours."
msgstr "" msgstr ""
#: src/Module/Welcome.php:76 src/Module/Contact.php:795 src/Model/Group.php:528 #: src/Module/Welcome.php:76 src/Module/Contact.php:806 src/Model/Group.php:535
#: src/Content/Widget.php:217 #: src/Content/Widget.php:213
msgid "Groups" msgid "Groups"
msgstr "" msgstr ""
@ -5986,380 +5981,380 @@ msgstr ""
msgid "User registrations waiting for confirmation" msgid "User registrations waiting for confirmation"
msgstr "" msgstr ""
#: src/Module/Contact.php:94 #: src/Module/Contact.php:95
#, php-format #, php-format
msgid "%d contact edited." msgid "%d contact edited."
msgid_plural "%d contacts edited." msgid_plural "%d contacts edited."
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: src/Module/Contact.php:121 #: src/Module/Contact.php:122
msgid "Could not access contact record." msgid "Could not access contact record."
msgstr "" msgstr ""
#: src/Module/Contact.php:332 src/Model/Profile.php:438 #: src/Module/Contact.php:336 src/Model/Profile.php:439
#: src/Content/Text/HTML.php:896 #: src/Content/Text/HTML.php:896
msgid "Follow" msgid "Follow"
msgstr "" msgstr ""
#: src/Module/Contact.php:334 src/Model/Profile.php:440 #: src/Module/Contact.php:338 src/Model/Profile.php:441
msgid "Unfollow" msgid "Unfollow"
msgstr "" msgstr ""
#: src/Module/Contact.php:390 src/Module/Api/Twitter/ContactEndpoint.php:65 #: src/Module/Contact.php:396 src/Module/Api/Twitter/ContactEndpoint.php:65
msgid "Contact not found" msgid "Contact not found"
msgstr "" msgstr ""
#: src/Module/Contact.php:409 #: src/Module/Contact.php:415
msgid "Contact has been blocked" msgid "Contact has been blocked"
msgstr "" msgstr ""
#: src/Module/Contact.php:409 #: src/Module/Contact.php:415
msgid "Contact has been unblocked" msgid "Contact has been unblocked"
msgstr "" msgstr ""
#: src/Module/Contact.php:419 #: src/Module/Contact.php:425
msgid "Contact has been ignored" msgid "Contact has been ignored"
msgstr "" msgstr ""
#: src/Module/Contact.php:419 #: src/Module/Contact.php:425
msgid "Contact has been unignored" msgid "Contact has been unignored"
msgstr "" msgstr ""
#: src/Module/Contact.php:429 #: src/Module/Contact.php:435
msgid "Contact has been archived" msgid "Contact has been archived"
msgstr "" msgstr ""
#: src/Module/Contact.php:429 #: src/Module/Contact.php:435
msgid "Contact has been unarchived" msgid "Contact has been unarchived"
msgstr "" msgstr ""
#: src/Module/Contact.php:442 #: src/Module/Contact.php:448
msgid "Drop contact" msgid "Drop contact"
msgstr "" msgstr ""
#: src/Module/Contact.php:445 src/Module/Contact.php:835 #: src/Module/Contact.php:451 src/Module/Contact.php:846
msgid "Do you really want to delete this contact?" msgid "Do you really want to delete this contact?"
msgstr "" msgstr ""
#: src/Module/Contact.php:458 #: src/Module/Contact.php:464
msgid "Contact has been removed." msgid "Contact has been removed."
msgstr "" msgstr ""
#: src/Module/Contact.php:486 #: src/Module/Contact.php:492
#, php-format #, php-format
msgid "You are mutual friends with %s" msgid "You are mutual friends with %s"
msgstr "" msgstr ""
#: src/Module/Contact.php:490 #: src/Module/Contact.php:496
#, php-format #, php-format
msgid "You are sharing with %s" msgid "You are sharing with %s"
msgstr "" msgstr ""
#: src/Module/Contact.php:494 #: src/Module/Contact.php:500
#, php-format #, php-format
msgid "%s is sharing with you" msgid "%s is sharing with you"
msgstr "" msgstr ""
#: src/Module/Contact.php:518 #: src/Module/Contact.php:524
msgid "Private communications are not available for this contact." msgid "Private communications are not available for this contact."
msgstr "" msgstr ""
#: src/Module/Contact.php:520 #: src/Module/Contact.php:526
msgid "Never" msgid "Never"
msgstr "" msgstr ""
#: src/Module/Contact.php:523 #: src/Module/Contact.php:529
msgid "(Update was successful)" msgid "(Update was successful)"
msgstr "" msgstr ""
#: src/Module/Contact.php:523 #: src/Module/Contact.php:529
msgid "(Update was not successful)" msgid "(Update was not successful)"
msgstr "" msgstr ""
#: src/Module/Contact.php:525 src/Module/Contact.php:1092 #: src/Module/Contact.php:531 src/Module/Contact.php:1103
msgid "Suggest friends" msgid "Suggest friends"
msgstr "" msgstr ""
#: src/Module/Contact.php:529 #: src/Module/Contact.php:535
#, php-format #, php-format
msgid "Network type: %s" msgid "Network type: %s"
msgstr "" msgstr ""
#: src/Module/Contact.php:534 #: src/Module/Contact.php:540
msgid "Communications lost with this contact!" msgid "Communications lost with this contact!"
msgstr "" msgstr ""
#: src/Module/Contact.php:540 #: src/Module/Contact.php:546
msgid "Fetch further information for feeds" msgid "Fetch further information for feeds"
msgstr "" msgstr ""
#: src/Module/Contact.php:542 #: src/Module/Contact.php:548
msgid "" msgid ""
"Fetch information like preview pictures, title and teaser from the feed " "Fetch information like preview pictures, title and teaser from the feed "
"item. You can activate this if the feed doesn't contain much text. Keywords " "item. You can activate this if the feed doesn't contain much text. Keywords "
"are taken from the meta header in the feed item and are posted as hash tags." "are taken from the meta header in the feed item and are posted as hash tags."
msgstr "" msgstr ""
#: src/Module/Contact.php:544 src/Module/Admin/Site.php:689 #: src/Module/Contact.php:550 src/Module/Admin/Site.php:689
#: src/Module/Admin/Site.php:699 src/Module/Settings/TwoFactor/Index.php:113 #: src/Module/Admin/Site.php:699 src/Module/Settings/TwoFactor/Index.php:113
msgid "Disabled" msgid "Disabled"
msgstr "" msgstr ""
#: src/Module/Contact.php:545 #: src/Module/Contact.php:551
msgid "Fetch information" msgid "Fetch information"
msgstr "" msgstr ""
#: src/Module/Contact.php:546 #: src/Module/Contact.php:552
msgid "Fetch keywords" msgid "Fetch keywords"
msgstr "" msgstr ""
#: src/Module/Contact.php:547 #: src/Module/Contact.php:553
msgid "Fetch information and keywords" msgid "Fetch information and keywords"
msgstr "" msgstr ""
#: src/Module/Contact.php:561 #: src/Module/Contact.php:567
msgid "Contact Information / Notes" msgid "Contact Information / Notes"
msgstr "" msgstr ""
#: src/Module/Contact.php:562 #: src/Module/Contact.php:568
msgid "Contact Settings" msgid "Contact Settings"
msgstr "" msgstr ""
#: src/Module/Contact.php:570 #: src/Module/Contact.php:576
msgid "Contact" msgid "Contact"
msgstr "" msgstr ""
#: src/Module/Contact.php:574 #: src/Module/Contact.php:580
msgid "Their personal note" msgid "Their personal note"
msgstr "" msgstr ""
#: src/Module/Contact.php:576 #: src/Module/Contact.php:582
msgid "Edit contact notes" msgid "Edit contact notes"
msgstr "" msgstr ""
#: src/Module/Contact.php:579 src/Module/Contact.php:1060 #: src/Module/Contact.php:585 src/Module/Contact.php:1071
#, php-format #, php-format
msgid "Visit %s's profile [%s]" msgid "Visit %s's profile [%s]"
msgstr "" msgstr ""
#: src/Module/Contact.php:580 #: src/Module/Contact.php:586
msgid "Block/Unblock contact" msgid "Block/Unblock contact"
msgstr "" msgstr ""
#: src/Module/Contact.php:581 #: src/Module/Contact.php:587
msgid "Ignore contact" msgid "Ignore contact"
msgstr "" msgstr ""
#: src/Module/Contact.php:582 #: src/Module/Contact.php:588
msgid "View conversations" msgid "View conversations"
msgstr "" msgstr ""
#: src/Module/Contact.php:587 #: src/Module/Contact.php:593
msgid "Last update:" msgid "Last update:"
msgstr "" msgstr ""
#: src/Module/Contact.php:589 #: src/Module/Contact.php:595
msgid "Update public posts" msgid "Update public posts"
msgstr "" msgstr ""
#: src/Module/Contact.php:591 src/Module/Contact.php:1102 #: src/Module/Contact.php:597 src/Module/Contact.php:1113
msgid "Update now" msgid "Update now"
msgstr "" msgstr ""
#: src/Module/Contact.php:593 src/Module/Contact.php:839 #: src/Module/Contact.php:599 src/Module/Contact.php:850
#: src/Module/Contact.php:1121 src/Module/Admin/Users.php:251 #: src/Module/Contact.php:1132 src/Module/Admin/Users.php:251
#: src/Module/Admin/Blocklist/Contact.php:85 #: src/Module/Admin/Blocklist/Contact.php:85
msgid "Unblock" msgid "Unblock"
msgstr "" msgstr ""
#: src/Module/Contact.php:594 src/Module/Contact.php:840 #: src/Module/Contact.php:600 src/Module/Contact.php:851
#: src/Module/Contact.php:1129 #: src/Module/Contact.php:1140
msgid "Unignore" msgid "Unignore"
msgstr "" msgstr ""
#: src/Module/Contact.php:598 #: src/Module/Contact.php:604
msgid "Currently blocked" msgid "Currently blocked"
msgstr "" msgstr ""
#: src/Module/Contact.php:599 #: src/Module/Contact.php:605
msgid "Currently ignored" msgid "Currently ignored"
msgstr "" msgstr ""
#: src/Module/Contact.php:600 #: src/Module/Contact.php:606
msgid "Currently archived" msgid "Currently archived"
msgstr "" msgstr ""
#: src/Module/Contact.php:601 #: src/Module/Contact.php:607
msgid "Awaiting connection acknowledge" msgid "Awaiting connection acknowledge"
msgstr "" msgstr ""
#: src/Module/Contact.php:602 #: src/Module/Contact.php:608
msgid "" msgid ""
"Replies/likes to your public posts <strong>may</strong> still be visible" "Replies/likes to your public posts <strong>may</strong> still be visible"
msgstr "" msgstr ""
#: src/Module/Contact.php:603 #: src/Module/Contact.php:609
msgid "Notification for new posts" msgid "Notification for new posts"
msgstr "" msgstr ""
#: src/Module/Contact.php:603 #: src/Module/Contact.php:609
msgid "Send a notification of every new post of this contact" msgid "Send a notification of every new post of this contact"
msgstr "" msgstr ""
#: src/Module/Contact.php:605 #: src/Module/Contact.php:611
msgid "Keyword Deny List" msgid "Keyword Deny List"
msgstr "" msgstr ""
#: src/Module/Contact.php:605 #: src/Module/Contact.php:611
msgid "" msgid ""
"Comma separated list of keywords that should not be converted to hashtags, " "Comma separated list of keywords that should not be converted to hashtags, "
"when \"Fetch information and keywords\" is selected" "when \"Fetch information and keywords\" is selected"
msgstr "" msgstr ""
#: src/Module/Contact.php:621 src/Module/Settings/TwoFactor/Index.php:127 #: src/Module/Contact.php:627 src/Module/Settings/TwoFactor/Index.php:127
msgid "Actions" msgid "Actions"
msgstr "" msgstr ""
#: src/Module/Contact.php:747 src/Module/Group.php:292 #: src/Module/Contact.php:758 src/Module/Group.php:292
#: src/Content/Widget.php:250 #: src/Content/Widget.php:246
msgid "All Contacts" msgid "All Contacts"
msgstr "" msgstr ""
#: src/Module/Contact.php:750 #: src/Module/Contact.php:761
msgid "Show all contacts" msgid "Show all contacts"
msgstr "" msgstr ""
#: src/Module/Contact.php:755 src/Module/Contact.php:815 #: src/Module/Contact.php:766 src/Module/Contact.php:826
msgid "Pending" msgid "Pending"
msgstr "" msgstr ""
#: src/Module/Contact.php:758 #: src/Module/Contact.php:769
msgid "Only show pending contacts" msgid "Only show pending contacts"
msgstr "" msgstr ""
#: src/Module/Contact.php:763 src/Module/Contact.php:816 #: src/Module/Contact.php:774 src/Module/Contact.php:827
msgid "Blocked" msgid "Blocked"
msgstr "" msgstr ""
#: src/Module/Contact.php:766 #: src/Module/Contact.php:777
msgid "Only show blocked contacts" msgid "Only show blocked contacts"
msgstr "" msgstr ""
#: src/Module/Contact.php:771 src/Module/Contact.php:818 #: src/Module/Contact.php:782 src/Module/Contact.php:829
msgid "Ignored" msgid "Ignored"
msgstr "" msgstr ""
#: src/Module/Contact.php:774 #: src/Module/Contact.php:785
msgid "Only show ignored contacts" msgid "Only show ignored contacts"
msgstr "" msgstr ""
#: src/Module/Contact.php:779 src/Module/Contact.php:819 #: src/Module/Contact.php:790 src/Module/Contact.php:830
msgid "Archived" msgid "Archived"
msgstr "" msgstr ""
#: src/Module/Contact.php:782 #: src/Module/Contact.php:793
msgid "Only show archived contacts" msgid "Only show archived contacts"
msgstr "" msgstr ""
#: src/Module/Contact.php:787 src/Module/Contact.php:817 #: src/Module/Contact.php:798 src/Module/Contact.php:828
msgid "Hidden" msgid "Hidden"
msgstr "" msgstr ""
#: src/Module/Contact.php:790 #: src/Module/Contact.php:801
msgid "Only show hidden contacts" msgid "Only show hidden contacts"
msgstr "" msgstr ""
#: src/Module/Contact.php:798 #: src/Module/Contact.php:809
msgid "Organize your contact groups" msgid "Organize your contact groups"
msgstr "" msgstr ""
#: src/Module/Contact.php:809 src/Content/Widget.php:242 src/BaseModule.php:189 #: src/Module/Contact.php:820 src/Content/Widget.php:238 src/BaseModule.php:189
msgid "Following" msgid "Following"
msgstr "" msgstr ""
#: src/Module/Contact.php:810 src/Content/Widget.php:243 src/BaseModule.php:194 #: src/Module/Contact.php:821 src/Content/Widget.php:239 src/BaseModule.php:194
msgid "Mutual friends" msgid "Mutual friends"
msgstr "" msgstr ""
#: src/Module/Contact.php:830 #: src/Module/Contact.php:841
msgid "Search your contacts" msgid "Search your contacts"
msgstr "" msgstr ""
#: src/Module/Contact.php:831 src/Module/Search/Index.php:190 #: src/Module/Contact.php:842 src/Module/Search/Index.php:190
#, php-format #, php-format
msgid "Results for: %s" msgid "Results for: %s"
msgstr "" msgstr ""
#: src/Module/Contact.php:841 src/Module/Contact.php:1138 #: src/Module/Contact.php:852 src/Module/Contact.php:1149
msgid "Archive" msgid "Archive"
msgstr "" msgstr ""
#: src/Module/Contact.php:841 src/Module/Contact.php:1138 #: src/Module/Contact.php:852 src/Module/Contact.php:1149
msgid "Unarchive" msgid "Unarchive"
msgstr "" msgstr ""
#: src/Module/Contact.php:844 #: src/Module/Contact.php:855
msgid "Batch Actions" msgid "Batch Actions"
msgstr "" msgstr ""
#: src/Module/Contact.php:879 #: src/Module/Contact.php:890
msgid "Conversations started by this contact" msgid "Conversations started by this contact"
msgstr "" msgstr ""
#: src/Module/Contact.php:884 #: src/Module/Contact.php:895
msgid "Posts and Comments" msgid "Posts and Comments"
msgstr "" msgstr ""
#: src/Module/Contact.php:895 src/Module/BaseProfile.php:55 #: src/Module/Contact.php:906 src/Module/BaseProfile.php:55
msgid "Profile Details" msgid "Profile Details"
msgstr "" msgstr ""
#: src/Module/Contact.php:902 #: src/Module/Contact.php:913
msgid "View all known contacts" msgid "View all known contacts"
msgstr "" msgstr ""
#: src/Module/Contact.php:912 #: src/Module/Contact.php:923
msgid "Advanced Contact Settings" msgid "Advanced Contact Settings"
msgstr "" msgstr ""
#: src/Module/Contact.php:1019 #: src/Module/Contact.php:1030
msgid "Mutual Friendship" msgid "Mutual Friendship"
msgstr "" msgstr ""
#: src/Module/Contact.php:1023 #: src/Module/Contact.php:1034
msgid "is a fan of yours" msgid "is a fan of yours"
msgstr "" msgstr ""
#: src/Module/Contact.php:1027 #: src/Module/Contact.php:1038
msgid "you are a fan of" msgid "you are a fan of"
msgstr "" msgstr ""
#: src/Module/Contact.php:1045 #: src/Module/Contact.php:1056
msgid "Pending outgoing contact request" msgid "Pending outgoing contact request"
msgstr "" msgstr ""
#: src/Module/Contact.php:1047 #: src/Module/Contact.php:1058
msgid "Pending incoming contact request" msgid "Pending incoming contact request"
msgstr "" msgstr ""
#: src/Module/Contact.php:1112 src/Module/Contact/Advanced.php:138 #: src/Module/Contact.php:1123 src/Module/Contact/Advanced.php:138
msgid "Refetch contact data" msgid "Refetch contact data"
msgstr "" msgstr ""
#: src/Module/Contact.php:1123 #: src/Module/Contact.php:1134
msgid "Toggle Blocked status" msgid "Toggle Blocked status"
msgstr "" msgstr ""
#: src/Module/Contact.php:1131 #: src/Module/Contact.php:1142
msgid "Toggle Ignored status" msgid "Toggle Ignored status"
msgstr "" msgstr ""
#: src/Module/Contact.php:1140 #: src/Module/Contact.php:1151
msgid "Toggle Archive status" msgid "Toggle Archive status"
msgstr "" msgstr ""
#: src/Module/Contact.php:1148 #: src/Module/Contact.php:1159
msgid "Delete contact" msgid "Delete contact"
msgstr "" msgstr ""
@ -8559,11 +8554,11 @@ msgid "Create a group of contacts/friends."
msgstr "" msgstr ""
#: src/Module/Group.php:178 src/Module/Group.php:201 src/Module/Group.php:276 #: src/Module/Group.php:178 src/Module/Group.php:201 src/Module/Group.php:276
#: src/Model/Group.php:536 #: src/Model/Group.php:543
msgid "Group Name: " msgid "Group Name: "
msgstr "" msgstr ""
#: src/Module/Group.php:193 src/Model/Group.php:533 #: src/Module/Group.php:193 src/Model/Group.php:540
msgid "Contacts not in any group" msgid "Contacts not in any group"
msgstr "" msgstr ""
@ -8739,7 +8734,7 @@ msgstr ""
msgid "New photo from this URL" msgid "New photo from this URL"
msgstr "" msgstr ""
#: src/Module/Contact/Contacts.php:46 #: src/Module/Contact/Contacts.php:54
msgid "No known contacts." msgid "No known contacts."
msgstr "" msgstr ""
@ -9625,7 +9620,8 @@ msgstr ""
msgid "Organisation" msgid "Organisation"
msgstr "" msgstr ""
#: src/Model/Contact.php:1397 src/Content/Widget.php:545 #: src/Model/Contact.php:1397 src/Content/Widget.php:538
#: src/Content/Widget.php:563
msgid "News" msgid "News"
msgstr "" msgstr ""
@ -9754,128 +9750,128 @@ msgstr ""
msgid "Happy Birthday %s" msgid "Happy Birthday %s"
msgstr "" msgstr ""
#: src/Model/User.php:141 src/Model/User.php:885 #: src/Model/User.php:164 src/Model/User.php:908
msgid "SERIOUS ERROR: Generation of security keys failed." msgid "SERIOUS ERROR: Generation of security keys failed."
msgstr "" msgstr ""
#: src/Model/User.php:503 #: src/Model/User.php:526
msgid "Login failed" msgid "Login failed"
msgstr "" msgstr ""
#: src/Model/User.php:535 #: src/Model/User.php:558
msgid "Not enough information to authenticate" msgid "Not enough information to authenticate"
msgstr "" msgstr ""
#: src/Model/User.php:630 #: src/Model/User.php:653
msgid "Password can't be empty" msgid "Password can't be empty"
msgstr "" msgstr ""
#: src/Model/User.php:649 #: src/Model/User.php:672
msgid "Empty passwords are not allowed." msgid "Empty passwords are not allowed."
msgstr "" msgstr ""
#: src/Model/User.php:653 #: src/Model/User.php:676
msgid "" msgid ""
"The new password has been exposed in a public data dump, please choose " "The new password has been exposed in a public data dump, please choose "
"another." "another."
msgstr "" msgstr ""
#: src/Model/User.php:659 #: src/Model/User.php:682
msgid "" msgid ""
"The password can't contain accentuated letters, white spaces or colons (:)" "The password can't contain accentuated letters, white spaces or colons (:)"
msgstr "" msgstr ""
#: src/Model/User.php:765 #: src/Model/User.php:788
msgid "Passwords do not match. Password unchanged." msgid "Passwords do not match. Password unchanged."
msgstr "" msgstr ""
#: src/Model/User.php:772 #: src/Model/User.php:795
msgid "An invitation is required." msgid "An invitation is required."
msgstr "" msgstr ""
#: src/Model/User.php:776 #: src/Model/User.php:799
msgid "Invitation could not be verified." msgid "Invitation could not be verified."
msgstr "" msgstr ""
#: src/Model/User.php:784 #: src/Model/User.php:807
msgid "Invalid OpenID url" msgid "Invalid OpenID url"
msgstr "" msgstr ""
#: src/Model/User.php:803 #: src/Model/User.php:826
msgid "Please enter the required information." msgid "Please enter the required information."
msgstr "" msgstr ""
#: src/Model/User.php:817 #: src/Model/User.php:840
#, php-format #, php-format
msgid "" msgid ""
"system.username_min_length (%s) and system.username_max_length (%s) are " "system.username_min_length (%s) and system.username_max_length (%s) are "
"excluding each other, swapping values." "excluding each other, swapping values."
msgstr "" msgstr ""
#: src/Model/User.php:824 #: src/Model/User.php:847
#, php-format #, php-format
msgid "Username should be at least %s character." msgid "Username should be at least %s character."
msgid_plural "Username should be at least %s characters." msgid_plural "Username should be at least %s characters."
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: src/Model/User.php:828 #: src/Model/User.php:851
#, php-format #, php-format
msgid "Username should be at most %s character." msgid "Username should be at most %s character."
msgid_plural "Username should be at most %s characters." msgid_plural "Username should be at most %s characters."
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: src/Model/User.php:836 #: src/Model/User.php:859
msgid "That doesn't appear to be your full (First Last) name." msgid "That doesn't appear to be your full (First Last) name."
msgstr "" msgstr ""
#: src/Model/User.php:841 #: src/Model/User.php:864
msgid "Your email domain is not among those allowed on this site." msgid "Your email domain is not among those allowed on this site."
msgstr "" msgstr ""
#: src/Model/User.php:845 #: src/Model/User.php:868
msgid "Not a valid email address." msgid "Not a valid email address."
msgstr "" msgstr ""
#: src/Model/User.php:848 #: src/Model/User.php:871
msgid "The nickname was blocked from registration by the nodes admin." msgid "The nickname was blocked from registration by the nodes admin."
msgstr "" msgstr ""
#: src/Model/User.php:852 src/Model/User.php:860 #: src/Model/User.php:875 src/Model/User.php:883
msgid "Cannot use that email." msgid "Cannot use that email."
msgstr "" msgstr ""
#: src/Model/User.php:867 #: src/Model/User.php:890
msgid "Your nickname can only contain a-z, 0-9 and _." msgid "Your nickname can only contain a-z, 0-9 and _."
msgstr "" msgstr ""
#: src/Model/User.php:875 src/Model/User.php:932 #: src/Model/User.php:898 src/Model/User.php:955
msgid "Nickname is already registered. Please choose another." msgid "Nickname is already registered. Please choose another."
msgstr "" msgstr ""
#: src/Model/User.php:919 src/Model/User.php:923 #: src/Model/User.php:942 src/Model/User.php:946
msgid "An error occurred during registration. Please try again." msgid "An error occurred during registration. Please try again."
msgstr "" msgstr ""
#: src/Model/User.php:946 #: src/Model/User.php:969
msgid "An error occurred creating your default profile. Please try again." msgid "An error occurred creating your default profile. Please try again."
msgstr "" msgstr ""
#: src/Model/User.php:953 #: src/Model/User.php:976
msgid "An error occurred creating your self contact. Please try again." msgid "An error occurred creating your self contact. Please try again."
msgstr "" msgstr ""
#: src/Model/User.php:958 #: src/Model/User.php:981
msgid "Friends" msgid "Friends"
msgstr "" msgstr ""
#: src/Model/User.php:962 #: src/Model/User.php:985
msgid "" msgid ""
"An error occurred creating your default contact group. Please try again." "An error occurred creating your default contact group. Please try again."
msgstr "" msgstr ""
#: src/Model/User.php:1150 #: src/Model/User.php:1173
#, php-format #, php-format
msgid "" msgid ""
"\n" "\n"
@ -9883,7 +9879,7 @@ msgid ""
"\t\t\tthe administrator of %2$s has set up an account for you." "\t\t\tthe administrator of %2$s has set up an account for you."
msgstr "" msgstr ""
#: src/Model/User.php:1153 #: src/Model/User.php:1176
#, php-format #, php-format
msgid "" msgid ""
"\n" "\n"
@ -9920,12 +9916,12 @@ msgid ""
"\t\tThank you and welcome to %4$s." "\t\tThank you and welcome to %4$s."
msgstr "" msgstr ""
#: src/Model/User.php:1186 src/Model/User.php:1293 #: src/Model/User.php:1209 src/Model/User.php:1316
#, php-format #, php-format
msgid "Registration details for %s" msgid "Registration details for %s"
msgstr "" msgstr ""
#: src/Model/User.php:1206 #: src/Model/User.php:1229
#, php-format #, php-format
msgid "" msgid ""
"\n" "\n"
@ -9941,12 +9937,12 @@ msgid ""
"\t\t" "\t\t"
msgstr "" msgstr ""
#: src/Model/User.php:1225 #: src/Model/User.php:1248
#, php-format #, php-format
msgid "Registration at %s" msgid "Registration at %s"
msgstr "" msgstr ""
#: src/Model/User.php:1249 #: src/Model/User.php:1272
#, php-format #, php-format
msgid "" msgid ""
"\n" "\n"
@ -9955,7 +9951,7 @@ msgid ""
"\t\t\t" "\t\t\t"
msgstr "" msgstr ""
#: src/Model/User.php:1257 #: src/Model/User.php:1280
#, php-format #, php-format
msgid "" msgid ""
"\n" "\n"
@ -10013,19 +10009,19 @@ msgstr ""
msgid "edit" msgid "edit"
msgstr "" msgstr ""
#: src/Model/Group.php:527 #: src/Model/Group.php:534
msgid "add" msgid "add"
msgstr "" msgstr ""
#: src/Model/Group.php:532 #: src/Model/Group.php:539
msgid "Edit group" msgid "Edit group"
msgstr "" msgstr ""
#: src/Model/Group.php:535 #: src/Model/Group.php:542
msgid "Create a new group" msgid "Create a new group"
msgstr "" msgstr ""
#: src/Model/Group.php:537 #: src/Model/Group.php:544
msgid "Edit groups" msgid "Edit groups"
msgstr "" msgstr ""
@ -10033,125 +10029,121 @@ msgstr ""
msgid "Change profile photo" msgid "Change profile photo"
msgstr "" msgstr ""
#: src/Model/Profile.php:442 #: src/Model/Profile.php:443
msgid "Atom feed" msgid "Atom feed"
msgstr "" msgstr ""
#: src/Model/Profile.php:480 src/Model/Profile.php:577 #: src/Model/Profile.php:481 src/Model/Profile.php:578
msgid "g A l F d" msgid "g A l F d"
msgstr "" msgstr ""
#: src/Model/Profile.php:481 #: src/Model/Profile.php:482
msgid "F d" msgid "F d"
msgstr "" msgstr ""
#: src/Model/Profile.php:543 src/Model/Profile.php:628 #: src/Model/Profile.php:544 src/Model/Profile.php:629
msgid "[today]" msgid "[today]"
msgstr "" msgstr ""
#: src/Model/Profile.php:553 #: src/Model/Profile.php:554
msgid "Birthday Reminders" msgid "Birthday Reminders"
msgstr "" msgstr ""
#: src/Model/Profile.php:554 #: src/Model/Profile.php:555
msgid "Birthdays this week:" msgid "Birthdays this week:"
msgstr "" msgstr ""
#: src/Model/Profile.php:615 #: src/Model/Profile.php:616
msgid "[No description]" msgid "[No description]"
msgstr "" msgstr ""
#: src/Model/Profile.php:641 #: src/Model/Profile.php:642
msgid "Event Reminders" msgid "Event Reminders"
msgstr "" msgstr ""
#: src/Model/Profile.php:642 #: src/Model/Profile.php:643
msgid "Upcoming events the next 7 days:" msgid "Upcoming events the next 7 days:"
msgstr "" msgstr ""
#: src/Model/Profile.php:817 #: src/Model/Profile.php:818
#, php-format #, php-format
msgid "OpenWebAuth: %1$s welcomes %2$s" msgid "OpenWebAuth: %1$s welcomes %2$s"
msgstr "" msgstr ""
#: src/Content/Widget.php:52 #: src/Content/Widget.php:48
msgid "Add New Contact" msgid "Add New Contact"
msgstr "" msgstr ""
#: src/Content/Widget.php:53 #: src/Content/Widget.php:49
msgid "Enter address or web location" msgid "Enter address or web location"
msgstr "" msgstr ""
#: src/Content/Widget.php:54 #: src/Content/Widget.php:50
msgid "Example: bob@example.com, http://example.com/barbara" msgid "Example: bob@example.com, http://example.com/barbara"
msgstr "" msgstr ""
#: src/Content/Widget.php:56 #: src/Content/Widget.php:52
msgid "Connect" msgid "Connect"
msgstr "" msgstr ""
#: src/Content/Widget.php:71 #: src/Content/Widget.php:67
#, php-format #, php-format
msgid "%d invitation available" msgid "%d invitation available"
msgid_plural "%d invitations available" msgid_plural "%d invitations available"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: src/Content/Widget.php:219 #: src/Content/Widget.php:215
msgid "Everyone" msgid "Everyone"
msgstr "" msgstr ""
#: src/Content/Widget.php:248 #: src/Content/Widget.php:244
msgid "Relationships" msgid "Relationships"
msgstr "" msgstr ""
#: src/Content/Widget.php:289 #: src/Content/Widget.php:285
msgid "Protocols" msgid "Protocols"
msgstr "" msgstr ""
#: src/Content/Widget.php:291 #: src/Content/Widget.php:287
msgid "All Protocols" msgid "All Protocols"
msgstr "" msgstr ""
#: src/Content/Widget.php:328 #: src/Content/Widget.php:324
msgid "Saved Folders" msgid "Saved Folders"
msgstr "" msgstr ""
#: src/Content/Widget.php:330 src/Content/Widget.php:369 #: src/Content/Widget.php:326 src/Content/Widget.php:365
msgid "Everything" msgid "Everything"
msgstr "" msgstr ""
#: src/Content/Widget.php:367 #: src/Content/Widget.php:363
msgid "Categories" msgid "Categories"
msgstr "" msgstr ""
#: src/Content/Widget.php:424 #: src/Content/Widget.php:420
#, php-format #, php-format
msgid "%d contact in common" msgid "%d contact in common"
msgid_plural "%d contacts in common" msgid_plural "%d contacts in common"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: src/Content/Widget.php:517 #: src/Content/Widget.php:513
msgid "Archives" msgid "Archives"
msgstr "" msgstr ""
#: src/Content/Widget.php:539 src/Content/Nav.php:279 #: src/Content/Widget.php:536 src/Content/Widget.php:561
msgid "Accounts"
msgstr ""
#: src/Content/Widget.php:542
msgid "All"
msgstr ""
#: src/Content/Widget.php:543
msgid "Persons" msgid "Persons"
msgstr "" msgstr ""
#: src/Content/Widget.php:544 #: src/Content/Widget.php:537 src/Content/Widget.php:562
msgid "Organisations" msgid "Organisations"
msgstr "" msgstr ""
#: src/Content/Widget.php:543 src/Content/Widget.php:560
msgid "All"
msgstr ""
#: src/Content/ContactSelector.php:48 #: src/Content/ContactSelector.php:48
msgid "Frequently" msgid "Frequently"
msgstr "" msgstr ""
@ -10441,6 +10433,10 @@ msgstr ""
msgid "Outbox" msgid "Outbox"
msgstr "" msgstr ""
#: src/Content/Nav.php:279
msgid "Accounts"
msgstr ""
#: src/Content/Nav.php:279 #: src/Content/Nav.php:279
msgid "Manage other pages" msgid "Manage other pages"
msgstr "" msgstr ""
@ -10488,18 +10484,18 @@ msgstr[1] ""
msgid "More Trending Tags" msgid "More Trending Tags"
msgstr "" msgstr ""
#: src/Content/Widget/ContactBlock.php:72 #: src/Content/Widget/ContactBlock.php:73
msgid "No contacts" msgid "No contacts"
msgstr "" msgstr ""
#: src/Content/Widget/ContactBlock.php:104 #: src/Content/Widget/ContactBlock.php:105
#, php-format #, php-format
msgid "%d Contact" msgid "%d Contact"
msgid_plural "%d Contacts" msgid_plural "%d Contacts"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: src/Content/Widget/ContactBlock.php:123 #: src/Content/Widget/ContactBlock.php:124
msgid "View Contacts" msgid "View Contacts"
msgstr "" msgstr ""