The media class moved
This commit is contained in:
parent
da3fbced38
commit
afa611bd50
4 changed files with 186 additions and 136 deletions
|
@ -281,7 +281,7 @@ class Contact extends BaseModule
|
||||||
$contact = null;
|
$contact = null;
|
||||||
// @TODO: Replace with parameter from router
|
// @TODO: Replace with parameter from router
|
||||||
if (DI::args()->getArgc() == 2 && intval(DI::args()->getArgv()[1])
|
if (DI::args()->getArgc() == 2 && intval(DI::args()->getArgv()[1])
|
||||||
|| DI::args()->getArgc() == 3 && intval(DI::args()->getArgv()[1]) && in_array(DI::args()->getArgv()[2], ['posts', 'conversations', 'media'])
|
|| DI::args()->getArgc() == 3 && intval(DI::args()->getArgv()[1]) && in_array(DI::args()->getArgv()[2], ['posts', 'conversations'])
|
||||||
) {
|
) {
|
||||||
$contact_id = intval(DI::args()->getArgv()[1]);
|
$contact_id = intval(DI::args()->getArgv()[1]);
|
||||||
|
|
||||||
|
@ -308,7 +308,7 @@ class Contact extends BaseModule
|
||||||
if (DBA::isResult($contact)) {
|
if (DBA::isResult($contact)) {
|
||||||
if ($contact['self']) {
|
if ($contact['self']) {
|
||||||
// @TODO: Replace with parameter from router
|
// @TODO: Replace with parameter from router
|
||||||
if ((DI::args()->getArgc() == 3) && intval(DI::args()->getArgv()[1]) && in_array(DI::args()->getArgv()[2], ['posts', 'conversations', 'media'])) {
|
if ((DI::args()->getArgc() == 3) && intval(DI::args()->getArgv()[1]) && in_array(DI::args()->getArgv()[2], ['posts', 'conversations'])) {
|
||||||
DI::baseUrl()->redirect('profile/' . $contact['nick']);
|
DI::baseUrl()->redirect('profile/' . $contact['nick']);
|
||||||
} else {
|
} else {
|
||||||
DI::baseUrl()->redirect('profile/' . $contact['nick'] . '/profile');
|
DI::baseUrl()->redirect('profile/' . $contact['nick'] . '/profile');
|
||||||
|
@ -376,10 +376,6 @@ class Contact extends BaseModule
|
||||||
return self::getPostsHTML($contact_id, false);
|
return self::getPostsHTML($contact_id, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($cmd === 'media') {
|
|
||||||
return self::getPostsHTML($contact_id, true);
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($cmd === 'conversations') {
|
if ($cmd === 'conversations') {
|
||||||
return self::getConversationsHMTL($a, $contact_id, $update);
|
return self::getConversationsHMTL($a, $contact_id, $update);
|
||||||
}
|
}
|
||||||
|
|
54
src/Module/Contact/Media.php
Normal file
54
src/Module/Contact/Media.php
Normal file
|
@ -0,0 +1,54 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
||||||
|
*
|
||||||
|
* @license GNU AGPL version 3 or any later version
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Affero General Public License as
|
||||||
|
* published by the Free Software Foundation, either version 3 of the
|
||||||
|
* License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU Affero General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace Friendica\Module\Contact;
|
||||||
|
|
||||||
|
use Friendica\BaseModule;
|
||||||
|
use Friendica\Content\Widget;
|
||||||
|
use Friendica\DI;
|
||||||
|
use Friendica\Model;
|
||||||
|
use Friendica\Model\Contact as ModelContact;
|
||||||
|
use Friendica\Module\Contact;
|
||||||
|
use Friendica\Network\HTTPException\BadRequestException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* GUI for media posts of a contact
|
||||||
|
*/
|
||||||
|
class Media extends BaseModule
|
||||||
|
{
|
||||||
|
public static function content(array $parameters = [])
|
||||||
|
{
|
||||||
|
$cid = $parameters['id'];
|
||||||
|
|
||||||
|
$contact = Model\Contact::selectFirst([], ['id' => $cid]);
|
||||||
|
if (empty($contact)) {
|
||||||
|
throw new BadRequestException(DI::l10n()->t('Contact not found.'));
|
||||||
|
}
|
||||||
|
|
||||||
|
DI::page()['aside'] = Widget\VCard::getHTML($contact);
|
||||||
|
|
||||||
|
$o = Contact::getTabsHTML($contact, Contact::TAB_MEDIA);
|
||||||
|
|
||||||
|
$o .= ModelContact::getPostsFromUrl($contact['url'], false, 0, 0, true);
|
||||||
|
|
||||||
|
return $o;
|
||||||
|
}
|
||||||
|
}
|
|
@ -238,7 +238,7 @@ return [
|
||||||
'/{id:\d+}/contacts[/{type}]' => [Module\Contact\Contacts::class, [R::GET]],
|
'/{id:\d+}/contacts[/{type}]' => [Module\Contact\Contacts::class, [R::GET]],
|
||||||
'/{id:\d+}/drop' => [Module\Contact::class, [R::GET]],
|
'/{id:\d+}/drop' => [Module\Contact::class, [R::GET]],
|
||||||
'/{id:\d+}/ignore' => [Module\Contact::class, [R::GET]],
|
'/{id:\d+}/ignore' => [Module\Contact::class, [R::GET]],
|
||||||
'/{id:\d+}/media' => [Module\Contact::class, [R::GET]],
|
'/{id:\d+}/media' => [Module\Contact\Media::class, [R::GET]],
|
||||||
'/{id:\d+}/poke' => [Module\Contact\Poke::class, [R::GET, R::POST]],
|
'/{id:\d+}/poke' => [Module\Contact\Poke::class, [R::GET, R::POST]],
|
||||||
'/{id:\d+}/posts' => [Module\Contact::class, [R::GET]],
|
'/{id:\d+}/posts' => [Module\Contact::class, [R::GET]],
|
||||||
'/{id:\d+}/revoke' => [Module\Contact\Revoke::class, [R::GET, R::POST]],
|
'/{id:\d+}/revoke' => [Module\Contact\Revoke::class, [R::GET, R::POST]],
|
||||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: 2021.12-dev\n"
|
"Project-Id-Version: 2021.12-dev\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2021-10-02 18:34+0000\n"
|
"POT-Creation-Date: 2021-10-02 19:18+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"
|
||||||
|
@ -552,7 +552,7 @@ msgstr ""
|
||||||
#: mod/editpost.php:130 mod/fbrowser.php:105 mod/fbrowser.php:134
|
#: mod/editpost.php:130 mod/fbrowser.php:105 mod/fbrowser.php:134
|
||||||
#: mod/follow.php:144 mod/photos.php:1026 mod/photos.php:1135 mod/tagrm.php:37
|
#: mod/follow.php:144 mod/photos.php:1026 mod/photos.php:1135 mod/tagrm.php:37
|
||||||
#: mod/tagrm.php:129 mod/unfollow.php:97 src/Content/Conversation.php:373
|
#: mod/tagrm.php:129 mod/unfollow.php:97 src/Content/Conversation.php:373
|
||||||
#: src/Module/Contact.php:444 src/Module/Contact/Revoke.php:99
|
#: src/Module/Contact.php:440 src/Module/Contact/Revoke.php:99
|
||||||
#: src/Module/RemoteFollow.php:116
|
#: src/Module/RemoteFollow.php:116
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -638,7 +638,7 @@ msgstr ""
|
||||||
|
|
||||||
#: mod/events.php:568 src/Content/Widget/VCard.php:98 src/Model/Event.php:86
|
#: mod/events.php:568 src/Content/Widget/VCard.php:98 src/Model/Event.php:86
|
||||||
#: src/Model/Event.php:113 src/Model/Event.php:483 src/Model/Event.php:969
|
#: src/Model/Event.php:113 src/Model/Event.php:483 src/Model/Event.php:969
|
||||||
#: src/Model/Profile.php:367 src/Module/Contact.php:630
|
#: src/Model/Profile.php:367 src/Module/Contact.php:626
|
||||||
#: src/Module/Directory.php:150 src/Module/Notifications/Introductions.php:166
|
#: src/Module/Directory.php:150 src/Module/Notifications/Introductions.php:166
|
||||||
#: src/Module/Profile/Profile.php:194
|
#: src/Module/Profile/Profile.php:194
|
||||||
msgid "Location:"
|
msgid "Location:"
|
||||||
|
@ -655,7 +655,7 @@ msgstr ""
|
||||||
#: mod/events.php:580 mod/message.php:204 mod/message.php:367
|
#: mod/events.php:580 mod/message.php:204 mod/message.php:367
|
||||||
#: mod/photos.php:947 mod/photos.php:1048 mod/photos.php:1336
|
#: mod/photos.php:947 mod/photos.php:1048 mod/photos.php:1336
|
||||||
#: mod/photos.php:1377 mod/photos.php:1433 mod/photos.php:1507
|
#: mod/photos.php:1377 mod/photos.php:1433 mod/photos.php:1507
|
||||||
#: src/Module/Admin/Item/Source.php:65 src/Module/Contact.php:588
|
#: src/Module/Admin/Item/Source.php:65 src/Module/Contact.php:584
|
||||||
#: src/Module/Contact/Advanced.php:133 src/Module/Contact/Poke.php:158
|
#: src/Module/Contact/Advanced.php:133 src/Module/Contact/Poke.php:158
|
||||||
#: src/Module/Debug/ActivityPubConversion.php:141
|
#: src/Module/Debug/ActivityPubConversion.php:141
|
||||||
#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64
|
#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64
|
||||||
|
@ -674,7 +674,7 @@ msgstr ""
|
||||||
msgid "Basic"
|
msgid "Basic"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/events.php:582 src/Module/Admin/Site.php:505 src/Module/Contact.php:947
|
#: mod/events.php:582 src/Module/Admin/Site.php:505 src/Module/Contact.php:943
|
||||||
#: src/Module/Profile/Profile.php:249
|
#: src/Module/Profile/Profile.php:249
|
||||||
msgid "Advanced"
|
msgid "Advanced"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -732,13 +732,13 @@ msgid "Your Identity Address:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/follow.php:141 mod/unfollow.php:100
|
#: mod/follow.php:141 mod/unfollow.php:100
|
||||||
#: src/Module/Admin/Blocklist/Contact.php:100 src/Module/Contact.php:626
|
#: src/Module/Admin/Blocklist/Contact.php:100 src/Module/Contact.php:622
|
||||||
#: src/Module/Notifications/Introductions.php:108
|
#: src/Module/Notifications/Introductions.php:108
|
||||||
#: src/Module/Notifications/Introductions.php:177
|
#: src/Module/Notifications/Introductions.php:177
|
||||||
msgid "Profile URL"
|
msgid "Profile URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/follow.php:142 src/Module/Contact.php:638
|
#: mod/follow.php:142 src/Module/Contact.php:634
|
||||||
#: src/Module/Notifications/Introductions.php:170
|
#: src/Module/Notifications/Introductions.php:170
|
||||||
#: src/Module/Profile/Profile.php:207
|
#: src/Module/Profile/Profile.php:207
|
||||||
msgid "Tags:"
|
msgid "Tags:"
|
||||||
|
@ -754,7 +754,7 @@ msgid "Add a personal note:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/follow.php:163 mod/unfollow.php:109 src/Module/BaseProfile.php:59
|
#: mod/follow.php:163 mod/unfollow.php:109 src/Module/BaseProfile.php:59
|
||||||
#: src/Module/Contact.php:917
|
#: src/Module/Contact.php:913
|
||||||
msgid "Status Messages and Posts"
|
msgid "Status Messages and Posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -1317,7 +1317,7 @@ msgid "Rotate CCW (left)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:1374 mod/photos.php:1430 mod/photos.php:1504
|
#: mod/photos.php:1374 mod/photos.php:1430 mod/photos.php:1504
|
||||||
#: src/Module/Contact.php:1077 src/Module/Item/Compose.php:148
|
#: src/Module/Contact.php:1073 src/Module/Item/Compose.php:148
|
||||||
#: src/Object/Post.php:960
|
#: src/Object/Post.php:960
|
||||||
msgid "This is you"
|
msgid "This is you"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1333,8 +1333,8 @@ msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:1466 mod/settings.php:573 src/Content/Conversation.php:616
|
#: mod/photos.php:1466 mod/settings.php:573 src/Content/Conversation.php:616
|
||||||
#: src/Module/Admin/Users/Active.php:139 src/Module/Admin/Users/Blocked.php:140
|
#: src/Module/Admin/Users/Active.php:139 src/Module/Admin/Users/Blocked.php:140
|
||||||
#: src/Module/Admin/Users/Index.php:153 src/Module/Contact.php:872
|
#: src/Module/Admin/Users/Index.php:153 src/Module/Contact.php:868
|
||||||
#: src/Module/Contact.php:1175
|
#: src/Module/Contact.php:1171
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -1381,8 +1381,8 @@ msgstr ""
|
||||||
|
|
||||||
#: mod/redir.php:55 mod/redir.php:129 src/Module/Contact/Advanced.php:54
|
#: mod/redir.php:55 mod/redir.php:129 src/Module/Contact/Advanced.php:54
|
||||||
#: src/Module/Contact/Advanced.php:105 src/Module/Contact/Contacts.php:36
|
#: src/Module/Contact/Advanced.php:105 src/Module/Contact/Contacts.php:36
|
||||||
#: src/Module/FriendSuggest.php:54 src/Module/FriendSuggest.php:93
|
#: src/Module/Contact/Media.php:43 src/Module/FriendSuggest.php:54
|
||||||
#: src/Module/Group.php:105
|
#: src/Module/FriendSuggest.php:93 src/Module/Group.php:105
|
||||||
msgid "Contact not found."
|
msgid "Contact not found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -2397,16 +2397,16 @@ msgid "All contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/BaseModule.php:212 src/Content/Widget.php:238 src/Core/ACL.php:195
|
#: src/BaseModule.php:212 src/Content/Widget.php:238 src/Core/ACL.php:195
|
||||||
#: src/Module/Contact.php:838 src/Module/PermissionTooltip.php:77
|
#: src/Module/Contact.php:834 src/Module/PermissionTooltip.php:77
|
||||||
#: src/Module/PermissionTooltip.php:99
|
#: src/Module/PermissionTooltip.php:99
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/BaseModule.php:217 src/Content/Widget.php:239 src/Module/Contact.php:839
|
#: src/BaseModule.php:217 src/Content/Widget.php:239 src/Module/Contact.php:835
|
||||||
msgid "Following"
|
msgid "Following"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/BaseModule.php:222 src/Content/Widget.php:240 src/Module/Contact.php:840
|
#: src/BaseModule.php:222 src/Content/Widget.php:240 src/Module/Contact.php:836
|
||||||
msgid "Mutual friends"
|
msgid "Mutual friends"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -3034,13 +3034,13 @@ msgstr ""
|
||||||
|
|
||||||
#: src/Content/Item.php:449 src/Module/Admin/Blocklist/Contact.php:84
|
#: src/Content/Item.php:449 src/Module/Admin/Blocklist/Contact.php:84
|
||||||
#: src/Module/Admin/Users/Active.php:140 src/Module/Admin/Users/Index.php:154
|
#: src/Module/Admin/Users/Active.php:140 src/Module/Admin/Users/Index.php:154
|
||||||
#: src/Module/Contact.php:609 src/Module/Contact.php:870
|
#: src/Module/Contact.php:605 src/Module/Contact.php:866
|
||||||
#: src/Module/Contact.php:1148
|
#: src/Module/Contact.php:1144
|
||||||
msgid "Block"
|
msgid "Block"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Item.php:450 src/Module/Contact.php:610
|
#: src/Content/Item.php:450 src/Module/Contact.php:606
|
||||||
#: src/Module/Contact.php:871 src/Module/Contact.php:1156
|
#: src/Module/Contact.php:867 src/Module/Contact.php:1152
|
||||||
#: src/Module/Notifications/Introductions.php:113
|
#: src/Module/Notifications/Introductions.php:113
|
||||||
#: src/Module/Notifications/Introductions.php:185
|
#: src/Module/Notifications/Introductions.php:185
|
||||||
#: src/Module/Notifications/Notification.php:59
|
#: src/Module/Notifications/Notification.php:59
|
||||||
|
@ -3089,7 +3089,7 @@ msgid "Sign in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:190 src/Module/BaseProfile.php:56
|
#: src/Content/Nav.php:190 src/Module/BaseProfile.php:56
|
||||||
#: src/Module/Contact.php:641 src/Module/Contact.php:906
|
#: src/Module/Contact.php:637 src/Module/Contact.php:902
|
||||||
#: src/Module/Settings/TwoFactor/Index.php:112 view/theme/frio/theme.php:226
|
#: src/Module/Settings/TwoFactor/Index.php:112 view/theme/frio/theme.php:226
|
||||||
msgid "Status"
|
msgid "Status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3100,8 +3100,8 @@ msgid "Your posts and conversations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:191 src/Module/BaseProfile.php:48
|
#: src/Content/Nav.php:191 src/Module/BaseProfile.php:48
|
||||||
#: src/Module/BaseSettings.php:57 src/Module/Contact.php:643
|
#: src/Module/BaseSettings.php:57 src/Module/Contact.php:639
|
||||||
#: src/Module/Contact.php:930 src/Module/Profile/Profile.php:241
|
#: src/Module/Contact.php:926 src/Module/Profile/Profile.php:241
|
||||||
#: src/Module/Welcome.php:57 view/theme/frio/theme.php:227
|
#: src/Module/Welcome.php:57 view/theme/frio/theme.php:227
|
||||||
msgid "Profile"
|
msgid "Profile"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3187,8 +3187,8 @@ msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:235 src/Content/Nav.php:294
|
#: src/Content/Nav.php:235 src/Content/Nav.php:294
|
||||||
#: src/Content/Text/HTML.php:902 src/Module/BaseProfile.php:125
|
#: src/Content/Text/HTML.php:902 src/Module/BaseProfile.php:125
|
||||||
#: src/Module/BaseProfile.php:128 src/Module/Contact.php:841
|
#: src/Module/BaseProfile.php:128 src/Module/Contact.php:837
|
||||||
#: src/Module/Contact.php:937 view/theme/frio/theme.php:237
|
#: src/Module/Contact.php:933 view/theme/frio/theme.php:237
|
||||||
msgid "Contacts"
|
msgid "Contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -3418,7 +3418,7 @@ msgstr ""
|
||||||
msgid "Examples: Robert Morgenstein, Fishing"
|
msgid "Examples: Robert Morgenstein, Fishing"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Widget.php:78 src/Module/Contact.php:862
|
#: src/Content/Widget.php:78 src/Module/Contact.php:858
|
||||||
#: src/Module/Directory.php:99 view/theme/vier/theme.php:174
|
#: src/Module/Directory.php:99 view/theme/vier/theme.php:174
|
||||||
msgid "Find"
|
msgid "Find"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3445,7 +3445,7 @@ msgid "Local Directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Widget.php:214 src/Model/Group.php:535
|
#: src/Content/Widget.php:214 src/Model/Group.php:535
|
||||||
#: src/Module/Contact.php:825 src/Module/Welcome.php:76
|
#: src/Module/Contact.php:821 src/Module/Welcome.php:76
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -3457,7 +3457,7 @@ msgstr ""
|
||||||
msgid "Relationships"
|
msgid "Relationships"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Widget.php:247 src/Module/Contact.php:777
|
#: src/Content/Widget.php:247 src/Module/Contact.php:773
|
||||||
#: src/Module/Group.php:292
|
#: src/Module/Group.php:292
|
||||||
msgid "All Contacts"
|
msgid "All Contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3556,12 +3556,12 @@ msgid "More Trending Tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Widget/VCard.php:96 src/Model/Profile.php:372
|
#: src/Content/Widget/VCard.php:96 src/Model/Profile.php:372
|
||||||
#: src/Module/Contact.php:632 src/Module/Profile/Profile.php:176
|
#: src/Module/Contact.php:628 src/Module/Profile/Profile.php:176
|
||||||
msgid "XMPP:"
|
msgid "XMPP:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Widget/VCard.php:97 src/Model/Profile.php:373
|
#: src/Content/Widget/VCard.php:97 src/Model/Profile.php:373
|
||||||
#: src/Module/Contact.php:634 src/Module/Profile/Profile.php:180
|
#: src/Module/Contact.php:630 src/Module/Profile/Profile.php:180
|
||||||
msgid "Matrix:"
|
msgid "Matrix:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -4713,7 +4713,7 @@ msgstr ""
|
||||||
msgid "Homepage:"
|
msgid "Homepage:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:371 src/Module/Contact.php:636
|
#: src/Model/Profile.php:371 src/Module/Contact.php:632
|
||||||
#: src/Module/Notifications/Introductions.php:168
|
#: src/Module/Notifications/Introductions.php:168
|
||||||
msgid "About:"
|
msgid "About:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -5114,8 +5114,8 @@ msgstr ""
|
||||||
msgid "List of active accounts"
|
msgid "List of active accounts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/BaseUsers.php:66 src/Module/Contact.php:785
|
#: src/Module/Admin/BaseUsers.php:66 src/Module/Contact.php:781
|
||||||
#: src/Module/Contact.php:845
|
#: src/Module/Contact.php:841
|
||||||
msgid "Pending"
|
msgid "Pending"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -5123,8 +5123,8 @@ msgstr ""
|
||||||
msgid "List of pending registrations"
|
msgid "List of pending registrations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/BaseUsers.php:74 src/Module/Contact.php:793
|
#: src/Module/Admin/BaseUsers.php:74 src/Module/Contact.php:789
|
||||||
#: src/Module/Contact.php:846
|
#: src/Module/Contact.php:842
|
||||||
msgid "Blocked"
|
msgid "Blocked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -5181,8 +5181,8 @@ msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Blocklist/Contact.php:85
|
#: src/Module/Admin/Blocklist/Contact.php:85
|
||||||
#: src/Module/Admin/Users/Blocked.php:142 src/Module/Admin/Users/Index.php:156
|
#: src/Module/Admin/Users/Blocked.php:142 src/Module/Admin/Users/Index.php:156
|
||||||
#: src/Module/Contact.php:609 src/Module/Contact.php:870
|
#: src/Module/Contact.php:605 src/Module/Contact.php:866
|
||||||
#: src/Module/Contact.php:1148
|
#: src/Module/Contact.php:1144
|
||||||
msgid "Unblock"
|
msgid "Unblock"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -6528,7 +6528,7 @@ msgid ""
|
||||||
"received."
|
"received."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:609 src/Module/Contact.php:538
|
#: src/Module/Admin/Site.php:609 src/Module/Contact.php:534
|
||||||
#: src/Module/Settings/TwoFactor/Index.php:118
|
#: src/Module/Settings/TwoFactor/Index.php:118
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -7100,7 +7100,7 @@ msgid "Posts from %s can't be unshared"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Api/Twitter/ContactEndpoint.php:63 src/Module/Contact.php:372
|
#: src/Module/Api/Twitter/ContactEndpoint.php:63 src/Module/Contact.php:372
|
||||||
#: src/Module/Contact.php:391
|
#: src/Module/Contact.php:387
|
||||||
msgid "Contact not found"
|
msgid "Contact not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -7221,12 +7221,12 @@ msgstr ""
|
||||||
msgid "Too Many Requests"
|
msgid "Too Many Requests"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/BaseProfile.php:51 src/Module/Contact.php:933
|
#: src/Module/BaseProfile.php:51 src/Module/Contact.php:929
|
||||||
msgid "Profile Details"
|
msgid "Profile Details"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/BaseProfile.php:72 src/Module/BaseProfile.php:75
|
#: src/Module/BaseProfile.php:72 src/Module/BaseProfile.php:75
|
||||||
#: src/Module/Contact.php:922
|
#: src/Module/Contact.php:918
|
||||||
msgid "Media"
|
msgid "Media"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -7308,363 +7308,363 @@ msgstr ""
|
||||||
msgid "Failed to update contact record."
|
msgid "Failed to update contact record."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:408
|
#: src/Module/Contact.php:404
|
||||||
msgid "You can't block yourself"
|
msgid "You can't block yourself"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:414
|
#: src/Module/Contact.php:410
|
||||||
msgid "Contact has been blocked"
|
msgid "Contact has been blocked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:414
|
#: src/Module/Contact.php:410
|
||||||
msgid "Contact has been unblocked"
|
msgid "Contact has been unblocked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:422
|
#: src/Module/Contact.php:418
|
||||||
msgid "You can't ignore yourself"
|
msgid "You can't ignore yourself"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:428
|
#: src/Module/Contact.php:424
|
||||||
msgid "Contact has been ignored"
|
msgid "Contact has been ignored"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:428
|
#: src/Module/Contact.php:424
|
||||||
msgid "Contact has been unignored"
|
msgid "Contact has been unignored"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:441
|
#: src/Module/Contact.php:437
|
||||||
msgid "Drop contact"
|
msgid "Drop contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:442 src/Module/Contact.php:866
|
#: src/Module/Contact.php:438 src/Module/Contact.php:862
|
||||||
msgid "Do you really want to delete this contact?"
|
msgid "Do you really want to delete this contact?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:443 src/Module/Contact/Revoke.php:98
|
#: src/Module/Contact.php:439 src/Module/Contact/Revoke.php:98
|
||||||
#: src/Module/Notifications/Introductions.php:123
|
#: src/Module/Notifications/Introductions.php:123
|
||||||
#: src/Module/OAuth/Acknowledge.php:47 src/Module/Register.php:117
|
#: src/Module/OAuth/Acknowledge.php:47 src/Module/Register.php:117
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:459
|
#: src/Module/Contact.php:455
|
||||||
msgid "Contact has been removed."
|
msgid "Contact has been removed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:480
|
#: src/Module/Contact.php:476
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "You are mutual friends with %s"
|
msgid "You are mutual friends with %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:484
|
#: src/Module/Contact.php:480
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "You are sharing with %s"
|
msgid "You are sharing with %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:488
|
#: src/Module/Contact.php:484
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s is sharing with you"
|
msgid "%s is sharing with you"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:512
|
#: src/Module/Contact.php:508
|
||||||
msgid "Private communications are not available for this contact."
|
msgid "Private communications are not available for this contact."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:514
|
#: src/Module/Contact.php:510
|
||||||
msgid "Never"
|
msgid "Never"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:517
|
#: src/Module/Contact.php:513
|
||||||
msgid "(Update was not successful)"
|
msgid "(Update was not successful)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:517
|
#: src/Module/Contact.php:513
|
||||||
msgid "(Update was successful)"
|
msgid "(Update was successful)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:519 src/Module/Contact.php:1119
|
#: src/Module/Contact.php:515 src/Module/Contact.php:1115
|
||||||
msgid "Suggest friends"
|
msgid "Suggest friends"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:523
|
#: src/Module/Contact.php:519
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Network type: %s"
|
msgid "Network type: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:528
|
#: src/Module/Contact.php:524
|
||||||
msgid "Communications lost with this contact!"
|
msgid "Communications lost with this contact!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:534
|
#: src/Module/Contact.php:530
|
||||||
msgid "Fetch further information for feeds"
|
msgid "Fetch further information for feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:536
|
#: src/Module/Contact.php:532
|
||||||
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:539
|
#: src/Module/Contact.php:535
|
||||||
msgid "Fetch information"
|
msgid "Fetch information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:540
|
#: src/Module/Contact.php:536
|
||||||
msgid "Fetch keywords"
|
msgid "Fetch keywords"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:541
|
#: src/Module/Contact.php:537
|
||||||
msgid "Fetch information and keywords"
|
msgid "Fetch information and keywords"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:553 src/Module/Contact.php:557
|
#: src/Module/Contact.php:549 src/Module/Contact.php:553
|
||||||
#: src/Module/Contact.php:560 src/Module/Contact.php:564
|
#: src/Module/Contact.php:556 src/Module/Contact.php:560
|
||||||
msgid "No mirroring"
|
msgid "No mirroring"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:554
|
#: src/Module/Contact.php:550
|
||||||
msgid "Mirror as forwarded posting"
|
msgid "Mirror as forwarded posting"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:555 src/Module/Contact.php:561
|
#: src/Module/Contact.php:551 src/Module/Contact.php:557
|
||||||
#: src/Module/Contact.php:565
|
#: src/Module/Contact.php:561
|
||||||
msgid "Mirror as my own posting"
|
msgid "Mirror as my own posting"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:558 src/Module/Contact.php:562
|
#: src/Module/Contact.php:554 src/Module/Contact.php:558
|
||||||
msgid "Native reshare"
|
msgid "Native reshare"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:577
|
#: src/Module/Contact.php:573
|
||||||
msgid "Contact Information / Notes"
|
msgid "Contact Information / Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:578
|
#: src/Module/Contact.php:574
|
||||||
msgid "Contact Settings"
|
msgid "Contact Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:586
|
#: src/Module/Contact.php:582
|
||||||
msgid "Contact"
|
msgid "Contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:590
|
#: src/Module/Contact.php:586
|
||||||
msgid "Their personal note"
|
msgid "Their personal note"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:592
|
#: src/Module/Contact.php:588
|
||||||
msgid "Edit contact notes"
|
msgid "Edit contact notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:595 src/Module/Contact.php:1085
|
#: src/Module/Contact.php:591 src/Module/Contact.php:1081
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Visit %s's profile [%s]"
|
msgid "Visit %s's profile [%s]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:596
|
#: src/Module/Contact.php:592
|
||||||
msgid "Block/Unblock contact"
|
msgid "Block/Unblock contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:597
|
#: src/Module/Contact.php:593
|
||||||
msgid "Ignore contact"
|
msgid "Ignore contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:598
|
#: src/Module/Contact.php:594
|
||||||
msgid "View conversations"
|
msgid "View conversations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:603
|
#: src/Module/Contact.php:599
|
||||||
msgid "Last update:"
|
msgid "Last update:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:605
|
#: src/Module/Contact.php:601
|
||||||
msgid "Update public posts"
|
msgid "Update public posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:607 src/Module/Contact.php:1129
|
#: src/Module/Contact.php:603 src/Module/Contact.php:1125
|
||||||
msgid "Update now"
|
msgid "Update now"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:610 src/Module/Contact.php:871
|
#: src/Module/Contact.php:606 src/Module/Contact.php:867
|
||||||
#: src/Module/Contact.php:1156
|
#: src/Module/Contact.php:1152
|
||||||
msgid "Unignore"
|
msgid "Unignore"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:614
|
#: src/Module/Contact.php:610
|
||||||
msgid "Currently blocked"
|
msgid "Currently blocked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:615
|
#: src/Module/Contact.php:611
|
||||||
msgid "Currently ignored"
|
msgid "Currently ignored"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:616
|
#: src/Module/Contact.php:612
|
||||||
msgid "Currently archived"
|
msgid "Currently archived"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:617
|
#: src/Module/Contact.php:613
|
||||||
msgid "Awaiting connection acknowledge"
|
msgid "Awaiting connection acknowledge"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:618 src/Module/Notifications/Introductions.php:171
|
#: src/Module/Contact.php:614 src/Module/Notifications/Introductions.php:171
|
||||||
msgid "Hide this contact from others"
|
msgid "Hide this contact from others"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:618
|
#: src/Module/Contact.php:614
|
||||||
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:619
|
#: src/Module/Contact.php:615
|
||||||
msgid "Notification for new posts"
|
msgid "Notification for new posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:619
|
#: src/Module/Contact.php:615
|
||||||
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:621
|
#: src/Module/Contact.php:617
|
||||||
msgid "Keyword Deny List"
|
msgid "Keyword Deny List"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:621
|
#: src/Module/Contact.php:617
|
||||||
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:639 src/Module/Settings/TwoFactor/Index.php:132
|
#: src/Module/Contact.php:635 src/Module/Settings/TwoFactor/Index.php:132
|
||||||
msgid "Actions"
|
msgid "Actions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:646
|
#: src/Module/Contact.php:642
|
||||||
msgid "Mirror postings from this contact"
|
msgid "Mirror postings from this contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:648
|
#: src/Module/Contact.php:644
|
||||||
msgid ""
|
msgid ""
|
||||||
"Mark this contact as remote_self, this will cause friendica to repost new "
|
"Mark this contact as remote_self, this will cause friendica to repost new "
|
||||||
"entries from this contact."
|
"entries from this contact."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:780
|
#: src/Module/Contact.php:776
|
||||||
msgid "Show all contacts"
|
msgid "Show all contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:788
|
#: src/Module/Contact.php:784
|
||||||
msgid "Only show pending contacts"
|
msgid "Only show pending contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:796
|
#: src/Module/Contact.php:792
|
||||||
msgid "Only show blocked contacts"
|
msgid "Only show blocked contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:801 src/Module/Contact.php:848
|
#: src/Module/Contact.php:797 src/Module/Contact.php:844
|
||||||
#: src/Object/Post.php:309
|
#: src/Object/Post.php:309
|
||||||
msgid "Ignored"
|
msgid "Ignored"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:804
|
#: src/Module/Contact.php:800
|
||||||
msgid "Only show ignored contacts"
|
msgid "Only show ignored contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:809 src/Module/Contact.php:849
|
#: src/Module/Contact.php:805 src/Module/Contact.php:845
|
||||||
msgid "Archived"
|
msgid "Archived"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:812
|
#: src/Module/Contact.php:808
|
||||||
msgid "Only show archived contacts"
|
msgid "Only show archived contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:817 src/Module/Contact.php:847
|
#: src/Module/Contact.php:813 src/Module/Contact.php:843
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:820
|
#: src/Module/Contact.php:816
|
||||||
msgid "Only show hidden contacts"
|
msgid "Only show hidden contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:828
|
#: src/Module/Contact.php:824
|
||||||
msgid "Organize your contact groups"
|
msgid "Organize your contact groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:860
|
#: src/Module/Contact.php:856
|
||||||
msgid "Search your contacts"
|
msgid "Search your contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:861 src/Module/Search/Index.php:194
|
#: src/Module/Contact.php:857 src/Module/Search/Index.php:194
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Results for: %s"
|
msgid "Results for: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:869
|
#: src/Module/Contact.php:865
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:874
|
#: src/Module/Contact.php:870
|
||||||
msgid "Batch Actions"
|
msgid "Batch Actions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:909
|
#: src/Module/Contact.php:905
|
||||||
msgid "Conversations started by this contact"
|
msgid "Conversations started by this contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:914
|
#: src/Module/Contact.php:910
|
||||||
msgid "Posts and Comments"
|
msgid "Posts and Comments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:925
|
#: src/Module/Contact.php:921
|
||||||
msgid "Posts containing media objects"
|
msgid "Posts containing media objects"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:940
|
#: src/Module/Contact.php:936
|
||||||
msgid "View all known contacts"
|
msgid "View all known contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:950
|
#: src/Module/Contact.php:946
|
||||||
msgid "Advanced Contact Settings"
|
msgid "Advanced Contact Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:1044
|
#: src/Module/Contact.php:1040
|
||||||
msgid "Mutual Friendship"
|
msgid "Mutual Friendship"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:1048
|
#: src/Module/Contact.php:1044
|
||||||
msgid "is a fan of yours"
|
msgid "is a fan of yours"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:1052
|
#: src/Module/Contact.php:1048
|
||||||
msgid "you are a fan of"
|
msgid "you are a fan of"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:1070
|
#: src/Module/Contact.php:1066
|
||||||
msgid "Pending outgoing contact request"
|
msgid "Pending outgoing contact request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:1072
|
#: src/Module/Contact.php:1068
|
||||||
msgid "Pending incoming contact request"
|
msgid "Pending incoming contact request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:1139
|
#: src/Module/Contact.php:1135
|
||||||
msgid "Refetch contact data"
|
msgid "Refetch contact data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:1150
|
#: src/Module/Contact.php:1146
|
||||||
msgid "Toggle Blocked status"
|
msgid "Toggle Blocked status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:1158
|
#: src/Module/Contact.php:1154
|
||||||
msgid "Toggle Ignored status"
|
msgid "Toggle Ignored status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:1166 src/Module/Contact/Revoke.php:96
|
#: src/Module/Contact.php:1162 src/Module/Contact/Revoke.php:96
|
||||||
msgid "Revoke Follow"
|
msgid "Revoke Follow"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:1168
|
#: src/Module/Contact.php:1164
|
||||||
msgid "Revoke the follow from this contact"
|
msgid "Revoke the follow from this contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:1177
|
#: src/Module/Contact.php:1173
|
||||||
msgid "Delete contact"
|
msgid "Delete contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue