Option to automatically add links as attachment via API
This commit is contained in:
parent
d951d49193
commit
4e070f65c7
5 changed files with 786 additions and 764 deletions
|
|
@ -21,6 +21,7 @@
|
||||||
|
|
||||||
namespace Friendica\Module\Api\Mastodon;
|
namespace Friendica\Module\Api\Mastodon;
|
||||||
|
|
||||||
|
use Friendica\Content\PageInfo;
|
||||||
use Friendica\Content\Text\BBCode;
|
use Friendica\Content\Text\BBCode;
|
||||||
use Friendica\Content\Text\Markdown;
|
use Friendica\Content\Text\Markdown;
|
||||||
use Friendica\Core\Protocol;
|
use Friendica\Core\Protocol;
|
||||||
|
|
@ -37,6 +38,7 @@ use Friendica\Model\User;
|
||||||
use Friendica\Module\BaseApi;
|
use Friendica\Module\BaseApi;
|
||||||
use Friendica\Network\HTTPException;
|
use Friendica\Network\HTTPException;
|
||||||
use Friendica\Protocol\Activity;
|
use Friendica\Protocol\Activity;
|
||||||
|
use Friendica\Util\DateTimeFormat;
|
||||||
use Friendica\Util\Images;
|
use Friendica\Util\Images;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -127,6 +129,10 @@ class Statuses extends BaseApi
|
||||||
// The imput is defined as text. So we can use Markdown for some enhancements
|
// The imput is defined as text. So we can use Markdown for some enhancements
|
||||||
$body = Markdown::toBBCode($request['status']);
|
$body = Markdown::toBBCode($request['status']);
|
||||||
|
|
||||||
|
if (DI::pConfig()->get($uid, 'system', 'api_auto_attach', false) && preg_match("/\[url=[^\[\]]*\](.*)\[\/url\]\z/ism", $body, $matches)) {
|
||||||
|
$body = preg_replace("/\[url=[^\[\]]*\].*\[\/url\]\z/ism", PageInfo::getFooterFromUrl($matches[1]), $body);
|
||||||
|
}
|
||||||
|
|
||||||
$item = [];
|
$item = [];
|
||||||
$item['network'] = Protocol::DFRN;
|
$item['network'] = Protocol::DFRN;
|
||||||
$item['uid'] = $uid;
|
$item['uid'] = $uid;
|
||||||
|
|
@ -273,7 +279,7 @@ class Statuses extends BaseApi
|
||||||
if (!empty($request['scheduled_at'])) {
|
if (!empty($request['scheduled_at'])) {
|
||||||
$item['guid'] = Item::guid($item, true);
|
$item['guid'] = Item::guid($item, true);
|
||||||
$item['uri'] = Item::newURI($item['guid']);
|
$item['uri'] = Item::newURI($item['guid']);
|
||||||
$id = Post\Delayed::add($item['uri'], $item, Worker::PRIORITY_HIGH, Post\Delayed::PREPARED, $request['scheduled_at']);
|
$id = Post\Delayed::add($item['uri'], $item, Worker::PRIORITY_HIGH, Post\Delayed::PREPARED, DateTimeFormat::utc($request['scheduled_at']));
|
||||||
if (empty($id)) {
|
if (empty($id)) {
|
||||||
DI::mstdnError()->InternalError();
|
DI::mstdnError()->InternalError();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -73,6 +73,7 @@ class Connectors extends BaseSettings
|
||||||
$this->pconfig->set($this->session->getLocalUserId(), 'system', 'simple_shortening', intval($request['simple_shortening']));
|
$this->pconfig->set($this->session->getLocalUserId(), 'system', 'simple_shortening', intval($request['simple_shortening']));
|
||||||
$this->pconfig->set($this->session->getLocalUserId(), 'system', 'attach_link_title', intval($request['attach_link_title']));
|
$this->pconfig->set($this->session->getLocalUserId(), 'system', 'attach_link_title', intval($request['attach_link_title']));
|
||||||
$this->pconfig->set($this->session->getLocalUserId(), 'system', 'api_spoiler_title', intval($request['api_spoiler_title']));
|
$this->pconfig->set($this->session->getLocalUserId(), 'system', 'api_spoiler_title', intval($request['api_spoiler_title']));
|
||||||
|
$this->pconfig->set($this->session->getLocalUserId(), 'system', 'api_auto_attach', intval($request['api_auto_attach']));
|
||||||
$this->pconfig->set($this->session->getLocalUserId(), 'ostatus', 'legacy_contact', $request['legacy_contact']);
|
$this->pconfig->set($this->session->getLocalUserId(), 'ostatus', 'legacy_contact', $request['legacy_contact']);
|
||||||
} elseif (!empty($request['mail-submit']) && function_exists('imap_open') && !$this->config->get('system', 'imap_disabled')) {
|
} elseif (!empty($request['mail-submit']) && function_exists('imap_open') && !$this->config->get('system', 'imap_disabled')) {
|
||||||
$mail_server = $request['mail_server'] ?? '';
|
$mail_server = $request['mail_server'] ?? '';
|
||||||
|
|
@ -136,6 +137,7 @@ class Connectors extends BaseSettings
|
||||||
$simple_shortening = intval($this->pconfig->get($this->session->getLocalUserId(), 'system', 'simple_shortening'));
|
$simple_shortening = intval($this->pconfig->get($this->session->getLocalUserId(), 'system', 'simple_shortening'));
|
||||||
$attach_link_title = intval($this->pconfig->get($this->session->getLocalUserId(), 'system', 'attach_link_title'));
|
$attach_link_title = intval($this->pconfig->get($this->session->getLocalUserId(), 'system', 'attach_link_title'));
|
||||||
$api_spoiler_title = intval($this->pconfig->get($this->session->getLocalUserId(), 'system', 'api_spoiler_title', true));
|
$api_spoiler_title = intval($this->pconfig->get($this->session->getLocalUserId(), 'system', 'api_spoiler_title', true));
|
||||||
|
$api_auto_attach = intval($this->pconfig->get($this->session->getLocalUserId(), 'system', 'api_auto_attach', false));
|
||||||
$legacy_contact = $this->pconfig->get($this->session->getLocalUserId(), 'ostatus', 'legacy_contact');
|
$legacy_contact = $this->pconfig->get($this->session->getLocalUserId(), 'ostatus', 'legacy_contact');
|
||||||
|
|
||||||
if (!empty($legacy_contact)) {
|
if (!empty($legacy_contact)) {
|
||||||
|
|
@ -221,6 +223,7 @@ class Connectors extends BaseSettings
|
||||||
'$simple_shortening' => ['simple_shortening', $this->t('Enable simple text shortening'), $simple_shortening, $this->t('Normally the system shortens posts at the next line feed. If this option is enabled then the system will shorten the text at the maximum character limit.')],
|
'$simple_shortening' => ['simple_shortening', $this->t('Enable simple text shortening'), $simple_shortening, $this->t('Normally the system shortens posts at the next line feed. If this option is enabled then the system will shorten the text at the maximum character limit.')],
|
||||||
'$attach_link_title' => ['attach_link_title', $this->t('Attach the link title'), $attach_link_title, $this->t('When activated, the title of the attached link will be added as a title on posts to Diaspora. This is mostly helpful with "remote-self" contacts that share feed content.')],
|
'$attach_link_title' => ['attach_link_title', $this->t('Attach the link title'), $attach_link_title, $this->t('When activated, the title of the attached link will be added as a title on posts to Diaspora. This is mostly helpful with "remote-self" contacts that share feed content.')],
|
||||||
'$api_spoiler_title' => ['api_spoiler_title', $this->t('API: Use spoiler field as title'), $api_spoiler_title, $this->t('When activated, the "spoiler_text" field in the API will be used for the title on standalone posts. When deactivated it will be used for spoiler text. For comments it will always be used for spoiler text.')],
|
'$api_spoiler_title' => ['api_spoiler_title', $this->t('API: Use spoiler field as title'), $api_spoiler_title, $this->t('When activated, the "spoiler_text" field in the API will be used for the title on standalone posts. When deactivated it will be used for spoiler text. For comments it will always be used for spoiler text.')],
|
||||||
|
'$api_auto_attach' => ['api_auto_attach', $this->t('API: Automatically links at the end of the post as attached posts'), $api_auto_attach, $this->t('When activated, added links at the end of the post react the same way as added links in the web interface.')],
|
||||||
'$legacy_contact' => ['legacy_contact', $this->t('Your legacy ActivityPub/GNU Social account'), $legacy_contact, $this->t('If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.')],
|
'$legacy_contact' => ['legacy_contact', $this->t('Your legacy ActivityPub/GNU Social account'), $legacy_contact, $this->t('If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.')],
|
||||||
'$repair_ostatus_url' => 'ostatus/repair',
|
'$repair_ostatus_url' => 'ostatus/repair',
|
||||||
'$repair_ostatus_text' => $this->t('Repair OStatus subscriptions'),
|
'$repair_ostatus_text' => $this->t('Repair OStatus subscriptions'),
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: 2023.03-dev\n"
|
"Project-Id-Version: 2023.03-dev\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2023-02-18 20:49+0000\n"
|
"POT-Creation-Date: 2023-03-13 21:29+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"
|
||||||
|
|
@ -18,35 +18,35 @@ msgstr ""
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
|
||||||
#: mod/item.php:102 mod/item.php:105 mod/item.php:171 mod/item.php:174
|
#: mod/item.php:100 mod/item.php:103 mod/item.php:170 mod/item.php:173
|
||||||
msgid "Unable to locate original post."
|
msgid "Unable to locate original post."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/item.php:139
|
#: mod/item.php:138
|
||||||
msgid "Post updated."
|
msgid "Post updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/item.php:204 mod/item.php:208
|
#: mod/item.php:203 mod/item.php:207
|
||||||
msgid "Item wasn't stored."
|
msgid "Item wasn't stored."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/item.php:218
|
#: mod/item.php:217
|
||||||
msgid "Item couldn't be fetched."
|
msgid "Item couldn't be fetched."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/item.php:256 mod/item.php:260
|
#: mod/item.php:255 mod/item.php:259
|
||||||
msgid "Empty post discarded."
|
msgid "Empty post discarded."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/item.php:412 src/Module/Admin/Themes/Details.php:39
|
#: mod/item.php:411 src/Module/Admin/Themes/Details.php:39
|
||||||
#: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:42
|
#: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:42
|
||||||
#: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80
|
#: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80
|
||||||
msgid "Item not found."
|
msgid "Item not found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/item.php:436 mod/message.php:69 mod/message.php:114 mod/notes.php:45
|
#: mod/item.php:435 mod/message.php:68 mod/message.php:113 mod/notes.php:45
|
||||||
#: mod/photos.php:152 mod/photos.php:669 src/Model/Event.php:522
|
#: mod/photos.php:152 mod/photos.php:669 src/Model/Event.php:522
|
||||||
#: src/Module/Attach.php:55 src/Module/BaseApi.php:95
|
#: src/Module/Attach.php:55 src/Module/BaseApi.php:99
|
||||||
#: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:52
|
#: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:52
|
||||||
#: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84
|
#: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84
|
||||||
#: src/Module/Calendar/Export.php:82 src/Module/Calendar/Show.php:82
|
#: src/Module/Calendar/Export.php:82 src/Module/Calendar/Show.php:82
|
||||||
|
|
@ -150,7 +150,7 @@ msgid ""
|
||||||
"your email for further instructions."
|
"your email for further instructions."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/lostpass.php:130 src/Module/Security/Login.php:161
|
#: mod/lostpass.php:130 src/Module/Security/Login.php:160
|
||||||
msgid "Nickname or Email: "
|
msgid "Nickname or Email: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -158,7 +158,7 @@ msgstr ""
|
||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/lostpass.php:146 src/Module/Security/Login.php:173
|
#: mod/lostpass.php:146 src/Module/Security/Login.php:172
|
||||||
msgid "Password Reset"
|
msgid "Password Reset"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -219,90 +219,90 @@ msgstr ""
|
||||||
msgid "Your password has been changed at %s"
|
msgid "Your password has been changed at %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:46 mod/message.php:129 src/Content/Nav.php:321
|
#: mod/message.php:46 mod/message.php:128 src/Content/Nav.php:319
|
||||||
msgid "New Message"
|
msgid "New Message"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:83 src/Module/Profile/UnkMail.php:100
|
#: mod/message.php:82 src/Module/Profile/UnkMail.php:100
|
||||||
msgid "No recipient selected."
|
msgid "No recipient selected."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:88
|
#: mod/message.php:87
|
||||||
msgid "Unable to locate contact information."
|
msgid "Unable to locate contact information."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:92 src/Module/Profile/UnkMail.php:106
|
#: mod/message.php:91 src/Module/Profile/UnkMail.php:106
|
||||||
msgid "Message could not be sent."
|
msgid "Message could not be sent."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:96 src/Module/Profile/UnkMail.php:109
|
#: mod/message.php:95 src/Module/Profile/UnkMail.php:109
|
||||||
msgid "Message collection failure."
|
msgid "Message collection failure."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:123 src/Module/Notifications/Introductions.php:135
|
#: mod/message.php:122 src/Module/Notifications/Introductions.php:135
|
||||||
#: src/Module/Notifications/Introductions.php:170
|
#: src/Module/Notifications/Introductions.php:170
|
||||||
#: src/Module/Notifications/Notification.php:85
|
#: src/Module/Notifications/Notification.php:85
|
||||||
msgid "Discard"
|
msgid "Discard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:136 src/Content/Nav.php:318 view/theme/frio/theme.php:241
|
#: mod/message.php:135 src/Content/Nav.php:316 view/theme/frio/theme.php:241
|
||||||
msgid "Messages"
|
msgid "Messages"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:149
|
#: mod/message.php:148
|
||||||
msgid "Conversation not found."
|
msgid "Conversation not found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:154
|
#: mod/message.php:153
|
||||||
msgid "Message was not deleted."
|
msgid "Message was not deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:169
|
#: mod/message.php:168
|
||||||
msgid "Conversation was not removed."
|
msgid "Conversation was not removed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:183 mod/message.php:289 src/Module/Profile/UnkMail.php:146
|
#: mod/message.php:181 mod/message.php:286 src/Module/Profile/UnkMail.php:145
|
||||||
msgid "Please enter a link URL:"
|
msgid "Please enter a link URL:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:192 src/Module/Profile/UnkMail.php:152
|
#: mod/message.php:190 src/Module/Profile/UnkMail.php:151
|
||||||
msgid "Send Private Message"
|
msgid "Send Private Message"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:193 mod/message.php:349
|
#: mod/message.php:191 mod/message.php:346
|
||||||
msgid "To:"
|
msgid "To:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:194 mod/message.php:350
|
#: mod/message.php:192 mod/message.php:347
|
||||||
msgid "Subject:"
|
msgid "Subject:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:198 mod/message.php:353 src/Module/Invite.php:171
|
#: mod/message.php:196 mod/message.php:350 src/Module/Invite.php:171
|
||||||
msgid "Your message:"
|
msgid "Your message:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:201 mod/message.php:357 src/Content/Conversation.php:352
|
#: mod/message.php:199 mod/message.php:354 src/Content/Conversation.php:352
|
||||||
#: src/Module/Post/Edit.php:128
|
#: src/Module/Post/Edit.php:131
|
||||||
msgid "Upload photo"
|
msgid "Upload photo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:202 mod/message.php:358 src/Module/Post/Edit.php:132
|
#: mod/message.php:200 mod/message.php:355 src/Module/Post/Edit.php:135
|
||||||
#: src/Module/Profile/UnkMail.php:154
|
#: src/Module/Profile/UnkMail.php:153
|
||||||
msgid "Insert web link"
|
msgid "Insert web link"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:203 mod/message.php:360 mod/photos.php:1291
|
#: mod/message.php:201 mod/message.php:357 mod/photos.php:1291
|
||||||
#: src/Content/Conversation.php:381 src/Content/Conversation.php:727
|
#: src/Content/Conversation.php:381 src/Content/Conversation.php:725
|
||||||
#: src/Module/Item/Compose.php:204 src/Module/Post/Edit.php:142
|
#: src/Module/Item/Compose.php:204 src/Module/Post/Edit.php:145
|
||||||
#: src/Module/Profile/UnkMail.php:155 src/Object/Post.php:545
|
#: src/Module/Profile/UnkMail.php:154 src/Object/Post.php:545
|
||||||
msgid "Please wait"
|
msgid "Please wait"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:204 mod/message.php:359 mod/photos.php:702
|
#: mod/message.php:202 mod/message.php:356 mod/photos.php:702
|
||||||
#: mod/photos.php:819 mod/photos.php:1097 mod/photos.php:1138
|
#: mod/photos.php:819 mod/photos.php:1097 mod/photos.php:1138
|
||||||
#: mod/photos.php:1194 mod/photos.php:1268
|
#: mod/photos.php:1194 mod/photos.php:1268
|
||||||
#: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132
|
#: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132
|
||||||
#: src/Module/Contact/Profile.php:340
|
#: src/Module/Contact/Profile.php:339
|
||||||
#: src/Module/Debug/ActivityPubConversion.php:140
|
#: src/Module/Debug/ActivityPubConversion.php:140
|
||||||
#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64
|
#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64
|
||||||
#: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51
|
#: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51
|
||||||
|
|
@ -310,59 +310,59 @@ msgstr ""
|
||||||
#: src/Module/Install.php:234 src/Module/Install.php:274
|
#: src/Module/Install.php:234 src/Module/Install.php:274
|
||||||
#: src/Module/Install.php:309 src/Module/Invite.php:178
|
#: src/Module/Install.php:309 src/Module/Invite.php:178
|
||||||
#: src/Module/Item/Compose.php:189 src/Module/Moderation/Item/Source.php:79
|
#: src/Module/Item/Compose.php:189 src/Module/Moderation/Item/Source.php:79
|
||||||
#: src/Module/Profile/Profile.php:274 src/Module/Profile/UnkMail.php:156
|
#: src/Module/Profile/Profile.php:274 src/Module/Profile/UnkMail.php:155
|
||||||
#: src/Module/Settings/Profile/Index.php:231 src/Object/Post.php:1058
|
#: src/Module/Settings/Profile/Index.php:230 src/Object/Post.php:1058
|
||||||
#: view/theme/duepuntozero/config.php:85 view/theme/frio/config.php:171
|
#: view/theme/duepuntozero/config.php:85 view/theme/frio/config.php:171
|
||||||
#: view/theme/quattro/config.php:87 view/theme/vier/config.php:135
|
#: view/theme/quattro/config.php:87 view/theme/vier/config.php:135
|
||||||
msgid "Submit"
|
msgid "Submit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:225
|
#: mod/message.php:223
|
||||||
msgid "No messages."
|
msgid "No messages."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:281
|
#: mod/message.php:279
|
||||||
msgid "Message not available."
|
msgid "Message not available."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:326
|
#: mod/message.php:323
|
||||||
msgid "Delete message"
|
msgid "Delete message"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:328 mod/message.php:459
|
#: mod/message.php:325 mod/message.php:456
|
||||||
msgid "D, d M Y - g:i A"
|
msgid "D, d M Y - g:i A"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:343 mod/message.php:456
|
#: mod/message.php:340 mod/message.php:453
|
||||||
msgid "Delete conversation"
|
msgid "Delete conversation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:345
|
#: mod/message.php:342
|
||||||
msgid ""
|
msgid ""
|
||||||
"No secure communications available. You <strong>may</strong> be able to "
|
"No secure communications available. You <strong>may</strong> be able to "
|
||||||
"respond from the sender's profile page."
|
"respond from the sender's profile page."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:348
|
#: mod/message.php:345
|
||||||
msgid "Send Reply"
|
msgid "Send Reply"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:430
|
#: mod/message.php:427
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Unknown sender - %s"
|
msgid "Unknown sender - %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:432
|
#: mod/message.php:429
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "You and %s"
|
msgid "You and %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:434
|
#: mod/message.php:431
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s and You"
|
msgid "%s and You"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:462
|
#: mod/message.php:459
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%d message"
|
msgid "%d message"
|
||||||
msgid_plural "%d messages"
|
msgid_plural "%d messages"
|
||||||
|
|
@ -379,7 +379,7 @@ msgstr ""
|
||||||
|
|
||||||
#: mod/notes.php:57 src/Content/Text/HTML.php:884
|
#: mod/notes.php:57 src/Content/Text/HTML.php:884
|
||||||
#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74
|
#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74
|
||||||
#: src/Module/Post/Edit.php:126
|
#: src/Module/Post/Edit.php:129
|
||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -476,7 +476,7 @@ msgid "Do not show a status post for this upload"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:733 mod/photos.php:1093 src/Content/Conversation.php:383
|
#: mod/photos.php:733 mod/photos.php:1093 src/Content/Conversation.php:383
|
||||||
#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:179
|
#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:182
|
||||||
msgid "Permissions"
|
msgid "Permissions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -492,7 +492,7 @@ msgstr ""
|
||||||
#: src/Module/Contact/Follow.php:172 src/Module/Contact/Revoke.php:109
|
#: src/Module/Contact/Follow.php:172 src/Module/Contact/Revoke.php:109
|
||||||
#: src/Module/Contact/Unfollow.php:126
|
#: src/Module/Contact/Unfollow.php:126
|
||||||
#: src/Module/Media/Attachment/Browser.php:77
|
#: src/Module/Media/Attachment/Browser.php:77
|
||||||
#: src/Module/Media/Photo/Browser.php:88 src/Module/Post/Edit.php:164
|
#: src/Module/Media/Photo/Browser.php:88 src/Module/Post/Edit.php:167
|
||||||
#: src/Module/Post/Tag/Remove.php:109 src/Module/Profile/RemoteFollow.php:134
|
#: src/Module/Post/Tag/Remove.php:109 src/Module/Profile/RemoteFollow.php:134
|
||||||
#: src/Module/Security/TwoFactor/SignOut.php:125
|
#: src/Module/Security/TwoFactor/SignOut.php:125
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
|
|
@ -595,7 +595,7 @@ msgid "Rotate CCW (left)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:1135 mod/photos.php:1191 mod/photos.php:1265
|
#: mod/photos.php:1135 mod/photos.php:1191 mod/photos.php:1265
|
||||||
#: src/Module/Contact.php:589 src/Module/Item/Compose.php:188
|
#: src/Module/Contact.php:588 src/Module/Item/Compose.php:188
|
||||||
#: src/Object/Post.php:1055
|
#: src/Object/Post.php:1055
|
||||||
msgid "This is you"
|
msgid "This is you"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -607,25 +607,25 @@ msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1269
|
#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1269
|
||||||
#: src/Content/Conversation.php:396 src/Module/Calendar/Event/Form.php:248
|
#: src/Content/Conversation.php:396 src/Module/Calendar/Event/Form.php:248
|
||||||
#: src/Module/Item/Compose.php:199 src/Module/Post/Edit.php:162
|
#: src/Module/Item/Compose.php:199 src/Module/Post/Edit.php:165
|
||||||
#: src/Object/Post.php:1069
|
#: src/Object/Post.php:1069
|
||||||
msgid "Preview"
|
msgid "Preview"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:1140 src/Content/Conversation.php:351
|
#: mod/photos.php:1140 src/Content/Conversation.php:351
|
||||||
#: src/Module/Post/Edit.php:127 src/Object/Post.php:1059
|
#: src/Module/Post/Edit.php:130 src/Object/Post.php:1059
|
||||||
msgid "Loading..."
|
msgid "Loading..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:1226 src/Content/Conversation.php:643 src/Object/Post.php:256
|
#: mod/photos.php:1226 src/Content/Conversation.php:641 src/Object/Post.php:256
|
||||||
msgid "Select"
|
msgid "Select"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:1227 src/Content/Conversation.php:644
|
#: mod/photos.php:1227 src/Content/Conversation.php:642
|
||||||
#: src/Module/Moderation/Users/Active.php:136
|
#: src/Module/Moderation/Users/Active.php:136
|
||||||
#: src/Module/Moderation/Users/Blocked.php:136
|
#: src/Module/Moderation/Users/Blocked.php:136
|
||||||
#: src/Module/Moderation/Users/Index.php:151
|
#: src/Module/Moderation/Users/Index.php:151
|
||||||
#: src/Module/Settings/Connectors.php:241
|
#: src/Module/Settings/Connectors.php:244
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -701,16 +701,16 @@ msgid "All contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/BaseModule.php:432 src/Content/Widget.php:235 src/Core/ACL.php:194
|
#: src/BaseModule.php:432 src/Content/Widget.php:235 src/Core/ACL.php:194
|
||||||
#: src/Module/Contact.php:408 src/Module/PermissionTooltip.php:122
|
#: src/Module/Contact.php:407 src/Module/PermissionTooltip.php:122
|
||||||
#: src/Module/PermissionTooltip.php:144
|
#: src/Module/PermissionTooltip.php:144
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/BaseModule.php:437 src/Content/Widget.php:236 src/Module/Contact.php:409
|
#: src/BaseModule.php:437 src/Content/Widget.php:236 src/Module/Contact.php:408
|
||||||
msgid "Following"
|
msgid "Following"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/BaseModule.php:442 src/Content/Widget.php:237 src/Module/Contact.php:410
|
#: src/BaseModule.php:442 src/Content/Widget.php:237 src/Module/Contact.php:409
|
||||||
msgid "Mutual friends"
|
msgid "Mutual friends"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -975,7 +975,7 @@ msgstr ""
|
||||||
#: src/Content/ContactSelector.php:129
|
#: src/Content/ContactSelector.php:129
|
||||||
#: src/Module/Moderation/Users/Active.php:126
|
#: src/Module/Moderation/Users/Active.php:126
|
||||||
#: src/Module/Moderation/Users/Blocked.php:126
|
#: src/Module/Moderation/Users/Blocked.php:126
|
||||||
#: src/Module/Moderation/Users/Create.php:73
|
#: src/Module/Moderation/Users/Create.php:72
|
||||||
#: src/Module/Moderation/Users/Deleted.php:83
|
#: src/Module/Moderation/Users/Deleted.php:83
|
||||||
#: src/Module/Moderation/Users/Index.php:140
|
#: src/Module/Moderation/Users/Index.php:140
|
||||||
#: src/Module/Moderation/Users/Index.php:160
|
#: src/Module/Moderation/Users/Index.php:160
|
||||||
|
|
@ -1066,7 +1066,7 @@ msgid "%s attends maybe."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation.php:235 src/Content/Conversation.php:273
|
#: src/Content/Conversation.php:235 src/Content/Conversation.php:273
|
||||||
#: src/Content/Conversation.php:887
|
#: src/Content/Conversation.php:885
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s reshared this."
|
msgid "%s reshared this."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -1172,40 +1172,40 @@ msgstr ""
|
||||||
msgid "Share"
|
msgid "Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation.php:353 src/Module/Post/Edit.php:129
|
#: src/Content/Conversation.php:353 src/Module/Post/Edit.php:132
|
||||||
msgid "upload photo"
|
msgid "upload photo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation.php:354 src/Module/Post/Edit.php:130
|
#: src/Content/Conversation.php:354 src/Module/Post/Edit.php:133
|
||||||
msgid "Attach file"
|
msgid "Attach file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation.php:355 src/Module/Post/Edit.php:131
|
#: src/Content/Conversation.php:355 src/Module/Post/Edit.php:134
|
||||||
msgid "attach file"
|
msgid "attach file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation.php:356 src/Module/Item/Compose.php:190
|
#: src/Content/Conversation.php:356 src/Module/Item/Compose.php:190
|
||||||
#: src/Module/Post/Edit.php:168 src/Object/Post.php:1060
|
#: src/Module/Post/Edit.php:171 src/Object/Post.php:1060
|
||||||
msgid "Bold"
|
msgid "Bold"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation.php:357 src/Module/Item/Compose.php:191
|
#: src/Content/Conversation.php:357 src/Module/Item/Compose.php:191
|
||||||
#: src/Module/Post/Edit.php:169 src/Object/Post.php:1061
|
#: src/Module/Post/Edit.php:172 src/Object/Post.php:1061
|
||||||
msgid "Italic"
|
msgid "Italic"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation.php:358 src/Module/Item/Compose.php:192
|
#: src/Content/Conversation.php:358 src/Module/Item/Compose.php:192
|
||||||
#: src/Module/Post/Edit.php:170 src/Object/Post.php:1062
|
#: src/Module/Post/Edit.php:173 src/Object/Post.php:1062
|
||||||
msgid "Underline"
|
msgid "Underline"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation.php:359 src/Module/Item/Compose.php:193
|
#: src/Content/Conversation.php:359 src/Module/Item/Compose.php:193
|
||||||
#: src/Module/Post/Edit.php:171 src/Object/Post.php:1063
|
#: src/Module/Post/Edit.php:174 src/Object/Post.php:1063
|
||||||
msgid "Quote"
|
msgid "Quote"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation.php:360 src/Module/Item/Compose.php:194
|
#: src/Content/Conversation.php:360 src/Module/Item/Compose.php:194
|
||||||
#: src/Module/Post/Edit.php:172 src/Object/Post.php:1064
|
#: src/Module/Post/Edit.php:175 src/Object/Post.php:1064
|
||||||
msgid "Code"
|
msgid "Code"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1215,12 +1215,12 @@ msgid "Image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:196
|
#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:196
|
||||||
#: src/Module/Post/Edit.php:173 src/Object/Post.php:1066
|
#: src/Module/Post/Edit.php:176 src/Object/Post.php:1066
|
||||||
msgid "Link"
|
msgid "Link"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:197
|
#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:197
|
||||||
#: src/Module/Post/Edit.php:174 src/Object/Post.php:1067
|
#: src/Module/Post/Edit.php:177 src/Object/Post.php:1067
|
||||||
msgid "Link or Media"
|
msgid "Link or Media"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1229,29 +1229,29 @@ msgid "Video"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:200
|
#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:200
|
||||||
#: src/Module/Post/Edit.php:138
|
#: src/Module/Post/Edit.php:141
|
||||||
msgid "Set your location"
|
msgid "Set your location"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation.php:366 src/Module/Post/Edit.php:139
|
#: src/Content/Conversation.php:366 src/Module/Post/Edit.php:142
|
||||||
msgid "set location"
|
msgid "set location"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation.php:367 src/Module/Post/Edit.php:140
|
#: src/Content/Conversation.php:367 src/Module/Post/Edit.php:143
|
||||||
msgid "Clear browser location"
|
msgid "Clear browser location"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation.php:368 src/Module/Post/Edit.php:141
|
#: src/Content/Conversation.php:368 src/Module/Post/Edit.php:144
|
||||||
msgid "clear location"
|
msgid "clear location"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:205
|
#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:205
|
||||||
#: src/Module/Post/Edit.php:154
|
#: src/Module/Post/Edit.php:157
|
||||||
msgid "Set title"
|
msgid "Set title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation.php:372 src/Module/Item/Compose.php:206
|
#: src/Content/Conversation.php:372 src/Module/Item/Compose.php:206
|
||||||
#: src/Module/Post/Edit.php:156
|
#: src/Module/Post/Edit.php:159
|
||||||
msgid "Categories (comma-separated list)"
|
msgid "Categories (comma-separated list)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1259,136 +1259,136 @@ msgstr ""
|
||||||
msgid "Scheduled at"
|
msgid "Scheduled at"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation.php:382 src/Module/Post/Edit.php:143
|
#: src/Content/Conversation.php:382 src/Module/Post/Edit.php:146
|
||||||
msgid "Permission settings"
|
msgid "Permission settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation.php:392 src/Module/Post/Edit.php:152
|
#: src/Content/Conversation.php:392 src/Module/Post/Edit.php:155
|
||||||
msgid "Public post"
|
msgid "Public post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation.php:406 src/Content/Widget/VCard.php:113
|
#: src/Content/Conversation.php:406 src/Content/Widget/VCard.php:113
|
||||||
#: src/Model/Profile.php:469 src/Module/Admin/Logs/View.php:93
|
#: src/Model/Profile.php:469 src/Module/Admin/Logs/View.php:92
|
||||||
#: src/Module/Post/Edit.php:177
|
#: src/Module/Post/Edit.php:180
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation.php:407 src/Module/Post/Edit.php:178
|
#: src/Content/Conversation.php:407 src/Module/Post/Edit.php:181
|
||||||
#: src/Module/Settings/TwoFactor/Trusted.php:140
|
#: src/Module/Settings/TwoFactor/Trusted.php:140
|
||||||
msgid "Browser"
|
msgid "Browser"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation.php:409 src/Module/Post/Edit.php:181
|
#: src/Content/Conversation.php:409 src/Module/Post/Edit.php:184
|
||||||
msgid "Open Compose page"
|
msgid "Open Compose page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation.php:671 src/Object/Post.php:243
|
#: src/Content/Conversation.php:669 src/Object/Post.php:243
|
||||||
msgid "Pinned item"
|
msgid "Pinned item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation.php:687 src/Object/Post.php:491
|
#: src/Content/Conversation.php:685 src/Object/Post.php:491
|
||||||
#: src/Object/Post.php:492
|
#: src/Object/Post.php:492
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "View %s's profile @ %s"
|
msgid "View %s's profile @ %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation.php:700 src/Object/Post.php:479
|
#: src/Content/Conversation.php:698 src/Object/Post.php:479
|
||||||
msgid "Categories:"
|
msgid "Categories:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation.php:701 src/Object/Post.php:480
|
#: src/Content/Conversation.php:699 src/Object/Post.php:480
|
||||||
msgid "Filed under:"
|
msgid "Filed under:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation.php:709 src/Object/Post.php:505
|
#: src/Content/Conversation.php:707 src/Object/Post.php:505
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s from %s"
|
msgid "%s from %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation.php:725
|
#: src/Content/Conversation.php:723
|
||||||
msgid "View in context"
|
msgid "View in context"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation.php:790
|
#: src/Content/Conversation.php:788
|
||||||
msgid "remove"
|
msgid "remove"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation.php:794
|
#: src/Content/Conversation.php:792
|
||||||
msgid "Delete Selected Items"
|
msgid "Delete Selected Items"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation.php:859 src/Content/Conversation.php:862
|
#: src/Content/Conversation.php:857 src/Content/Conversation.php:860
|
||||||
#: src/Content/Conversation.php:865 src/Content/Conversation.php:868
|
#: src/Content/Conversation.php:863 src/Content/Conversation.php:866
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "You had been addressed (%s)."
|
msgid "You had been addressed (%s)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation.php:871
|
#: src/Content/Conversation.php:869
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "You are following %s."
|
msgid "You are following %s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation.php:874
|
#: src/Content/Conversation.php:872
|
||||||
msgid "You subscribed to one or more tags in this post."
|
msgid "You subscribed to one or more tags in this post."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation.php:889
|
#: src/Content/Conversation.php:887
|
||||||
msgid "Reshared"
|
msgid "Reshared"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation.php:889
|
#: src/Content/Conversation.php:887
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Reshared by %s <%s>"
|
msgid "Reshared by %s <%s>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation.php:892
|
#: src/Content/Conversation.php:890
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s is participating in this thread."
|
msgid "%s is participating in this thread."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation.php:895
|
#: src/Content/Conversation.php:893
|
||||||
msgid "Stored for general reasons"
|
msgid "Stored for general reasons"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation.php:898
|
#: src/Content/Conversation.php:896
|
||||||
msgid "Global post"
|
msgid "Global post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation.php:901
|
#: src/Content/Conversation.php:899
|
||||||
msgid "Sent via an relay server"
|
msgid "Sent via an relay server"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation.php:901
|
#: src/Content/Conversation.php:899
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Sent via the relay server %s <%s>"
|
msgid "Sent via the relay server %s <%s>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation.php:904
|
#: src/Content/Conversation.php:902
|
||||||
msgid "Fetched"
|
msgid "Fetched"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation.php:904
|
#: src/Content/Conversation.php:902
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Fetched because of %s <%s>"
|
msgid "Fetched because of %s <%s>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation.php:907
|
#: src/Content/Conversation.php:905
|
||||||
msgid "Stored because of a child post to complete this thread."
|
msgid "Stored because of a child post to complete this thread."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation.php:910
|
#: src/Content/Conversation.php:908
|
||||||
msgid "Local delivery"
|
msgid "Local delivery"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation.php:913
|
#: src/Content/Conversation.php:911
|
||||||
msgid "Stored because of your activity (like, comment, star, ...)"
|
msgid "Stored because of your activity (like, comment, star, ...)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation.php:916
|
#: src/Content/Conversation.php:914
|
||||||
msgid "Distributed"
|
msgid "Distributed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation.php:919
|
#: src/Content/Conversation.php:917
|
||||||
msgid "Pushed to us"
|
msgid "Pushed to us"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1504,25 +1504,25 @@ msgid ""
|
||||||
"Contact birthday events are private to you."
|
"Contact birthday events are private to you."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/ForumManager.php:151 src/Content/Nav.php:278
|
#: src/Content/ForumManager.php:157 src/Content/Nav.php:276
|
||||||
#: src/Content/Text/HTML.php:905 src/Content/Widget.php:524
|
#: src/Content/Text/HTML.php:905 src/Content/Widget.php:524
|
||||||
msgid "Forums"
|
msgid "Forums"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/ForumManager.php:153
|
#: src/Content/ForumManager.php:159
|
||||||
msgid "External link to forum"
|
msgid "External link to forum"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/ForumManager.php:156 src/Content/Widget.php:503
|
#: src/Content/ForumManager.php:162 src/Content/Widget.php:503
|
||||||
msgid "show less"
|
msgid "show less"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/ForumManager.php:157 src/Content/Widget.php:405
|
#: src/Content/ForumManager.php:163 src/Content/Widget.php:405
|
||||||
#: src/Content/Widget.php:504
|
#: src/Content/Widget.php:504
|
||||||
msgid "show more"
|
msgid "show more"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Item.php:326 src/Model/Item.php:2900
|
#: src/Content/Item.php:326 src/Model/Item.php:2904
|
||||||
msgid "event"
|
msgid "event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1530,7 +1530,7 @@ msgstr ""
|
||||||
msgid "status"
|
msgid "status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Item.php:335 src/Model/Item.php:2902
|
#: src/Content/Item.php:335 src/Model/Item.php:2906
|
||||||
#: src/Module/Post/Tag/Add.php:123
|
#: src/Module/Post/Tag/Add.php:123
|
||||||
msgid "photo"
|
msgid "photo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -1548,9 +1548,9 @@ msgstr ""
|
||||||
msgid "View Status"
|
msgid "View Status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Item.php:421 src/Content/Item.php:440 src/Model/Contact.php:1148
|
#: src/Content/Item.php:421 src/Content/Item.php:441 src/Model/Contact.php:1148
|
||||||
#: src/Model/Contact.php:1196 src/Model/Contact.php:1205
|
#: src/Model/Contact.php:1196 src/Model/Contact.php:1205
|
||||||
#: src/Module/Directory.php:157 src/Module/Settings/Profile/Index.php:234
|
#: src/Module/Directory.php:157 src/Module/Settings/Profile/Index.php:233
|
||||||
msgid "View Profile"
|
msgid "View Profile"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1572,24 +1572,24 @@ msgstr ""
|
||||||
msgid "Send PM"
|
msgid "Send PM"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Item.php:426 src/Module/Contact.php:440
|
#: src/Content/Item.php:426 src/Module/Contact.php:439
|
||||||
#: src/Module/Contact/Profile.php:478
|
#: src/Module/Contact/Profile.php:477
|
||||||
#: src/Module/Moderation/Blocklist/Contact.php:116
|
#: src/Module/Moderation/Blocklist/Contact.php:116
|
||||||
#: src/Module/Moderation/Users/Active.php:137
|
#: src/Module/Moderation/Users/Active.php:137
|
||||||
#: src/Module/Moderation/Users/Index.php:152
|
#: src/Module/Moderation/Users/Index.php:152
|
||||||
msgid "Block"
|
msgid "Block"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Item.php:427 src/Module/Contact.php:441
|
#: src/Content/Item.php:427 src/Module/Contact.php:440
|
||||||
#: src/Module/Contact/Profile.php:486
|
#: src/Module/Contact/Profile.php:485
|
||||||
#: src/Module/Notifications/Introductions.php:134
|
#: src/Module/Notifications/Introductions.php:134
|
||||||
#: src/Module/Notifications/Introductions.php:206
|
#: src/Module/Notifications/Introductions.php:206
|
||||||
#: src/Module/Notifications/Notification.php:89
|
#: src/Module/Notifications/Notification.php:89
|
||||||
msgid "Ignore"
|
msgid "Ignore"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Item.php:428 src/Module/Contact.php:442
|
#: src/Content/Item.php:428 src/Module/Contact.php:441
|
||||||
#: src/Module/Contact/Profile.php:494
|
#: src/Module/Contact/Profile.php:493
|
||||||
msgid "Collapse"
|
msgid "Collapse"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1597,13 +1597,13 @@ msgstr ""
|
||||||
msgid "Languages"
|
msgid "Languages"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Item.php:437 src/Content/Widget.php:80
|
#: src/Content/Item.php:438 src/Content/Widget.php:80
|
||||||
#: src/Model/Contact.php:1199 src/Model/Contact.php:1210
|
#: src/Model/Contact.php:1199 src/Model/Contact.php:1210
|
||||||
#: src/Module/Contact/Follow.php:166 view/theme/vier/theme.php:196
|
#: src/Module/Contact/Follow.php:166 view/theme/vier/theme.php:196
|
||||||
msgid "Connect/Follow"
|
msgid "Connect/Follow"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Item.php:862
|
#: src/Content/Item.php:863
|
||||||
msgid "Unable to fetch user."
|
msgid "Unable to fetch user."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1623,63 +1623,63 @@ msgstr ""
|
||||||
msgid "@name, !forum, #tags, content"
|
msgid "@name, !forum, #tags, content"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:222 src/Module/Security/Login.php:158
|
#: src/Content/Nav.php:220 src/Module/Security/Login.php:157
|
||||||
msgid "Logout"
|
msgid "Logout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:222
|
#: src/Content/Nav.php:220
|
||||||
msgid "End this session"
|
msgid "End this session"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44
|
#: src/Content/Nav.php:222 src/Module/Bookmarklet.php:44
|
||||||
#: src/Module/Security/Login.php:159
|
#: src/Module/Security/Login.php:158
|
||||||
msgid "Login"
|
msgid "Login"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:224
|
#: src/Content/Nav.php:222
|
||||||
msgid "Sign in"
|
msgid "Sign in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57
|
#: src/Content/Nav.php:227 src/Module/BaseProfile.php:57
|
||||||
#: src/Module/Contact.php:484
|
#: src/Module/Contact.php:483
|
||||||
msgid "Conversations"
|
msgid "Conversations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:229
|
#: src/Content/Nav.php:227
|
||||||
msgid "Conversations you started"
|
msgid "Conversations you started"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:230 src/Module/BaseProfile.php:49
|
#: src/Content/Nav.php:228 src/Module/BaseProfile.php:49
|
||||||
#: src/Module/BaseSettings.php:100 src/Module/Contact.php:476
|
#: src/Module/BaseSettings.php:100 src/Module/Contact.php:475
|
||||||
#: src/Module/Contact/Profile.php:393 src/Module/Profile/Profile.php:268
|
#: src/Module/Contact/Profile.php:392 src/Module/Profile/Profile.php:268
|
||||||
#: src/Module/Welcome.php:57 view/theme/frio/theme.php:230
|
#: src/Module/Welcome.php:57 view/theme/frio/theme.php:230
|
||||||
msgid "Profile"
|
msgid "Profile"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:230 view/theme/frio/theme.php:230
|
#: src/Content/Nav.php:228 view/theme/frio/theme.php:230
|
||||||
msgid "Your profile page"
|
msgid "Your profile page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:231 src/Module/BaseProfile.php:65
|
#: src/Content/Nav.php:229 src/Module/BaseProfile.php:65
|
||||||
#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:234
|
#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:234
|
||||||
msgid "Photos"
|
msgid "Photos"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:231 view/theme/frio/theme.php:234
|
#: src/Content/Nav.php:229 view/theme/frio/theme.php:234
|
||||||
msgid "Your photos"
|
msgid "Your photos"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:232 src/Module/BaseProfile.php:73
|
#: src/Content/Nav.php:230 src/Module/BaseProfile.php:73
|
||||||
#: src/Module/BaseProfile.php:76 src/Module/Contact.php:500
|
#: src/Module/BaseProfile.php:76 src/Module/Contact.php:499
|
||||||
#: view/theme/frio/theme.php:235
|
#: view/theme/frio/theme.php:235
|
||||||
msgid "Media"
|
msgid "Media"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:232 view/theme/frio/theme.php:235
|
#: src/Content/Nav.php:230 view/theme/frio/theme.php:235
|
||||||
msgid "Your postings with media"
|
msgid "Your postings with media"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:233 src/Content/Nav.php:293
|
#: src/Content/Nav.php:231 src/Content/Nav.php:291
|
||||||
#: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88
|
#: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88
|
||||||
#: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99
|
#: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99
|
||||||
#: src/Module/Settings/Display.php:252 view/theme/frio/theme.php:236
|
#: src/Module/Settings/Display.php:252 view/theme/frio/theme.php:236
|
||||||
|
|
@ -1687,36 +1687,36 @@ msgstr ""
|
||||||
msgid "Calendar"
|
msgid "Calendar"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:233 view/theme/frio/theme.php:236
|
#: src/Content/Nav.php:231 view/theme/frio/theme.php:236
|
||||||
msgid "Your calendar"
|
msgid "Your calendar"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:234
|
#: src/Content/Nav.php:232
|
||||||
msgid "Personal notes"
|
msgid "Personal notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:234
|
#: src/Content/Nav.php:232
|
||||||
msgid "Your personal notes"
|
msgid "Your personal notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:251 src/Content/Nav.php:308
|
#: src/Content/Nav.php:249 src/Content/Nav.php:306
|
||||||
msgid "Home"
|
msgid "Home"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:74
|
#: src/Content/Nav.php:249 src/Module/Settings/OAuth.php:73
|
||||||
msgid "Home Page"
|
msgid "Home Page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:255 src/Module/Register.php:168
|
#: src/Content/Nav.php:253 src/Module/Register.php:168
|
||||||
#: src/Module/Security/Login.php:124
|
#: src/Module/Security/Login.php:124
|
||||||
msgid "Register"
|
msgid "Register"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:255
|
#: src/Content/Nav.php:253
|
||||||
msgid "Create an account"
|
msgid "Create an account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:261 src/Module/Help.php:67
|
#: src/Content/Nav.php:259 src/Module/Help.php:67
|
||||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:129
|
#: src/Module/Settings/TwoFactor/AppSpecific.php:129
|
||||||
#: src/Module/Settings/TwoFactor/Index.php:118
|
#: src/Module/Settings/TwoFactor/Index.php:118
|
||||||
#: src/Module/Settings/TwoFactor/Recovery.php:107
|
#: src/Module/Settings/TwoFactor/Recovery.php:107
|
||||||
|
|
@ -1724,158 +1724,158 @@ msgstr ""
|
||||||
msgid "Help"
|
msgid "Help"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:261
|
#: src/Content/Nav.php:259
|
||||||
msgid "Help and documentation"
|
msgid "Help and documentation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:265
|
#: src/Content/Nav.php:263
|
||||||
msgid "Apps"
|
msgid "Apps"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:265
|
#: src/Content/Nav.php:263
|
||||||
msgid "Addon applications, utilities, games"
|
msgid "Addon applications, utilities, games"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:269 src/Content/Text/HTML.php:890
|
#: src/Content/Nav.php:267 src/Content/Text/HTML.php:890
|
||||||
#: src/Module/Admin/Logs/View.php:87 src/Module/Search/Index.php:112
|
#: src/Module/Admin/Logs/View.php:86 src/Module/Search/Index.php:112
|
||||||
msgid "Search"
|
msgid "Search"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:269
|
#: src/Content/Nav.php:267
|
||||||
msgid "Search site content"
|
msgid "Search site content"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:272 src/Content/Text/HTML.php:899
|
#: src/Content/Nav.php:270 src/Content/Text/HTML.php:899
|
||||||
msgid "Full Text"
|
msgid "Full Text"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:273 src/Content/Text/HTML.php:900
|
#: src/Content/Nav.php:271 src/Content/Text/HTML.php:900
|
||||||
#: src/Content/Widget/TagCloud.php:68
|
#: src/Content/Widget/TagCloud.php:68
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:274 src/Content/Nav.php:329
|
#: src/Content/Nav.php:272 src/Content/Nav.php:327
|
||||||
#: src/Content/Text/HTML.php:901 src/Module/BaseProfile.php:127
|
#: src/Content/Text/HTML.php:901 src/Module/BaseProfile.php:127
|
||||||
#: src/Module/BaseProfile.php:130 src/Module/Contact.php:411
|
#: src/Module/BaseProfile.php:130 src/Module/Contact.php:410
|
||||||
#: src/Module/Contact.php:507 view/theme/frio/theme.php:243
|
#: src/Module/Contact.php:506 view/theme/frio/theme.php:243
|
||||||
msgid "Contacts"
|
msgid "Contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:289
|
#: src/Content/Nav.php:287
|
||||||
msgid "Community"
|
msgid "Community"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:289
|
#: src/Content/Nav.php:287
|
||||||
msgid "Conversations on this and other servers"
|
msgid "Conversations on this and other servers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:296
|
#: src/Content/Nav.php:294
|
||||||
msgid "Directory"
|
msgid "Directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:296
|
#: src/Content/Nav.php:294
|
||||||
msgid "People directory"
|
msgid "People directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:298 src/Module/BaseAdmin.php:85
|
#: src/Content/Nav.php:296 src/Module/BaseAdmin.php:85
|
||||||
#: src/Module/BaseModeration.php:108
|
#: src/Module/BaseModeration.php:108
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:298
|
#: src/Content/Nav.php:296
|
||||||
msgid "Information about this friendica instance"
|
msgid "Information about this friendica instance"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:301 src/Module/Admin/Tos.php:78
|
#: src/Content/Nav.php:299 src/Module/Admin/Tos.php:78
|
||||||
#: src/Module/BaseAdmin.php:95 src/Module/Register.php:176
|
#: src/Module/BaseAdmin.php:95 src/Module/Register.php:176
|
||||||
#: src/Module/Tos.php:100
|
#: src/Module/Tos.php:100
|
||||||
msgid "Terms of Service"
|
msgid "Terms of Service"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:301
|
#: src/Content/Nav.php:299
|
||||||
msgid "Terms of Service of this Friendica instance"
|
msgid "Terms of Service of this Friendica instance"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:306 view/theme/frio/theme.php:239
|
#: src/Content/Nav.php:304 view/theme/frio/theme.php:239
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:306 view/theme/frio/theme.php:239
|
#: src/Content/Nav.php:304 view/theme/frio/theme.php:239
|
||||||
msgid "Conversations from your friends"
|
msgid "Conversations from your friends"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:308 view/theme/frio/theme.php:229
|
#: src/Content/Nav.php:306 view/theme/frio/theme.php:229
|
||||||
msgid "Your posts and conversations"
|
msgid "Your posts and conversations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:312
|
#: src/Content/Nav.php:310
|
||||||
msgid "Introductions"
|
msgid "Introductions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:312
|
#: src/Content/Nav.php:310
|
||||||
msgid "Friend Requests"
|
msgid "Friend Requests"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:313 src/Module/BaseNotifications.php:149
|
#: src/Content/Nav.php:311 src/Module/BaseNotifications.php:149
|
||||||
#: src/Module/Notifications/Introductions.php:75
|
#: src/Module/Notifications/Introductions.php:75
|
||||||
msgid "Notifications"
|
msgid "Notifications"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:314
|
#: src/Content/Nav.php:312
|
||||||
msgid "See all notifications"
|
msgid "See all notifications"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:241
|
#: src/Content/Nav.php:313 src/Module/Settings/Connectors.php:244
|
||||||
msgid "Mark as seen"
|
msgid "Mark as seen"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:315
|
#: src/Content/Nav.php:313
|
||||||
msgid "Mark all system notifications as seen"
|
msgid "Mark all system notifications as seen"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:318 view/theme/frio/theme.php:241
|
#: src/Content/Nav.php:316 view/theme/frio/theme.php:241
|
||||||
msgid "Private mail"
|
msgid "Private mail"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:319
|
#: src/Content/Nav.php:317
|
||||||
msgid "Inbox"
|
msgid "Inbox"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:320
|
#: src/Content/Nav.php:318
|
||||||
msgid "Outbox"
|
msgid "Outbox"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:324
|
#: src/Content/Nav.php:322
|
||||||
msgid "Accounts"
|
msgid "Accounts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:324
|
#: src/Content/Nav.php:322
|
||||||
msgid "Manage other pages"
|
msgid "Manage other pages"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114
|
#: src/Content/Nav.php:325 src/Module/Admin/Addons/Details.php:114
|
||||||
#: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:170
|
#: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:170
|
||||||
#: src/Module/Welcome.php:52 view/theme/frio/theme.php:242
|
#: src/Module/Welcome.php:52 view/theme/frio/theme.php:242
|
||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:327 view/theme/frio/theme.php:242
|
#: src/Content/Nav.php:325 view/theme/frio/theme.php:242
|
||||||
msgid "Account settings"
|
msgid "Account settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:329 view/theme/frio/theme.php:243
|
#: src/Content/Nav.php:327 view/theme/frio/theme.php:243
|
||||||
msgid "Manage/edit friends and contacts"
|
msgid "Manage/edit friends and contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119
|
#: src/Content/Nav.php:332 src/Module/BaseAdmin.php:119
|
||||||
msgid "Admin"
|
msgid "Admin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:334
|
#: src/Content/Nav.php:332
|
||||||
msgid "Site setup and configuration"
|
msgid "Site setup and configuration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:335 src/Module/BaseModeration.php:127
|
#: src/Content/Nav.php:333 src/Module/BaseModeration.php:127
|
||||||
#: src/Module/Moderation/Blocklist/Contact.php:110
|
#: src/Module/Moderation/Blocklist/Contact.php:110
|
||||||
#: src/Module/Moderation/Blocklist/Server/Add.php:121
|
#: src/Module/Moderation/Blocklist/Server/Add.php:121
|
||||||
#: src/Module/Moderation/Blocklist/Server/Import.php:118
|
#: src/Module/Moderation/Blocklist/Server/Import.php:118
|
||||||
|
|
@ -1889,15 +1889,15 @@ msgstr ""
|
||||||
msgid "Moderation"
|
msgid "Moderation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:335
|
#: src/Content/Nav.php:333
|
||||||
msgid "Content and user moderation"
|
msgid "Content and user moderation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:338
|
#: src/Content/Nav.php:336
|
||||||
msgid "Navigation"
|
msgid "Navigation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:338
|
#: src/Content/Nav.php:336
|
||||||
msgid "Site map"
|
msgid "Site map"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1925,39 +1925,39 @@ msgstr ""
|
||||||
msgid "last"
|
msgid "last"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Text/BBCode.php:949 src/Content/Text/BBCode.php:1811
|
#: src/Content/Text/BBCode.php:716 src/Content/Text/BBCode.php:1592
|
||||||
#: src/Content/Text/BBCode.php:1812
|
#: src/Content/Text/BBCode.php:1593
|
||||||
msgid "Image/photo"
|
msgid "Image/photo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Text/BBCode.php:1166
|
#: src/Content/Text/BBCode.php:934
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%1$s\" target=\"_blank\" rel=\"noopener noreferrer\">%2$s</a> %3$s"
|
"<a href=\"%1$s\" target=\"_blank\" rel=\"noopener noreferrer\">%2$s</a> %3$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Text/BBCode.php:1191 src/Model/Item.php:3573
|
#: src/Content/Text/BBCode.php:959 src/Model/Item.php:3585
|
||||||
#: src/Model/Item.php:3579 src/Model/Item.php:3580
|
#: src/Model/Item.php:3591 src/Model/Item.php:3592
|
||||||
msgid "Link to source"
|
msgid "Link to source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Text/BBCode.php:1729 src/Content/Text/HTML.php:929
|
#: src/Content/Text/BBCode.php:1504 src/Content/Text/HTML.php:929
|
||||||
msgid "Click to open/close"
|
msgid "Click to open/close"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Text/BBCode.php:1760
|
#: src/Content/Text/BBCode.php:1537
|
||||||
msgid "$1 wrote:"
|
msgid "$1 wrote:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Text/BBCode.php:1816 src/Content/Text/BBCode.php:1817
|
#: src/Content/Text/BBCode.php:1597 src/Content/Text/BBCode.php:1598
|
||||||
msgid "Encrypted content"
|
msgid "Encrypted content"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Text/BBCode.php:2044
|
#: src/Content/Text/BBCode.php:1863
|
||||||
msgid "Invalid source protocol"
|
msgid "Invalid source protocol"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Text/BBCode.php:2059
|
#: src/Content/Text/BBCode.php:1882
|
||||||
msgid "Invalid link protocol"
|
msgid "Invalid link protocol"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1970,7 +1970,7 @@ msgid "The end"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Text/HTML.php:884 src/Content/Widget/VCard.php:109
|
#: src/Content/Text/HTML.php:884 src/Content/Widget/VCard.php:109
|
||||||
#: src/Model/Profile.php:463 src/Module/Contact/Profile.php:438
|
#: src/Model/Profile.php:463 src/Module/Contact/Profile.php:437
|
||||||
msgid "Follow"
|
msgid "Follow"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2009,7 +2009,7 @@ msgstr ""
|
||||||
msgid "Examples: Robert Morgenstein, Fishing"
|
msgid "Examples: Robert Morgenstein, Fishing"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Widget.php:82 src/Module/Contact.php:433
|
#: src/Content/Widget.php:82 src/Module/Contact.php:432
|
||||||
#: src/Module/Directory.php:96 view/theme/vier/theme.php:198
|
#: src/Module/Directory.php:96 view/theme/vier/theme.php:198
|
||||||
msgid "Find"
|
msgid "Find"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -2041,7 +2041,7 @@ msgid "Local Directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Widget.php:211 src/Model/Group.php:587
|
#: src/Content/Widget.php:211 src/Model/Group.php:587
|
||||||
#: src/Module/Contact.php:395 src/Module/Welcome.php:76
|
#: src/Module/Contact.php:394 src/Module/Welcome.php:76
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2053,7 +2053,7 @@ msgstr ""
|
||||||
msgid "Relationships"
|
msgid "Relationships"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Widget.php:244 src/Module/Contact.php:339
|
#: src/Content/Widget.php:244 src/Module/Contact.php:338
|
||||||
#: src/Module/Group.php:291
|
#: src/Module/Group.php:291
|
||||||
msgid "All Contacts"
|
msgid "All Contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -2156,18 +2156,18 @@ msgid "More Trending Tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Widget/VCard.php:102 src/Model/Profile.php:378
|
#: src/Content/Widget/VCard.php:102 src/Model/Profile.php:378
|
||||||
#: src/Module/Contact/Profile.php:382 src/Module/Profile/Profile.php:199
|
#: src/Module/Contact/Profile.php:381 src/Module/Profile/Profile.php:199
|
||||||
msgid "XMPP:"
|
msgid "XMPP:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Widget/VCard.php:103 src/Model/Profile.php:379
|
#: src/Content/Widget/VCard.php:103 src/Model/Profile.php:379
|
||||||
#: src/Module/Contact/Profile.php:384 src/Module/Profile/Profile.php:203
|
#: src/Module/Contact/Profile.php:383 src/Module/Profile/Profile.php:203
|
||||||
msgid "Matrix:"
|
msgid "Matrix:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Widget/VCard.php:104 src/Model/Event.php:82
|
#: src/Content/Widget/VCard.php:104 src/Model/Event.php:82
|
||||||
#: src/Model/Event.php:109 src/Model/Event.php:473 src/Model/Event.php:958
|
#: src/Model/Event.php:109 src/Model/Event.php:473 src/Model/Event.php:958
|
||||||
#: src/Model/Profile.php:373 src/Module/Contact/Profile.php:380
|
#: src/Model/Profile.php:373 src/Module/Contact/Profile.php:379
|
||||||
#: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187
|
#: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187
|
||||||
#: src/Module/Profile/Profile.php:221
|
#: src/Module/Profile/Profile.php:221
|
||||||
msgid "Location:"
|
msgid "Location:"
|
||||||
|
|
@ -2180,7 +2180,7 @@ msgstr ""
|
||||||
|
|
||||||
#: src/Content/Widget/VCard.php:111 src/Model/Contact.php:1200
|
#: src/Content/Widget/VCard.php:111 src/Model/Contact.php:1200
|
||||||
#: src/Model/Contact.php:1211 src/Model/Profile.php:465
|
#: src/Model/Contact.php:1211 src/Model/Profile.php:465
|
||||||
#: src/Module/Contact/Profile.php:430
|
#: src/Module/Contact/Profile.php:429
|
||||||
msgid "Unfollow"
|
msgid "Unfollow"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2233,11 +2233,11 @@ msgstr ""
|
||||||
msgid "Except to:"
|
msgid "Except to:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/ACL.php:326 src/Module/Post/Edit.php:151
|
#: src/Core/ACL.php:326 src/Module/Post/Edit.php:154
|
||||||
msgid "CC: email addresses"
|
msgid "CC: email addresses"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/ACL.php:327 src/Module/Post/Edit.php:157
|
#: src/Core/ACL.php:327 src/Module/Post/Edit.php:160
|
||||||
msgid "Example: bob@example.com, mary@example.com"
|
msgid "Example: bob@example.com, mary@example.com"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2896,68 +2896,68 @@ msgstr ""
|
||||||
msgid "Forum"
|
msgid "Forum"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:2942
|
#: src/Model/Contact.php:2947
|
||||||
msgid "Disallowed profile URL."
|
msgid "Disallowed profile URL."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:2947 src/Module/Friendica.php:83
|
#: src/Model/Contact.php:2952 src/Module/Friendica.php:83
|
||||||
msgid "Blocked domain"
|
msgid "Blocked domain"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:2952
|
#: src/Model/Contact.php:2957
|
||||||
msgid "Connect URL missing."
|
msgid "Connect URL missing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:2961
|
#: src/Model/Contact.php:2966
|
||||||
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:2979
|
#: src/Model/Contact.php:2984
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Expected network %s does not match actual network %s"
|
msgid "Expected network %s does not match actual network %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:2996
|
#: src/Model/Contact.php:3001
|
||||||
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:2998
|
#: src/Model/Contact.php:3003
|
||||||
msgid "No compatible communication protocols or feeds were discovered."
|
msgid "No compatible communication protocols or feeds were discovered."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:3001
|
#: src/Model/Contact.php:3006
|
||||||
msgid "An author or name was not found."
|
msgid "An author or name was not found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:3004
|
#: src/Model/Contact.php:3009
|
||||||
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:3007
|
#: src/Model/Contact.php:3012
|
||||||
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:3008
|
#: src/Model/Contact.php:3013
|
||||||
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:3014
|
#: src/Model/Contact.php:3019
|
||||||
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:3019
|
#: src/Model/Contact.php:3024
|
||||||
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:3084
|
#: src/Model/Contact.php:3089
|
||||||
msgid "Unable to retrieve contact information."
|
msgid "Unable to retrieve contact information."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -3106,81 +3106,81 @@ msgstr ""
|
||||||
msgid "Edit groups"
|
msgid "Edit groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Item.php:2001
|
#: src/Model/Item.php:2005
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Detected languages in this post:\\n%s"
|
msgid "Detected languages in this post:\\n%s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Item.php:2904
|
#: src/Model/Item.php:2908
|
||||||
msgid "activity"
|
msgid "activity"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Item.php:2906
|
#: src/Model/Item.php:2910
|
||||||
msgid "comment"
|
msgid "comment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Item.php:2909 src/Module/Post/Tag/Add.php:123
|
#: src/Model/Item.php:2913 src/Module/Post/Tag/Add.php:123
|
||||||
msgid "post"
|
msgid "post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Item.php:3059
|
#: src/Model/Item.php:3071
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s is blocked"
|
msgid "%s is blocked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Item.php:3061
|
#: src/Model/Item.php:3073
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s is ignored"
|
msgid "%s is ignored"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Item.php:3063
|
#: src/Model/Item.php:3075
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Content from %s is collapsed"
|
msgid "Content from %s is collapsed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Item.php:3067
|
#: src/Model/Item.php:3079
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Content warning: %s"
|
msgid "Content warning: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Item.php:3485
|
#: src/Model/Item.php:3497
|
||||||
msgid "bytes"
|
msgid "bytes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Item.php:3516
|
#: src/Model/Item.php:3528
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%2$s (%3$d%%, %1$d vote)"
|
msgid "%2$s (%3$d%%, %1$d vote)"
|
||||||
msgid_plural "%2$s (%3$d%%, %1$d votes)"
|
msgid_plural "%2$s (%3$d%%, %1$d votes)"
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
|
|
||||||
#: src/Model/Item.php:3518
|
#: src/Model/Item.php:3530
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%2$s (%1$d vote)"
|
msgid "%2$s (%1$d vote)"
|
||||||
msgid_plural "%2$s (%1$d votes)"
|
msgid_plural "%2$s (%1$d votes)"
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
|
|
||||||
#: src/Model/Item.php:3523
|
#: src/Model/Item.php:3535
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%d voter. Poll end: %s"
|
msgid "%d voter. Poll end: %s"
|
||||||
msgid_plural "%d voters. Poll end: %s"
|
msgid_plural "%d voters. Poll end: %s"
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
|
|
||||||
#: src/Model/Item.php:3525
|
#: src/Model/Item.php:3537
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%d voter."
|
msgid "%d voter."
|
||||||
msgid_plural "%d voters."
|
msgid_plural "%d voters."
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
|
|
||||||
#: src/Model/Item.php:3527
|
#: src/Model/Item.php:3539
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Poll end: %s"
|
msgid "Poll end: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Item.php:3561 src/Model/Item.php:3562
|
#: src/Model/Item.php:3573 src/Model/Item.php:3574
|
||||||
msgid "View on separate page"
|
msgid "View on separate page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -3206,7 +3206,7 @@ msgstr ""
|
||||||
msgid "Homepage:"
|
msgid "Homepage:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:377 src/Module/Contact/Profile.php:386
|
#: src/Model/Profile.php:377 src/Module/Contact/Profile.php:385
|
||||||
#: src/Module/Notifications/Introductions.php:189
|
#: src/Module/Notifications/Introductions.php:189
|
||||||
msgid "About:"
|
msgid "About:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -3621,7 +3621,7 @@ msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Addons/Details.php:111 src/Module/Admin/Addons/Index.php:67
|
#: src/Module/Admin/Addons/Details.php:111 src/Module/Admin/Addons/Index.php:67
|
||||||
#: src/Module/Admin/Federation.php:207 src/Module/Admin/Logs/Settings.php:79
|
#: src/Module/Admin/Federation.php:207 src/Module/Admin/Logs/Settings.php:79
|
||||||
#: src/Module/Admin/Logs/View.php:84 src/Module/Admin/Queue.php:72
|
#: src/Module/Admin/Logs/View.php:83 src/Module/Admin/Queue.php:72
|
||||||
#: src/Module/Admin/Site.php:389 src/Module/Admin/Storage.php:138
|
#: src/Module/Admin/Site.php:389 src/Module/Admin/Storage.php:138
|
||||||
#: src/Module/Admin/Summary.php:220 src/Module/Admin/Themes/Details.php:90
|
#: src/Module/Admin/Summary.php:220 src/Module/Admin/Themes/Details.php:90
|
||||||
#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:77
|
#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:77
|
||||||
|
|
@ -3640,13 +3640,13 @@ msgstr ""
|
||||||
msgid "Toggle"
|
msgid "Toggle"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Addons/Details.php:121
|
#: src/Module/Admin/Addons/Details.php:120
|
||||||
#: src/Module/Admin/Themes/Details.php:101
|
#: src/Module/Admin/Themes/Details.php:100
|
||||||
msgid "Author: "
|
msgid "Author: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Addons/Details.php:122
|
#: src/Module/Admin/Addons/Details.php:121
|
||||||
#: src/Module/Admin/Themes/Details.php:102
|
#: src/Module/Admin/Themes/Details.php:101
|
||||||
msgid "Maintainer: "
|
msgid "Maintainer: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -3659,12 +3659,12 @@ msgstr ""
|
||||||
msgid "Addon %s failed to install."
|
msgid "Addon %s failed to install."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:87
|
#: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:86
|
||||||
#: src/Module/Admin/Logs/Settings.php:81 src/Module/Admin/Site.php:392
|
#: src/Module/Admin/Logs/Settings.php:81 src/Module/Admin/Site.php:392
|
||||||
#: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86
|
#: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86
|
||||||
#: src/Module/Settings/Account.php:560 src/Module/Settings/Addons.php:78
|
#: src/Module/Settings/Account.php:560 src/Module/Settings/Addons.php:78
|
||||||
#: src/Module/Settings/Connectors.php:158
|
#: src/Module/Settings/Connectors.php:160
|
||||||
#: src/Module/Settings/Connectors.php:243
|
#: src/Module/Settings/Connectors.php:246
|
||||||
#: src/Module/Settings/Delegation.php:169 src/Module/Settings/Display.php:247
|
#: src/Module/Settings/Delegation.php:169 src/Module/Settings/Display.php:247
|
||||||
#: src/Module/Settings/Features.php:76
|
#: src/Module/Settings/Features.php:76
|
||||||
msgid "Save Settings"
|
msgid "Save Settings"
|
||||||
|
|
@ -3674,7 +3674,7 @@ msgstr ""
|
||||||
msgid "Reload active addons"
|
msgid "Reload active addons"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Addons/Index.php:75
|
#: src/Module/Admin/Addons/Index.php:74
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"There are currently no addons available on your node. You can find the "
|
"There are currently no addons available on your node. You can find the "
|
||||||
|
|
@ -3716,28 +3716,28 @@ msgstr ""
|
||||||
msgid "There was no additional update function %s that needed to be called."
|
msgid "There was no additional update function %s that needed to be called."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/DBSync.php:106
|
#: src/Module/Admin/DBSync.php:105
|
||||||
msgid "No failed updates."
|
msgid "No failed updates."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/DBSync.php:107
|
#: src/Module/Admin/DBSync.php:106
|
||||||
msgid "Check database structure"
|
msgid "Check database structure"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/DBSync.php:112
|
#: src/Module/Admin/DBSync.php:110
|
||||||
msgid "Failed Updates"
|
msgid "Failed Updates"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/DBSync.php:113
|
#: src/Module/Admin/DBSync.php:111
|
||||||
msgid ""
|
msgid ""
|
||||||
"This does not include updates prior to 1139, which did not return a status."
|
"This does not include updates prior to 1139, which did not return a status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/DBSync.php:114
|
#: src/Module/Admin/DBSync.php:112
|
||||||
msgid "Mark success (if update was manually applied)"
|
msgid "Mark success (if update was manually applied)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/DBSync.php:115
|
#: src/Module/Admin/DBSync.php:113
|
||||||
msgid "Attempt to execute this update step automatically"
|
msgid "Attempt to execute this update step automatically"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -3746,7 +3746,7 @@ msgstr ""
|
||||||
msgid "Lock feature %s"
|
msgid "Lock feature %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Features.php:85
|
#: src/Module/Admin/Features.php:84
|
||||||
msgid "Manage Additional Features"
|
msgid "Manage Additional Features"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -3853,29 +3853,29 @@ msgstr ""
|
||||||
msgid "Clear"
|
msgid "Clear"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Logs/Settings.php:86
|
#: src/Module/Admin/Logs/Settings.php:85
|
||||||
msgid "Enable Debugging"
|
msgid "Enable Debugging"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Logs/Settings.php:87
|
#: src/Module/Admin/Logs/Settings.php:86
|
||||||
msgid "Log file"
|
msgid "Log file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Logs/Settings.php:87
|
#: src/Module/Admin/Logs/Settings.php:86
|
||||||
msgid ""
|
msgid ""
|
||||||
"Must be writable by web server. Relative to your Friendica top-level "
|
"Must be writable by web server. Relative to your Friendica top-level "
|
||||||
"directory."
|
"directory."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Logs/Settings.php:88
|
#: src/Module/Admin/Logs/Settings.php:87
|
||||||
msgid "Log level"
|
msgid "Log level"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Logs/Settings.php:90
|
#: src/Module/Admin/Logs/Settings.php:89
|
||||||
msgid "PHP logging"
|
msgid "PHP logging"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Logs/Settings.php:91
|
#: src/Module/Admin/Logs/Settings.php:90
|
||||||
msgid ""
|
msgid ""
|
||||||
"To temporarily enable logging of PHP errors and warnings you can prepend the "
|
"To temporarily enable logging of PHP errors and warnings you can prepend the "
|
||||||
"following to the index.php file of your installation. The filename set in "
|
"following to the index.php file of your installation. The filename set in "
|
||||||
|
|
@ -3898,77 +3898,77 @@ msgid ""
|
||||||
"is readable."
|
"is readable."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Logs/View.php:85 src/Module/BaseAdmin.php:104
|
#: src/Module/Admin/Logs/View.php:84 src/Module/BaseAdmin.php:104
|
||||||
msgid "View Logs"
|
msgid "View Logs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Logs/View.php:88
|
#: src/Module/Admin/Logs/View.php:87
|
||||||
msgid "Search in logs"
|
msgid "Search in logs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Logs/View.php:89
|
#: src/Module/Admin/Logs/View.php:88
|
||||||
#: src/Module/Notifications/Notifications.php:140
|
#: src/Module/Notifications/Notifications.php:140
|
||||||
msgid "Show all"
|
msgid "Show all"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Logs/View.php:90
|
#: src/Module/Admin/Logs/View.php:89
|
||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Logs/View.php:91
|
#: src/Module/Admin/Logs/View.php:90
|
||||||
msgid "Level"
|
msgid "Level"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Logs/View.php:92
|
#: src/Module/Admin/Logs/View.php:91
|
||||||
msgid "Context"
|
msgid "Context"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Logs/View.php:94
|
#: src/Module/Admin/Logs/View.php:93
|
||||||
msgid "ALL"
|
msgid "ALL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Logs/View.php:95
|
#: src/Module/Admin/Logs/View.php:94
|
||||||
msgid "View details"
|
msgid "View details"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Logs/View.php:96
|
#: src/Module/Admin/Logs/View.php:95
|
||||||
msgid "Click to view details"
|
msgid "Click to view details"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Logs/View.php:97 src/Module/Calendar/Event/Form.php:207
|
#: src/Module/Admin/Logs/View.php:96 src/Module/Calendar/Event/Form.php:207
|
||||||
msgid "Event details"
|
msgid "Event details"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Logs/View.php:98
|
#: src/Module/Admin/Logs/View.php:97
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Logs/View.php:99
|
#: src/Module/Admin/Logs/View.php:98
|
||||||
#: src/Module/Debug/ActivityPubConversion.php:57
|
#: src/Module/Debug/ActivityPubConversion.php:57
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Logs/View.php:100
|
#: src/Module/Admin/Logs/View.php:99
|
||||||
msgid "File"
|
msgid "File"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Logs/View.php:101
|
#: src/Module/Admin/Logs/View.php:100
|
||||||
msgid "Line"
|
msgid "Line"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Logs/View.php:102
|
#: src/Module/Admin/Logs/View.php:101
|
||||||
msgid "Function"
|
msgid "Function"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Logs/View.php:103
|
#: src/Module/Admin/Logs/View.php:102
|
||||||
msgid "UID"
|
msgid "UID"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Logs/View.php:104
|
#: src/Module/Admin/Logs/View.php:103
|
||||||
msgid "Process ID"
|
msgid "Process ID"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Logs/View.php:105
|
#: src/Module/Admin/Logs/View.php:104
|
||||||
msgid "Close"
|
msgid "Close"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -4004,7 +4004,7 @@ msgstr ""
|
||||||
msgid "Job Parameters"
|
msgid "Job Parameters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Queue.php:78 src/Module/Settings/OAuth.php:75
|
#: src/Module/Admin/Queue.php:78 src/Module/Settings/OAuth.php:74
|
||||||
msgid "Created"
|
msgid "Created"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -4111,7 +4111,7 @@ msgid "Policies"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:397 src/Module/Calendar/Event/Form.php:252
|
#: src/Module/Admin/Site.php:397 src/Module/Calendar/Event/Form.php:252
|
||||||
#: src/Module/Contact.php:517 src/Module/Profile/Profile.php:276
|
#: src/Module/Contact.php:516 src/Module/Profile/Profile.php:276
|
||||||
msgid "Advanced"
|
msgid "Advanced"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -4160,121 +4160,121 @@ msgstr ""
|
||||||
msgid "(Friendica directory)# bin/console relocate https://newdomain.com"
|
msgid "(Friendica directory)# bin/console relocate https://newdomain.com"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:412
|
#: src/Module/Admin/Site.php:411
|
||||||
msgid "Site name"
|
msgid "Site name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:413
|
#: src/Module/Admin/Site.php:412
|
||||||
msgid "Sender Email"
|
msgid "Sender Email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:413
|
#: src/Module/Admin/Site.php:412
|
||||||
msgid ""
|
msgid ""
|
||||||
"The email address your server shall use to send notification emails from."
|
"The email address your server shall use to send notification emails from."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:414
|
#: src/Module/Admin/Site.php:413
|
||||||
msgid "Name of the system actor"
|
msgid "Name of the system actor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:414
|
#: src/Module/Admin/Site.php:413
|
||||||
msgid ""
|
msgid ""
|
||||||
"Name of the internal system account that is used to perform ActivityPub "
|
"Name of the internal system account that is used to perform ActivityPub "
|
||||||
"requests. This must be an unused username. If set, this can't be changed "
|
"requests. This must be an unused username. If set, this can't be changed "
|
||||||
"again."
|
"again."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:415
|
#: src/Module/Admin/Site.php:414
|
||||||
msgid "Banner/Logo"
|
msgid "Banner/Logo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:416
|
#: src/Module/Admin/Site.php:415
|
||||||
msgid "Email Banner/Logo"
|
msgid "Email Banner/Logo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:417
|
#: src/Module/Admin/Site.php:416
|
||||||
msgid "Shortcut icon"
|
msgid "Shortcut icon"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:417
|
#: src/Module/Admin/Site.php:416
|
||||||
msgid "Link to an icon that will be used for browsers."
|
msgid "Link to an icon that will be used for browsers."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:418
|
#: src/Module/Admin/Site.php:417
|
||||||
msgid "Touch icon"
|
msgid "Touch icon"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:418
|
#: src/Module/Admin/Site.php:417
|
||||||
msgid "Link to an icon that will be used for tablets and mobiles."
|
msgid "Link to an icon that will be used for tablets and mobiles."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:419
|
#: src/Module/Admin/Site.php:418
|
||||||
msgid "Additional Info"
|
msgid "Additional Info"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:419
|
#: src/Module/Admin/Site.php:418
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"For public servers: you can add additional information here that will be "
|
"For public servers: you can add additional information here that will be "
|
||||||
"listed at %s/servers."
|
"listed at %s/servers."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:420
|
#: src/Module/Admin/Site.php:419
|
||||||
msgid "System language"
|
msgid "System language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:421
|
#: src/Module/Admin/Site.php:420
|
||||||
msgid "System theme"
|
msgid "System theme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:421
|
#: src/Module/Admin/Site.php:420
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Default system theme - may be over-ridden by user profiles - <a href=\"%s\" "
|
"Default system theme - may be over-ridden by user profiles - <a href=\"%s\" "
|
||||||
"id=\"cnftheme\">Change default theme settings</a>"
|
"id=\"cnftheme\">Change default theme settings</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:422
|
#: src/Module/Admin/Site.php:421
|
||||||
msgid "Mobile system theme"
|
msgid "Mobile system theme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:422
|
#: src/Module/Admin/Site.php:421
|
||||||
msgid "Theme for mobile devices"
|
msgid "Theme for mobile devices"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:423
|
#: src/Module/Admin/Site.php:422
|
||||||
msgid "Force SSL"
|
msgid "Force SSL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:423
|
#: src/Module/Admin/Site.php:422
|
||||||
msgid ""
|
msgid ""
|
||||||
"Force all Non-SSL requests to SSL - Attention: on some systems it could lead "
|
"Force all Non-SSL requests to SSL - Attention: on some systems it could lead "
|
||||||
"to endless loops."
|
"to endless loops."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:424
|
#: src/Module/Admin/Site.php:423
|
||||||
msgid "Show help entry from navigation menu"
|
msgid "Show help entry from navigation menu"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:424
|
#: src/Module/Admin/Site.php:423
|
||||||
msgid ""
|
msgid ""
|
||||||
"Displays the menu entry for the Help pages from the navigation menu. It is "
|
"Displays the menu entry for the Help pages from the navigation menu. It is "
|
||||||
"always accessible by calling /help directly."
|
"always accessible by calling /help directly."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:425
|
#: src/Module/Admin/Site.php:424
|
||||||
msgid "Single user instance"
|
msgid "Single user instance"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:425
|
#: src/Module/Admin/Site.php:424
|
||||||
msgid "Make this instance multi-user or single-user for the named user"
|
msgid "Make this instance multi-user or single-user for the named user"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:427
|
#: src/Module/Admin/Site.php:426
|
||||||
msgid "Maximum image size"
|
msgid "Maximum image size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:427
|
#: src/Module/Admin/Site.php:426
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Maximum size in bytes of uploaded images. Default is 0, which means no "
|
"Maximum size in bytes of uploaded images. Default is 0, which means no "
|
||||||
|
|
@ -4286,192 +4286,192 @@ msgid ""
|
||||||
"to %s (%s byte)"
|
"to %s (%s byte)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:431
|
#: src/Module/Admin/Site.php:430
|
||||||
msgid "Maximum image length"
|
msgid "Maximum image length"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:431
|
#: src/Module/Admin/Site.php:430
|
||||||
msgid ""
|
msgid ""
|
||||||
"Maximum length in pixels of the longest side of uploaded images. Default is "
|
"Maximum length in pixels of the longest side of uploaded images. Default is "
|
||||||
"-1, which means no limits."
|
"-1, which means no limits."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:432
|
#: src/Module/Admin/Site.php:431
|
||||||
msgid "JPEG image quality"
|
msgid "JPEG image quality"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:432
|
#: src/Module/Admin/Site.php:431
|
||||||
msgid ""
|
msgid ""
|
||||||
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
|
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
|
||||||
"100, which is full quality."
|
"100, which is full quality."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:434
|
#: src/Module/Admin/Site.php:433
|
||||||
msgid "Register policy"
|
msgid "Register policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:435
|
#: src/Module/Admin/Site.php:434
|
||||||
msgid "Maximum Daily Registrations"
|
msgid "Maximum Daily Registrations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:435
|
#: src/Module/Admin/Site.php:434
|
||||||
msgid ""
|
msgid ""
|
||||||
"If registration is permitted above, this sets the maximum number of new user "
|
"If registration is permitted above, this sets the maximum number of new user "
|
||||||
"registrations to accept per day. If register is set to closed, this setting "
|
"registrations to accept per day. If register is set to closed, this setting "
|
||||||
"has no effect."
|
"has no effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:436
|
#: src/Module/Admin/Site.php:435
|
||||||
msgid "Register text"
|
msgid "Register text"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:436
|
#: src/Module/Admin/Site.php:435
|
||||||
msgid ""
|
msgid ""
|
||||||
"Will be displayed prominently on the registration page. You can use BBCode "
|
"Will be displayed prominently on the registration page. You can use BBCode "
|
||||||
"here."
|
"here."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:437
|
#: src/Module/Admin/Site.php:436
|
||||||
msgid "Forbidden Nicknames"
|
msgid "Forbidden Nicknames"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:437
|
#: src/Module/Admin/Site.php:436
|
||||||
msgid ""
|
msgid ""
|
||||||
"Comma separated list of nicknames that are forbidden from registration. "
|
"Comma separated list of nicknames that are forbidden from registration. "
|
||||||
"Preset is a list of role names according RFC 2142."
|
"Preset is a list of role names according RFC 2142."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:438
|
#: src/Module/Admin/Site.php:437
|
||||||
msgid "Accounts abandoned after x days"
|
msgid "Accounts abandoned after x days"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:438
|
#: src/Module/Admin/Site.php:437
|
||||||
msgid ""
|
msgid ""
|
||||||
"Will not waste system resources polling external sites for abandonded "
|
"Will not waste system resources polling external sites for abandonded "
|
||||||
"accounts. Enter 0 for no time limit."
|
"accounts. Enter 0 for no time limit."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:439
|
#: src/Module/Admin/Site.php:438
|
||||||
msgid "Allowed friend domains"
|
msgid "Allowed friend domains"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:439
|
#: src/Module/Admin/Site.php:438
|
||||||
msgid ""
|
msgid ""
|
||||||
"Comma separated list of domains which are allowed to establish friendships "
|
"Comma separated list of domains which are allowed to establish friendships "
|
||||||
"with this site. Wildcards are accepted. Empty to allow any domains"
|
"with this site. Wildcards are accepted. Empty to allow any domains"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:440
|
#: src/Module/Admin/Site.php:439
|
||||||
msgid "Allowed email domains"
|
msgid "Allowed email domains"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:440
|
#: src/Module/Admin/Site.php:439
|
||||||
msgid ""
|
msgid ""
|
||||||
"Comma separated list of domains which are allowed in email addresses for "
|
"Comma separated list of domains which are allowed in email addresses for "
|
||||||
"registrations to this site. Wildcards are accepted. Empty to allow any "
|
"registrations to this site. Wildcards are accepted. Empty to allow any "
|
||||||
"domains"
|
"domains"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:441
|
#: src/Module/Admin/Site.php:440
|
||||||
msgid "No OEmbed rich content"
|
msgid "No OEmbed rich content"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:441
|
#: src/Module/Admin/Site.php:440
|
||||||
msgid ""
|
msgid ""
|
||||||
"Don't show the rich content (e.g. embedded PDF), except from the domains "
|
"Don't show the rich content (e.g. embedded PDF), except from the domains "
|
||||||
"listed below."
|
"listed below."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:442
|
#: src/Module/Admin/Site.php:441
|
||||||
msgid "Trusted third-party domains"
|
msgid "Trusted third-party domains"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:442
|
#: src/Module/Admin/Site.php:441
|
||||||
msgid ""
|
msgid ""
|
||||||
"Comma separated list of domains from which content is allowed to be embedded "
|
"Comma separated list of domains from which content is allowed to be embedded "
|
||||||
"in posts like with OEmbed. All sub-domains of the listed domains are allowed "
|
"in posts like with OEmbed. All sub-domains of the listed domains are allowed "
|
||||||
"as well."
|
"as well."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:443
|
#: src/Module/Admin/Site.php:442
|
||||||
msgid "Block public"
|
msgid "Block public"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:443
|
#: src/Module/Admin/Site.php:442
|
||||||
msgid ""
|
msgid ""
|
||||||
"Check to block public access to all otherwise public personal pages on this "
|
"Check to block public access to all otherwise public personal pages on this "
|
||||||
"site unless you are currently logged in."
|
"site unless you are currently logged in."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:444
|
#: src/Module/Admin/Site.php:443
|
||||||
msgid "Force publish"
|
msgid "Force publish"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:444
|
#: src/Module/Admin/Site.php:443
|
||||||
msgid ""
|
msgid ""
|
||||||
"Check to force all profiles on this site to be listed in the site directory."
|
"Check to force all profiles on this site to be listed in the site directory."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:444
|
#: src/Module/Admin/Site.php:443
|
||||||
msgid "Enabling this may violate privacy laws like the GDPR"
|
msgid "Enabling this may violate privacy laws like the GDPR"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:445
|
#: src/Module/Admin/Site.php:444
|
||||||
msgid "Global directory URL"
|
msgid "Global directory URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:445
|
#: src/Module/Admin/Site.php:444
|
||||||
msgid ""
|
msgid ""
|
||||||
"URL to the global directory. If this is not set, the global directory is "
|
"URL to the global directory. If this is not set, the global directory is "
|
||||||
"completely unavailable to the application."
|
"completely unavailable to the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:446
|
#: src/Module/Admin/Site.php:445
|
||||||
msgid "Private posts by default for new users"
|
msgid "Private posts by default for new users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:446
|
#: src/Module/Admin/Site.php:445
|
||||||
msgid ""
|
msgid ""
|
||||||
"Set default post permissions for all new members to the default privacy "
|
"Set default post permissions for all new members to the default privacy "
|
||||||
"group rather than public."
|
"group rather than public."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:447
|
#: src/Module/Admin/Site.php:446
|
||||||
msgid "Don't include post content in email notifications"
|
msgid "Don't include post content in email notifications"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:447
|
#: src/Module/Admin/Site.php:446
|
||||||
msgid ""
|
msgid ""
|
||||||
"Don't include the content of a post/comment/private message/etc. in the "
|
"Don't include the content of a post/comment/private message/etc. in the "
|
||||||
"email notifications that are sent out from this site, as a privacy measure."
|
"email notifications that are sent out from this site, as a privacy measure."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:448
|
#: src/Module/Admin/Site.php:447
|
||||||
msgid "Disallow public access to addons listed in the apps menu."
|
msgid "Disallow public access to addons listed in the apps menu."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:448
|
#: src/Module/Admin/Site.php:447
|
||||||
msgid ""
|
msgid ""
|
||||||
"Checking this box will restrict addons listed in the apps menu to members "
|
"Checking this box will restrict addons listed in the apps menu to members "
|
||||||
"only."
|
"only."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:449
|
#: src/Module/Admin/Site.php:448
|
||||||
msgid "Don't embed private images in posts"
|
msgid "Don't embed private images in posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:449
|
#: src/Module/Admin/Site.php:448
|
||||||
msgid ""
|
msgid ""
|
||||||
"Don't replace locally-hosted private photos in posts with an embedded copy "
|
"Don't replace locally-hosted private photos in posts with an embedded copy "
|
||||||
"of the image. This means that contacts who receive posts containing private "
|
"of the image. This means that contacts who receive posts containing private "
|
||||||
"photos will have to authenticate and load each image, which may take a while."
|
"photos will have to authenticate and load each image, which may take a while."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:450
|
#: src/Module/Admin/Site.php:449
|
||||||
msgid "Explicit Content"
|
msgid "Explicit Content"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:450
|
#: src/Module/Admin/Site.php:449
|
||||||
msgid ""
|
msgid ""
|
||||||
"Set this to announce that your node is used mostly for explicit content that "
|
"Set this to announce that your node is used mostly for explicit content that "
|
||||||
"might not be suited for minors. This information will be published in the "
|
"might not be suited for minors. This information will be published in the "
|
||||||
|
|
@ -4480,267 +4480,267 @@ msgid ""
|
||||||
"will be shown at the user registration page."
|
"will be shown at the user registration page."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:451
|
#: src/Module/Admin/Site.php:450
|
||||||
msgid "Proxify external content"
|
msgid "Proxify external content"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:451
|
#: src/Module/Admin/Site.php:450
|
||||||
msgid ""
|
msgid ""
|
||||||
"Route external content via the proxy functionality. This is used for example "
|
"Route external content via the proxy functionality. This is used for example "
|
||||||
"for some OEmbed accesses and in some other rare cases."
|
"for some OEmbed accesses and in some other rare cases."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:452
|
#: src/Module/Admin/Site.php:451
|
||||||
msgid "Cache contact avatars"
|
msgid "Cache contact avatars"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:452
|
#: src/Module/Admin/Site.php:451
|
||||||
msgid ""
|
msgid ""
|
||||||
"Locally store the avatar pictures of the contacts. This uses a lot of "
|
"Locally store the avatar pictures of the contacts. This uses a lot of "
|
||||||
"storage space but it increases the performance."
|
"storage space but it increases the performance."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:453
|
#: src/Module/Admin/Site.php:452
|
||||||
msgid "Allow Users to set remote_self"
|
msgid "Allow Users to set remote_self"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:453
|
#: src/Module/Admin/Site.php:452
|
||||||
msgid ""
|
msgid ""
|
||||||
"With checking this, every user is allowed to mark every contact as a "
|
"With checking this, every user is allowed to mark every contact as a "
|
||||||
"remote_self in the repair contact dialog. Setting this flag on a contact "
|
"remote_self in the repair contact dialog. Setting this flag on a contact "
|
||||||
"causes mirroring every posting of that contact in the users stream."
|
"causes mirroring every posting of that contact in the users stream."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:454
|
#: src/Module/Admin/Site.php:453
|
||||||
msgid "Enable multiple registrations"
|
msgid "Enable multiple registrations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:454
|
#: src/Module/Admin/Site.php:453
|
||||||
msgid "Enable users to register additional accounts for use as pages."
|
msgid "Enable users to register additional accounts for use as pages."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:455
|
#: src/Module/Admin/Site.php:454
|
||||||
msgid "Enable OpenID"
|
msgid "Enable OpenID"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:455
|
#: src/Module/Admin/Site.php:454
|
||||||
msgid "Enable OpenID support for registration and logins."
|
msgid "Enable OpenID support for registration and logins."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:456
|
#: src/Module/Admin/Site.php:455
|
||||||
msgid "Enable Fullname check"
|
msgid "Enable Fullname check"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:456
|
#: src/Module/Admin/Site.php:455
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enable check to only allow users to register with a space between the first "
|
"Enable check to only allow users to register with a space between the first "
|
||||||
"name and the last name in their full name."
|
"name and the last name in their full name."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:457
|
#: src/Module/Admin/Site.php:456
|
||||||
msgid "Email administrators on new registration"
|
msgid "Email administrators on new registration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:457
|
#: src/Module/Admin/Site.php:456
|
||||||
msgid ""
|
msgid ""
|
||||||
"If enabled and the system is set to an open registration, an email for each "
|
"If enabled and the system is set to an open registration, an email for each "
|
||||||
"new registration is sent to the administrators."
|
"new registration is sent to the administrators."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:458
|
#: src/Module/Admin/Site.php:457
|
||||||
msgid "Community pages for visitors"
|
msgid "Community pages for visitors"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:458
|
#: src/Module/Admin/Site.php:457
|
||||||
msgid ""
|
msgid ""
|
||||||
"Which community pages should be available for visitors. Local users always "
|
"Which community pages should be available for visitors. Local users always "
|
||||||
"see both pages."
|
"see both pages."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:459
|
#: src/Module/Admin/Site.php:458
|
||||||
msgid "Posts per user on community page"
|
msgid "Posts per user on community page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:459
|
#: src/Module/Admin/Site.php:458
|
||||||
msgid ""
|
msgid ""
|
||||||
"The maximum number of posts per user on the community page. (Not valid for "
|
"The maximum number of posts per user on the community page. (Not valid for "
|
||||||
"\"Global Community\")"
|
"\"Global Community\")"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:461
|
#: src/Module/Admin/Site.php:460
|
||||||
msgid "Enable Mail support"
|
msgid "Enable Mail support"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:461
|
#: src/Module/Admin/Site.php:460
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enable built-in mail support to poll IMAP folders and to reply via mail."
|
"Enable built-in mail support to poll IMAP folders and to reply via mail."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:462
|
#: src/Module/Admin/Site.php:461
|
||||||
msgid ""
|
msgid ""
|
||||||
"Mail support can't be enabled because the PHP IMAP module is not installed."
|
"Mail support can't be enabled because the PHP IMAP module is not installed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:463
|
#: src/Module/Admin/Site.php:462
|
||||||
msgid "Enable OStatus support"
|
msgid "Enable OStatus support"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:463
|
#: src/Module/Admin/Site.php:462
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
|
"Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
|
||||||
"communications in OStatus are public."
|
"communications in OStatus are public."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:465
|
#: src/Module/Admin/Site.php:464
|
||||||
msgid ""
|
msgid ""
|
||||||
"Diaspora support can't be enabled because Friendica was installed into a sub "
|
"Diaspora support can't be enabled because Friendica was installed into a sub "
|
||||||
"directory."
|
"directory."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:466
|
#: src/Module/Admin/Site.php:465
|
||||||
msgid "Enable Diaspora support"
|
msgid "Enable Diaspora support"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:466
|
#: src/Module/Admin/Site.php:465
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enable built-in Diaspora network compatibility for communicating with "
|
"Enable built-in Diaspora network compatibility for communicating with "
|
||||||
"diaspora servers."
|
"diaspora servers."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:467
|
#: src/Module/Admin/Site.php:466
|
||||||
msgid "Verify SSL"
|
msgid "Verify SSL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:467
|
#: src/Module/Admin/Site.php:466
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you wish, you can turn on strict certificate checking. This will mean you "
|
"If you wish, you can turn on strict certificate checking. This will mean you "
|
||||||
"cannot connect (at all) to self-signed SSL sites."
|
"cannot connect (at all) to self-signed SSL sites."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:468
|
#: src/Module/Admin/Site.php:467
|
||||||
msgid "Proxy user"
|
msgid "Proxy user"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:468
|
#: src/Module/Admin/Site.php:467
|
||||||
msgid "User name for the proxy server."
|
msgid "User name for the proxy server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:469
|
#: src/Module/Admin/Site.php:468
|
||||||
msgid "Proxy URL"
|
msgid "Proxy URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:469
|
#: src/Module/Admin/Site.php:468
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you want to use a proxy server that Friendica should use to connect to "
|
"If you want to use a proxy server that Friendica should use to connect to "
|
||||||
"the network, put the URL of the proxy here."
|
"the network, put the URL of the proxy here."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:470
|
#: src/Module/Admin/Site.php:469
|
||||||
msgid "Network timeout"
|
msgid "Network timeout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:470
|
#: src/Module/Admin/Site.php:469
|
||||||
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
|
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:471
|
#: src/Module/Admin/Site.php:470
|
||||||
msgid "Maximum Load Average"
|
msgid "Maximum Load Average"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:471
|
#: src/Module/Admin/Site.php:470
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Maximum system load before delivery and poll processes are deferred - "
|
"Maximum system load before delivery and poll processes are deferred - "
|
||||||
"default %d."
|
"default %d."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:472
|
#: src/Module/Admin/Site.php:471
|
||||||
msgid "Minimal Memory"
|
msgid "Minimal Memory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:472
|
#: src/Module/Admin/Site.php:471
|
||||||
msgid ""
|
msgid ""
|
||||||
"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
|
"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
|
||||||
"default 0 (deactivated)."
|
"default 0 (deactivated)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:473
|
#: src/Module/Admin/Site.php:472
|
||||||
msgid "Periodically optimize tables"
|
msgid "Periodically optimize tables"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:473
|
#: src/Module/Admin/Site.php:472
|
||||||
msgid "Periodically optimize tables like the cache and the workerqueue"
|
msgid "Periodically optimize tables like the cache and the workerqueue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:475
|
#: src/Module/Admin/Site.php:474
|
||||||
msgid "Discover followers/followings from contacts"
|
msgid "Discover followers/followings from contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:475
|
#: src/Module/Admin/Site.php:474
|
||||||
msgid ""
|
msgid ""
|
||||||
"If enabled, contacts are checked for their followers and following contacts."
|
"If enabled, contacts are checked for their followers and following contacts."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:476
|
#: src/Module/Admin/Site.php:475
|
||||||
msgid "None - deactivated"
|
msgid "None - deactivated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:477
|
#: src/Module/Admin/Site.php:476
|
||||||
msgid ""
|
msgid ""
|
||||||
"Local contacts - contacts of our local contacts are discovered for their "
|
"Local contacts - contacts of our local contacts are discovered for their "
|
||||||
"followers/followings."
|
"followers/followings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:478
|
#: src/Module/Admin/Site.php:477
|
||||||
msgid ""
|
msgid ""
|
||||||
"Interactors - contacts of our local contacts and contacts who interacted on "
|
"Interactors - contacts of our local contacts and contacts who interacted on "
|
||||||
"locally visible postings are discovered for their followers/followings."
|
"locally visible postings are discovered for their followers/followings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:480
|
#: src/Module/Admin/Site.php:479
|
||||||
msgid "Synchronize the contacts with the directory server"
|
msgid "Synchronize the contacts with the directory server"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:480
|
#: src/Module/Admin/Site.php:479
|
||||||
msgid ""
|
msgid ""
|
||||||
"if enabled, the system will check periodically for new contacts on the "
|
"if enabled, the system will check periodically for new contacts on the "
|
||||||
"defined directory server."
|
"defined directory server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:482
|
#: src/Module/Admin/Site.php:481
|
||||||
msgid "Days between requery"
|
msgid "Days between requery"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:482
|
#: src/Module/Admin/Site.php:481
|
||||||
msgid "Number of days after which a server is requeried for his contacts."
|
msgid "Number of days after which a server is requeried for his contacts."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:483
|
#: src/Module/Admin/Site.php:482
|
||||||
msgid "Discover contacts from other servers"
|
msgid "Discover contacts from other servers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:483
|
#: src/Module/Admin/Site.php:482
|
||||||
msgid ""
|
msgid ""
|
||||||
"Periodically query other servers for contacts. The system queries Friendica, "
|
"Periodically query other servers for contacts. The system queries Friendica, "
|
||||||
"Mastodon and Hubzilla servers."
|
"Mastodon and Hubzilla servers."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:484
|
#: src/Module/Admin/Site.php:483
|
||||||
msgid "Search the local directory"
|
msgid "Search the local directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:484
|
#: src/Module/Admin/Site.php:483
|
||||||
msgid ""
|
msgid ""
|
||||||
"Search the local directory instead of the global directory. When searching "
|
"Search the local directory instead of the global directory. When searching "
|
||||||
"locally, every search will be executed on the global directory in the "
|
"locally, every search will be executed on the global directory in the "
|
||||||
"background. This improves the search results when the search is repeated."
|
"background. This improves the search results when the search is repeated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:486
|
#: src/Module/Admin/Site.php:485
|
||||||
msgid "Publish server information"
|
msgid "Publish server information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:486
|
#: src/Module/Admin/Site.php:485
|
||||||
msgid ""
|
msgid ""
|
||||||
"If enabled, general server and usage data will be published. The data "
|
"If enabled, general server and usage data will be published. The data "
|
||||||
"contains the name and version of the server, number of users with public "
|
"contains the name and version of the server, number of users with public "
|
||||||
|
|
@ -4748,50 +4748,50 @@ msgid ""
|
||||||
"href=\"http://the-federation.info/\">the-federation.info</a> for details."
|
"href=\"http://the-federation.info/\">the-federation.info</a> for details."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:488
|
#: src/Module/Admin/Site.php:487
|
||||||
msgid "Check upstream version"
|
msgid "Check upstream version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:488
|
#: src/Module/Admin/Site.php:487
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enables checking for new Friendica versions at github. If there is a new "
|
"Enables checking for new Friendica versions at github. If there is a new "
|
||||||
"version, you will be informed in the admin panel overview."
|
"version, you will be informed in the admin panel overview."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:489
|
#: src/Module/Admin/Site.php:488
|
||||||
msgid "Suppress Tags"
|
msgid "Suppress Tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:489
|
#: src/Module/Admin/Site.php:488
|
||||||
msgid "Suppress showing a list of hashtags at the end of the posting."
|
msgid "Suppress showing a list of hashtags at the end of the posting."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:490
|
#: src/Module/Admin/Site.php:489
|
||||||
msgid "Clean database"
|
msgid "Clean database"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:490
|
#: src/Module/Admin/Site.php:489
|
||||||
msgid ""
|
msgid ""
|
||||||
"Remove old remote items, orphaned database records and old content from some "
|
"Remove old remote items, orphaned database records and old content from some "
|
||||||
"other helper tables."
|
"other helper tables."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:491
|
#: src/Module/Admin/Site.php:490
|
||||||
msgid "Lifespan of remote items"
|
msgid "Lifespan of remote items"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:491
|
#: src/Module/Admin/Site.php:490
|
||||||
msgid ""
|
msgid ""
|
||||||
"When the database cleanup is enabled, this defines the days after which "
|
"When the database cleanup is enabled, this defines the days after which "
|
||||||
"remote items will be deleted. Own items, and marked or filed items are "
|
"remote items will be deleted. Own items, and marked or filed items are "
|
||||||
"always kept. 0 disables this behaviour."
|
"always kept. 0 disables this behaviour."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:492
|
#: src/Module/Admin/Site.php:491
|
||||||
msgid "Lifespan of unclaimed items"
|
msgid "Lifespan of unclaimed items"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:492
|
#: src/Module/Admin/Site.php:491
|
||||||
msgid ""
|
msgid ""
|
||||||
"When the database cleanup is enabled, this defines the days after which "
|
"When the database cleanup is enabled, this defines the days after which "
|
||||||
"unclaimed remote items (mostly content from the relay) will be deleted. "
|
"unclaimed remote items (mostly content from the relay) will be deleted. "
|
||||||
|
|
@ -4799,144 +4799,144 @@ msgid ""
|
||||||
"items if set to 0."
|
"items if set to 0."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:493
|
#: src/Module/Admin/Site.php:492
|
||||||
msgid "Lifespan of raw conversation data"
|
msgid "Lifespan of raw conversation data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:493
|
#: src/Module/Admin/Site.php:492
|
||||||
msgid ""
|
msgid ""
|
||||||
"The conversation data is used for ActivityPub and OStatus, as well as for "
|
"The conversation data is used for ActivityPub and OStatus, as well as for "
|
||||||
"debug purposes. It should be safe to remove it after 14 days, default is 90 "
|
"debug purposes. It should be safe to remove it after 14 days, default is 90 "
|
||||||
"days."
|
"days."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:494
|
#: src/Module/Admin/Site.php:493
|
||||||
msgid "Maximum numbers of comments per post"
|
msgid "Maximum numbers of comments per post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:494
|
#: src/Module/Admin/Site.php:493
|
||||||
msgid "How much comments should be shown for each post? Default value is 100."
|
msgid "How much comments should be shown for each post? Default value is 100."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:495
|
#: src/Module/Admin/Site.php:494
|
||||||
msgid "Maximum numbers of comments per post on the display page"
|
msgid "Maximum numbers of comments per post on the display page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:495
|
#: src/Module/Admin/Site.php:494
|
||||||
msgid ""
|
msgid ""
|
||||||
"How many comments should be shown on the single view for each post? Default "
|
"How many comments should be shown on the single view for each post? Default "
|
||||||
"value is 1000."
|
"value is 1000."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:496
|
#: src/Module/Admin/Site.php:495
|
||||||
msgid "Temp path"
|
msgid "Temp path"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:496
|
#: src/Module/Admin/Site.php:495
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you have a restricted system where the webserver can't access the system "
|
"If you have a restricted system where the webserver can't access the system "
|
||||||
"temp path, enter another path here."
|
"temp path, enter another path here."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:497
|
#: src/Module/Admin/Site.php:496
|
||||||
msgid "Only search in tags"
|
msgid "Only search in tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:497
|
#: src/Module/Admin/Site.php:496
|
||||||
msgid "On large systems the text search can slow down the system extremely."
|
msgid "On large systems the text search can slow down the system extremely."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:498
|
#: src/Module/Admin/Site.php:497
|
||||||
msgid "Generate counts per contact group when calculating network count"
|
msgid "Generate counts per contact group when calculating network count"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:498
|
#: src/Module/Admin/Site.php:497
|
||||||
msgid ""
|
msgid ""
|
||||||
"On systems with users that heavily use contact groups the query can be very "
|
"On systems with users that heavily use contact groups the query can be very "
|
||||||
"expensive."
|
"expensive."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:500
|
#: src/Module/Admin/Site.php:499
|
||||||
msgid "Maximum number of parallel workers"
|
msgid "Maximum number of parallel workers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:500
|
#: src/Module/Admin/Site.php:499
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"On shared hosters set this to %d. On larger systems, values of %d are great. "
|
"On shared hosters set this to %d. On larger systems, values of %d are great. "
|
||||||
"Default value is %d."
|
"Default value is %d."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:501
|
#: src/Module/Admin/Site.php:500
|
||||||
msgid "Enable fastlane"
|
msgid "Enable fastlane"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:501
|
#: src/Module/Admin/Site.php:500
|
||||||
msgid ""
|
msgid ""
|
||||||
"When enabed, the fastlane mechanism starts an additional worker if processes "
|
"When enabed, the fastlane mechanism starts an additional worker if processes "
|
||||||
"with higher priority are blocked by processes of lower priority."
|
"with higher priority are blocked by processes of lower priority."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:503
|
#: src/Module/Admin/Site.php:502
|
||||||
msgid "Direct relay transfer"
|
msgid "Direct relay transfer"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:503
|
#: src/Module/Admin/Site.php:502
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enables the direct transfer to other servers without using the relay servers"
|
"Enables the direct transfer to other servers without using the relay servers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:504
|
#: src/Module/Admin/Site.php:503
|
||||||
msgid "Relay scope"
|
msgid "Relay scope"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:504
|
#: src/Module/Admin/Site.php:503
|
||||||
msgid ""
|
msgid ""
|
||||||
"Can be \"all\" or \"tags\". \"all\" means that every public post should be "
|
"Can be \"all\" or \"tags\". \"all\" means that every public post should be "
|
||||||
"received. \"tags\" means that only posts with selected tags should be "
|
"received. \"tags\" means that only posts with selected tags should be "
|
||||||
"received."
|
"received."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:504 src/Module/Contact/Profile.php:287
|
#: src/Module/Admin/Site.php:503 src/Module/Contact/Profile.php:286
|
||||||
#: src/Module/Settings/TwoFactor/Index.php:125
|
#: src/Module/Settings/TwoFactor/Index.php:125
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:504
|
#: src/Module/Admin/Site.php:503
|
||||||
msgid "all"
|
msgid "all"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:504
|
#: src/Module/Admin/Site.php:503
|
||||||
msgid "tags"
|
msgid "tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:505
|
#: src/Module/Admin/Site.php:504
|
||||||
msgid "Server tags"
|
msgid "Server tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:505
|
#: src/Module/Admin/Site.php:504
|
||||||
msgid "Comma separated list of tags for the \"tags\" subscription."
|
msgid "Comma separated list of tags for the \"tags\" subscription."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:506
|
#: src/Module/Admin/Site.php:505
|
||||||
msgid "Deny Server tags"
|
msgid "Deny Server tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:506
|
#: src/Module/Admin/Site.php:505
|
||||||
msgid "Comma separated list of tags that are rejected."
|
msgid "Comma separated list of tags that are rejected."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:507
|
#: src/Module/Admin/Site.php:506
|
||||||
msgid "Allow user tags"
|
msgid "Allow user tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:507
|
#: src/Module/Admin/Site.php:506
|
||||||
msgid ""
|
msgid ""
|
||||||
"If enabled, the tags from the saved searches will used for the \"tags\" "
|
"If enabled, the tags from the saved searches will used for the \"tags\" "
|
||||||
"subscription in addition to the \"relay_server_tags\"."
|
"subscription in addition to the \"relay_server_tags\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:510
|
#: src/Module/Admin/Site.php:509
|
||||||
msgid "Start Relocation"
|
msgid "Start Relocation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -4982,7 +4982,7 @@ msgstr ""
|
||||||
msgid "This backend doesn't have custom settings"
|
msgid "This backend doesn't have custom settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Storage.php:149
|
#: src/Module/Admin/Storage.php:148
|
||||||
msgid "Database (legacy)"
|
msgid "Database (legacy)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -5169,16 +5169,16 @@ msgstr ""
|
||||||
msgid "Reload active themes"
|
msgid "Reload active themes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Themes/Index.php:119
|
#: src/Module/Admin/Themes/Index.php:118
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "No themes found on the system. They should be placed in %1$s"
|
msgid "No themes found on the system. They should be placed in %1$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Themes/Index.php:120
|
#: src/Module/Admin/Themes/Index.php:119
|
||||||
msgid "[Experimental]"
|
msgid "[Experimental]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Themes/Index.php:121
|
#: src/Module/Admin/Themes/Index.php:120
|
||||||
msgid "[Unsupported]"
|
msgid "[Unsupported]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -5352,26 +5352,26 @@ msgstr ""
|
||||||
msgid "User registrations waiting for confirmation"
|
msgid "User registrations waiting for confirmation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/BaseApi.php:266 src/Module/BaseApi.php:282
|
#: src/Module/BaseApi.php:451 src/Module/BaseApi.php:467
|
||||||
#: src/Module/BaseApi.php:298
|
#: src/Module/BaseApi.php:483
|
||||||
msgid "Too Many Requests"
|
msgid "Too Many Requests"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/BaseApi.php:267
|
#: src/Module/BaseApi.php:452
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Daily posting limit of %d post reached. The post was rejected."
|
msgid "Daily posting limit of %d post reached. The post was rejected."
|
||||||
msgid_plural "Daily posting limit of %d posts reached. The post was rejected."
|
msgid_plural "Daily posting limit of %d posts reached. The post was rejected."
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
|
|
||||||
#: src/Module/BaseApi.php:283
|
#: src/Module/BaseApi.php:468
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Weekly posting limit of %d post reached. The post was rejected."
|
msgid "Weekly posting limit of %d post reached. The post was rejected."
|
||||||
msgid_plural "Weekly posting limit of %d posts reached. The post was rejected."
|
msgid_plural "Weekly posting limit of %d posts reached. The post was rejected."
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
|
|
||||||
#: src/Module/BaseApi.php:299
|
#: src/Module/BaseApi.php:484
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Monthly posting limit of %d post reached. The post was rejected."
|
msgid "Monthly posting limit of %d post reached. The post was rejected."
|
||||||
msgid_plural ""
|
msgid_plural ""
|
||||||
|
|
@ -5404,7 +5404,7 @@ msgstr ""
|
||||||
msgid "Item Source"
|
msgid "Item Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/BaseProfile.php:52 src/Module/Contact.php:479
|
#: src/Module/BaseProfile.php:52 src/Module/Contact.php:478
|
||||||
msgid "Profile Details"
|
msgid "Profile Details"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -5416,7 +5416,7 @@ msgstr ""
|
||||||
msgid "Only You Can See This"
|
msgid "Only You Can See This"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:82
|
#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81
|
||||||
msgid "Scheduled Posts"
|
msgid "Scheduled Posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -5455,7 +5455,7 @@ msgstr ""
|
||||||
msgid "Display"
|
msgid "Display"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/BaseSettings.php:127 src/Module/Settings/Connectors.php:202
|
#: src/Module/BaseSettings.php:127 src/Module/Settings/Connectors.php:204
|
||||||
msgid "Social Networks"
|
msgid "Social Networks"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -5602,142 +5602,142 @@ msgid_plural "%d contacts edited."
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:342
|
#: src/Module/Contact.php:341
|
||||||
msgid "Show all contacts"
|
msgid "Show all contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:347 src/Module/Contact.php:415
|
#: src/Module/Contact.php:346 src/Module/Contact.php:414
|
||||||
#: src/Module/Moderation/BaseUsers.php:85
|
#: src/Module/Moderation/BaseUsers.php:85
|
||||||
msgid "Pending"
|
msgid "Pending"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:350
|
#: src/Module/Contact.php:349
|
||||||
msgid "Only show pending contacts"
|
msgid "Only show pending contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:355 src/Module/Contact.php:416
|
#: src/Module/Contact.php:354 src/Module/Contact.php:415
|
||||||
#: src/Module/Moderation/BaseUsers.php:93
|
#: src/Module/Moderation/BaseUsers.php:93
|
||||||
msgid "Blocked"
|
msgid "Blocked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:358
|
#: src/Module/Contact.php:357
|
||||||
msgid "Only show blocked contacts"
|
msgid "Only show blocked contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:363 src/Module/Contact.php:418
|
#: src/Module/Contact.php:362 src/Module/Contact.php:417
|
||||||
#: src/Object/Post.php:344
|
#: src/Object/Post.php:344
|
||||||
msgid "Ignored"
|
msgid "Ignored"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:366
|
#: src/Module/Contact.php:365
|
||||||
msgid "Only show ignored contacts"
|
msgid "Only show ignored contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:371 src/Module/Contact.php:419
|
#: src/Module/Contact.php:370 src/Module/Contact.php:418
|
||||||
msgid "Collapsed"
|
msgid "Collapsed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:374
|
#: src/Module/Contact.php:373
|
||||||
msgid "Only show collapsed contacts"
|
msgid "Only show collapsed contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:379 src/Module/Contact.php:420
|
#: src/Module/Contact.php:378 src/Module/Contact.php:419
|
||||||
msgid "Archived"
|
msgid "Archived"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:382
|
#: src/Module/Contact.php:381
|
||||||
msgid "Only show archived contacts"
|
msgid "Only show archived contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:387 src/Module/Contact.php:417
|
#: src/Module/Contact.php:386 src/Module/Contact.php:416
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:390
|
#: src/Module/Contact.php:389
|
||||||
msgid "Only show hidden contacts"
|
msgid "Only show hidden contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:398
|
#: src/Module/Contact.php:397
|
||||||
msgid "Organize your contact groups"
|
msgid "Organize your contact groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:431
|
#: src/Module/Contact.php:430
|
||||||
msgid "Search your contacts"
|
msgid "Search your contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:432 src/Module/Search/Index.php:207
|
#: src/Module/Contact.php:431 src/Module/Search/Index.php:207
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Results for: %s"
|
msgid "Results for: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:439
|
#: src/Module/Contact.php:438
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:440 src/Module/Contact/Profile.php:478
|
#: src/Module/Contact.php:439 src/Module/Contact/Profile.php:477
|
||||||
#: src/Module/Moderation/Blocklist/Contact.php:117
|
#: src/Module/Moderation/Blocklist/Contact.php:117
|
||||||
#: src/Module/Moderation/Users/Blocked.php:138
|
#: src/Module/Moderation/Users/Blocked.php:138
|
||||||
#: src/Module/Moderation/Users/Index.php:154
|
#: src/Module/Moderation/Users/Index.php:154
|
||||||
msgid "Unblock"
|
msgid "Unblock"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:441 src/Module/Contact/Profile.php:486
|
#: src/Module/Contact.php:440 src/Module/Contact/Profile.php:485
|
||||||
msgid "Unignore"
|
msgid "Unignore"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:442 src/Module/Contact/Profile.php:494
|
#: src/Module/Contact.php:441 src/Module/Contact/Profile.php:493
|
||||||
msgid "Uncollapse"
|
msgid "Uncollapse"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:444
|
#: src/Module/Contact.php:443
|
||||||
msgid "Batch Actions"
|
msgid "Batch Actions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:487
|
#: src/Module/Contact.php:486
|
||||||
msgid "Conversations started by this contact"
|
msgid "Conversations started by this contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:492
|
#: src/Module/Contact.php:491
|
||||||
msgid "Posts and Comments"
|
msgid "Posts and Comments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:495
|
#: src/Module/Contact.php:494
|
||||||
msgid "Individual Posts and Replies"
|
msgid "Individual Posts and Replies"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:503
|
#: src/Module/Contact.php:502
|
||||||
msgid "Posts containing media objects"
|
msgid "Posts containing media objects"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:510
|
#: src/Module/Contact.php:509
|
||||||
msgid "View all known contacts"
|
msgid "View all known contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:520
|
#: src/Module/Contact.php:519
|
||||||
msgid "Advanced Contact Settings"
|
msgid "Advanced Contact Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:556
|
#: src/Module/Contact.php:555
|
||||||
msgid "Mutual Friendship"
|
msgid "Mutual Friendship"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:560
|
#: src/Module/Contact.php:559
|
||||||
msgid "is a fan of yours"
|
msgid "is a fan of yours"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:564
|
#: src/Module/Contact.php:563
|
||||||
msgid "you are a fan of"
|
msgid "you are a fan of"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:582
|
#: src/Module/Contact.php:581
|
||||||
msgid "Pending outgoing contact request"
|
msgid "Pending outgoing contact request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:584
|
#: src/Module/Contact.php:583
|
||||||
msgid "Pending incoming contact request"
|
msgid "Pending incoming contact request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:597 src/Module/Contact/Profile.php:347
|
#: src/Module/Contact.php:596 src/Module/Contact/Profile.php:346
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Visit %s's profile [%s]"
|
msgid "Visit %s's profile [%s]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -5767,11 +5767,11 @@ msgstr ""
|
||||||
#: src/Module/Moderation/Blocklist/Contact.php:122
|
#: src/Module/Moderation/Blocklist/Contact.php:122
|
||||||
#: src/Module/Moderation/Users/Active.php:126
|
#: src/Module/Moderation/Users/Active.php:126
|
||||||
#: src/Module/Moderation/Users/Blocked.php:126
|
#: src/Module/Moderation/Users/Blocked.php:126
|
||||||
#: src/Module/Moderation/Users/Create.php:71
|
#: src/Module/Moderation/Users/Create.php:70
|
||||||
#: src/Module/Moderation/Users/Deleted.php:83
|
#: src/Module/Moderation/Users/Deleted.php:83
|
||||||
#: src/Module/Moderation/Users/Index.php:140
|
#: src/Module/Moderation/Users/Index.php:140
|
||||||
#: src/Module/Moderation/Users/Index.php:160
|
#: src/Module/Moderation/Users/Index.php:160
|
||||||
#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:73
|
#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -5890,7 +5890,7 @@ msgstr ""
|
||||||
msgid "Your Identity Address:"
|
msgid "Your Identity Address:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Follow.php:169 src/Module/Contact/Profile.php:376
|
#: src/Module/Contact/Follow.php:169 src/Module/Contact/Profile.php:375
|
||||||
#: src/Module/Contact/Unfollow.php:129
|
#: src/Module/Contact/Unfollow.php:129
|
||||||
#: src/Module/Moderation/Blocklist/Contact.php:133
|
#: src/Module/Moderation/Blocklist/Contact.php:133
|
||||||
#: src/Module/Notifications/Introductions.php:129
|
#: src/Module/Notifications/Introductions.php:129
|
||||||
|
|
@ -5898,7 +5898,7 @@ msgstr ""
|
||||||
msgid "Profile URL"
|
msgid "Profile URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:388
|
#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:387
|
||||||
#: src/Module/Notifications/Introductions.php:191
|
#: src/Module/Notifications/Introductions.php:191
|
||||||
#: src/Module/Profile/Profile.php:234
|
#: src/Module/Profile/Profile.php:234
|
||||||
msgid "Tags:"
|
msgid "Tags:"
|
||||||
|
|
@ -5965,220 +5965,220 @@ msgstr ""
|
||||||
msgid "Contact has been collapsed"
|
msgid "Contact has been collapsed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Profile.php:243
|
#: src/Module/Contact/Profile.php:242
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "You are mutual friends with %s"
|
msgid "You are mutual friends with %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Profile.php:244
|
#: src/Module/Contact/Profile.php:243
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "You are sharing with %s"
|
msgid "You are sharing with %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Profile.php:245
|
#: src/Module/Contact/Profile.php:244
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s is sharing with you"
|
msgid "%s is sharing with you"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Profile.php:261
|
#: src/Module/Contact/Profile.php:260
|
||||||
msgid "Private communications are not available for this contact."
|
msgid "Private communications are not available for this contact."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Profile.php:263
|
#: src/Module/Contact/Profile.php:262
|
||||||
msgid "Never"
|
msgid "Never"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Profile.php:266
|
#: src/Module/Contact/Profile.php:265
|
||||||
msgid "(Update was not successful)"
|
msgid "(Update was not successful)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Profile.php:266
|
#: src/Module/Contact/Profile.php:265
|
||||||
msgid "(Update was successful)"
|
msgid "(Update was successful)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Profile.php:268 src/Module/Contact/Profile.php:449
|
#: src/Module/Contact/Profile.php:267 src/Module/Contact/Profile.php:448
|
||||||
msgid "Suggest friends"
|
msgid "Suggest friends"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Profile.php:272
|
#: src/Module/Contact/Profile.php:271
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Network type: %s"
|
msgid "Network type: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Profile.php:277
|
#: src/Module/Contact/Profile.php:276
|
||||||
msgid "Communications lost with this contact!"
|
msgid "Communications lost with this contact!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Profile.php:283
|
#: src/Module/Contact/Profile.php:282
|
||||||
msgid "Fetch further information for feeds"
|
msgid "Fetch further information for feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Profile.php:285
|
#: src/Module/Contact/Profile.php:284
|
||||||
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/Profile.php:288
|
#: src/Module/Contact/Profile.php:287
|
||||||
msgid "Fetch information"
|
msgid "Fetch information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Profile.php:289
|
#: src/Module/Contact/Profile.php:288
|
||||||
msgid "Fetch keywords"
|
msgid "Fetch keywords"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Profile.php:290
|
#: src/Module/Contact/Profile.php:289
|
||||||
msgid "Fetch information and keywords"
|
msgid "Fetch information and keywords"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Profile.php:300 src/Module/Contact/Profile.php:305
|
#: src/Module/Contact/Profile.php:299 src/Module/Contact/Profile.php:304
|
||||||
#: src/Module/Contact/Profile.php:310 src/Module/Contact/Profile.php:316
|
#: src/Module/Contact/Profile.php:309 src/Module/Contact/Profile.php:315
|
||||||
msgid "No mirroring"
|
msgid "No mirroring"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Profile.php:301 src/Module/Contact/Profile.php:311
|
#: src/Module/Contact/Profile.php:300 src/Module/Contact/Profile.php:310
|
||||||
#: src/Module/Contact/Profile.php:317
|
#: src/Module/Contact/Profile.php:316
|
||||||
msgid "Mirror as my own posting"
|
msgid "Mirror as my own posting"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Profile.php:306 src/Module/Contact/Profile.php:312
|
#: src/Module/Contact/Profile.php:305 src/Module/Contact/Profile.php:311
|
||||||
msgid "Native reshare"
|
msgid "Native reshare"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Profile.php:329
|
#: src/Module/Contact/Profile.php:328
|
||||||
msgid "Contact Information / Notes"
|
msgid "Contact Information / Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Profile.php:330
|
#: src/Module/Contact/Profile.php:329
|
||||||
msgid "Contact Settings"
|
msgid "Contact Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Profile.php:338
|
#: src/Module/Contact/Profile.php:337
|
||||||
msgid "Contact"
|
msgid "Contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Profile.php:342
|
#: src/Module/Contact/Profile.php:341
|
||||||
msgid "Their personal note"
|
msgid "Their personal note"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Profile.php:344
|
#: src/Module/Contact/Profile.php:343
|
||||||
msgid "Edit contact notes"
|
msgid "Edit contact notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Profile.php:348
|
#: src/Module/Contact/Profile.php:347
|
||||||
msgid "Block/Unblock contact"
|
msgid "Block/Unblock contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Profile.php:349
|
#: src/Module/Contact/Profile.php:348
|
||||||
msgid "Ignore contact"
|
msgid "Ignore contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Profile.php:350
|
#: src/Module/Contact/Profile.php:349
|
||||||
msgid "View conversations"
|
msgid "View conversations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Profile.php:355
|
#: src/Module/Contact/Profile.php:354
|
||||||
msgid "Last update:"
|
msgid "Last update:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Profile.php:357
|
#: src/Module/Contact/Profile.php:356
|
||||||
msgid "Update public posts"
|
msgid "Update public posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Profile.php:359 src/Module/Contact/Profile.php:459
|
#: src/Module/Contact/Profile.php:358 src/Module/Contact/Profile.php:458
|
||||||
msgid "Update now"
|
msgid "Update now"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Profile.php:361
|
#: src/Module/Contact/Profile.php:360
|
||||||
msgid "Awaiting connection acknowledge"
|
msgid "Awaiting connection acknowledge"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Profile.php:362
|
#: src/Module/Contact/Profile.php:361
|
||||||
msgid "Currently blocked"
|
msgid "Currently blocked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Profile.php:363
|
#: src/Module/Contact/Profile.php:362
|
||||||
msgid "Currently ignored"
|
msgid "Currently ignored"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Profile.php:364
|
#: src/Module/Contact/Profile.php:363
|
||||||
msgid "Currently collapsed"
|
msgid "Currently collapsed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Profile.php:365
|
#: src/Module/Contact/Profile.php:364
|
||||||
msgid "Currently archived"
|
msgid "Currently archived"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Profile.php:368
|
#: src/Module/Contact/Profile.php:367
|
||||||
#: src/Module/Notifications/Introductions.php:192
|
#: src/Module/Notifications/Introductions.php:192
|
||||||
msgid "Hide this contact from others"
|
msgid "Hide this contact from others"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Profile.php:368
|
#: src/Module/Contact/Profile.php:367
|
||||||
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/Profile.php:369
|
#: src/Module/Contact/Profile.php:368
|
||||||
msgid "Notification for new posts"
|
msgid "Notification for new posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Profile.php:369
|
#: src/Module/Contact/Profile.php:368
|
||||||
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/Profile.php:371
|
#: src/Module/Contact/Profile.php:370
|
||||||
msgid "Keyword Deny List"
|
msgid "Keyword Deny List"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Profile.php:371
|
#: src/Module/Contact/Profile.php:370
|
||||||
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/Profile.php:389
|
#: src/Module/Contact/Profile.php:388
|
||||||
#: src/Module/Settings/TwoFactor/Index.php:139
|
#: src/Module/Settings/TwoFactor/Index.php:139
|
||||||
msgid "Actions"
|
msgid "Actions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Profile.php:391
|
#: src/Module/Contact/Profile.php:390
|
||||||
#: src/Module/Settings/TwoFactor/Index.php:119 view/theme/frio/theme.php:229
|
#: src/Module/Settings/TwoFactor/Index.php:119 view/theme/frio/theme.php:229
|
||||||
msgid "Status"
|
msgid "Status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Profile.php:397
|
#: src/Module/Contact/Profile.php:396
|
||||||
msgid "Mirror postings from this contact"
|
msgid "Mirror postings from this contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Profile.php:399
|
#: src/Module/Contact/Profile.php:398
|
||||||
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/Profile.php:469
|
#: src/Module/Contact/Profile.php:468
|
||||||
msgid "Refetch contact data"
|
msgid "Refetch contact data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Profile.php:480
|
#: src/Module/Contact/Profile.php:479
|
||||||
msgid "Toggle Blocked status"
|
msgid "Toggle Blocked status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Profile.php:488
|
#: src/Module/Contact/Profile.php:487
|
||||||
msgid "Toggle Ignored status"
|
msgid "Toggle Ignored status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Profile.php:496
|
#: src/Module/Contact/Profile.php:495
|
||||||
msgid "Toggle Collapsed status"
|
msgid "Toggle Collapsed status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Profile.php:503 src/Module/Contact/Revoke.php:106
|
#: src/Module/Contact/Profile.php:502 src/Module/Contact/Revoke.php:106
|
||||||
msgid "Revoke Follow"
|
msgid "Revoke Follow"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact/Profile.php:505
|
#: src/Module/Contact/Profile.php:504
|
||||||
msgid "Revoke the follow from this contact"
|
msgid "Revoke the follow from this contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -6322,7 +6322,7 @@ msgid "Sort by post creation date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Conversation/Network.php:281
|
#: src/Module/Conversation/Network.php:281
|
||||||
#: src/Module/Settings/Profile/Index.php:236
|
#: src/Module/Settings/Profile/Index.php:235
|
||||||
msgid "Personal"
|
msgid "Personal"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -7841,19 +7841,19 @@ msgstr ""
|
||||||
msgid "Add User"
|
msgid "Add User"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Moderation/Users/Create.php:71
|
#: src/Module/Moderation/Users/Create.php:70
|
||||||
msgid "Name of the new user."
|
msgid "Name of the new user."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Moderation/Users/Create.php:72
|
#: src/Module/Moderation/Users/Create.php:71
|
||||||
msgid "Nickname"
|
msgid "Nickname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Moderation/Users/Create.php:72
|
#: src/Module/Moderation/Users/Create.php:71
|
||||||
msgid "Nickname of the new user."
|
msgid "Nickname of the new user."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Moderation/Users/Create.php:73
|
#: src/Module/Moderation/Users/Create.php:72
|
||||||
msgid "Email address of the new user."
|
msgid "Email address of the new user."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -8179,23 +8179,23 @@ msgstr ""
|
||||||
msgid "Edit post"
|
msgid "Edit post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Post/Edit.php:133
|
#: src/Module/Post/Edit.php:136
|
||||||
msgid "web link"
|
msgid "web link"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Post/Edit.php:134
|
#: src/Module/Post/Edit.php:137
|
||||||
msgid "Insert video link"
|
msgid "Insert video link"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Post/Edit.php:135
|
#: src/Module/Post/Edit.php:138
|
||||||
msgid "video link"
|
msgid "video link"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Post/Edit.php:136
|
#: src/Module/Post/Edit.php:139
|
||||||
msgid "Insert audio link"
|
msgid "Insert audio link"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Post/Edit.php:137
|
#: src/Module/Post/Edit.php:140
|
||||||
msgid "audio link"
|
msgid "audio link"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -8218,20 +8218,20 @@ msgstr ""
|
||||||
|
|
||||||
#: src/Module/Profile/Conversations.php:106
|
#: src/Module/Profile/Conversations.php:106
|
||||||
#: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351
|
#: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351
|
||||||
#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1026
|
#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1032
|
||||||
#: src/Protocol/OStatus.php:1007
|
#: src/Protocol/OStatus.php:1007
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s's timeline"
|
msgid "%s's timeline"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352
|
#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352
|
||||||
#: src/Protocol/Feed.php:1030 src/Protocol/OStatus.php:1012
|
#: src/Protocol/Feed.php:1036 src/Protocol/OStatus.php:1012
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s's posts"
|
msgid "%s's posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353
|
#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353
|
||||||
#: src/Protocol/Feed.php:1033 src/Protocol/OStatus.php:1016
|
#: src/Protocol/Feed.php:1039 src/Protocol/OStatus.php:1016
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s's comments"
|
msgid "%s's comments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -8269,7 +8269,7 @@ msgid ""
|
||||||
"\"btn btn-sm pull-right\">Cancel</a>"
|
"\"btn btn-sm pull-right\">Cancel</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Profile/Profile.php:167 src/Module/Settings/Account.php:576
|
#: src/Module/Profile/Profile.php:167 src/Module/Settings/Account.php:575
|
||||||
msgid "Full Name:"
|
msgid "Full Name:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -8289,12 +8289,12 @@ msgstr ""
|
||||||
msgid "Birthday:"
|
msgid "Birthday:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Profile/Profile.php:190 src/Module/Settings/Profile/Index.php:254
|
#: src/Module/Profile/Profile.php:190 src/Module/Settings/Profile/Index.php:253
|
||||||
#: src/Util/Temporal.php:170
|
#: src/Util/Temporal.php:170
|
||||||
msgid "Age: "
|
msgid "Age: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Profile/Profile.php:190 src/Module/Settings/Profile/Index.php:254
|
#: src/Module/Profile/Profile.php:190 src/Module/Settings/Profile/Index.php:253
|
||||||
#: src/Util/Temporal.php:170
|
#: src/Util/Temporal.php:170
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%d year old"
|
msgid "%d year old"
|
||||||
|
|
@ -8302,7 +8302,7 @@ msgid_plural "%d years old"
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
|
|
||||||
#: src/Module/Profile/Profile.php:195 src/Module/Settings/Profile/Index.php:247
|
#: src/Module/Profile/Profile.php:195 src/Module/Settings/Profile/Index.php:246
|
||||||
msgid "Description:"
|
msgid "Description:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -8369,15 +8369,15 @@ msgid ""
|
||||||
"content from anonymous visitors."
|
"content from anonymous visitors."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Profile/Schedule.php:84
|
#: src/Module/Profile/Schedule.php:83
|
||||||
msgid "Scheduled"
|
msgid "Scheduled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Profile/Schedule.php:85
|
#: src/Module/Profile/Schedule.php:84
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Profile/Schedule.php:86
|
#: src/Module/Profile/Schedule.php:85
|
||||||
msgid "Remove post"
|
msgid "Remove post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -8398,22 +8398,22 @@ msgstr ""
|
||||||
msgid "Number of daily wall messages for %s exceeded. Message failed."
|
msgid "Number of daily wall messages for %s exceeded. Message failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Profile/UnkMail.php:153
|
#: src/Module/Profile/UnkMail.php:152
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you wish for %s to respond, please check that the privacy settings on "
|
"If you wish for %s to respond, please check that the privacy settings on "
|
||||||
"your site allow private mail from unknown senders."
|
"your site allow private mail from unknown senders."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Profile/UnkMail.php:161
|
#: src/Module/Profile/UnkMail.php:160
|
||||||
msgid "To"
|
msgid "To"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Profile/UnkMail.php:162
|
#: src/Module/Profile/UnkMail.php:161
|
||||||
msgid "Subject"
|
msgid "Subject"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Profile/UnkMail.php:163
|
#: src/Module/Profile/UnkMail.php:162
|
||||||
msgid "Your message"
|
msgid "Your message"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -8477,8 +8477,8 @@ msgstr ""
|
||||||
msgid "Please repeat your e-mail address:"
|
msgid "Please repeat your e-mail address:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Register.php:162 src/Module/Security/PasswordTooLong.php:101
|
#: src/Module/Register.php:162 src/Module/Security/PasswordTooLong.php:100
|
||||||
#: src/Module/Settings/Account.php:567
|
#: src/Module/Settings/Account.php:566
|
||||||
msgid "New Password:"
|
msgid "New Password:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -8486,8 +8486,8 @@ msgstr ""
|
||||||
msgid "Leave empty for an auto generated password."
|
msgid "Leave empty for an auto generated password."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:102
|
#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:101
|
||||||
#: src/Module/Settings/Account.php:568
|
#: src/Module/Settings/Account.php:567
|
||||||
msgid "Confirm:"
|
msgid "Confirm:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -8609,45 +8609,45 @@ msgstr ""
|
||||||
msgid "Create a New Account"
|
msgid "Create a New Account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Security/Login.php:143
|
#: src/Module/Security/Login.php:142
|
||||||
msgid "Your OpenID: "
|
msgid "Your OpenID: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Security/Login.php:146
|
#: src/Module/Security/Login.php:145
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please enter your username and password to add the OpenID to your existing "
|
"Please enter your username and password to add the OpenID to your existing "
|
||||||
"account."
|
"account."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Security/Login.php:148
|
#: src/Module/Security/Login.php:147
|
||||||
msgid "Or login using OpenID: "
|
msgid "Or login using OpenID: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Security/Login.php:162
|
#: src/Module/Security/Login.php:161
|
||||||
msgid "Password: "
|
msgid "Password: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Security/Login.php:163
|
#: src/Module/Security/Login.php:162
|
||||||
msgid "Remember me"
|
msgid "Remember me"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Security/Login.php:172
|
#: src/Module/Security/Login.php:171
|
||||||
msgid "Forgot your password?"
|
msgid "Forgot your password?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Security/Login.php:175
|
#: src/Module/Security/Login.php:174
|
||||||
msgid "Website Terms of Service"
|
msgid "Website Terms of Service"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Security/Login.php:176
|
#: src/Module/Security/Login.php:175
|
||||||
msgid "terms of service"
|
msgid "terms of service"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Security/Login.php:178
|
#: src/Module/Security/Login.php:177
|
||||||
msgid "Website Privacy Policy"
|
msgid "Website Privacy Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Security/Login.php:179
|
#: src/Module/Security/Login.php:178
|
||||||
msgid "privacy policy"
|
msgid "privacy policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -8704,24 +8704,24 @@ msgstr ""
|
||||||
msgid "Update Password"
|
msgid "Update Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Security/PasswordTooLong.php:100
|
#: src/Module/Security/PasswordTooLong.php:99
|
||||||
#: src/Module/Settings/Account.php:569
|
#: src/Module/Settings/Account.php:568
|
||||||
msgid "Current Password:"
|
msgid "Current Password:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Security/PasswordTooLong.php:100
|
#: src/Module/Security/PasswordTooLong.php:99
|
||||||
#: src/Module/Settings/Account.php:569
|
#: src/Module/Settings/Account.php:568
|
||||||
msgid "Your current password to confirm the changes"
|
msgid "Your current password to confirm the changes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Security/PasswordTooLong.php:101
|
#: src/Module/Security/PasswordTooLong.php:100
|
||||||
#: src/Module/Settings/Account.php:552
|
#: src/Module/Settings/Account.php:552
|
||||||
msgid ""
|
msgid ""
|
||||||
"Allowed characters are a-z, A-Z, 0-9 and special characters except white "
|
"Allowed characters are a-z, A-Z, 0-9 and special characters except white "
|
||||||
"spaces and accentuated letters."
|
"spaces and accentuated letters."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Security/PasswordTooLong.php:101
|
#: src/Module/Security/PasswordTooLong.php:100
|
||||||
#: src/Module/Settings/Account.php:553
|
#: src/Module/Settings/Account.php:553
|
||||||
msgid "Password length is limited to 72 characters."
|
msgid "Password length is limited to 72 characters."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -8963,73 +8963,73 @@ msgstr ""
|
||||||
msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
|
msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:566
|
#: src/Module/Settings/Account.php:565
|
||||||
msgid "Password Settings"
|
msgid "Password Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:568
|
#: src/Module/Settings/Account.php:567
|
||||||
msgid "Leave password fields blank unless changing"
|
msgid "Leave password fields blank unless changing"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:570
|
#: src/Module/Settings/Account.php:569
|
||||||
msgid "Password:"
|
msgid "Password:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:570
|
#: src/Module/Settings/Account.php:569
|
||||||
msgid "Your current password to confirm the changes of the email address"
|
msgid "Your current password to confirm the changes of the email address"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:573
|
#: src/Module/Settings/Account.php:572
|
||||||
msgid "Delete OpenID URL"
|
msgid "Delete OpenID URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:575
|
#: src/Module/Settings/Account.php:574
|
||||||
msgid "Basic Settings"
|
msgid "Basic Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:577
|
#: src/Module/Settings/Account.php:576
|
||||||
msgid "Email Address:"
|
msgid "Email Address:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:578
|
#: src/Module/Settings/Account.php:577
|
||||||
msgid "Your Timezone:"
|
msgid "Your Timezone:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:579
|
#: src/Module/Settings/Account.php:578
|
||||||
msgid "Your Language:"
|
msgid "Your Language:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:579
|
#: src/Module/Settings/Account.php:578
|
||||||
msgid ""
|
msgid ""
|
||||||
"Set the language we use to show you friendica interface and to send you "
|
"Set the language we use to show you friendica interface and to send you "
|
||||||
"emails"
|
"emails"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:580
|
#: src/Module/Settings/Account.php:579
|
||||||
msgid "Default Post Location:"
|
msgid "Default Post Location:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:581
|
#: src/Module/Settings/Account.php:580
|
||||||
msgid "Use Browser Location:"
|
msgid "Use Browser Location:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:583
|
#: src/Module/Settings/Account.php:582
|
||||||
msgid "Security and Privacy Settings"
|
msgid "Security and Privacy Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:585
|
#: src/Module/Settings/Account.php:584
|
||||||
msgid "Maximum Friend Requests/Day:"
|
msgid "Maximum Friend Requests/Day:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:585 src/Module/Settings/Account.php:595
|
#: src/Module/Settings/Account.php:584 src/Module/Settings/Account.php:594
|
||||||
msgid "(to prevent spam abuse)"
|
msgid "(to prevent spam abuse)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:587
|
#: src/Module/Settings/Account.php:586
|
||||||
msgid "Allow your profile to be searchable globally?"
|
msgid "Allow your profile to be searchable globally?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:587
|
#: src/Module/Settings/Account.php:586
|
||||||
msgid ""
|
msgid ""
|
||||||
"Activate this setting if you want others to easily find and follow you. Your "
|
"Activate this setting if you want others to easily find and follow you. Your "
|
||||||
"profile will be searchable on remote systems. This setting also determines "
|
"profile will be searchable on remote systems. This setting also determines "
|
||||||
|
|
@ -9037,43 +9037,43 @@ msgid ""
|
||||||
"indexed or not."
|
"indexed or not."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:588
|
#: src/Module/Settings/Account.php:587
|
||||||
msgid "Hide your contact/friend list from viewers of your profile?"
|
msgid "Hide your contact/friend list from viewers of your profile?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:588
|
#: src/Module/Settings/Account.php:587
|
||||||
msgid ""
|
msgid ""
|
||||||
"A list of your contacts is displayed on your profile page. Activate this "
|
"A list of your contacts is displayed on your profile page. Activate this "
|
||||||
"option to disable the display of your contact list."
|
"option to disable the display of your contact list."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:589
|
#: src/Module/Settings/Account.php:588
|
||||||
msgid "Hide your public content from anonymous viewers"
|
msgid "Hide your public content from anonymous viewers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:589
|
#: src/Module/Settings/Account.php:588
|
||||||
msgid ""
|
msgid ""
|
||||||
"Anonymous visitors will only see your basic profile details. Your public "
|
"Anonymous visitors will only see your basic profile details. Your public "
|
||||||
"posts and replies will still be freely accessible on the remote servers of "
|
"posts and replies will still be freely accessible on the remote servers of "
|
||||||
"your followers and through relays."
|
"your followers and through relays."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:590
|
#: src/Module/Settings/Account.php:589
|
||||||
msgid "Make public posts unlisted"
|
msgid "Make public posts unlisted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:590
|
#: src/Module/Settings/Account.php:589
|
||||||
msgid ""
|
msgid ""
|
||||||
"Your public posts will not appear on the community pages or in search "
|
"Your public posts will not appear on the community pages or in search "
|
||||||
"results, nor be sent to relay servers. However they can still appear on "
|
"results, nor be sent to relay servers. However they can still appear on "
|
||||||
"public feeds on remote servers."
|
"public feeds on remote servers."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:591
|
#: src/Module/Settings/Account.php:590
|
||||||
msgid "Make all posted pictures accessible"
|
msgid "Make all posted pictures accessible"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:591
|
#: src/Module/Settings/Account.php:590
|
||||||
msgid ""
|
msgid ""
|
||||||
"This option makes every posted picture accessible via the direct link. This "
|
"This option makes every posted picture accessible via the direct link. This "
|
||||||
"is a workaround for the problem that most other networks can't handle "
|
"is a workaround for the problem that most other networks can't handle "
|
||||||
|
|
@ -9081,233 +9081,233 @@ msgid ""
|
||||||
"public on your photo albums though."
|
"public on your photo albums though."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:592
|
#: src/Module/Settings/Account.php:591
|
||||||
msgid "Allow friends to post to your profile page?"
|
msgid "Allow friends to post to your profile page?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:592
|
#: src/Module/Settings/Account.php:591
|
||||||
msgid ""
|
msgid ""
|
||||||
"Your contacts may write posts on your profile wall. These posts will be "
|
"Your contacts may write posts on your profile wall. These posts will be "
|
||||||
"distributed to your contacts"
|
"distributed to your contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:593
|
#: src/Module/Settings/Account.php:592
|
||||||
msgid "Allow friends to tag your posts?"
|
msgid "Allow friends to tag your posts?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:593
|
#: src/Module/Settings/Account.php:592
|
||||||
msgid "Your contacts can add additional tags to your posts."
|
msgid "Your contacts can add additional tags to your posts."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:594
|
#: src/Module/Settings/Account.php:593
|
||||||
msgid "Permit unknown people to send you private mail?"
|
msgid "Permit unknown people to send you private mail?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:594
|
#: src/Module/Settings/Account.php:593
|
||||||
msgid ""
|
msgid ""
|
||||||
"Friendica network users may send you private messages even if they are not "
|
"Friendica network users may send you private messages even if they are not "
|
||||||
"in your contact list."
|
"in your contact list."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:595
|
#: src/Module/Settings/Account.php:594
|
||||||
msgid "Maximum private messages per day from unknown people:"
|
msgid "Maximum private messages per day from unknown people:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:597
|
#: src/Module/Settings/Account.php:596
|
||||||
msgid "Default Post Permissions"
|
msgid "Default Post Permissions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:601
|
#: src/Module/Settings/Account.php:600
|
||||||
msgid "Expiration settings"
|
msgid "Expiration settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:602
|
#: src/Module/Settings/Account.php:601
|
||||||
msgid "Automatically expire posts after this many days:"
|
msgid "Automatically expire posts after this many days:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:602
|
#: src/Module/Settings/Account.php:601
|
||||||
msgid "If empty, posts will not expire. Expired posts will be deleted"
|
msgid "If empty, posts will not expire. Expired posts will be deleted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:603
|
#: src/Module/Settings/Account.php:602
|
||||||
msgid "Expire posts"
|
msgid "Expire posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:603
|
#: src/Module/Settings/Account.php:602
|
||||||
msgid "When activated, posts and comments will be expired."
|
msgid "When activated, posts and comments will be expired."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:604
|
#: src/Module/Settings/Account.php:603
|
||||||
msgid "Expire personal notes"
|
msgid "Expire personal notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:604
|
#: src/Module/Settings/Account.php:603
|
||||||
msgid ""
|
msgid ""
|
||||||
"When activated, the personal notes on your profile page will be expired."
|
"When activated, the personal notes on your profile page will be expired."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:605
|
#: src/Module/Settings/Account.php:604
|
||||||
msgid "Expire starred posts"
|
msgid "Expire starred posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:605
|
#: src/Module/Settings/Account.php:604
|
||||||
msgid ""
|
msgid ""
|
||||||
"Starring posts keeps them from being expired. That behaviour is overwritten "
|
"Starring posts keeps them from being expired. That behaviour is overwritten "
|
||||||
"by this setting."
|
"by this setting."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:606
|
#: src/Module/Settings/Account.php:605
|
||||||
msgid "Only expire posts by others"
|
msgid "Only expire posts by others"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:606
|
#: src/Module/Settings/Account.php:605
|
||||||
msgid ""
|
msgid ""
|
||||||
"When activated, your own posts never expire. Then the settings above are "
|
"When activated, your own posts never expire. Then the settings above are "
|
||||||
"only valid for posts you received."
|
"only valid for posts you received."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:609
|
#: src/Module/Settings/Account.php:608
|
||||||
msgid "Notification Settings"
|
msgid "Notification Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:610
|
#: src/Module/Settings/Account.php:609
|
||||||
msgid "Send a notification email when:"
|
msgid "Send a notification email when:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:611
|
#: src/Module/Settings/Account.php:610
|
||||||
msgid "You receive an introduction"
|
msgid "You receive an introduction"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:612
|
#: src/Module/Settings/Account.php:611
|
||||||
msgid "Your introductions are confirmed"
|
msgid "Your introductions are confirmed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:613
|
#: src/Module/Settings/Account.php:612
|
||||||
msgid "Someone writes on your profile wall"
|
msgid "Someone writes on your profile wall"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:614
|
#: src/Module/Settings/Account.php:613
|
||||||
msgid "Someone writes a followup comment"
|
msgid "Someone writes a followup comment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:615
|
#: src/Module/Settings/Account.php:614
|
||||||
msgid "You receive a private message"
|
msgid "You receive a private message"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:616
|
#: src/Module/Settings/Account.php:615
|
||||||
msgid "You receive a friend suggestion"
|
msgid "You receive a friend suggestion"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:617
|
#: src/Module/Settings/Account.php:616
|
||||||
msgid "You are tagged in a post"
|
msgid "You are tagged in a post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:619
|
#: src/Module/Settings/Account.php:618
|
||||||
msgid "Create a desktop notification when:"
|
msgid "Create a desktop notification when:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:620
|
#: src/Module/Settings/Account.php:619
|
||||||
msgid "Someone tagged you"
|
msgid "Someone tagged you"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:621
|
#: src/Module/Settings/Account.php:620
|
||||||
msgid "Someone directly commented on your post"
|
msgid "Someone directly commented on your post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:622
|
#: src/Module/Settings/Account.php:621
|
||||||
msgid "Someone liked your content"
|
msgid "Someone liked your content"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:622 src/Module/Settings/Account.php:623
|
#: src/Module/Settings/Account.php:621 src/Module/Settings/Account.php:622
|
||||||
msgid "Can only be enabled, when the direct comment notification is enabled."
|
msgid "Can only be enabled, when the direct comment notification is enabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:623
|
#: src/Module/Settings/Account.php:622
|
||||||
msgid "Someone shared your content"
|
msgid "Someone shared your content"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:624
|
#: src/Module/Settings/Account.php:623
|
||||||
msgid "Someone commented in your thread"
|
msgid "Someone commented in your thread"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:625
|
#: src/Module/Settings/Account.php:624
|
||||||
msgid "Someone commented in a thread where you commented"
|
msgid "Someone commented in a thread where you commented"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:626
|
#: src/Module/Settings/Account.php:625
|
||||||
msgid "Someone commented in a thread where you interacted"
|
msgid "Someone commented in a thread where you interacted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:628
|
#: src/Module/Settings/Account.php:627
|
||||||
msgid "Activate desktop notifications"
|
msgid "Activate desktop notifications"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:628
|
#: src/Module/Settings/Account.php:627
|
||||||
msgid "Show desktop popup on new notifications"
|
msgid "Show desktop popup on new notifications"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:632
|
#: src/Module/Settings/Account.php:631
|
||||||
msgid "Text-only notification emails"
|
msgid "Text-only notification emails"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:634
|
#: src/Module/Settings/Account.php:633
|
||||||
msgid "Send text only notification emails, without the html part"
|
msgid "Send text only notification emails, without the html part"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:638
|
#: src/Module/Settings/Account.php:637
|
||||||
msgid "Show detailled notifications"
|
msgid "Show detailled notifications"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:640
|
#: src/Module/Settings/Account.php:639
|
||||||
msgid ""
|
msgid ""
|
||||||
"Per default, notifications are condensed to a single notification per item. "
|
"Per default, notifications are condensed to a single notification per item. "
|
||||||
"When enabled every notification is displayed."
|
"When enabled every notification is displayed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:644
|
#: src/Module/Settings/Account.php:643
|
||||||
msgid "Show notifications of ignored contacts"
|
msgid "Show notifications of ignored contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:646
|
#: src/Module/Settings/Account.php:645
|
||||||
msgid ""
|
msgid ""
|
||||||
"You don't see posts from ignored contacts. But you still see their comments. "
|
"You don't see posts from ignored contacts. But you still see their comments. "
|
||||||
"This setting controls if you want to still receive regular notifications "
|
"This setting controls if you want to still receive regular notifications "
|
||||||
"that are caused by ignored contacts or not."
|
"that are caused by ignored contacts or not."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:649
|
#: src/Module/Settings/Account.php:648
|
||||||
msgid "Advanced Account/Page Type Settings"
|
msgid "Advanced Account/Page Type Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:650
|
#: src/Module/Settings/Account.php:649
|
||||||
msgid "Change the behaviour of this account for special situations"
|
msgid "Change the behaviour of this account for special situations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:653
|
#: src/Module/Settings/Account.php:652
|
||||||
msgid "Import Contacts"
|
msgid "Import Contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:654
|
#: src/Module/Settings/Account.php:653
|
||||||
msgid ""
|
msgid ""
|
||||||
"Upload a CSV file that contains the handle of your followed accounts in the "
|
"Upload a CSV file that contains the handle of your followed accounts in the "
|
||||||
"first column you exported from the old account."
|
"first column you exported from the old account."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:655
|
#: src/Module/Settings/Account.php:654
|
||||||
msgid "Upload File"
|
msgid "Upload File"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:658
|
#: src/Module/Settings/Account.php:657
|
||||||
msgid "Relocate"
|
msgid "Relocate"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:659
|
#: src/Module/Settings/Account.php:658
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you have moved this profile from another server, and some of your "
|
"If you have moved this profile from another server, and some of your "
|
||||||
"contacts don't receive your updates, try pushing this button."
|
"contacts don't receive your updates, try pushing this button."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:660
|
#: src/Module/Settings/Account.php:659
|
||||||
msgid "Resend relocate message to contacts"
|
msgid "Resend relocate message to contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -9319,73 +9319,73 @@ msgstr ""
|
||||||
msgid "No Addon settings configured"
|
msgid "No Addon settings configured"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Connectors.php:119
|
#: src/Module/Settings/Connectors.php:120
|
||||||
msgid "Failed to connect with email account using the settings provided."
|
msgid "Failed to connect with email account using the settings provided."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Connectors.php:164
|
#: src/Module/Settings/Connectors.php:166
|
||||||
#: src/Module/Settings/Connectors.php:165
|
#: src/Module/Settings/Connectors.php:167
|
||||||
msgid "Diaspora (Socialhome, Hubzilla)"
|
msgid "Diaspora (Socialhome, Hubzilla)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Connectors.php:164
|
#: src/Module/Settings/Connectors.php:166
|
||||||
#: src/Module/Settings/Connectors.php:168
|
#: src/Module/Settings/Connectors.php:170
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Built-in support for %s connectivity is enabled"
|
msgid "Built-in support for %s connectivity is enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Connectors.php:165
|
|
||||||
#: src/Module/Settings/Connectors.php:167
|
#: src/Module/Settings/Connectors.php:167
|
||||||
|
#: src/Module/Settings/Connectors.php:169
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Built-in support for %s connectivity is disabled"
|
msgid "Built-in support for %s connectivity is disabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Connectors.php:167
|
#: src/Module/Settings/Connectors.php:169
|
||||||
#: src/Module/Settings/Connectors.php:168
|
#: src/Module/Settings/Connectors.php:170
|
||||||
msgid "OStatus (GNU Social)"
|
msgid "OStatus (GNU Social)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Connectors.php:180
|
#: src/Module/Settings/Connectors.php:182
|
||||||
msgid "Email access is disabled on this site."
|
msgid "Email access is disabled on this site."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Connectors.php:195
|
#: src/Module/Settings/Connectors.php:197
|
||||||
#: src/Module/Settings/Connectors.php:241
|
#: src/Module/Settings/Connectors.php:244
|
||||||
msgid "None"
|
msgid "None"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Connectors.php:207
|
#: src/Module/Settings/Connectors.php:209
|
||||||
msgid "General Social Media Settings"
|
msgid "General Social Media Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Connectors.php:210
|
#: src/Module/Settings/Connectors.php:212
|
||||||
msgid "Followed content scope"
|
msgid "Followed content scope"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Connectors.php:212
|
#: src/Module/Settings/Connectors.php:214
|
||||||
msgid ""
|
msgid ""
|
||||||
"By default, conversations in which your follows participated but didn't "
|
"By default, conversations in which your follows participated but didn't "
|
||||||
"start will be shown in your timeline. You can turn this behavior off, or "
|
"start will be shown in your timeline. You can turn this behavior off, or "
|
||||||
"expand it to the conversations in which your follows liked a post."
|
"expand it to the conversations in which your follows liked a post."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Connectors.php:214
|
#: src/Module/Settings/Connectors.php:216
|
||||||
msgid "Only conversations my follows started"
|
msgid "Only conversations my follows started"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Connectors.php:215
|
#: src/Module/Settings/Connectors.php:217
|
||||||
msgid "Conversations my follows started or commented on (default)"
|
msgid "Conversations my follows started or commented on (default)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Connectors.php:216
|
#: src/Module/Settings/Connectors.php:218
|
||||||
msgid "Any conversation my follows interacted with, including likes"
|
msgid "Any conversation my follows interacted with, including likes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Connectors.php:219
|
#: src/Module/Settings/Connectors.php:221
|
||||||
msgid "Enable Content Warning"
|
msgid "Enable Content Warning"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Connectors.php:219
|
#: src/Module/Settings/Connectors.php:221
|
||||||
msgid ""
|
msgid ""
|
||||||
"Users on networks like Mastodon or Pleroma are able to set a content warning "
|
"Users on networks like Mastodon or Pleroma are able to set a content warning "
|
||||||
"field which collapse their post by default. This enables the automatic "
|
"field which collapse their post by default. This enables the automatic "
|
||||||
|
|
@ -9393,115 +9393,125 @@ msgid ""
|
||||||
"affect any other content filtering you eventually set up."
|
"affect any other content filtering you eventually set up."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Connectors.php:220
|
#: src/Module/Settings/Connectors.php:222
|
||||||
msgid "Enable intelligent shortening"
|
msgid "Enable intelligent shortening"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Connectors.php:220
|
#: src/Module/Settings/Connectors.php:222
|
||||||
msgid ""
|
msgid ""
|
||||||
"Normally the system tries to find the best link to add to shortened posts. "
|
"Normally the system tries to find the best link to add to shortened posts. "
|
||||||
"If disabled, every shortened post will always point to the original "
|
"If disabled, every shortened post will always point to the original "
|
||||||
"friendica post."
|
"friendica post."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Connectors.php:221
|
#: src/Module/Settings/Connectors.php:223
|
||||||
msgid "Enable simple text shortening"
|
msgid "Enable simple text shortening"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Connectors.php:221
|
#: src/Module/Settings/Connectors.php:223
|
||||||
msgid ""
|
msgid ""
|
||||||
"Normally the system shortens posts at the next line feed. If this option is "
|
"Normally the system shortens posts at the next line feed. If this option is "
|
||||||
"enabled then the system will shorten the text at the maximum character limit."
|
"enabled then the system will shorten the text at the maximum character limit."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Connectors.php:222
|
#: src/Module/Settings/Connectors.php:224
|
||||||
msgid "Attach the link title"
|
msgid "Attach the link title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Connectors.php:222
|
#: src/Module/Settings/Connectors.php:224
|
||||||
msgid ""
|
msgid ""
|
||||||
"When activated, the title of the attached link will be added as a title on "
|
"When activated, the title of the attached link will be added as a title on "
|
||||||
"posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that "
|
"posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that "
|
||||||
"share feed content."
|
"share feed content."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Connectors.php:223
|
#: src/Module/Settings/Connectors.php:225
|
||||||
msgid "API: Use spoiler field as title"
|
msgid "API: Use spoiler field as title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Connectors.php:223
|
#: src/Module/Settings/Connectors.php:225
|
||||||
msgid ""
|
msgid ""
|
||||||
"When activated, the \"spoiler_text\" field in the API will be used for the "
|
"When activated, the \"spoiler_text\" field in the API will be used for the "
|
||||||
"title on standalone posts. When deactivated it will be used for spoiler "
|
"title on standalone posts. When deactivated it will be used for spoiler "
|
||||||
"text. For comments it will always be used for spoiler text."
|
"text. For comments it will always be used for spoiler text."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Connectors.php:224
|
#: src/Module/Settings/Connectors.php:226
|
||||||
|
msgid "API: Automatically links at the end of the post as attached posts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Module/Settings/Connectors.php:226
|
||||||
|
msgid ""
|
||||||
|
"When activated, added links at the end of the post react the same way as "
|
||||||
|
"added links in the web interface."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Module/Settings/Connectors.php:227
|
||||||
msgid "Your legacy ActivityPub/GNU Social account"
|
msgid "Your legacy ActivityPub/GNU Social account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Connectors.php:224
|
#: src/Module/Settings/Connectors.php:227
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you enter your old account name from an ActivityPub based system or your "
|
"If you enter your old account name from an ActivityPub based system or your "
|
||||||
"GNU Social/Statusnet account name here (in the format user@domain.tld), your "
|
"GNU Social/Statusnet account name here (in the format user@domain.tld), your "
|
||||||
"contacts will be added automatically. The field will be emptied when done."
|
"contacts will be added automatically. The field will be emptied when done."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Connectors.php:226
|
#: src/Module/Settings/Connectors.php:229
|
||||||
msgid "Repair OStatus subscriptions"
|
msgid "Repair OStatus subscriptions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Connectors.php:230
|
#: src/Module/Settings/Connectors.php:233
|
||||||
msgid "Email/Mailbox Setup"
|
msgid "Email/Mailbox Setup"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Connectors.php:231
|
#: src/Module/Settings/Connectors.php:234
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you wish to communicate with email contacts using this service "
|
"If you wish to communicate with email contacts using this service "
|
||||||
"(optional), please specify how to connect to your mailbox."
|
"(optional), please specify how to connect to your mailbox."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Connectors.php:232
|
#: src/Module/Settings/Connectors.php:235
|
||||||
msgid "Last successful email check:"
|
msgid "Last successful email check:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Connectors.php:234
|
#: src/Module/Settings/Connectors.php:237
|
||||||
msgid "IMAP server name:"
|
msgid "IMAP server name:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Connectors.php:235
|
#: src/Module/Settings/Connectors.php:238
|
||||||
msgid "IMAP port:"
|
msgid "IMAP port:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Connectors.php:236
|
#: src/Module/Settings/Connectors.php:239
|
||||||
msgid "Security:"
|
msgid "Security:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Connectors.php:237
|
#: src/Module/Settings/Connectors.php:240
|
||||||
msgid "Email login name:"
|
msgid "Email login name:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Connectors.php:238
|
#: src/Module/Settings/Connectors.php:241
|
||||||
msgid "Email password:"
|
msgid "Email password:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Connectors.php:239
|
#: src/Module/Settings/Connectors.php:242
|
||||||
msgid "Reply-to address:"
|
msgid "Reply-to address:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Connectors.php:240
|
#: src/Module/Settings/Connectors.php:243
|
||||||
msgid "Send public posts to all email contacts:"
|
msgid "Send public posts to all email contacts:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Connectors.php:241
|
#: src/Module/Settings/Connectors.php:244
|
||||||
msgid "Action after import:"
|
msgid "Action after import:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Connectors.php:241
|
#: src/Module/Settings/Connectors.php:244
|
||||||
msgid "Move to folder"
|
msgid "Move to folder"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Connectors.php:242
|
#: src/Module/Settings/Connectors.php:245
|
||||||
msgid "Move to folder:"
|
msgid "Move to folder:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -9629,95 +9639,95 @@ msgstr ""
|
||||||
msgid "Theme settings"
|
msgid "Theme settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:258
|
#: src/Module/Settings/Display.php:257
|
||||||
msgid "Display Theme:"
|
msgid "Display Theme:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:259
|
#: src/Module/Settings/Display.php:258
|
||||||
msgid "Mobile Theme:"
|
msgid "Mobile Theme:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:262
|
#: src/Module/Settings/Display.php:261
|
||||||
msgid "Number of items to display per page:"
|
msgid "Number of items to display per page:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:262 src/Module/Settings/Display.php:263
|
#: src/Module/Settings/Display.php:261 src/Module/Settings/Display.php:262
|
||||||
msgid "Maximum of 100 items"
|
msgid "Maximum of 100 items"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:263
|
#: src/Module/Settings/Display.php:262
|
||||||
msgid "Number of items to display per page when viewed from mobile device:"
|
msgid "Number of items to display per page when viewed from mobile device:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:264
|
#: src/Module/Settings/Display.php:263
|
||||||
msgid "Update browser every xx seconds"
|
msgid "Update browser every xx seconds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:264
|
#: src/Module/Settings/Display.php:263
|
||||||
msgid "Minimum of 10 seconds. Enter -1 to disable it."
|
msgid "Minimum of 10 seconds. Enter -1 to disable it."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:265
|
#: src/Module/Settings/Display.php:264
|
||||||
msgid "Display emoticons"
|
msgid "Display emoticons"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:265
|
#: src/Module/Settings/Display.php:264
|
||||||
msgid "When enabled, emoticons are replaced with matching symbols."
|
msgid "When enabled, emoticons are replaced with matching symbols."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:266
|
#: src/Module/Settings/Display.php:265
|
||||||
msgid "Infinite scroll"
|
msgid "Infinite scroll"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:266
|
#: src/Module/Settings/Display.php:265
|
||||||
msgid "Automatic fetch new items when reaching the page end."
|
msgid "Automatic fetch new items when reaching the page end."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:267
|
#: src/Module/Settings/Display.php:266
|
||||||
msgid "Enable Smart Threading"
|
msgid "Enable Smart Threading"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:267
|
#: src/Module/Settings/Display.php:266
|
||||||
msgid "Enable the automatic suppression of extraneous thread indentation."
|
msgid "Enable the automatic suppression of extraneous thread indentation."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:268
|
#: src/Module/Settings/Display.php:267
|
||||||
msgid "Display the Dislike feature"
|
msgid "Display the Dislike feature"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:268
|
#: src/Module/Settings/Display.php:267
|
||||||
msgid "Display the Dislike button and dislike reactions on posts and comments."
|
msgid "Display the Dislike button and dislike reactions on posts and comments."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:269
|
#: src/Module/Settings/Display.php:268
|
||||||
msgid "Display the resharer"
|
msgid "Display the resharer"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:269
|
#: src/Module/Settings/Display.php:268
|
||||||
msgid "Display the first resharer as icon and text on a reshared item."
|
msgid "Display the first resharer as icon and text on a reshared item."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:270
|
#: src/Module/Settings/Display.php:269
|
||||||
msgid "Stay local"
|
msgid "Stay local"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:270
|
#: src/Module/Settings/Display.php:269
|
||||||
msgid "Don't go to a remote system when following a contact link."
|
msgid "Don't go to a remote system when following a contact link."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:271
|
#: src/Module/Settings/Display.php:270
|
||||||
msgid "Link preview mode"
|
msgid "Link preview mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:271
|
#: src/Module/Settings/Display.php:270
|
||||||
msgid "Appearance of the link preview that is added to each post with a link."
|
msgid "Appearance of the link preview that is added to each post with a link."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:273
|
#: src/Module/Settings/Display.php:272
|
||||||
msgid "Beginning of week:"
|
msgid "Beginning of week:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:274
|
#: src/Module/Settings/Display.php:273
|
||||||
msgid "Default calendar view:"
|
msgid "Default calendar view:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -9725,11 +9735,11 @@ msgstr ""
|
||||||
msgid "Additional Features"
|
msgid "Additional Features"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/OAuth.php:72
|
#: src/Module/Settings/OAuth.php:71
|
||||||
msgid "Connected Apps"
|
msgid "Connected Apps"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/OAuth.php:76
|
#: src/Module/Settings/OAuth.php:75
|
||||||
msgid "Remove authorization"
|
msgid "Remove authorization"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -9765,114 +9775,114 @@ msgstr ""
|
||||||
msgid "Add a new profile field"
|
msgid "Add a new profile field"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:217
|
#: src/Module/Settings/Profile/Index.php:216
|
||||||
msgid ""
|
msgid ""
|
||||||
"The homepage is verified. A rel=\"me\" link back to your Friendica profile "
|
"The homepage is verified. A rel=\"me\" link back to your Friendica profile "
|
||||||
"page was found on the homepage."
|
"page was found on the homepage."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:219
|
#: src/Module/Settings/Profile/Index.php:218
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"To verify your homepage, add a rel=\"me\" link to it, pointing to your "
|
"To verify your homepage, add a rel=\"me\" link to it, pointing to your "
|
||||||
"profile URL (%s)."
|
"profile URL (%s)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:229
|
#: src/Module/Settings/Profile/Index.php:228
|
||||||
msgid "Profile Actions"
|
msgid "Profile Actions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:230
|
#: src/Module/Settings/Profile/Index.php:229
|
||||||
msgid "Edit Profile Details"
|
msgid "Edit Profile Details"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:232
|
#: src/Module/Settings/Profile/Index.php:231
|
||||||
msgid "Change Profile Photo"
|
msgid "Change Profile Photo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:237
|
#: src/Module/Settings/Profile/Index.php:236
|
||||||
msgid "Profile picture"
|
msgid "Profile picture"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:238
|
#: src/Module/Settings/Profile/Index.php:237
|
||||||
msgid "Location"
|
msgid "Location"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:239 src/Util/Temporal.php:97
|
#: src/Module/Settings/Profile/Index.php:238 src/Util/Temporal.php:97
|
||||||
#: src/Util/Temporal.php:99
|
#: src/Util/Temporal.php:99
|
||||||
msgid "Miscellaneous"
|
msgid "Miscellaneous"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:240
|
#: src/Module/Settings/Profile/Index.php:239
|
||||||
msgid "Custom Profile Fields"
|
msgid "Custom Profile Fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:242 src/Module/Welcome.php:58
|
#: src/Module/Settings/Profile/Index.php:241 src/Module/Welcome.php:58
|
||||||
msgid "Upload Profile Photo"
|
msgid "Upload Profile Photo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:246
|
#: src/Module/Settings/Profile/Index.php:245
|
||||||
msgid "Display name:"
|
msgid "Display name:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:249
|
#: src/Module/Settings/Profile/Index.php:248
|
||||||
msgid "Street Address:"
|
msgid "Street Address:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:250
|
#: src/Module/Settings/Profile/Index.php:249
|
||||||
msgid "Locality/City:"
|
msgid "Locality/City:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:251
|
#: src/Module/Settings/Profile/Index.php:250
|
||||||
msgid "Region/State:"
|
msgid "Region/State:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:252
|
#: src/Module/Settings/Profile/Index.php:251
|
||||||
msgid "Postal/Zip Code:"
|
msgid "Postal/Zip Code:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:253
|
#: src/Module/Settings/Profile/Index.php:252
|
||||||
msgid "Country:"
|
msgid "Country:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:255
|
#: src/Module/Settings/Profile/Index.php:254
|
||||||
msgid "XMPP (Jabber) address:"
|
msgid "XMPP (Jabber) address:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:255
|
#: src/Module/Settings/Profile/Index.php:254
|
||||||
msgid "The XMPP address will be published so that people can follow you there."
|
msgid "The XMPP address will be published so that people can follow you there."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:256
|
#: src/Module/Settings/Profile/Index.php:255
|
||||||
msgid "Matrix (Element) address:"
|
msgid "Matrix (Element) address:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:256
|
#: src/Module/Settings/Profile/Index.php:255
|
||||||
msgid ""
|
msgid ""
|
||||||
"The Matrix address will be published so that people can follow you there."
|
"The Matrix address will be published so that people can follow you there."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:257
|
#: src/Module/Settings/Profile/Index.php:256
|
||||||
msgid "Homepage URL:"
|
msgid "Homepage URL:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:258
|
#: src/Module/Settings/Profile/Index.php:257
|
||||||
msgid "Public Keywords:"
|
msgid "Public Keywords:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:258
|
#: src/Module/Settings/Profile/Index.php:257
|
||||||
msgid "(Used for suggesting potential friends, can be seen by others)"
|
msgid "(Used for suggesting potential friends, can be seen by others)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:259
|
#: src/Module/Settings/Profile/Index.php:258
|
||||||
msgid "Private Keywords:"
|
msgid "Private Keywords:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:259
|
#: src/Module/Settings/Profile/Index.php:258
|
||||||
msgid "(Used for searching profiles, never shown to others)"
|
msgid "(Used for searching profiles, never shown to others)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:260
|
#: src/Module/Settings/Profile/Index.php:259
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"<p>Custom fields appear on <a href=\"%s\">your profile page</a>.</p>\n"
|
"<p>Custom fields appear on <a href=\"%s\">your profile page</a>.</p>\n"
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,7 @@
|
||||||
{{include file="field_checkbox.tpl" field=$simple_shortening}}
|
{{include file="field_checkbox.tpl" field=$simple_shortening}}
|
||||||
{{include file="field_checkbox.tpl" field=$attach_link_title}}
|
{{include file="field_checkbox.tpl" field=$attach_link_title}}
|
||||||
{{include file="field_checkbox.tpl" field=$api_spoiler_title}}
|
{{include file="field_checkbox.tpl" field=$api_spoiler_title}}
|
||||||
|
{{include file="field_checkbox.tpl" field=$api_auto_attach}}
|
||||||
{{include file="field_input.tpl" field=$legacy_contact}}
|
{{include file="field_input.tpl" field=$legacy_contact}}
|
||||||
|
|
||||||
<p><a href="{{$repair_ostatus_url}}">{{$repair_ostatus_text}}</a></p>
|
<p><a href="{{$repair_ostatus_url}}">{{$repair_ostatus_text}}</a></p>
|
||||||
|
|
|
||||||
|
|
@ -30,6 +30,8 @@
|
||||||
|
|
||||||
{{include file="field_checkbox.tpl" field=$api_spoiler_title}}
|
{{include file="field_checkbox.tpl" field=$api_spoiler_title}}
|
||||||
|
|
||||||
|
{{include file="field_checkbox.tpl" field=$api_auto_attach}}
|
||||||
|
|
||||||
{{include file="field_input.tpl" field=$legacy_contact}}
|
{{include file="field_input.tpl" field=$legacy_contact}}
|
||||||
|
|
||||||
<p><a href="{{$repair_ostatus_url}}">{{$repair_ostatus_text}}</a></p>
|
<p><a href="{{$repair_ostatus_url}}">{{$repair_ostatus_text}}</a></p>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue