Merge pull request #13484 from xundeenergie/better-navigation
[frio] Better navigation
This commit is contained in:
commit
8640afc82e
|
@ -68,6 +68,7 @@ class VCard
|
||||||
$follow_link = '';
|
$follow_link = '';
|
||||||
$unfollow_link = '';
|
$unfollow_link = '';
|
||||||
$wallmessage_link = '';
|
$wallmessage_link = '';
|
||||||
|
$showgroup_link = '';
|
||||||
|
|
||||||
$photo = Contact::getPhoto($contact);
|
$photo = Contact::getPhoto($contact);
|
||||||
|
|
||||||
|
@ -99,6 +100,10 @@ class VCard
|
||||||
if (in_array($rel, [Contact::FOLLOWER, Contact::FRIEND]) && Contact::canReceivePrivateMessages($contact)) {
|
if (in_array($rel, [Contact::FOLLOWER, Contact::FRIEND]) && Contact::canReceivePrivateMessages($contact)) {
|
||||||
$wallmessage_link = 'message/new/' . $id;
|
$wallmessage_link = 'message/new/' . $id;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ($contact['contact-type'] == Contact::TYPE_COMMUNITY) {
|
||||||
|
$showgroup_link = 'network/group/' . $id;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return Renderer::replaceMacros(Renderer::getMarkupTemplate('widget/vcard.tpl'), [
|
return Renderer::replaceMacros(Renderer::getMarkupTemplate('widget/vcard.tpl'), [
|
||||||
|
@ -119,6 +124,10 @@ class VCard
|
||||||
'$unfollow_link' => $unfollow_link,
|
'$unfollow_link' => $unfollow_link,
|
||||||
'$wallmessage' => DI::l10n()->t('Message'),
|
'$wallmessage' => DI::l10n()->t('Message'),
|
||||||
'$wallmessage_link' => $wallmessage_link,
|
'$wallmessage_link' => $wallmessage_link,
|
||||||
|
'$mention' => DI::l10n()->t('Mention'),
|
||||||
|
'$posttogroup' => DI::l10n()->t('Post to group'),
|
||||||
|
'$showgroup' => DI::l10n()->t('View group'),
|
||||||
|
'$showgroup_link' => $showgroup_link,
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1177,6 +1177,7 @@ class Contact
|
||||||
}
|
}
|
||||||
|
|
||||||
$pm_url = '';
|
$pm_url = '';
|
||||||
|
$mention_url = '';
|
||||||
$status_link = '';
|
$status_link = '';
|
||||||
$photos_link = '';
|
$photos_link = '';
|
||||||
|
|
||||||
|
@ -1197,8 +1198,23 @@ class Contact
|
||||||
$pm_url = 'message/new/' . $contact['id'];
|
$pm_url = 'message/new/' . $contact['id'];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ($contact['contact-type'] == Contact::TYPE_COMMUNITY) {
|
||||||
|
$mention_label = DI::l10n()->t('Post to group');
|
||||||
|
$mention_url = 'compose/0?body=!' . $contact['addr'];
|
||||||
|
} else {
|
||||||
|
$mention_label = DI::l10n()->t('Mention');
|
||||||
|
$mention_url = 'compose/0?body=@' . $contact['addr'];
|
||||||
|
}
|
||||||
|
|
||||||
$contact_url = 'contact/' . $contact['id'];
|
$contact_url = 'contact/' . $contact['id'];
|
||||||
$posts_link = 'contact/' . $contact['id'] . '/conversations';
|
|
||||||
|
if ($contact['contact-type'] == Contact::TYPE_COMMUNITY) {
|
||||||
|
$network_label = DI::l10n()->t('View group');
|
||||||
|
$network_url = 'network/group/' . $contact['id'];
|
||||||
|
} else {
|
||||||
|
$network_label = DI::l10n()->t('Network Posts');
|
||||||
|
$network_url = 'contact/' . $contact['id'] . '/conversations';
|
||||||
|
}
|
||||||
|
|
||||||
$follow_link = '';
|
$follow_link = '';
|
||||||
$unfollow_link = '';
|
$unfollow_link = '';
|
||||||
|
@ -1214,24 +1230,28 @@ class Contact
|
||||||
* Menu array:
|
* Menu array:
|
||||||
* "name" => [ "Label", "link", (bool)Should the link opened in a new tab? ]
|
* "name" => [ "Label", "link", (bool)Should the link opened in a new tab? ]
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
if (empty($contact['uid'])) {
|
if (empty($contact['uid'])) {
|
||||||
$menu = [
|
$menu = [
|
||||||
'profile' => [DI::l10n()->t('View Profile'), $profile_link, true],
|
'profile' => [DI::l10n()->t('View Profile'), $profile_link, true],
|
||||||
'network' => [DI::l10n()->t('Network Posts'), $posts_link, false],
|
'network' => [$network_label, $network_url, false],
|
||||||
'edit' => [DI::l10n()->t('View Contact'), $contact_url, false],
|
'edit' => [DI::l10n()->t('View Contact'), $contact_url, false],
|
||||||
'follow' => [DI::l10n()->t('Connect/Follow'), $follow_link, true],
|
'follow' => [DI::l10n()->t('Connect/Follow'), $follow_link, true],
|
||||||
'unfollow' => [DI::l10n()->t('Unfollow'), $unfollow_link, true],
|
'unfollow' => [DI::l10n()->t('Unfollow'), $unfollow_link, true],
|
||||||
|
'mention' => [$mention_label, $mention_url, false],
|
||||||
];
|
];
|
||||||
} else {
|
} else {
|
||||||
$menu = [
|
$menu = [
|
||||||
'status' => [DI::l10n()->t('View Status'), $status_link, true],
|
'status' => [DI::l10n()->t('View Status'), $status_link, true],
|
||||||
'profile' => [DI::l10n()->t('View Profile'), $profile_link, true],
|
'profile' => [DI::l10n()->t('View Profile'), $profile_link, true],
|
||||||
'photos' => [DI::l10n()->t('View Photos'), $photos_link, true],
|
'photos' => [DI::l10n()->t('View Photos'), $photos_link, true],
|
||||||
'network' => [DI::l10n()->t('Network Posts'), $posts_link, false],
|
'network' => [$network_label, $network_url, false],
|
||||||
'edit' => [DI::l10n()->t('View Contact'), $contact_url, false],
|
'edit' => [DI::l10n()->t('View Contact'), $contact_url, false],
|
||||||
'pm' => [DI::l10n()->t('Send PM'), $pm_url, false],
|
'pm' => [DI::l10n()->t('Send PM'), $pm_url, false],
|
||||||
'follow' => [DI::l10n()->t('Connect/Follow'), $follow_link, true],
|
'follow' => [DI::l10n()->t('Connect/Follow'), $follow_link, true],
|
||||||
'unfollow' => [DI::l10n()->t('Unfollow'), $unfollow_link, true],
|
'unfollow' => [DI::l10n()->t('Unfollow'), $unfollow_link, true],
|
||||||
|
'mention' => [$mention_label, $mention_url, false],
|
||||||
];
|
];
|
||||||
|
|
||||||
if (!empty($contact['pending'])) {
|
if (!empty($contact['pending'])) {
|
||||||
|
|
|
@ -111,7 +111,9 @@ class Hovercard extends BaseModule
|
||||||
'tags' => $contact['keywords'],
|
'tags' => $contact['keywords'],
|
||||||
'bd' => $contact['bd'] <= DBA::NULL_DATE ? '' : $contact['bd'],
|
'bd' => $contact['bd'] <= DBA::NULL_DATE ? '' : $contact['bd'],
|
||||||
'account_type' => Contact::getAccountType($contact['contact-type']),
|
'account_type' => Contact::getAccountType($contact['contact-type']),
|
||||||
|
'contact_type' => $contact['contact-type'],
|
||||||
'actions' => $actions,
|
'actions' => $actions,
|
||||||
|
'self' => $contact['self'],
|
||||||
],
|
],
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: 2023.09-dev\n"
|
"Project-Id-Version: 2023.09-dev\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2023-09-18 05:30+0000\n"
|
"POT-Creation-Date: 2023-10-03 08:59+0200\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"
|
||||||
|
@ -783,31 +783,31 @@ msgstr ""
|
||||||
msgid "You must be logged in to use addons. "
|
msgid "You must be logged in to use addons. "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/BaseModule.php:401
|
#: src/BaseModule.php:403
|
||||||
msgid ""
|
msgid ""
|
||||||
"The form security token was not correct. This probably happened because the "
|
"The form security token was not correct. This probably happened because the "
|
||||||
"form has been opened for too long (>3 hours) before submitting it."
|
"form has been opened for too long (>3 hours) before submitting it."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/BaseModule.php:428
|
#: src/BaseModule.php:430
|
||||||
msgid "All contacts"
|
msgid "All contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/BaseModule.php:433 src/Content/Conversation/Factory/Timeline.php:62
|
#: src/BaseModule.php:435 src/Content/Conversation/Factory/Timeline.php:62
|
||||||
#: src/Content/Widget.php:239 src/Core/ACL.php:195 src/Module/Contact.php:415
|
#: src/Content/Widget.php:239 src/Core/ACL.php:195 src/Module/Contact.php:415
|
||||||
#: src/Module/PermissionTooltip.php:127 src/Module/PermissionTooltip.php:149
|
#: src/Module/PermissionTooltip.php:127 src/Module/PermissionTooltip.php:149
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/BaseModule.php:438 src/Content/Widget.php:240 src/Module/Contact.php:418
|
#: src/BaseModule.php:440 src/Content/Widget.php:240 src/Module/Contact.php:418
|
||||||
msgid "Following"
|
msgid "Following"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/BaseModule.php:443 src/Content/Widget.php:241 src/Module/Contact.php:421
|
#: src/BaseModule.php:445 src/Content/Widget.php:241 src/Module/Contact.php:421
|
||||||
msgid "Mutual friends"
|
msgid "Mutual friends"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/BaseModule.php:451
|
#: src/BaseModule.php:453
|
||||||
msgid "Common"
|
msgid "Common"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -1377,7 +1377,7 @@ msgstr ""
|
||||||
msgid "Public post"
|
msgid "Public post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation.php:424 src/Content/Widget/VCard.php:120
|
#: src/Content/Conversation.php:424 src/Content/Widget/VCard.php:125
|
||||||
#: src/Model/Profile.php:467 src/Module/Admin/Logs/View.php:92
|
#: src/Model/Profile.php:467 src/Module/Admin/Logs/View.php:92
|
||||||
#: src/Module/Post/Edit.php:181
|
#: src/Module/Post/Edit.php:181
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
|
@ -1570,60 +1570,60 @@ msgstr ""
|
||||||
msgid "Posts with videos"
|
msgid "Posts with videos"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation/Factory/Timeline.php:85
|
#: src/Content/Conversation/Factory/Timeline.php:84
|
||||||
msgid "Local Community"
|
msgid "Local Community"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation/Factory/Timeline.php:85
|
#: src/Content/Conversation/Factory/Timeline.php:84
|
||||||
msgid "Posts from local users on this server"
|
msgid "Posts from local users on this server"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation/Factory/Timeline.php:89
|
#: src/Content/Conversation/Factory/Timeline.php:88
|
||||||
msgid "Global Community"
|
msgid "Global Community"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation/Factory/Timeline.php:89
|
#: src/Content/Conversation/Factory/Timeline.php:88
|
||||||
msgid "Posts from users of the whole federated network"
|
msgid "Posts from users of the whole federated network"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation/Factory/Timeline.php:103
|
#: src/Content/Conversation/Factory/Timeline.php:102
|
||||||
msgid "Latest Activity"
|
msgid "Latest Activity"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation/Factory/Timeline.php:103
|
#: src/Content/Conversation/Factory/Timeline.php:102
|
||||||
msgid "Sort by latest activity"
|
msgid "Sort by latest activity"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation/Factory/Timeline.php:104
|
#: src/Content/Conversation/Factory/Timeline.php:103
|
||||||
msgid "Latest Posts"
|
msgid "Latest Posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation/Factory/Timeline.php:104
|
#: src/Content/Conversation/Factory/Timeline.php:103
|
||||||
msgid "Sort by post received date"
|
msgid "Sort by post received date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation/Factory/Timeline.php:105
|
#: src/Content/Conversation/Factory/Timeline.php:104
|
||||||
msgid "Latest Creation"
|
msgid "Latest Creation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation/Factory/Timeline.php:105
|
#: src/Content/Conversation/Factory/Timeline.php:104
|
||||||
msgid "Sort by post creation date"
|
msgid "Sort by post creation date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation/Factory/Timeline.php:106
|
#: src/Content/Conversation/Factory/Timeline.php:105
|
||||||
#: src/Module/Settings/Profile/Index.php:260
|
#: src/Module/Settings/Profile/Index.php:260
|
||||||
msgid "Personal"
|
msgid "Personal"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation/Factory/Timeline.php:106
|
#: src/Content/Conversation/Factory/Timeline.php:105
|
||||||
msgid "Posts that mention or involve you"
|
msgid "Posts that mention or involve you"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation/Factory/Timeline.php:107 src/Object/Post.php:380
|
#: src/Content/Conversation/Factory/Timeline.php:106 src/Object/Post.php:380
|
||||||
msgid "Starred"
|
msgid "Starred"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation/Factory/Timeline.php:107
|
#: src/Content/Conversation/Factory/Timeline.php:106
|
||||||
msgid "Favourite Posts"
|
msgid "Favourite Posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -1762,7 +1762,7 @@ msgstr ""
|
||||||
msgid "Create new group"
|
msgid "Create new group"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Item.php:331 src/Model/Item.php:3003
|
#: src/Content/Item.php:331 src/Model/Item.php:3021
|
||||||
msgid "event"
|
msgid "event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -1770,7 +1770,7 @@ msgstr ""
|
||||||
msgid "status"
|
msgid "status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Item.php:340 src/Model/Item.php:3005
|
#: src/Content/Item.php:340 src/Model/Item.php:3023
|
||||||
#: src/Module/Post/Tag/Add.php:123
|
#: src/Module/Post/Tag/Add.php:123
|
||||||
msgid "photo"
|
msgid "photo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1784,31 +1784,30 @@ msgstr ""
|
||||||
msgid "Follow Thread"
|
msgid "Follow Thread"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Item.php:429 src/Model/Contact.php:1227
|
#: src/Content/Item.php:429 src/Model/Contact.php:1246
|
||||||
msgid "View Status"
|
msgid "View Status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Item.php:430 src/Content/Item.php:451 src/Model/Contact.php:1176
|
#: src/Content/Item.php:430 src/Content/Item.php:451 src/Model/Contact.php:1176
|
||||||
#: src/Model/Contact.php:1219 src/Model/Contact.php:1228
|
#: src/Model/Contact.php:1237 src/Model/Contact.php:1247
|
||||||
#: src/Module/Directory.php:157 src/Module/Settings/Profile/Index.php:259
|
#: src/Module/Directory.php:157 src/Module/Settings/Profile/Index.php:259
|
||||||
msgid "View Profile"
|
msgid "View Profile"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Item.php:431 src/Model/Contact.php:1229
|
#: src/Content/Item.php:431 src/Model/Contact.php:1248
|
||||||
msgid "View Photos"
|
msgid "View Photos"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Item.php:432 src/Model/Contact.php:1220
|
#: src/Content/Item.php:432 src/Model/Contact.php:1215
|
||||||
#: src/Model/Contact.php:1230
|
|
||||||
msgid "Network Posts"
|
msgid "Network Posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Item.php:433 src/Model/Contact.php:1221
|
#: src/Content/Item.php:433 src/Model/Contact.php:1239
|
||||||
#: src/Model/Contact.php:1231
|
#: src/Model/Contact.php:1250
|
||||||
msgid "View Contact"
|
msgid "View Contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Item.php:434 src/Model/Contact.php:1232
|
#: src/Content/Item.php:434 src/Model/Contact.php:1251
|
||||||
msgid "Send PM"
|
msgid "Send PM"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -1843,7 +1842,7 @@ msgid "Languages"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Item.php:448 src/Content/Widget.php:80
|
#: src/Content/Item.php:448 src/Content/Widget.php:80
|
||||||
#: src/Model/Contact.php:1222 src/Model/Contact.php:1233
|
#: src/Model/Contact.php:1240 src/Model/Contact.php:1252
|
||||||
#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195
|
#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195
|
||||||
msgid "Connect/Follow"
|
msgid "Connect/Follow"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -2181,8 +2180,8 @@ msgid ""
|
||||||
"<a href=\"%1$s\" target=\"_blank\" rel=\"noopener noreferrer\">%2$s</a> %3$s"
|
"<a href=\"%1$s\" target=\"_blank\" rel=\"noopener noreferrer\">%2$s</a> %3$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Text/BBCode.php:939 src/Model/Item.php:3745
|
#: src/Content/Text/BBCode.php:939 src/Model/Item.php:3763
|
||||||
#: src/Model/Item.php:3751 src/Model/Item.php:3752
|
#: src/Model/Item.php:3769 src/Model/Item.php:3770
|
||||||
msgid "Link to source"
|
msgid "Link to source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -2214,7 +2213,7 @@ msgstr ""
|
||||||
msgid "The end"
|
msgid "The end"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Text/HTML.php:859 src/Content/Widget/VCard.php:116
|
#: src/Content/Text/HTML.php:859 src/Content/Widget/VCard.php:121
|
||||||
#: src/Model/Profile.php:461 src/Module/Contact/Profile.php:471
|
#: src/Model/Profile.php:461 src/Module/Contact/Profile.php:471
|
||||||
msgid "Follow"
|
msgid "Follow"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -2350,7 +2349,7 @@ msgstr ""
|
||||||
msgid "Organisations"
|
msgid "Organisations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Widget.php:536 src/Model/Contact.php:1698
|
#: src/Content/Widget.php:536 src/Model/Contact.php:1718
|
||||||
msgid "News"
|
msgid "News"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -2412,17 +2411,17 @@ msgstr[1] ""
|
||||||
msgid "More Trending Tags"
|
msgid "More Trending Tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Widget/VCard.php:109 src/Model/Profile.php:376
|
#: src/Content/Widget/VCard.php:114 src/Model/Profile.php:376
|
||||||
#: src/Module/Contact/Profile.php:408 src/Module/Profile/Profile.php:199
|
#: src/Module/Contact/Profile.php:408 src/Module/Profile/Profile.php:199
|
||||||
msgid "XMPP:"
|
msgid "XMPP:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Widget/VCard.php:110 src/Model/Profile.php:377
|
#: src/Content/Widget/VCard.php:115 src/Model/Profile.php:377
|
||||||
#: src/Module/Contact/Profile.php:410 src/Module/Profile/Profile.php:203
|
#: src/Module/Contact/Profile.php:410 src/Module/Profile/Profile.php:203
|
||||||
msgid "Matrix:"
|
msgid "Matrix:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Widget/VCard.php:111 src/Model/Event.php:82
|
#: src/Content/Widget/VCard.php:116 src/Model/Event.php:82
|
||||||
#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:963
|
#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:963
|
||||||
#: src/Model/Profile.php:371 src/Module/Contact/Profile.php:406
|
#: src/Model/Profile.php:371 src/Module/Contact/Profile.php:406
|
||||||
#: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187
|
#: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187
|
||||||
|
@ -2430,17 +2429,30 @@ msgstr ""
|
||||||
msgid "Location:"
|
msgid "Location:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Widget/VCard.php:114 src/Model/Profile.php:474
|
#: src/Content/Widget/VCard.php:119 src/Model/Profile.php:474
|
||||||
#: src/Module/Notifications/Introductions.php:201
|
#: src/Module/Notifications/Introductions.php:201
|
||||||
msgid "Network:"
|
msgid "Network:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Widget/VCard.php:118 src/Model/Contact.php:1223
|
#: src/Content/Widget/VCard.php:123 src/Model/Contact.php:1241
|
||||||
#: src/Model/Contact.php:1234 src/Model/Profile.php:463
|
#: src/Model/Contact.php:1253 src/Model/Profile.php:463
|
||||||
#: src/Module/Contact/Profile.php:463
|
#: src/Module/Contact/Profile.php:463
|
||||||
msgid "Unfollow"
|
msgid "Unfollow"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Content/Widget/VCard.php:127 src/Model/Contact.php:1205
|
||||||
|
#: src/Module/Moderation/Item/Source.php:85
|
||||||
|
msgid "Mention"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Content/Widget/VCard.php:128 src/Model/Contact.php:1202
|
||||||
|
msgid "Post to group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Content/Widget/VCard.php:129 src/Model/Contact.php:1212
|
||||||
|
msgid "View group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/ACL.php:166 src/Module/Profile/Profile.php:269
|
#: src/Core/ACL.php:166 src/Module/Profile/Profile.php:269
|
||||||
msgid "Yourself"
|
msgid "Yourself"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -2701,8 +2713,8 @@ msgstr ""
|
||||||
|
|
||||||
#: src/Core/Installer.php:511
|
#: src/Core/Installer.php:511
|
||||||
msgid ""
|
msgid ""
|
||||||
"The web installer needs to be able to create a file called \"local.config.php"
|
"The web installer needs to be able to create a file called \"local.config."
|
||||||
"\" in the \"config\" folder of your web server and it is unable to do so."
|
"php\" in the \"config\" folder of your web server and it is unable to do so."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/Installer.php:512
|
#: src/Core/Installer.php:512
|
||||||
|
@ -2820,158 +2832,158 @@ msgstr ""
|
||||||
msgid "Could not connect to database."
|
msgid "Could not connect to database."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/L10n.php:476 src/Model/Event.php:430
|
#: src/Core/L10n.php:494 src/Model/Event.php:430
|
||||||
#: src/Module/Settings/Display.php:235
|
#: src/Module/Settings/Display.php:235
|
||||||
msgid "Monday"
|
msgid "Monday"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/L10n.php:476 src/Model/Event.php:431
|
#: src/Core/L10n.php:494 src/Model/Event.php:431
|
||||||
#: src/Module/Settings/Display.php:236
|
#: src/Module/Settings/Display.php:236
|
||||||
msgid "Tuesday"
|
msgid "Tuesday"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/L10n.php:476 src/Model/Event.php:432
|
#: src/Core/L10n.php:494 src/Model/Event.php:432
|
||||||
#: src/Module/Settings/Display.php:237
|
#: src/Module/Settings/Display.php:237
|
||||||
msgid "Wednesday"
|
msgid "Wednesday"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/L10n.php:476 src/Model/Event.php:433
|
#: src/Core/L10n.php:494 src/Model/Event.php:433
|
||||||
#: src/Module/Settings/Display.php:238
|
#: src/Module/Settings/Display.php:238
|
||||||
msgid "Thursday"
|
msgid "Thursday"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/L10n.php:476 src/Model/Event.php:434
|
#: src/Core/L10n.php:494 src/Model/Event.php:434
|
||||||
#: src/Module/Settings/Display.php:239
|
#: src/Module/Settings/Display.php:239
|
||||||
msgid "Friday"
|
msgid "Friday"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/L10n.php:476 src/Model/Event.php:435
|
#: src/Core/L10n.php:494 src/Model/Event.php:435
|
||||||
#: src/Module/Settings/Display.php:240
|
#: src/Module/Settings/Display.php:240
|
||||||
msgid "Saturday"
|
msgid "Saturday"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/L10n.php:476 src/Model/Event.php:429
|
#: src/Core/L10n.php:494 src/Model/Event.php:429
|
||||||
#: src/Module/Settings/Display.php:234
|
#: src/Module/Settings/Display.php:234
|
||||||
msgid "Sunday"
|
msgid "Sunday"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/L10n.php:480 src/Model/Event.php:450
|
#: src/Core/L10n.php:498 src/Model/Event.php:450
|
||||||
msgid "January"
|
msgid "January"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/L10n.php:480 src/Model/Event.php:451
|
#: src/Core/L10n.php:498 src/Model/Event.php:451
|
||||||
msgid "February"
|
msgid "February"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/L10n.php:480 src/Model/Event.php:452
|
#: src/Core/L10n.php:498 src/Model/Event.php:452
|
||||||
msgid "March"
|
msgid "March"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/L10n.php:480 src/Model/Event.php:453
|
#: src/Core/L10n.php:498 src/Model/Event.php:453
|
||||||
msgid "April"
|
msgid "April"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/L10n.php:480 src/Core/L10n.php:499 src/Model/Event.php:441
|
#: src/Core/L10n.php:498 src/Core/L10n.php:517 src/Model/Event.php:441
|
||||||
msgid "May"
|
msgid "May"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/L10n.php:480 src/Model/Event.php:454
|
#: src/Core/L10n.php:498 src/Model/Event.php:454
|
||||||
msgid "June"
|
msgid "June"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/L10n.php:480 src/Model/Event.php:455
|
#: src/Core/L10n.php:498 src/Model/Event.php:455
|
||||||
msgid "July"
|
msgid "July"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/L10n.php:480 src/Model/Event.php:456
|
#: src/Core/L10n.php:498 src/Model/Event.php:456
|
||||||
msgid "August"
|
msgid "August"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/L10n.php:480 src/Model/Event.php:457
|
#: src/Core/L10n.php:498 src/Model/Event.php:457
|
||||||
msgid "September"
|
msgid "September"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/L10n.php:480 src/Model/Event.php:458
|
#: src/Core/L10n.php:498 src/Model/Event.php:458
|
||||||
msgid "October"
|
msgid "October"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/L10n.php:480 src/Model/Event.php:459
|
#: src/Core/L10n.php:498 src/Model/Event.php:459
|
||||||
msgid "November"
|
msgid "November"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/L10n.php:480 src/Model/Event.php:460
|
#: src/Core/L10n.php:498 src/Model/Event.php:460
|
||||||
msgid "December"
|
msgid "December"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/L10n.php:495 src/Model/Event.php:422
|
#: src/Core/L10n.php:513 src/Model/Event.php:422
|
||||||
msgid "Mon"
|
msgid "Mon"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/L10n.php:495 src/Model/Event.php:423
|
#: src/Core/L10n.php:513 src/Model/Event.php:423
|
||||||
msgid "Tue"
|
msgid "Tue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/L10n.php:495 src/Model/Event.php:424
|
#: src/Core/L10n.php:513 src/Model/Event.php:424
|
||||||
msgid "Wed"
|
msgid "Wed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/L10n.php:495 src/Model/Event.php:425
|
#: src/Core/L10n.php:513 src/Model/Event.php:425
|
||||||
msgid "Thu"
|
msgid "Thu"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/L10n.php:495 src/Model/Event.php:426
|
#: src/Core/L10n.php:513 src/Model/Event.php:426
|
||||||
msgid "Fri"
|
msgid "Fri"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/L10n.php:495 src/Model/Event.php:427
|
#: src/Core/L10n.php:513 src/Model/Event.php:427
|
||||||
msgid "Sat"
|
msgid "Sat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/L10n.php:495 src/Model/Event.php:421
|
#: src/Core/L10n.php:513 src/Model/Event.php:421
|
||||||
msgid "Sun"
|
msgid "Sun"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/L10n.php:499 src/Model/Event.php:437
|
#: src/Core/L10n.php:517 src/Model/Event.php:437
|
||||||
msgid "Jan"
|
msgid "Jan"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/L10n.php:499 src/Model/Event.php:438
|
#: src/Core/L10n.php:517 src/Model/Event.php:438
|
||||||
msgid "Feb"
|
msgid "Feb"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/L10n.php:499 src/Model/Event.php:439
|
#: src/Core/L10n.php:517 src/Model/Event.php:439
|
||||||
msgid "Mar"
|
msgid "Mar"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/L10n.php:499 src/Model/Event.php:440
|
#: src/Core/L10n.php:517 src/Model/Event.php:440
|
||||||
msgid "Apr"
|
msgid "Apr"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/L10n.php:499 src/Model/Event.php:442
|
#: src/Core/L10n.php:517 src/Model/Event.php:442
|
||||||
msgid "Jun"
|
msgid "Jun"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/L10n.php:499 src/Model/Event.php:443
|
#: src/Core/L10n.php:517 src/Model/Event.php:443
|
||||||
msgid "Jul"
|
msgid "Jul"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/L10n.php:499 src/Model/Event.php:444
|
#: src/Core/L10n.php:517 src/Model/Event.php:444
|
||||||
msgid "Aug"
|
msgid "Aug"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/L10n.php:499
|
#: src/Core/L10n.php:517
|
||||||
msgid "Sep"
|
msgid "Sep"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/L10n.php:499 src/Model/Event.php:446
|
#: src/Core/L10n.php:517 src/Model/Event.php:446
|
||||||
msgid "Oct"
|
msgid "Oct"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/L10n.php:499 src/Model/Event.php:447
|
#: src/Core/L10n.php:517 src/Model/Event.php:447
|
||||||
msgid "Nov"
|
msgid "Nov"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/L10n.php:499 src/Model/Event.php:448
|
#: src/Core/L10n.php:517 src/Model/Event.php:448
|
||||||
msgid "Dec"
|
msgid "Dec"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -3189,82 +3201,82 @@ msgstr ""
|
||||||
msgid "Edit circles"
|
msgid "Edit circles"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:1240 src/Module/Moderation/Users/Pending.php:102
|
#: src/Model/Contact.php:1260 src/Module/Moderation/Users/Pending.php:102
|
||||||
#: src/Module/Notifications/Introductions.php:132
|
#: src/Module/Notifications/Introductions.php:132
|
||||||
#: src/Module/Notifications/Introductions.php:204
|
#: src/Module/Notifications/Introductions.php:204
|
||||||
msgid "Approve"
|
msgid "Approve"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:1694
|
#: src/Model/Contact.php:1714
|
||||||
msgid "Organisation"
|
msgid "Organisation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:1702
|
#: src/Model/Contact.php:1722
|
||||||
msgid "Group"
|
msgid "Group"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:3005
|
#: src/Model/Contact.php:3025
|
||||||
msgid "Disallowed profile URL."
|
msgid "Disallowed profile URL."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:3010 src/Module/Friendica.php:101
|
#: src/Model/Contact.php:3030 src/Module/Friendica.php:101
|
||||||
msgid "Blocked domain"
|
msgid "Blocked domain"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:3015
|
#: src/Model/Contact.php:3035
|
||||||
msgid "Connect URL missing."
|
msgid "Connect URL missing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:3024
|
#: src/Model/Contact.php:3044
|
||||||
msgid ""
|
msgid ""
|
||||||
"The contact could not be added. Please check the relevant network "
|
"The contact could not be added. Please check the relevant network "
|
||||||
"credentials in your Settings -> Social Networks page."
|
"credentials in your Settings -> Social Networks page."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:3042
|
#: src/Model/Contact.php:3062
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Expected network %s does not match actual network %s"
|
msgid "Expected network %s does not match actual network %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:3059
|
#: src/Model/Contact.php:3079
|
||||||
msgid "The profile address specified does not provide adequate information."
|
msgid "The profile address specified does not provide adequate information."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:3061
|
#: src/Model/Contact.php:3081
|
||||||
msgid "No compatible communication protocols or feeds were discovered."
|
msgid "No compatible communication protocols or feeds were discovered."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:3064
|
#: src/Model/Contact.php:3084
|
||||||
msgid "An author or name was not found."
|
msgid "An author or name was not found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:3067
|
#: src/Model/Contact.php:3087
|
||||||
msgid "No browser URL could be matched to this address."
|
msgid "No browser URL could be matched to this address."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:3070
|
#: src/Model/Contact.php:3090
|
||||||
msgid ""
|
msgid ""
|
||||||
"Unable to match @-style Identity Address with a known protocol or email "
|
"Unable to match @-style Identity Address with a known protocol or email "
|
||||||
"contact."
|
"contact."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:3071
|
#: src/Model/Contact.php:3091
|
||||||
msgid "Use mailto: in front of address to force email check."
|
msgid "Use mailto: in front of address to force email check."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:3077
|
#: src/Model/Contact.php:3097
|
||||||
msgid ""
|
msgid ""
|
||||||
"The profile address specified belongs to a network which has been disabled "
|
"The profile address specified belongs to a network which has been disabled "
|
||||||
"on this site."
|
"on this site."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:3082
|
#: src/Model/Contact.php:3102
|
||||||
msgid ""
|
msgid ""
|
||||||
"Limited profile. This person will be unable to receive direct/personal "
|
"Limited profile. This person will be unable to receive direct/personal "
|
||||||
"notifications from you."
|
"notifications from you."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:3148
|
#: src/Model/Contact.php:3168
|
||||||
msgid "Unable to retrieve contact information."
|
msgid "Unable to retrieve contact information."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -3369,81 +3381,81 @@ msgstr ""
|
||||||
msgid "Happy Birthday %s"
|
msgid "Happy Birthday %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Item.php:2062
|
#: src/Model/Item.php:2080
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Detected languages in this post:\\n%s"
|
msgid "Detected languages in this post:\\n%s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Item.php:3007
|
#: src/Model/Item.php:3025
|
||||||
msgid "activity"
|
msgid "activity"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Item.php:3009
|
#: src/Model/Item.php:3027
|
||||||
msgid "comment"
|
msgid "comment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Item.php:3012 src/Module/Post/Tag/Add.php:123
|
#: src/Model/Item.php:3030 src/Module/Post/Tag/Add.php:123
|
||||||
msgid "post"
|
msgid "post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Item.php:3182
|
#: src/Model/Item.php:3200
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s is blocked"
|
msgid "%s is blocked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Item.php:3184
|
#: src/Model/Item.php:3202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s is ignored"
|
msgid "%s is ignored"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Item.php:3186
|
#: src/Model/Item.php:3204
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Content from %s is collapsed"
|
msgid "Content from %s is collapsed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Item.php:3190
|
#: src/Model/Item.php:3208
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Content warning: %s"
|
msgid "Content warning: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Item.php:3652
|
#: src/Model/Item.php:3670
|
||||||
msgid "bytes"
|
msgid "bytes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Item.php:3683
|
#: src/Model/Item.php:3701
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%2$s (%3$d%%, %1$d vote)"
|
msgid "%2$s (%3$d%%, %1$d vote)"
|
||||||
msgid_plural "%2$s (%3$d%%, %1$d votes)"
|
msgid_plural "%2$s (%3$d%%, %1$d votes)"
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
|
|
||||||
#: src/Model/Item.php:3685
|
#: src/Model/Item.php:3703
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%2$s (%1$d vote)"
|
msgid "%2$s (%1$d vote)"
|
||||||
msgid_plural "%2$s (%1$d votes)"
|
msgid_plural "%2$s (%1$d votes)"
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
|
|
||||||
#: src/Model/Item.php:3690
|
#: src/Model/Item.php:3708
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%d voter. Poll end: %s"
|
msgid "%d voter. Poll end: %s"
|
||||||
msgid_plural "%d voters. Poll end: %s"
|
msgid_plural "%d voters. Poll end: %s"
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
|
|
||||||
#: src/Model/Item.php:3692
|
#: src/Model/Item.php:3710
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%d voter."
|
msgid "%d voter."
|
||||||
msgid_plural "%d voters."
|
msgid_plural "%d voters."
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
|
|
||||||
#: src/Model/Item.php:3694
|
#: src/Model/Item.php:3712
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Poll end: %s"
|
msgid "Poll end: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Item.php:3728 src/Model/Item.php:3729
|
#: src/Model/Item.php:3746 src/Model/Item.php:3747
|
||||||
msgid "View on separate page"
|
msgid "View on separate page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -5328,9 +5340,9 @@ msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Summary.php:98
|
#: src/Module/Admin/Summary.php:98
|
||||||
msgid ""
|
msgid ""
|
||||||
"The last update failed. Please run \"php bin/console.php dbstructure update"
|
"The last update failed. Please run \"php bin/console.php dbstructure "
|
||||||
"\" from the command line and have a look at the errors that might appear. "
|
"update\" from the command line and have a look at the errors that might "
|
||||||
"(Some of the errors are possibly inside the logfile.)"
|
"appear. (Some of the errors are possibly inside the logfile.)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Summary.php:102
|
#: src/Module/Admin/Summary.php:102
|
||||||
|
@ -5481,8 +5493,8 @@ msgstr ""
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Show some informations regarding the needed information to operate the node "
|
"Show some informations regarding the needed information to operate the node "
|
||||||
"according e.g. to <a href=\"%s\" target=\"_blank\" rel=\"noopener noreferrer"
|
"according e.g. to <a href=\"%s\" target=\"_blank\" rel=\"noopener "
|
||||||
"\">EU-GDPR</a>."
|
"noreferrer\">EU-GDPR</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Tos.php:81
|
#: src/Module/Admin/Tos.php:81
|
||||||
|
@ -5507,7 +5519,7 @@ msgstr ""
|
||||||
msgid "Enter your system rules here. Each line represents one rule."
|
msgid "Enter your system rules here. Each line represents one rule."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Api/ApiResponse.php:279
|
#: src/Module/Api/ApiResponse.php:293
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "API endpoint %s %s is not implemented but might be in the future."
|
msgid "API endpoint %s %s is not implemented but might be in the future."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -7973,10 +7985,6 @@ msgstr ""
|
||||||
msgid "URL"
|
msgid "URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Moderation/Item/Source.php:85
|
|
||||||
msgid "Mention"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/Module/Moderation/Item/Source.php:86
|
#: src/Module/Moderation/Item/Source.php:86
|
||||||
msgid "Implicit Mention"
|
msgid "Implicit Mention"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -8834,8 +8842,8 @@ msgstr ""
|
||||||
#: src/Module/Profile/Profile.php:158
|
#: src/Module/Profile/Profile.php:158
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"You're currently viewing your profile as <b>%s</b> <a href=\"%s\" class="
|
"You're currently viewing your profile as <b>%s</b> <a href=\"%s\" "
|
||||||
"\"btn btn-sm pull-right\">Cancel</a>"
|
"class=\"btn btn-sm pull-right\">Cancel</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Profile/Profile.php:167
|
#: src/Module/Profile/Profile.php:167
|
||||||
|
@ -9383,8 +9391,8 @@ msgstr ""
|
||||||
#: src/Module/Security/TwoFactor/Verify.php:100
|
#: src/Module/Security/TwoFactor/Verify.php:100
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you do not have access to your authentication code you can use a <a href="
|
"If you do not have access to your authentication code you can use a <a "
|
||||||
"\"%s\">two-factor recovery code</a>."
|
"href=\"%s\">two-factor recovery code</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Security/TwoFactor/Verify.php:101
|
#: src/Module/Security/TwoFactor/Verify.php:101
|
||||||
|
@ -10924,8 +10932,8 @@ msgstr ""
|
||||||
#: src/Module/Settings/TwoFactor/Verify.php:149
|
#: src/Module/Settings/TwoFactor/Verify.php:149
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"<p>Or you can open the following URL in your mobile device:</p><p><a href="
|
"<p>Or you can open the following URL in your mobile device:</p><p><a "
|
||||||
"\"%s\">%s</a></p>"
|
"href=\"%s\">%s</a></p>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/TwoFactor/Verify.php:156
|
#: src/Module/Settings/TwoFactor/Verify.php:156
|
||||||
|
@ -11034,9 +11042,9 @@ msgstr ""
|
||||||
msgid ""
|
msgid ""
|
||||||
"At any point in time a logged in user can export their account data from the "
|
"At any point in time a logged in user can export their account data from the "
|
||||||
"<a href=\"%1$s/settings/userexport\">account settings</a>. If the user wants "
|
"<a href=\"%1$s/settings/userexport\">account settings</a>. If the user wants "
|
||||||
"to delete their account they can do so at <a href=\"%1$s/settings/removeme\">"
|
"to delete their account they can do so at <a href=\"%1$s/settings/"
|
||||||
"%1$s/settings/removeme</a>. The deletion of the account will be permanent. "
|
"removeme\">%1$s/settings/removeme</a>. The deletion of the account will be "
|
||||||
"Deletion of the data will also be requested from the nodes of the "
|
"permanent. Deletion of the data will also be requested from the nodes of the "
|
||||||
"communication partners."
|
"communication partners."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
|
@ -21,10 +21,23 @@
|
||||||
{{* here are the different actions like private message, delete and so on *}}
|
{{* here are the different actions like private message, delete and so on *}}
|
||||||
{{* @todo we have two different photo menus one for contacts and one for items at the network stream. We currently use the contact photo menu, so the items options are missing We need to move them *}}
|
{{* @todo we have two different photo menus one for contacts and one for items at the network stream. We currently use the contact photo menu, so the items options are missing We need to move them *}}
|
||||||
<div class="hover-card-actions-social">
|
<div class="hover-card-actions-social">
|
||||||
{{if $profile.actions.pm}}<a class="btn btn-labeled btn-primary btn-sm add-to-modal" href="{{$profile.actions.pm.1}}" aria-label="{{$profile.actions.pm.0}}"><i class="fa fa-envelope" aria-hidden="true" title="{{$profile.actions.pm.0}}"></i><span class="sr-only">{{$profile.actions.pm.0}}</span></a>{{/if}}
|
{{if $profile.actions.pm}}
|
||||||
|
<a class="btn btn-labeled btn-primary btn-sm add-to-modal" href="{{$profile.actions.pm.1}}" title="{{$profile.actions.pm.0}}">
|
||||||
|
<i class="fa fa-envelope" aria-hidden="true"></i>
|
||||||
|
<span class="sr-only">{{$profile.actions.pm.0}}</span>
|
||||||
|
</a>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
{{if $profile.addr && !$profile.self}}
|
||||||
|
<a class="btn btn-labeled btn-primary btn-sm" href="{{$profile.actions.mention.1}}" title="{{$profile.actions.mention.0}}">
|
||||||
|
<i class="fa fa-pencil-square-o" aria-hidden="true"></i>
|
||||||
|
<span class="sr-only">{{$profile.actions.mention.0}}</span>
|
||||||
|
</a>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div class="hover-card-actions-connection">
|
<div class="hover-card-actions-connection">
|
||||||
{{if $profile.actions.network}}<a class="btn btn-labeled btn-primary btn-sm" href="{{$profile.actions.network.1}}" aria-label="{{$profile.actions.network.0}}" title="{{$profile.actions.network.0}}"><i class="fa fa-cloud" aria-hidden="true"></i></a>{{/if}}
|
{{if $profile.actions.network}}<a class="btn btn-labeled btn-primary btn-sm" href="{{$profile.actions.network.1}}" aria-label="{{$profile.actions.network.0}}" title="{{$profile.actions.network.0}}"><i class="fa fa-{{($profile.contact_type==3) ? group : cloud}}" aria-hidden="true"></i></a>{{/if}}
|
||||||
{{if $profile.actions.edit}}<a class="btn btn-labeled btn-primary btn-sm" href="{{$profile.actions.edit.1}}" aria-label="{{$profile.actions.edit.0}}" title="{{$profile.actions.edit.0}}"><i class="fa fa-user" aria-hidden="true"></i></a>{{/if}}
|
{{if $profile.actions.edit}}<a class="btn btn-labeled btn-primary btn-sm" href="{{$profile.actions.edit.1}}" aria-label="{{$profile.actions.edit.0}}" title="{{$profile.actions.edit.0}}"><i class="fa fa-user" aria-hidden="true"></i></a>{{/if}}
|
||||||
{{if $profile.actions.follow}}<a class="btn btn-labeled btn-primary btn-sm" href="{{$profile.actions.follow.1}}" aria-label="{{$profile.actions.follow.0}}" title="{{$profile.actions.follow.0}}"><i class="fa fa-user-plus" aria-hidden="true"></i></a>{{/if}}
|
{{if $profile.actions.follow}}<a class="btn btn-labeled btn-primary btn-sm" href="{{$profile.actions.follow.1}}" aria-label="{{$profile.actions.follow.0}}" title="{{$profile.actions.follow.0}}"><i class="fa fa-user-plus" aria-hidden="true"></i></a>{{/if}}
|
||||||
{{if $profile.actions.unfollow}}<a class="btn btn-labeled btn-primary btn-sm" href="{{$profile.actions.unfollow.1}}" aria-label="{{$profile.actions.unfollow.0}}" title="{{$profile.actions.unfollow.0}}"><i class="fa fa-user-times" aria-hidden="true"></i></a>{{/if}}
|
{{if $profile.actions.unfollow}}<a class="btn btn-labeled btn-primary btn-sm" href="{{$profile.actions.unfollow.1}}" aria-label="{{$profile.actions.unfollow.0}}" title="{{$profile.actions.unfollow.0}}"><i class="fa fa-user-times" aria-hidden="true"></i></a>{{/if}}
|
||||||
|
|
|
@ -70,6 +70,13 @@
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
{{if $profile.addr}}
|
||||||
|
<div id="mention-link-button">
|
||||||
|
<button type="button" id="mention-link" class="btn btn-labeled btn-primary" onclick="openWallMessage('compose/0?body={{if $profile.forum==1}}!{{else}}@{{/if}}{{$profile.addr}}')">
|
||||||
|
<span class=""><i class="fa fa-pencil-square-o"></i></span>
|
||||||
|
<span class="">{{$mention}}</span>
|
||||||
|
</div>
|
||||||
|
{{/if}}
|
||||||
</div>
|
</div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
|
|
|
@ -56,6 +56,22 @@
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
{{if $contact.addr}}
|
||||||
|
<div id="mention-link-button">
|
||||||
|
<button type="button" id="mention-link" class="btn btn-labeled btn-primary{{if !$always_open_compose}} modal-open{{/if}}" onclick="openWallMessage('compose/0?body={{if $contact.forum==1}}!{{else}}@{{/if}}{{$contact.addr}}')">
|
||||||
|
<span class=""><i class="fa fa-pencil-square-o"></i></span>
|
||||||
|
<span class="">{{if $contact.forum==1}}{{$posttogroup}}{{else}}{{$mention}}{{/if}}</span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
{{/if}}
|
||||||
|
{{if $contact.forum==1 || $contact.prv==1}}
|
||||||
|
<div id="show-group-button">
|
||||||
|
<button type="button" id="show-group" class="btn btn-labeled btn-primary{{if !$always_open_compose}} modal-open{{/if}}" onclick="window.location.href='{{$showgroup_link}}'">
|
||||||
|
<span class=""><i class="fa fa-group"></i></span>
|
||||||
|
<span class="">{{$showgroup}}</span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
{{/if}}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="clear"></div>
|
<div class="clear"></div>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user