Merge pull request #10800 from MrPetovan/task/10739-block
Add block and unblock hooks
This commit is contained in:
commit
2a442952b6
|
@ -510,7 +510,6 @@ Called when unfollowing a remote contact on a non-native network (like Twitter)
|
||||||
|
|
||||||
Hook data:
|
Hook data:
|
||||||
- **contact** (input): the remote contact (uid = local unfollowing user id) array.
|
- **contact** (input): the remote contact (uid = local unfollowing user id) array.
|
||||||
- **two_way** (input): wether to stop sharing with the remote contact as well.
|
|
||||||
- **result** (output): wether the unfollowing is successful or not.
|
- **result** (output): wether the unfollowing is successful or not.
|
||||||
|
|
||||||
### revoke_follow
|
### revoke_follow
|
||||||
|
@ -521,6 +520,24 @@ Hook data:
|
||||||
- **contact** (input): the remote contact (uid = local revoking user id) array.
|
- **contact** (input): the remote contact (uid = local revoking user id) array.
|
||||||
- **result** (output): a boolean value indicating wether the operation was successful or not.
|
- **result** (output): a boolean value indicating wether the operation was successful or not.
|
||||||
|
|
||||||
|
### block
|
||||||
|
|
||||||
|
Called when blocking a remote contact on a non-native network (like Twitter).
|
||||||
|
|
||||||
|
Hook data:
|
||||||
|
- **contact** (input): the remote contact (uid = 0) array.
|
||||||
|
- **uid** (input): the user id to issue the block for.
|
||||||
|
- **result** (output): a boolean value indicating wether the operation was successful or not.
|
||||||
|
|
||||||
|
### unblock
|
||||||
|
|
||||||
|
Called when unblocking a remote contact on a non-native network (like Twitter).
|
||||||
|
|
||||||
|
Hook data:
|
||||||
|
- **contact** (input): the remote contact (uid = 0) array.
|
||||||
|
- **uid** (input): the user id to revoke the block for.
|
||||||
|
- **result** (output): a boolean value indicating wether the operation was successful or not.
|
||||||
|
|
||||||
## Complete list of hook callbacks
|
## Complete list of hook callbacks
|
||||||
|
|
||||||
Here is a complete list of all hook callbacks with file locations (as of 24-Sep-2018). Please see the source for details of any hooks not documented above.
|
Here is a complete list of all hook callbacks with file locations (as of 24-Sep-2018). Please see the source for details of any hooks not documented above.
|
||||||
|
@ -778,7 +795,9 @@ Here is a complete list of all hook callbacks with file locations (as of 24-Sep-
|
||||||
Hook::callAll('support_follow', $hook_data);
|
Hook::callAll('support_follow', $hook_data);
|
||||||
Hook::callAll('support_revoke_follow', $hook_data);
|
Hook::callAll('support_revoke_follow', $hook_data);
|
||||||
Hook::callAll('unfollow', $hook_data);
|
Hook::callAll('unfollow', $hook_data);
|
||||||
Kook::callAll('revoke_follow', $hook_data);
|
Hook::callAll('revoke_follow', $hook_data);
|
||||||
|
Hook::callAll('block', $hook_data);
|
||||||
|
Hook::callAll('unblock', $hook_data);
|
||||||
|
|
||||||
### src/Core/StorageManager
|
### src/Core/StorageManager
|
||||||
|
|
||||||
|
|
|
@ -418,7 +418,9 @@ Eine komplette Liste aller Hook-Callbacks mit den zugehörigen Dateien (am 01-Ap
|
||||||
Hook::callAll('support_follow', $hook_data);
|
Hook::callAll('support_follow', $hook_data);
|
||||||
Hook::callAll('support_revoke_follow', $hook_data);
|
Hook::callAll('support_revoke_follow', $hook_data);
|
||||||
Hook::callAll('unfollow', $hook_data);
|
Hook::callAll('unfollow', $hook_data);
|
||||||
Kook::callAll('revoke_follow', $hook_data);
|
Hook::callAll('revoke_follow', $hook_data);
|
||||||
|
Hook::callAll('block', $hook_data);
|
||||||
|
Hook::callAll('unblock', $hook_data);
|
||||||
|
|
||||||
### src/Core/StorageManager
|
### src/Core/StorageManager
|
||||||
|
|
||||||
|
|
|
@ -3826,10 +3826,8 @@ function api_friendships_destroy($type)
|
||||||
throw new HTTPException\NotFoundException('Not following Contact');
|
throw new HTTPException\NotFoundException('Not following Contact');
|
||||||
}
|
}
|
||||||
|
|
||||||
$dissolve = ($contact['rel'] == Contact::SHARING);
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$result = Contact::terminateFriendship($owner, $contact, $dissolve);
|
$result = Contact::terminateFriendship($owner, $contact);
|
||||||
|
|
||||||
if ($result === null) {
|
if ($result === null) {
|
||||||
Logger::notice(API_LOG_PREFIX . 'Not supported for {network}', ['module' => 'api', 'action' => 'friendships_destroy', 'network' => $contact['network']]);
|
Logger::notice(API_LOG_PREFIX . 'Not supported for {network}', ['module' => 'api', 'action' => 'friendships_destroy', 'network' => $contact['network']]);
|
||||||
|
@ -3840,7 +3838,7 @@ function api_friendships_destroy($type)
|
||||||
throw new HTTPException\ServiceUnavailableException('Unable to unfollow this contact, please retry in a few minutes or contact your administrator.');
|
throw new HTTPException\ServiceUnavailableException('Unable to unfollow this contact, please retry in a few minutes or contact your administrator.');
|
||||||
}
|
}
|
||||||
} catch (Exception $e) {
|
} catch (Exception $e) {
|
||||||
Logger::error(API_LOG_PREFIX . $e->getMessage(), ['owner' => $owner, 'contact' => $contact, 'dissolve' => $dissolve]);
|
Logger::error(API_LOG_PREFIX . $e->getMessage(), ['owner' => $owner, 'contact' => $contact]);
|
||||||
throw new HTTPException\InternalServerErrorException('Unable to unfollow this contact, please contact your administrator');
|
throw new HTTPException\InternalServerErrorException('Unable to unfollow this contact, please contact your administrator');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -137,13 +137,11 @@ function unfollow_process(string $url)
|
||||||
// NOTREACHED
|
// NOTREACHED
|
||||||
}
|
}
|
||||||
|
|
||||||
$dissolve = ($contact['rel'] == Contact::SHARING);
|
|
||||||
|
|
||||||
$notice_message = '';
|
$notice_message = '';
|
||||||
$return_path = $base_return_path . '/' . $contact['id'];
|
$return_path = $base_return_path . '/' . $contact['id'];
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$result = Contact::terminateFriendship($owner, $contact, $dissolve);
|
$result = Contact::terminateFriendship($owner, $contact);
|
||||||
|
|
||||||
if ($result === null) {
|
if ($result === null) {
|
||||||
$notice_message = DI::l10n()->t('Unfollowing is currently not supported by this contact\'s network.');
|
$notice_message = DI::l10n()->t('Unfollowing is currently not supported by this contact\'s network.');
|
||||||
|
@ -157,7 +155,7 @@ function unfollow_process(string $url)
|
||||||
$notice_message = DI::l10n()->t('Contact was successfully unfollowed');
|
$notice_message = DI::l10n()->t('Contact was successfully unfollowed');
|
||||||
}
|
}
|
||||||
} catch (Exception $e) {
|
} catch (Exception $e) {
|
||||||
DI::logger()->error($e->getMessage(), ['owner' => $owner, 'contact' => $contact, 'dissolve' => $dissolve]);
|
DI::logger()->error($e->getMessage(), ['owner' => $owner, 'contact' => $contact]);
|
||||||
$notice_message = DI::l10n()->t('Unable to unfollow this contact, please contact your administrator');
|
$notice_message = DI::l10n()->t('Unable to unfollow this contact, please contact your administrator');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -207,12 +207,11 @@ class Protocol
|
||||||
*
|
*
|
||||||
* @param array $user User unfriending
|
* @param array $user User unfriending
|
||||||
* @param array $contact Contact unfriended
|
* @param array $contact Contact unfriended
|
||||||
* @param boolean $two_way Revoke eventual inbound follow as well
|
|
||||||
* @return bool|null true if successful, false if not, null if no action was performed
|
* @return bool|null true if successful, false if not, null if no action was performed
|
||||||
* @throws HTTPException\InternalServerErrorException
|
* @throws HTTPException\InternalServerErrorException
|
||||||
* @throws \ImagickException
|
* @throws \ImagickException
|
||||||
*/
|
*/
|
||||||
public static function terminateFriendship(array $user, array $contact, bool $two_way = false): bool
|
public static function terminateFriendship(array $user, array $contact): bool
|
||||||
{
|
{
|
||||||
if (empty($contact['network'])) {
|
if (empty($contact['network'])) {
|
||||||
throw new \InvalidArgumentException('Missing network key in contact array');
|
throw new \InvalidArgumentException('Missing network key in contact array');
|
||||||
|
@ -243,17 +242,12 @@ class Protocol
|
||||||
} elseif ($protocol == Protocol::DIASPORA) {
|
} elseif ($protocol == Protocol::DIASPORA) {
|
||||||
return Diaspora::sendUnshare($user, $contact) > 0;
|
return Diaspora::sendUnshare($user, $contact) > 0;
|
||||||
} elseif ($protocol == Protocol::ACTIVITYPUB) {
|
} elseif ($protocol == Protocol::ACTIVITYPUB) {
|
||||||
if ($two_way) {
|
|
||||||
ActivityPub\Transmitter::sendContactReject($contact['url'], $contact['hub-verify'], $user['uid']);
|
|
||||||
}
|
|
||||||
|
|
||||||
return ActivityPub\Transmitter::sendContactUndo($contact['url'], $contact['id'], $user['uid']);
|
return ActivityPub\Transmitter::sendContactUndo($contact['url'], $contact['id'], $user['uid']);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Catch-all hook for connector addons
|
// Catch-all hook for connector addons
|
||||||
$hook_data = [
|
$hook_data = [
|
||||||
'contact' => $contact,
|
'contact' => $contact,
|
||||||
'two_way' => $two_way,
|
|
||||||
'result' => null
|
'result' => null
|
||||||
];
|
];
|
||||||
Hook::callAll('unfollow', $hook_data);
|
Hook::callAll('unfollow', $hook_data);
|
||||||
|
@ -265,6 +259,7 @@ class Protocol
|
||||||
* Revoke an incoming follow from the provided contact
|
* Revoke an incoming follow from the provided contact
|
||||||
*
|
*
|
||||||
* @param array $contact Private contact (uid != 0) array
|
* @param array $contact Private contact (uid != 0) array
|
||||||
|
* @return bool|null true if successful, false if not, null if no action was performed
|
||||||
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
||||||
* @throws \ImagickException
|
* @throws \ImagickException
|
||||||
*/
|
*/
|
||||||
|
@ -292,4 +287,46 @@ class Protocol
|
||||||
|
|
||||||
return $hook_data['result'];
|
return $hook_data['result'];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Send a block message to a remote server. Only useful for connector addons.
|
||||||
|
*
|
||||||
|
* @param array $contact Public contact record to block
|
||||||
|
* @param int $uid User issuing the block
|
||||||
|
* @return bool|null true if successful, false if not, null if no action was performed
|
||||||
|
* @throws HTTPException\InternalServerErrorException
|
||||||
|
*/
|
||||||
|
public static function block(array $contact, int $uid): ?bool
|
||||||
|
{
|
||||||
|
// Catch-all hook for connector addons
|
||||||
|
$hook_data = [
|
||||||
|
'contact' => $contact,
|
||||||
|
'uid' => $uid,
|
||||||
|
'result' => null,
|
||||||
|
];
|
||||||
|
Hook::callAll('block', $hook_data);
|
||||||
|
|
||||||
|
return $hook_data['result'];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Send an unblock message to a remote server. Only useful for connector addons.
|
||||||
|
*
|
||||||
|
* @param array $contact Public contact record to unblock
|
||||||
|
* @param int $uid User revoking the block
|
||||||
|
* @return bool|null true if successful, false if not, null if no action was performed
|
||||||
|
* @throws HTTPException\InternalServerErrorException
|
||||||
|
*/
|
||||||
|
public static function unblock(array $contact, int $uid): ?bool
|
||||||
|
{
|
||||||
|
// Catch-all hook for connector addons
|
||||||
|
$hook_data = [
|
||||||
|
'contact' => $contact,
|
||||||
|
'uid' => $uid,
|
||||||
|
'result' => null,
|
||||||
|
];
|
||||||
|
Hook::callAll('unblock', $hook_data);
|
||||||
|
|
||||||
|
return $hook_data['result'];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -830,17 +830,17 @@ class Contact
|
||||||
* Sends an unfriend message. Removes the contact for two-way unfriending or sharing only protocols (feed an mail)
|
* Sends an unfriend message. Removes the contact for two-way unfriending or sharing only protocols (feed an mail)
|
||||||
*
|
*
|
||||||
* @param array $user User unfriending
|
* @param array $user User unfriending
|
||||||
* @param array $contact Contact unfriended
|
* @param array $contact Contact (uid != 0) unfriended
|
||||||
* @param boolean $two_way Revoke eventual inbound follow as well
|
* @param boolean $two_way Revoke eventual inbound follow as well
|
||||||
* @return bool|null true if successful, false if not, null if no action was performed
|
* @return bool|null true if successful, false if not, null if no action was performed
|
||||||
* @throws HTTPException\InternalServerErrorException
|
* @throws HTTPException\InternalServerErrorException
|
||||||
* @throws \ImagickException
|
* @throws \ImagickException
|
||||||
*/
|
*/
|
||||||
public static function terminateFriendship(array $user, array $contact, bool $two_way = false): bool
|
public static function terminateFriendship(array $user, array $contact): bool
|
||||||
{
|
{
|
||||||
$result = Protocol::terminateFriendship($user, $contact, $two_way);
|
$result = Protocol::terminateFriendship($user, $contact);
|
||||||
|
|
||||||
if ($two_way || in_array($contact['network'], [Protocol::FEED, Protocol::MAIL])) {
|
if ($contact['rel'] == Contact::SHARING || in_array($contact['network'], [Protocol::FEED, Protocol::MAIL])) {
|
||||||
self::remove($contact['id']);
|
self::remove($contact['id']);
|
||||||
} else {
|
} else {
|
||||||
self::update(['rel' => Contact::FOLLOWER], ['id' => $contact['id']]);
|
self::update(['rel' => Contact::FOLLOWER], ['id' => $contact['id']]);
|
||||||
|
@ -872,7 +872,11 @@ class Contact
|
||||||
// A null value here means the remote network doesn't support explicit follow revocation, we can still
|
// A null value here means the remote network doesn't support explicit follow revocation, we can still
|
||||||
// break the locally recorded relationship
|
// break the locally recorded relationship
|
||||||
if ($result !== false) {
|
if ($result !== false) {
|
||||||
DBA::update('contact', ['rel' => $contact['rel'] == self::FRIEND ? self::SHARING : self::NOTHING], ['id' => $contact['id']]);
|
if ($contact['rel'] == self::FRIEND) {
|
||||||
|
self::update(['rel' => self::SHARING], ['id' => $contact['id']]);
|
||||||
|
} else {
|
||||||
|
self::remove($contact['id']);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return $result;
|
return $result;
|
||||||
|
|
|
@ -23,6 +23,7 @@ namespace Friendica\Model\Contact;
|
||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
use Friendica\Core\Logger;
|
use Friendica\Core\Logger;
|
||||||
|
use Friendica\Core\Protocol;
|
||||||
use Friendica\Core\System;
|
use Friendica\Core\System;
|
||||||
use Friendica\Database\Database;
|
use Friendica\Database\Database;
|
||||||
use Friendica\Database\DBA;
|
use Friendica\Database\DBA;
|
||||||
|
@ -145,6 +146,13 @@ class User
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$contact = Contact::getById($cdata['public']);
|
||||||
|
if ($blocked) {
|
||||||
|
Protocol::block($contact);
|
||||||
|
} else {
|
||||||
|
Protocol::unblock($contact);
|
||||||
|
}
|
||||||
|
|
||||||
if ($cdata['user'] != 0) {
|
if ($cdata['user'] != 0) {
|
||||||
DBA::update('contact', ['blocked' => $blocked], ['id' => $cdata['user'], 'pending' => false]);
|
DBA::update('contact', ['blocked' => $blocked], ['id' => $cdata['user'], 'pending' => false]);
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,6 +24,7 @@ namespace Friendica\Module\Api\Mastodon\Accounts;
|
||||||
use Friendica\Core\System;
|
use Friendica\Core\System;
|
||||||
use Friendica\DI;
|
use Friendica\DI;
|
||||||
use Friendica\Model\Contact;
|
use Friendica\Model\Contact;
|
||||||
|
use Friendica\Model\User;
|
||||||
use Friendica\Module\BaseApi;
|
use Friendica\Module\BaseApi;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -40,7 +41,26 @@ class Block extends BaseApi
|
||||||
DI::mstdnError()->UnprocessableEntity();
|
DI::mstdnError()->UnprocessableEntity();
|
||||||
}
|
}
|
||||||
|
|
||||||
Contact\User::setBlocked($parameters['id'], $uid, true);
|
$owner = User::getOwnerDataById($uid);
|
||||||
|
if (empty($owner)) {
|
||||||
|
DI::mstdnError()->Forbidden();
|
||||||
|
}
|
||||||
|
|
||||||
|
$cdata = Contact::getPublicAndUserContactID($parameters['id'], $uid);
|
||||||
|
if (empty($cdata['user'])) {
|
||||||
|
DI::mstdnError()->RecordNotFound();
|
||||||
|
}
|
||||||
|
|
||||||
|
$contact = Contact::getById($cdata['user']);
|
||||||
|
if (empty($contact)) {
|
||||||
|
DI::mstdnError()->RecordNotFound();
|
||||||
|
}
|
||||||
|
|
||||||
|
Contact\User::setBlocked($cdata['user'], $uid, true);
|
||||||
|
|
||||||
|
// Mastodon-expected behavior: relationship is severed on block
|
||||||
|
Contact::terminateFriendship($owner, $contact);
|
||||||
|
Contact::revokeFollow($contact);
|
||||||
|
|
||||||
System::jsonExit(DI::mstdnRelationship()->createFromContactId($parameters['id'], $uid)->toArray());
|
System::jsonExit(DI::mstdnRelationship()->createFromContactId($parameters['id'], $uid)->toArray());
|
||||||
}
|
}
|
||||||
|
|
|
@ -69,7 +69,8 @@ class Contact extends BaseModule
|
||||||
$count_actions = 0;
|
$count_actions = 0;
|
||||||
foreach ($orig_records as $orig_record) {
|
foreach ($orig_records as $orig_record) {
|
||||||
$cdata = Model\Contact::getPublicAndUserContactID($orig_record['id'], local_user());
|
$cdata = Model\Contact::getPublicAndUserContactID($orig_record['id'], local_user());
|
||||||
if (empty($cdata)) {
|
if (empty($cdata) || public_contact() === $cdata['public']) {
|
||||||
|
// No action available on your own contact
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -79,7 +80,7 @@ class Contact extends BaseModule
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!empty($_POST['contacts_batch_block'])) {
|
if (!empty($_POST['contacts_batch_block'])) {
|
||||||
self::toggleBlockContact($cdata['public']);
|
self::toggleBlockContact($cdata['public'], local_user());
|
||||||
$count_actions++;
|
$count_actions++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -204,12 +205,13 @@ class Contact extends BaseModule
|
||||||
* Toggles the blocked status of a contact identified by id.
|
* Toggles the blocked status of a contact identified by id.
|
||||||
*
|
*
|
||||||
* @param int $contact_id Id of the contact with uid = 0
|
* @param int $contact_id Id of the contact with uid = 0
|
||||||
|
* @param int $owner_id Id of the user we want to block the contact for
|
||||||
* @throws \Exception
|
* @throws \Exception
|
||||||
*/
|
*/
|
||||||
private static function toggleBlockContact(int $contact_id)
|
private static function toggleBlockContact(int $contact_id, int $owner_id)
|
||||||
{
|
{
|
||||||
$blocked = !Model\Contact\User::isBlocked($contact_id, local_user());
|
$blocked = !Model\Contact\User::isBlocked($contact_id, $owner_id);
|
||||||
Model\Contact\User::setBlocked($contact_id, local_user(), $blocked);
|
Model\Contact\User::setBlocked($contact_id, $owner_id, $blocked);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -373,7 +375,7 @@ class Contact extends BaseModule
|
||||||
throw new BadRequestException(DI::l10n()->t('You can\'t block yourself'));
|
throw new BadRequestException(DI::l10n()->t('You can\'t block yourself'));
|
||||||
}
|
}
|
||||||
|
|
||||||
self::toggleBlockContact($cdata['public']);
|
self::toggleBlockContact($cdata['public'], local_user());
|
||||||
|
|
||||||
$blocked = Model\Contact\User::isBlocked($contact_id, local_user());
|
$blocked = Model\Contact\User::isBlocked($contact_id, local_user());
|
||||||
info(($blocked ? DI::l10n()->t('Contact has been blocked') : DI::l10n()->t('Contact has been unblocked')));
|
info(($blocked ? DI::l10n()->t('Contact has been blocked') : DI::l10n()->t('Contact has been unblocked')));
|
||||||
|
|
|
@ -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 16:06-0400\n"
|
"POT-Creation-Date: 2021-10-02 16:56-0400\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"
|
||||||
|
@ -37,7 +37,7 @@ msgstr[1] ""
|
||||||
msgid "Monthly posting limit of %d post reached. The post was rejected."
|
msgid "Monthly posting limit of %d post reached. The post was rejected."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/api.php:4430 mod/photos.php:89 mod/photos.php:198 mod/photos.php:621
|
#: include/api.php:4428 mod/photos.php:89 mod/photos.php:198 mod/photos.php:621
|
||||||
#: mod/photos.php:1032 mod/photos.php:1049 mod/photos.php:1598
|
#: mod/photos.php:1032 mod/photos.php:1049 mod/photos.php:1598
|
||||||
#: src/Model/User.php:1169 src/Model/User.php:1177 src/Model/User.php:1185
|
#: src/Model/User.php:1169 src/Model/User.php:1177 src/Model/User.php:1185
|
||||||
#: src/Module/Settings/Profile/Photo/Crop.php:101
|
#: src/Module/Settings/Profile/Photo/Crop.php:101
|
||||||
|
@ -311,7 +311,7 @@ msgstr ""
|
||||||
#: mod/wallmessage.php:96 mod/wallmessage.php:120 src/Module/Attach.php:55
|
#: mod/wallmessage.php:96 mod/wallmessage.php:120 src/Module/Attach.php:55
|
||||||
#: src/Module/BaseApi.php:79 src/Module/BaseApi.php:88
|
#: src/Module/BaseApi.php:79 src/Module/BaseApi.php:88
|
||||||
#: src/Module/BaseApi.php:97 src/Module/BaseApi.php:106
|
#: src/Module/BaseApi.php:97 src/Module/BaseApi.php:106
|
||||||
#: src/Module/BaseNotifications.php:88 src/Module/Contact.php:326
|
#: src/Module/BaseNotifications.php:88 src/Module/Contact.php:328
|
||||||
#: src/Module/Contact/Advanced.php:44 src/Module/Delegation.php:118
|
#: src/Module/Contact/Advanced.php:44 src/Module/Delegation.php:118
|
||||||
#: src/Module/FollowConfirm.php:16 src/Module/FriendSuggest.php:44
|
#: src/Module/FollowConfirm.php:16 src/Module/FriendSuggest.php:44
|
||||||
#: src/Module/Group.php:45 src/Module/Group.php:90 src/Module/Invite.php:41
|
#: src/Module/Group.php:45 src/Module/Group.php:90 src/Module/Invite.php:41
|
||||||
|
@ -637,7 +637,7 @@ msgstr ""
|
||||||
|
|
||||||
#: mod/events.php:556 src/Content/Widget/VCard.php:98 src/Model/Event.php:86
|
#: mod/events.php:556 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:563
|
#: src/Model/Profile.php:367 src/Module/Contact.php:565
|
||||||
#: 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:"
|
||||||
|
@ -654,7 +654,7 @@ msgstr ""
|
||||||
#: mod/events.php:568 mod/message.php:201 mod/message.php:364
|
#: mod/events.php:568 mod/message.php:201 mod/message.php:364
|
||||||
#: mod/photos.php:942 mod/photos.php:1043 mod/photos.php:1331
|
#: mod/photos.php:942 mod/photos.php:1043 mod/photos.php:1331
|
||||||
#: mod/photos.php:1372 mod/photos.php:1428 mod/photos.php:1502
|
#: mod/photos.php:1372 mod/photos.php:1428 mod/photos.php:1502
|
||||||
#: src/Module/Admin/Item/Source.php:65 src/Module/Contact.php:521
|
#: src/Module/Admin/Item/Source.php:65 src/Module/Contact.php:523
|
||||||
#: 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
|
||||||
|
@ -673,7 +673,7 @@ msgstr ""
|
||||||
msgid "Basic"
|
msgid "Basic"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/events.php:570 src/Module/Admin/Site.php:505 src/Module/Contact.php:878
|
#: mod/events.php:570 src/Module/Admin/Site.php:505 src/Module/Contact.php:880
|
||||||
#: src/Module/Profile/Profile.php:249
|
#: src/Module/Profile/Profile.php:249
|
||||||
msgid "Advanced"
|
msgid "Advanced"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -717,7 +717,7 @@ msgid "OStatus support is disabled. Contact can't be added."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/follow.php:138 src/Content/Item.php:463 src/Content/Widget.php:76
|
#: mod/follow.php:138 src/Content/Item.php:463 src/Content/Widget.php:76
|
||||||
#: src/Model/Contact.php:1067 src/Model/Contact.php:1079
|
#: src/Model/Contact.php:1071 src/Model/Contact.php:1083
|
||||||
#: view/theme/vier/theme.php:172
|
#: view/theme/vier/theme.php:172
|
||||||
msgid "Connect/Follow"
|
msgid "Connect/Follow"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -731,13 +731,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:559
|
#: src/Module/Admin/Blocklist/Contact.php:100 src/Module/Contact.php:561
|
||||||
#: 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:571
|
#: mod/follow.php:142 src/Module/Contact.php:573
|
||||||
#: 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:"
|
||||||
|
@ -753,7 +753,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:848
|
#: src/Module/Contact.php:850
|
||||||
msgid "Status Messages and Posts"
|
msgid "Status Messages and Posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -1316,7 +1316,7 @@ msgid "Rotate CCW (left)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:1369 mod/photos.php:1425 mod/photos.php:1499
|
#: mod/photos.php:1369 mod/photos.php:1425 mod/photos.php:1499
|
||||||
#: src/Module/Contact.php:1008 src/Module/Item/Compose.php:148
|
#: src/Module/Contact.php:1010 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 ""
|
||||||
|
@ -2288,21 +2288,21 @@ msgstr ""
|
||||||
msgid "Disconnect/Unfollow"
|
msgid "Disconnect/Unfollow"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/unfollow.php:149
|
#: mod/unfollow.php:147
|
||||||
msgid "Unfollowing is currently not supported by this contact's network."
|
msgid "Unfollowing is currently not supported by this contact's network."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/unfollow.php:153
|
#: mod/unfollow.php:151
|
||||||
msgid ""
|
msgid ""
|
||||||
"Unable to unfollow this contact, please retry in a few minutes or contact "
|
"Unable to unfollow this contact, please retry in a few minutes or contact "
|
||||||
"your administrator."
|
"your administrator."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/unfollow.php:157
|
#: mod/unfollow.php:155
|
||||||
msgid "Contact was successfully unfollowed"
|
msgid "Contact was successfully unfollowed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/unfollow.php:161
|
#: mod/unfollow.php:159
|
||||||
msgid "Unable to unfollow this contact, please contact your administrator"
|
msgid "Unable to unfollow this contact, please contact your administrator"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -2395,16 +2395,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:771 src/Module/PermissionTooltip.php:77
|
#: src/Module/Contact.php:773 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:772
|
#: src/BaseModule.php:217 src/Content/Widget.php:239 src/Module/Contact.php:774
|
||||||
msgid "Following"
|
msgid "Following"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/BaseModule.php:222 src/Content/Widget.php:240 src/Module/Contact.php:773
|
#: src/BaseModule.php:222 src/Content/Widget.php:240 src/Module/Contact.php:775
|
||||||
msgid "Mutual friends"
|
msgid "Mutual friends"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -3002,43 +3002,43 @@ msgstr ""
|
||||||
msgid "Follow Thread"
|
msgid "Follow Thread"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Item.php:443 src/Model/Contact.php:1072
|
#: src/Content/Item.php:443 src/Model/Contact.php:1076
|
||||||
msgid "View Status"
|
msgid "View Status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Item.php:444 src/Content/Item.php:466 src/Model/Contact.php:1006
|
#: src/Content/Item.php:444 src/Content/Item.php:466 src/Model/Contact.php:1010
|
||||||
#: src/Model/Contact.php:1064 src/Model/Contact.php:1073
|
#: src/Model/Contact.php:1068 src/Model/Contact.php:1077
|
||||||
#: src/Module/Directory.php:160 src/Module/Settings/Profile/Index.php:223
|
#: src/Module/Directory.php:160 src/Module/Settings/Profile/Index.php:223
|
||||||
msgid "View Profile"
|
msgid "View Profile"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Item.php:445 src/Model/Contact.php:1074
|
#: src/Content/Item.php:445 src/Model/Contact.php:1078
|
||||||
msgid "View Photos"
|
msgid "View Photos"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Item.php:446 src/Model/Contact.php:1065
|
#: src/Content/Item.php:446 src/Model/Contact.php:1069
|
||||||
#: src/Model/Contact.php:1075
|
#: src/Model/Contact.php:1079
|
||||||
msgid "Network Posts"
|
msgid "Network Posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Item.php:447 src/Model/Contact.php:1066
|
#: src/Content/Item.php:447 src/Model/Contact.php:1070
|
||||||
#: src/Model/Contact.php:1076
|
#: src/Model/Contact.php:1080
|
||||||
msgid "View Contact"
|
msgid "View Contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Item.php:448 src/Model/Contact.php:1077
|
#: src/Content/Item.php:448 src/Model/Contact.php:1081
|
||||||
msgid "Send PM"
|
msgid "Send PM"
|
||||||
msgstr ""
|
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:542 src/Module/Contact.php:802
|
#: src/Module/Contact.php:544 src/Module/Contact.php:804
|
||||||
#: src/Module/Contact.php:1079
|
#: src/Module/Contact.php:1081
|
||||||
msgid "Block"
|
msgid "Block"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Item.php:450 src/Module/Contact.php:543
|
#: src/Content/Item.php:450 src/Module/Contact.php:545
|
||||||
#: src/Module/Contact.php:803 src/Module/Contact.php:1087
|
#: src/Module/Contact.php:805 src/Module/Contact.php:1089
|
||||||
#: 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
|
||||||
|
@ -3049,7 +3049,7 @@ msgstr ""
|
||||||
msgid "Languages"
|
msgid "Languages"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Item.php:458 src/Model/Contact.php:1078
|
#: src/Content/Item.php:458 src/Model/Contact.php:1082
|
||||||
msgid "Poke"
|
msgid "Poke"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -3087,7 +3087,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:574 src/Module/Contact.php:837
|
#: src/Module/Contact.php:576 src/Module/Contact.php:839
|
||||||
#: 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 ""
|
||||||
|
@ -3098,8 +3098,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:576
|
#: src/Module/BaseSettings.php:57 src/Module/Contact.php:578
|
||||||
#: src/Module/Contact.php:861 src/Module/Profile/Profile.php:241
|
#: src/Module/Contact.php:863 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 ""
|
||||||
|
@ -3185,8 +3185,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:774
|
#: src/Module/BaseProfile.php:128 src/Module/Contact.php:776
|
||||||
#: src/Module/Contact.php:868 view/theme/frio/theme.php:237
|
#: src/Module/Contact.php:870 view/theme/frio/theme.php:237
|
||||||
msgid "Contacts"
|
msgid "Contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -3416,7 +3416,7 @@ msgstr ""
|
||||||
msgid "Examples: Robert Morgenstein, Fishing"
|
msgid "Examples: Robert Morgenstein, Fishing"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Widget.php:78 src/Module/Contact.php:795
|
#: src/Content/Widget.php:78 src/Module/Contact.php:797
|
||||||
#: 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 ""
|
||||||
|
@ -3443,7 +3443,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:758 src/Module/Welcome.php:76
|
#: src/Module/Contact.php:760 src/Module/Welcome.php:76
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -3455,7 +3455,7 @@ msgstr ""
|
||||||
msgid "Relationships"
|
msgid "Relationships"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Widget.php:247 src/Module/Contact.php:710
|
#: src/Content/Widget.php:247 src/Module/Contact.php:712
|
||||||
#: src/Module/Group.php:292
|
#: src/Module/Group.php:292
|
||||||
msgid "All Contacts"
|
msgid "All Contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3499,7 +3499,7 @@ msgstr ""
|
||||||
msgid "Organisations"
|
msgid "Organisations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Widget.php:529 src/Model/Contact.php:1499
|
#: src/Content/Widget.php:529 src/Model/Contact.php:1503
|
||||||
msgid "News"
|
msgid "News"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -3554,12 +3554,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:565 src/Module/Profile/Profile.php:176
|
#: src/Module/Contact.php:567 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:567 src/Module/Profile/Profile.php:180
|
#: src/Module/Contact.php:569 src/Module/Profile/Profile.php:180
|
||||||
msgid "Matrix:"
|
msgid "Matrix:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -4363,81 +4363,81 @@ msgstr ""
|
||||||
msgid "Legacy module file not found: %s"
|
msgid "Legacy module file not found: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:1068 src/Model/Contact.php:1080
|
#: src/Model/Contact.php:1072 src/Model/Contact.php:1084
|
||||||
msgid "UnFollow"
|
msgid "UnFollow"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:1086 src/Module/Admin/Users/Pending.php:107
|
#: src/Model/Contact.php:1090 src/Module/Admin/Users/Pending.php:107
|
||||||
#: src/Module/Notifications/Introductions.php:111
|
#: src/Module/Notifications/Introductions.php:111
|
||||||
#: src/Module/Notifications/Introductions.php:183
|
#: src/Module/Notifications/Introductions.php:183
|
||||||
msgid "Approve"
|
msgid "Approve"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:1495
|
#: src/Model/Contact.php:1499
|
||||||
msgid "Organisation"
|
msgid "Organisation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:1503
|
#: src/Model/Contact.php:1507
|
||||||
msgid "Forum"
|
msgid "Forum"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:2359
|
#: src/Model/Contact.php:2363
|
||||||
msgid "Disallowed profile URL."
|
msgid "Disallowed profile URL."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:2364 src/Module/Friendica.php:81
|
#: src/Model/Contact.php:2368 src/Module/Friendica.php:81
|
||||||
msgid "Blocked domain"
|
msgid "Blocked domain"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:2369
|
#: src/Model/Contact.php:2373
|
||||||
msgid "Connect URL missing."
|
msgid "Connect URL missing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:2378
|
#: src/Model/Contact.php:2382
|
||||||
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:2415
|
#: src/Model/Contact.php:2419
|
||||||
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:2417
|
#: src/Model/Contact.php:2421
|
||||||
msgid "No compatible communication protocols or feeds were discovered."
|
msgid "No compatible communication protocols or feeds were discovered."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:2420
|
#: src/Model/Contact.php:2424
|
||||||
msgid "An author or name was not found."
|
msgid "An author or name was not found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:2423
|
#: src/Model/Contact.php:2427
|
||||||
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:2426
|
#: src/Model/Contact.php:2430
|
||||||
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:2427
|
#: src/Model/Contact.php:2431
|
||||||
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:2433
|
#: src/Model/Contact.php:2437
|
||||||
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:2438
|
#: src/Model/Contact.php:2442
|
||||||
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:2497
|
#: src/Model/Contact.php:2501
|
||||||
msgid "Unable to retrieve contact information."
|
msgid "Unable to retrieve contact information."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -4707,7 +4707,7 @@ msgstr ""
|
||||||
msgid "Homepage:"
|
msgid "Homepage:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:371 src/Module/Contact.php:569
|
#: src/Model/Profile.php:371 src/Module/Contact.php:571
|
||||||
#: src/Module/Notifications/Introductions.php:168
|
#: src/Module/Notifications/Introductions.php:168
|
||||||
msgid "About:"
|
msgid "About:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -5108,8 +5108,8 @@ msgstr ""
|
||||||
msgid "List of active accounts"
|
msgid "List of active accounts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/BaseUsers.php:66 src/Module/Contact.php:718
|
#: src/Module/Admin/BaseUsers.php:66 src/Module/Contact.php:720
|
||||||
#: src/Module/Contact.php:778
|
#: src/Module/Contact.php:780
|
||||||
msgid "Pending"
|
msgid "Pending"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -5117,8 +5117,8 @@ msgstr ""
|
||||||
msgid "List of pending registrations"
|
msgid "List of pending registrations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/BaseUsers.php:74 src/Module/Contact.php:726
|
#: src/Module/Admin/BaseUsers.php:74 src/Module/Contact.php:728
|
||||||
#: src/Module/Contact.php:779
|
#: src/Module/Contact.php:781
|
||||||
msgid "Blocked"
|
msgid "Blocked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -5175,8 +5175,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:542 src/Module/Contact.php:802
|
#: src/Module/Contact.php:544 src/Module/Contact.php:804
|
||||||
#: src/Module/Contact.php:1079
|
#: src/Module/Contact.php:1081
|
||||||
msgid "Unblock"
|
msgid "Unblock"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -6522,7 +6522,7 @@ msgid ""
|
||||||
"received."
|
"received."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:609 src/Module/Contact.php:471
|
#: src/Module/Admin/Site.php:609 src/Module/Contact.php:473
|
||||||
#: src/Module/Settings/TwoFactor/Index.php:118
|
#: src/Module/Settings/TwoFactor/Index.php:118
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -7093,8 +7093,8 @@ msgstr ""
|
||||||
msgid "Posts from %s can't be unshared"
|
msgid "Posts from %s can't be unshared"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Api/Twitter/ContactEndpoint.php:63 src/Module/Contact.php:341
|
#: src/Module/Api/Twitter/ContactEndpoint.php:63 src/Module/Contact.php:343
|
||||||
#: src/Module/Contact.php:356
|
#: src/Module/Contact.php:358
|
||||||
msgid "Contact not found"
|
msgid "Contact not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -7215,12 +7215,12 @@ msgstr ""
|
||||||
msgid "Too Many Requests"
|
msgid "Too Many Requests"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/BaseProfile.php:51 src/Module/Contact.php:864
|
#: src/Module/BaseProfile.php:51 src/Module/Contact.php:866
|
||||||
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:853
|
#: src/Module/Contact.php:855
|
||||||
msgid "Media"
|
msgid "Media"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -7287,356 +7287,356 @@ msgstr ""
|
||||||
msgid "The post was created"
|
msgid "The post was created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:92
|
#: src/Module/Contact.php:93
|
||||||
#, 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:117
|
#: src/Module/Contact.php:118
|
||||||
msgid "Could not access contact record."
|
msgid "Could not access contact record."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:153
|
#: src/Module/Contact.php:154
|
||||||
msgid "Failed to update contact record."
|
msgid "Failed to update contact record."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:373
|
#: src/Module/Contact.php:375
|
||||||
msgid "You can't block yourself"
|
msgid "You can't block yourself"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:379
|
#: src/Module/Contact.php:381
|
||||||
msgid "Contact has been blocked"
|
msgid "Contact has been blocked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:379
|
#: src/Module/Contact.php:381
|
||||||
msgid "Contact has been unblocked"
|
msgid "Contact has been unblocked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:387
|
#: src/Module/Contact.php:389
|
||||||
msgid "You can't ignore yourself"
|
msgid "You can't ignore yourself"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:393
|
#: src/Module/Contact.php:395
|
||||||
msgid "Contact has been ignored"
|
msgid "Contact has been ignored"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:393
|
#: src/Module/Contact.php:395
|
||||||
msgid "Contact has been unignored"
|
msgid "Contact has been unignored"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:413
|
#: src/Module/Contact.php:415
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "You are mutual friends with %s"
|
msgid "You are mutual friends with %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:417
|
#: src/Module/Contact.php:419
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "You are sharing with %s"
|
msgid "You are sharing with %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:421
|
#: src/Module/Contact.php:423
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s is sharing with you"
|
msgid "%s is sharing with you"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:445
|
#: src/Module/Contact.php:447
|
||||||
msgid "Private communications are not available for this contact."
|
msgid "Private communications are not available for this contact."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:447
|
#: src/Module/Contact.php:449
|
||||||
msgid "Never"
|
msgid "Never"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:450
|
#: src/Module/Contact.php:452
|
||||||
msgid "(Update was not successful)"
|
msgid "(Update was not successful)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:450
|
#: src/Module/Contact.php:452
|
||||||
msgid "(Update was successful)"
|
msgid "(Update was successful)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:452 src/Module/Contact.php:1050
|
#: src/Module/Contact.php:454 src/Module/Contact.php:1052
|
||||||
msgid "Suggest friends"
|
msgid "Suggest friends"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:456
|
#: src/Module/Contact.php:458
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Network type: %s"
|
msgid "Network type: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:461
|
#: src/Module/Contact.php:463
|
||||||
msgid "Communications lost with this contact!"
|
msgid "Communications lost with this contact!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:467
|
#: src/Module/Contact.php:469
|
||||||
msgid "Fetch further information for feeds"
|
msgid "Fetch further information for feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:469
|
#: src/Module/Contact.php:471
|
||||||
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:472
|
#: src/Module/Contact.php:474
|
||||||
msgid "Fetch information"
|
msgid "Fetch information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:473
|
#: src/Module/Contact.php:475
|
||||||
msgid "Fetch keywords"
|
msgid "Fetch keywords"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:474
|
#: src/Module/Contact.php:476
|
||||||
msgid "Fetch information and keywords"
|
msgid "Fetch information and keywords"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:486 src/Module/Contact.php:490
|
#: src/Module/Contact.php:488 src/Module/Contact.php:492
|
||||||
#: src/Module/Contact.php:493 src/Module/Contact.php:497
|
#: src/Module/Contact.php:495 src/Module/Contact.php:499
|
||||||
msgid "No mirroring"
|
msgid "No mirroring"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:487
|
#: src/Module/Contact.php:489
|
||||||
msgid "Mirror as forwarded posting"
|
msgid "Mirror as forwarded posting"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:488 src/Module/Contact.php:494
|
#: src/Module/Contact.php:490 src/Module/Contact.php:496
|
||||||
#: src/Module/Contact.php:498
|
#: src/Module/Contact.php:500
|
||||||
msgid "Mirror as my own posting"
|
msgid "Mirror as my own posting"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:491 src/Module/Contact.php:495
|
#: src/Module/Contact.php:493 src/Module/Contact.php:497
|
||||||
msgid "Native reshare"
|
msgid "Native reshare"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:510
|
#: src/Module/Contact.php:512
|
||||||
msgid "Contact Information / Notes"
|
msgid "Contact Information / Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:511
|
#: src/Module/Contact.php:513
|
||||||
msgid "Contact Settings"
|
msgid "Contact Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:519
|
#: src/Module/Contact.php:521
|
||||||
msgid "Contact"
|
msgid "Contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:523
|
#: src/Module/Contact.php:525
|
||||||
msgid "Their personal note"
|
msgid "Their personal note"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:525
|
#: src/Module/Contact.php:527
|
||||||
msgid "Edit contact notes"
|
msgid "Edit contact notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:528 src/Module/Contact.php:1016
|
#: src/Module/Contact.php:530 src/Module/Contact.php:1018
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Visit %s's profile [%s]"
|
msgid "Visit %s's profile [%s]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:529
|
#: src/Module/Contact.php:531
|
||||||
msgid "Block/Unblock contact"
|
msgid "Block/Unblock contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:530
|
#: src/Module/Contact.php:532
|
||||||
msgid "Ignore contact"
|
msgid "Ignore contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:531
|
#: src/Module/Contact.php:533
|
||||||
msgid "View conversations"
|
msgid "View conversations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:536
|
#: src/Module/Contact.php:538
|
||||||
msgid "Last update:"
|
msgid "Last update:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:538
|
#: src/Module/Contact.php:540
|
||||||
msgid "Update public posts"
|
msgid "Update public posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:540 src/Module/Contact.php:1060
|
#: src/Module/Contact.php:542 src/Module/Contact.php:1062
|
||||||
msgid "Update now"
|
msgid "Update now"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:543 src/Module/Contact.php:803
|
#: src/Module/Contact.php:545 src/Module/Contact.php:805
|
||||||
#: src/Module/Contact.php:1087
|
#: src/Module/Contact.php:1089
|
||||||
msgid "Unignore"
|
msgid "Unignore"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:547
|
#: src/Module/Contact.php:549
|
||||||
msgid "Currently blocked"
|
msgid "Currently blocked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:548
|
#: src/Module/Contact.php:550
|
||||||
msgid "Currently ignored"
|
msgid "Currently ignored"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:549
|
#: src/Module/Contact.php:551
|
||||||
msgid "Currently archived"
|
msgid "Currently archived"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:550
|
#: src/Module/Contact.php:552
|
||||||
msgid "Awaiting connection acknowledge"
|
msgid "Awaiting connection acknowledge"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:551 src/Module/Notifications/Introductions.php:171
|
#: src/Module/Contact.php:553 src/Module/Notifications/Introductions.php:171
|
||||||
msgid "Hide this contact from others"
|
msgid "Hide this contact from others"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:551
|
#: src/Module/Contact.php:553
|
||||||
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:552
|
#: src/Module/Contact.php:554
|
||||||
msgid "Notification for new posts"
|
msgid "Notification for new posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:552
|
#: src/Module/Contact.php:554
|
||||||
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:554
|
#: src/Module/Contact.php:556
|
||||||
msgid "Keyword Deny List"
|
msgid "Keyword Deny List"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:554
|
#: src/Module/Contact.php:556
|
||||||
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:572 src/Module/Settings/TwoFactor/Index.php:132
|
#: src/Module/Contact.php:574 src/Module/Settings/TwoFactor/Index.php:132
|
||||||
msgid "Actions"
|
msgid "Actions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:579
|
#: src/Module/Contact.php:581
|
||||||
msgid "Mirror postings from this contact"
|
msgid "Mirror postings from this contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:581
|
#: src/Module/Contact.php:583
|
||||||
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:713
|
#: src/Module/Contact.php:715
|
||||||
msgid "Show all contacts"
|
msgid "Show all contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:721
|
#: src/Module/Contact.php:723
|
||||||
msgid "Only show pending contacts"
|
msgid "Only show pending contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:729
|
#: src/Module/Contact.php:731
|
||||||
msgid "Only show blocked contacts"
|
msgid "Only show blocked contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:734 src/Module/Contact.php:781
|
#: src/Module/Contact.php:736 src/Module/Contact.php:783
|
||||||
#: src/Object/Post.php:309
|
#: src/Object/Post.php:309
|
||||||
msgid "Ignored"
|
msgid "Ignored"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:737
|
#: src/Module/Contact.php:739
|
||||||
msgid "Only show ignored contacts"
|
msgid "Only show ignored contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:742 src/Module/Contact.php:782
|
#: src/Module/Contact.php:744 src/Module/Contact.php:784
|
||||||
msgid "Archived"
|
msgid "Archived"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:745
|
#: src/Module/Contact.php:747
|
||||||
msgid "Only show archived contacts"
|
msgid "Only show archived contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:750 src/Module/Contact.php:780
|
#: src/Module/Contact.php:752 src/Module/Contact.php:782
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:753
|
#: src/Module/Contact.php:755
|
||||||
msgid "Only show hidden contacts"
|
msgid "Only show hidden contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:761
|
#: src/Module/Contact.php:763
|
||||||
msgid "Organize your contact groups"
|
msgid "Organize your contact groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:793
|
#: src/Module/Contact.php:795
|
||||||
msgid "Search your contacts"
|
msgid "Search your contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:794 src/Module/Search/Index.php:194
|
#: src/Module/Contact.php:796 src/Module/Search/Index.php:194
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Results for: %s"
|
msgid "Results for: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:801
|
#: src/Module/Contact.php:803
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:805
|
#: src/Module/Contact.php:807
|
||||||
msgid "Batch Actions"
|
msgid "Batch Actions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:840
|
#: src/Module/Contact.php:842
|
||||||
msgid "Conversations started by this contact"
|
msgid "Conversations started by this contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:845
|
#: src/Module/Contact.php:847
|
||||||
msgid "Posts and Comments"
|
msgid "Posts and Comments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:856
|
#: src/Module/Contact.php:858
|
||||||
msgid "Posts containing media objects"
|
msgid "Posts containing media objects"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:871
|
#: src/Module/Contact.php:873
|
||||||
msgid "View all known contacts"
|
msgid "View all known contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:881
|
#: src/Module/Contact.php:883
|
||||||
msgid "Advanced Contact Settings"
|
msgid "Advanced Contact Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:975
|
#: src/Module/Contact.php:977
|
||||||
msgid "Mutual Friendship"
|
msgid "Mutual Friendship"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:979
|
#: src/Module/Contact.php:981
|
||||||
msgid "is a fan of yours"
|
msgid "is a fan of yours"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:983
|
#: src/Module/Contact.php:985
|
||||||
msgid "you are a fan of"
|
msgid "you are a fan of"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:1001
|
#: src/Module/Contact.php:1003
|
||||||
msgid "Pending outgoing contact request"
|
msgid "Pending outgoing contact request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:1003
|
#: src/Module/Contact.php:1005
|
||||||
msgid "Pending incoming contact request"
|
msgid "Pending incoming contact request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:1070
|
#: src/Module/Contact.php:1072
|
||||||
msgid "Refetch contact data"
|
msgid "Refetch contact data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:1081
|
#: src/Module/Contact.php:1083
|
||||||
msgid "Toggle Blocked status"
|
msgid "Toggle Blocked status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:1089
|
#: src/Module/Contact.php:1091
|
||||||
msgid "Toggle Ignored status"
|
msgid "Toggle Ignored status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:1096 src/Module/Contact/Revoke.php:96
|
#: src/Module/Contact.php:1098 src/Module/Contact/Revoke.php:96
|
||||||
msgid "Revoke Follow"
|
msgid "Revoke Follow"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:1098
|
#: src/Module/Contact.php:1100
|
||||||
msgid "Revoke the follow from this contact"
|
msgid "Revoke the follow from this contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue