mirror of
https://github.com/friendica/friendica
synced 2025-01-09 14:04:43 +00:00
Merge remote-tracking branch 'upstream/2022.05-rc' into updated
This commit is contained in:
commit
d435203f72
6 changed files with 210 additions and 194 deletions
|
@ -31,6 +31,7 @@ use Friendica\Database\DBA;
|
||||||
use Friendica\DI;
|
use Friendica\DI;
|
||||||
use Friendica\Model\Group;
|
use Friendica\Model\Group;
|
||||||
use Friendica\Model\Notification;
|
use Friendica\Model\Notification;
|
||||||
|
use Friendica\Model\Post\UserNotification;
|
||||||
use Friendica\Model\Profile;
|
use Friendica\Model\Profile;
|
||||||
use Friendica\Model\User;
|
use Friendica\Model\User;
|
||||||
use Friendica\Model\Verb;
|
use Friendica\Model\Verb;
|
||||||
|
@ -253,6 +254,30 @@ class Account extends BaseSettings
|
||||||
$notify_like = !empty($request['notify_like']);
|
$notify_like = !empty($request['notify_like']);
|
||||||
$notify_announce = !empty($request['notify_announce']);
|
$notify_announce = !empty($request['notify_announce']);
|
||||||
|
|
||||||
|
$notify_type = 0;
|
||||||
|
|
||||||
|
if (!empty($request['notify_tagged'])) {
|
||||||
|
$notify_type = $notify_type | UserNotification::TYPE_EXPLICIT_TAGGED;
|
||||||
|
}
|
||||||
|
if (!empty($request['notify_direct_comment'])) {
|
||||||
|
$notify_type = $notify_type | (UserNotification::TYPE_IMPLICIT_TAGGED + UserNotification::TYPE_DIRECT_COMMENT + UserNotification::TYPE_DIRECT_THREAD_COMMENT);
|
||||||
|
}
|
||||||
|
if (!empty($request['notify_thread_comment'])) {
|
||||||
|
$notify_type = $notify_type | UserNotification::TYPE_THREAD_COMMENT;
|
||||||
|
}
|
||||||
|
if (!empty($request['notify_comment_participation'])) {
|
||||||
|
$notify_type = $notify_type | UserNotification::TYPE_COMMENT_PARTICIPATION;
|
||||||
|
}
|
||||||
|
if (!empty($request['notify_activity_participation'])) {
|
||||||
|
$notify_type = $notify_type | UserNotification::TYPE_ACTIVITY_PARTICIPATION;
|
||||||
|
}
|
||||||
|
DI::pConfig()->set(local_user(), 'system', 'notify_type', $notify_type);
|
||||||
|
|
||||||
|
if (!($notify_type & (UserNotification::TYPE_DIRECT_COMMENT + UserNotification::TYPE_DIRECT_THREAD_COMMENT))) {
|
||||||
|
$notify_like = false;
|
||||||
|
$notify_announce = false;
|
||||||
|
}
|
||||||
|
|
||||||
// Reset like notifications when they are going to be shown again
|
// Reset like notifications when they are going to be shown again
|
||||||
if (!DI::pConfig()->get(local_user(), 'system', 'notify_like') && $notify_like) {
|
if (!DI::pConfig()->get(local_user(), 'system', 'notify_like') && $notify_like) {
|
||||||
DI::notification()->setAllSeenForUser(local_user(), ['vid' => Verb::getID(Activity::LIKE)]);
|
DI::notification()->setAllSeenForUser(local_user(), ['vid' => Verb::getID(Activity::LIKE)]);
|
||||||
|
@ -267,25 +292,6 @@ class Account extends BaseSettings
|
||||||
|
|
||||||
DI::pConfig()->set(local_user(), 'system', 'notify_announce', $notify_announce);
|
DI::pConfig()->set(local_user(), 'system', 'notify_announce', $notify_announce);
|
||||||
|
|
||||||
$notify_type = 0;
|
|
||||||
|
|
||||||
if (!empty($request['notify_tagged'])) {
|
|
||||||
$notify_type = $notify_type | 3;
|
|
||||||
}
|
|
||||||
if (!empty($request['notify_direct_comment'])) {
|
|
||||||
$notify_type = $notify_type | 72;
|
|
||||||
}
|
|
||||||
if (!empty($request['notify_thread_comment'])) {
|
|
||||||
$notify_type = $notify_type | 4;
|
|
||||||
}
|
|
||||||
if (!empty($request['notify_comment_participation'])) {
|
|
||||||
$notify_type = $notify_type | 16;
|
|
||||||
}
|
|
||||||
if (!empty($request['notify_activity_participation'])) {
|
|
||||||
$notify_type = $notify_type | 32;
|
|
||||||
}
|
|
||||||
DI::pConfig()->set(local_user(), 'system', 'notify_type', $notify_type);
|
|
||||||
|
|
||||||
DI::pConfig()->set(local_user(), 'system', 'email_textonly', !empty($request['email_textonly']));
|
DI::pConfig()->set(local_user(), 'system', 'email_textonly', !empty($request['email_textonly']));
|
||||||
DI::pConfig()->set(local_user(), 'system', 'detailed_notif', !empty($request['detailed_notif']));
|
DI::pConfig()->set(local_user(), 'system', 'detailed_notif', !empty($request['detailed_notif']));
|
||||||
DI::pConfig()->set(local_user(), 'system', 'notify_ignored', !empty($request['notify_ignored']));
|
DI::pConfig()->set(local_user(), 'system', 'notify_ignored', !empty($request['notify_ignored']));
|
||||||
|
@ -543,7 +549,7 @@ class Account extends BaseSettings
|
||||||
/* Installed langs */
|
/* Installed langs */
|
||||||
$lang_choices = DI::l10n()->getAvailableLanguages();
|
$lang_choices = DI::l10n()->getAvailableLanguages();
|
||||||
|
|
||||||
$notify_type = DI::pConfig()->get(local_user(), 'system', 'notify_type', 3 | 72 | 4 | 16 | 32);
|
$notify_type = DI::pConfig()->get(local_user(), 'system', 'notify_type');
|
||||||
|
|
||||||
$tpl = Renderer::getMarkupTemplate('settings/account.tpl');
|
$tpl = Renderer::getMarkupTemplate('settings/account.tpl');
|
||||||
$o = Renderer::replaceMacros($tpl, [
|
$o = Renderer::replaceMacros($tpl, [
|
||||||
|
@ -610,15 +616,14 @@ class Account extends BaseSettings
|
||||||
'$notify7' => ['notify7', DI::l10n()->t('You are tagged in a post'), ($notify & Notification\Type::TAG_SELF), Notification\Type::TAG_SELF, ''],
|
'$notify7' => ['notify7', DI::l10n()->t('You are tagged in a post'), ($notify & Notification\Type::TAG_SELF), Notification\Type::TAG_SELF, ''],
|
||||||
'$notify8' => ['notify8', DI::l10n()->t('You are poked/prodded/etc. in a post'), ($notify & Notification\Type::POKE), Notification\Type::POKE, ''],
|
'$notify8' => ['notify8', DI::l10n()->t('You are poked/prodded/etc. in a post'), ($notify & Notification\Type::POKE), Notification\Type::POKE, ''],
|
||||||
|
|
||||||
'$lbl_notify' => DI::l10n()->t('Create a desktop notification when:'),
|
'$lbl_notify' => DI::l10n()->t('Create a desktop notification when:'),
|
||||||
'$notify_like' => ['notify_like', DI::l10n()->t('Someone liked your content'), DI::pConfig()->get(local_user(), 'system', 'notify_like'), ''],
|
'$notify_tagged' => ['notify_tagged', DI::l10n()->t('Someone tagged you'), is_null($notify_type) || $notify_type & UserNotification::TYPE_EXPLICIT_TAGGED, ''],
|
||||||
'$notify_announce' => ['notify_announce', DI::l10n()->t('Someone shared your content'), DI::pConfig()->get(local_user(), 'system', 'notify_announce'), ''],
|
'$notify_direct_comment' => ['notify_direct_comment', DI::l10n()->t('Someone directly commented on your post'), is_null($notify_type) || $notify_type & (UserNotification::TYPE_IMPLICIT_TAGGED + UserNotification::TYPE_DIRECT_COMMENT + UserNotification::TYPE_DIRECT_THREAD_COMMENT), ''],
|
||||||
|
'$notify_like' => ['notify_like', DI::l10n()->t('Someone liked your content'), DI::pConfig()->get(local_user(), 'system', 'notify_like'), DI::l10n()->t('Can only be enabled, when the direct comment notification is enabled.')],
|
||||||
'$notify_tagged' => ['notify_tagged', DI::l10n()->t('Someone tagged you'), $notify_type & 3, ''],
|
'$notify_announce' => ['notify_announce', DI::l10n()->t('Someone shared your content'), DI::pConfig()->get(local_user(), 'system', 'notify_announce'), DI::l10n()->t('Can only be enabled, when the direct comment notification is enabled.')],
|
||||||
'$notify_direct_comment' => ['notify_direct_comment', DI::l10n()->t('Someone directly commented on your post'), $notify_type & 72, ''],
|
'$notify_thread_comment' => ['notify_thread_comment', DI::l10n()->t('Someone commented in your thread'), is_null($notify_type) || $notify_type & UserNotification::TYPE_THREAD_COMMENT, ''],
|
||||||
'$notify_thread_comment' => ['notify_thread_comment', DI::l10n()->t('Someone commented on your thread'), $notify_type & 4, ''],
|
'$notify_comment_participation' => ['notify_comment_participation', DI::l10n()->t('Someone commented in a thread where you commented'), is_null($notify_type) || $notify_type & UserNotification::TYPE_COMMENT_PARTICIPATION, ''],
|
||||||
'$notify_comment_participation' => ['notify_comment_participation', DI::l10n()->t('Someone commented in a thread where you commented'), $notify_type & 16, ''],
|
'$notify_activity_participation' => ['notify_activity_participation', DI::l10n()->t('Someone commented in a thread where you interacted'), is_null($notify_type) || $notify_type & UserNotification::TYPE_ACTIVITY_PARTICIPATION, ''],
|
||||||
'$notify_activity_participation' => ['notify_activity_participation', DI::l10n()->t('Someone commented on a thread where you interacted'), $notify_type & 32, ''],
|
|
||||||
|
|
||||||
'$desktop_notifications' => ['desktop_notifications', DI::l10n()->t('Activate desktop notifications'), false, DI::l10n()->t('Show desktop popup on new notifications')],
|
'$desktop_notifications' => ['desktop_notifications', DI::l10n()->t('Activate desktop notifications'), false, DI::l10n()->t('Show desktop popup on new notifications')],
|
||||||
|
|
||||||
|
|
|
@ -117,7 +117,13 @@ class Notification extends BaseRepository
|
||||||
*/
|
*/
|
||||||
public function selectDetailedForUser(int $uid): Collection\Notifications
|
public function selectDetailedForUser(int $uid): Collection\Notifications
|
||||||
{
|
{
|
||||||
$condition = ["`type` & ? != 0", $this->pconfig->get($uid, 'system', 'notify_type', 3 | 72 | 4 | 16 | 32) | 128 | 256];
|
$notify_type = $this->pconfig->get($uid, 'system', 'notify_type');
|
||||||
|
if (!is_null($notify_type)) {
|
||||||
|
$condition = ["`type` & ? != 0", $notify_type | UserNotification::TYPE_SHARED | UserNotification::TYPE_FOLLOW];
|
||||||
|
} else {
|
||||||
|
$condition = [];
|
||||||
|
}
|
||||||
|
|
||||||
if (!$this->pconfig->get($uid, 'system', 'notify_like')) {
|
if (!$this->pconfig->get($uid, 'system', 'notify_like')) {
|
||||||
$condition = DBA::mergeConditions($condition, ['NOT `vid` IN (?, ?)', Verb::getID(\Friendica\Protocol\Activity::LIKE), Verb::getID(\Friendica\Protocol\Activity::DISLIKE)]);
|
$condition = DBA::mergeConditions($condition, ['NOT `vid` IN (?, ?)', Verb::getID(\Friendica\Protocol\Activity::LIKE), Verb::getID(\Friendica\Protocol\Activity::DISLIKE)]);
|
||||||
}
|
}
|
||||||
|
@ -138,7 +144,14 @@ class Notification extends BaseRepository
|
||||||
*/
|
*/
|
||||||
public function selectDigestForUser(int $uid): Collection\Notifications
|
public function selectDigestForUser(int $uid): Collection\Notifications
|
||||||
{
|
{
|
||||||
$values = [$uid, $this->pconfig->get($uid, 'system', 'notify_type', 3 | 72 | 4 | 16 | 32) | 128 | 256];
|
$values = [$uid];
|
||||||
|
|
||||||
|
$type_condition = '';
|
||||||
|
$notify_type = $this->pconfig->get($uid, 'system', 'notify_type');
|
||||||
|
if (!is_null($notify_type)) {
|
||||||
|
$type_condition = 'AND `type` & ? != 0';
|
||||||
|
$values[] = $notify_type | UserNotification::TYPE_SHARED | UserNotification::TYPE_FOLLOW;
|
||||||
|
}
|
||||||
|
|
||||||
$like_condition = '';
|
$like_condition = '';
|
||||||
if (!$this->pconfig->get($uid, 'system', 'notify_like')) {
|
if (!$this->pconfig->get($uid, 'system', 'notify_like')) {
|
||||||
|
@ -159,7 +172,8 @@ class Notification extends BaseRepository
|
||||||
WHERE `id` IN (
|
WHERE `id` IN (
|
||||||
SELECT MAX(`id`)
|
SELECT MAX(`id`)
|
||||||
FROM `notification`
|
FROM `notification`
|
||||||
WHERE `uid` = ? AND `type` & ? != 0
|
WHERE `uid` = ?
|
||||||
|
$type_condition
|
||||||
$like_condition
|
$like_condition
|
||||||
$announce_condition
|
$announce_condition
|
||||||
GROUP BY IFNULL(`parent-uri-id`, `actor-id`)
|
GROUP BY IFNULL(`parent-uri-id`, `actor-id`)
|
||||||
|
|
|
@ -675,21 +675,14 @@ class Notify extends BaseRepository
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
$notify_type = $this->pConfig->get($Notification->uid, 'system', 'notify_type', 3 | 72 | 4 | 16 | 32);
|
$notify_type = $this->pConfig->get($Notification->uid, 'system', 'notify_type');
|
||||||
|
|
||||||
if (($notify_type & 3) && in_array($Notification->type, [Model\Post\UserNotification::TYPE_EXPLICIT_TAGGED, Model\Post\UserNotification::TYPE_IMPLICIT_TAGGED])) {
|
// Fallback for the case when the notify type isn't set at all
|
||||||
return true;
|
if (is_null($notify_type) && !in_array($type, [Notification::TYPE_RESHARE, Notification::TYPE_LIKE])) {
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
if (($notify_type & 72) && in_array($Notification->type, [Model\Post\UserNotification::TYPE_DIRECT_COMMENT, Model\Post\UserNotification::TYPE_DIRECT_THREAD_COMMENT])) {
|
|
||||||
return true;
|
if (!is_null($notify_type) && ($notify_type & $Notification->type)) {
|
||||||
}
|
|
||||||
if (($notify_type & 4) && in_array($Notification->type, [Model\Post\UserNotification::TYPE_THREAD_COMMENT])) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
if (($notify_type & 16) && in_array($Notification->type, [Model\Post\UserNotification::TYPE_COMMENT_PARTICIPATION])) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
if (($notify_type & 32) && in_array($Notification->type, [Model\Post\UserNotification::TYPE_ACTIVITY_PARTICIPATION])) {
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: 2022.05-rc\n"
|
"Project-Id-Version: 2022.05-rc\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-06-05 18:14+0000\n"
|
"POT-Creation-Date: 2022-06-06 07:33+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"
|
||||||
|
@ -138,8 +138,8 @@ msgstr ""
|
||||||
#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56
|
#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56
|
||||||
#: src/Module/Register.php:77 src/Module/Register.php:90
|
#: src/Module/Register.php:77 src/Module/Register.php:90
|
||||||
#: src/Module/Register.php:206 src/Module/Register.php:245
|
#: src/Module/Register.php:206 src/Module/Register.php:245
|
||||||
#: src/Module/Search/Directory.php:37 src/Module/Settings/Account.php:48
|
#: src/Module/Search/Directory.php:37 src/Module/Settings/Account.php:49
|
||||||
#: src/Module/Settings/Account.php:403 src/Module/Settings/Delegation.php:42
|
#: src/Module/Settings/Account.php:409 src/Module/Settings/Delegation.php:42
|
||||||
#: src/Module/Settings/Delegation.php:70 src/Module/Settings/Display.php:42
|
#: src/Module/Settings/Delegation.php:70 src/Module/Settings/Display.php:42
|
||||||
#: src/Module/Settings/Display.php:120
|
#: src/Module/Settings/Display.php:120
|
||||||
#: src/Module/Settings/Profile/Photo/Crop.php:166
|
#: src/Module/Settings/Profile/Photo/Crop.php:166
|
||||||
|
@ -1204,7 +1204,7 @@ msgstr ""
|
||||||
#: mod/settings.php:352 src/Module/Admin/Addons/Index.php:69
|
#: mod/settings.php:352 src/Module/Admin/Addons/Index.php:69
|
||||||
#: src/Module/Admin/Features.php:87 src/Module/Admin/Logs/Settings.php:81
|
#: src/Module/Admin/Features.php:87 src/Module/Admin/Logs/Settings.php:81
|
||||||
#: src/Module/Admin/Site.php:434 src/Module/Admin/Themes/Index.php:113
|
#: src/Module/Admin/Site.php:434 src/Module/Admin/Themes/Index.php:113
|
||||||
#: src/Module/Admin/Tos.php:83 src/Module/Settings/Account.php:553
|
#: src/Module/Admin/Tos.php:83 src/Module/Settings/Account.php:559
|
||||||
#: src/Module/Settings/Delegation.php:170 src/Module/Settings/Display.php:193
|
#: src/Module/Settings/Delegation.php:170 src/Module/Settings/Display.php:193
|
||||||
msgid "Save Settings"
|
msgid "Save Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1759,11 +1759,11 @@ msgstr ""
|
||||||
msgid "Enter new password: "
|
msgid "Enter new password: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Console/User.php:210 src/Module/Settings/Account.php:73
|
#: src/Console/User.php:210 src/Module/Settings/Account.php:74
|
||||||
msgid "Password update failed. Please try again."
|
msgid "Password update failed. Please try again."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Console/User.php:213 src/Module/Settings/Account.php:76
|
#: src/Console/User.php:213 src/Module/Settings/Account.php:77
|
||||||
msgid "Password changed."
|
msgid "Password changed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -2783,7 +2783,7 @@ msgstr ""
|
||||||
msgid "News"
|
msgid "News"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Widget.php:525 src/Module/Settings/Account.php:449
|
#: src/Content/Widget.php:525 src/Module/Settings/Account.php:455
|
||||||
msgid "Account Types"
|
msgid "Account Types"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -4373,19 +4373,19 @@ msgstr ""
|
||||||
msgid "List of pending user deletions"
|
msgid "List of pending user deletions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/BaseUsers.php:100 src/Module/Settings/Account.php:487
|
#: src/Module/Admin/BaseUsers.php:100 src/Module/Settings/Account.php:493
|
||||||
msgid "Normal Account Page"
|
msgid "Normal Account Page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/BaseUsers.php:101 src/Module/Settings/Account.php:494
|
#: src/Module/Admin/BaseUsers.php:101 src/Module/Settings/Account.php:500
|
||||||
msgid "Soapbox Page"
|
msgid "Soapbox Page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/BaseUsers.php:102 src/Module/Settings/Account.php:501
|
#: src/Module/Admin/BaseUsers.php:102 src/Module/Settings/Account.php:507
|
||||||
msgid "Public Forum"
|
msgid "Public Forum"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/BaseUsers.php:103 src/Module/Settings/Account.php:508
|
#: src/Module/Admin/BaseUsers.php:103 src/Module/Settings/Account.php:514
|
||||||
msgid "Automatic Friend Page"
|
msgid "Automatic Friend Page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -4393,19 +4393,19 @@ msgstr ""
|
||||||
msgid "Private Forum"
|
msgid "Private Forum"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/BaseUsers.php:107 src/Module/Settings/Account.php:459
|
#: src/Module/Admin/BaseUsers.php:107 src/Module/Settings/Account.php:465
|
||||||
msgid "Personal Page"
|
msgid "Personal Page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/BaseUsers.php:108 src/Module/Settings/Account.php:466
|
#: src/Module/Admin/BaseUsers.php:108 src/Module/Settings/Account.php:472
|
||||||
msgid "Organisation Page"
|
msgid "Organisation Page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/BaseUsers.php:109 src/Module/Settings/Account.php:473
|
#: src/Module/Admin/BaseUsers.php:109 src/Module/Settings/Account.php:479
|
||||||
msgid "News Page"
|
msgid "News Page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/BaseUsers.php:110 src/Module/Settings/Account.php:480
|
#: src/Module/Admin/BaseUsers.php:110 src/Module/Settings/Account.php:486
|
||||||
msgid "Community Forum"
|
msgid "Community Forum"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -8246,7 +8246,7 @@ msgid ""
|
||||||
"\"btn btn-sm pull-right\">Cancel</a>"
|
"\"btn btn-sm pull-right\">Cancel</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Profile/Profile.php:144 src/Module/Settings/Account.php:569
|
#: src/Module/Profile/Profile.php:144 src/Module/Settings/Account.php:575
|
||||||
msgid "Full Name:"
|
msgid "Full Name:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -8376,7 +8376,7 @@ msgstr ""
|
||||||
msgid "Please repeat your e-mail address:"
|
msgid "Please repeat your e-mail address:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Register.php:162 src/Module/Settings/Account.php:560
|
#: src/Module/Register.php:162 src/Module/Settings/Account.php:566
|
||||||
msgid "New Password:"
|
msgid "New Password:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -8384,7 +8384,7 @@ 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/Settings/Account.php:561
|
#: src/Module/Register.php:163 src/Module/Settings/Account.php:567
|
||||||
msgid "Confirm:"
|
msgid "Confirm:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -8651,127 +8651,127 @@ msgstr ""
|
||||||
msgid "Verify code and complete login"
|
msgid "Verify code and complete login"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:65
|
#: src/Module/Settings/Account.php:66
|
||||||
msgid "Passwords do not match."
|
msgid "Passwords do not match."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:79
|
#: src/Module/Settings/Account.php:80
|
||||||
msgid "Password unchanged."
|
msgid "Password unchanged."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:94
|
#: src/Module/Settings/Account.php:95
|
||||||
msgid "Please use a shorter name."
|
msgid "Please use a shorter name."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:97
|
#: src/Module/Settings/Account.php:98
|
||||||
msgid "Name too short."
|
msgid "Name too short."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:106
|
#: src/Module/Settings/Account.php:107
|
||||||
msgid "Wrong Password."
|
msgid "Wrong Password."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:111
|
#: src/Module/Settings/Account.php:112
|
||||||
msgid "Invalid email."
|
msgid "Invalid email."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:117
|
#: src/Module/Settings/Account.php:118
|
||||||
msgid "Cannot change to that email."
|
msgid "Cannot change to that email."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:147 src/Module/Settings/Account.php:199
|
#: src/Module/Settings/Account.php:148 src/Module/Settings/Account.php:200
|
||||||
#: src/Module/Settings/Account.php:219 src/Module/Settings/Account.php:298
|
#: src/Module/Settings/Account.php:220 src/Module/Settings/Account.php:304
|
||||||
#: src/Module/Settings/Account.php:347
|
#: src/Module/Settings/Account.php:353
|
||||||
msgid "Settings were not updated."
|
msgid "Settings were not updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:359
|
#: src/Module/Settings/Account.php:365
|
||||||
msgid "Contact CSV file upload error"
|
msgid "Contact CSV file upload error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:378
|
#: src/Module/Settings/Account.php:384
|
||||||
msgid "Importing Contacts done"
|
msgid "Importing Contacts done"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:391
|
#: src/Module/Settings/Account.php:397
|
||||||
msgid "Relocate message has been send to your contacts"
|
msgid "Relocate message has been send to your contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:408
|
#: src/Module/Settings/Account.php:414
|
||||||
msgid "Unable to find your profile. Please contact your admin."
|
msgid "Unable to find your profile. Please contact your admin."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:450
|
#: src/Module/Settings/Account.php:456
|
||||||
msgid "Personal Page Subtypes"
|
msgid "Personal Page Subtypes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:451
|
#: src/Module/Settings/Account.php:457
|
||||||
msgid "Community Forum Subtypes"
|
msgid "Community Forum Subtypes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:461
|
#: src/Module/Settings/Account.php:467
|
||||||
msgid "Account for a personal profile."
|
msgid "Account for a personal profile."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:468
|
#: src/Module/Settings/Account.php:474
|
||||||
msgid ""
|
msgid ""
|
||||||
"Account for an organisation that automatically approves contact requests as "
|
"Account for an organisation that automatically approves contact requests as "
|
||||||
"\"Followers\"."
|
"\"Followers\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:475
|
#: src/Module/Settings/Account.php:481
|
||||||
msgid ""
|
msgid ""
|
||||||
"Account for a news reflector that automatically approves contact requests as "
|
"Account for a news reflector that automatically approves contact requests as "
|
||||||
"\"Followers\"."
|
"\"Followers\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:482
|
#: src/Module/Settings/Account.php:488
|
||||||
msgid "Account for community discussions."
|
msgid "Account for community discussions."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:489
|
#: src/Module/Settings/Account.php:495
|
||||||
msgid ""
|
msgid ""
|
||||||
"Account for a regular personal profile that requires manual approval of "
|
"Account for a regular personal profile that requires manual approval of "
|
||||||
"\"Friends\" and \"Followers\"."
|
"\"Friends\" and \"Followers\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:496
|
#: src/Module/Settings/Account.php:502
|
||||||
msgid ""
|
msgid ""
|
||||||
"Account for a public profile that automatically approves contact requests as "
|
"Account for a public profile that automatically approves contact requests as "
|
||||||
"\"Followers\"."
|
"\"Followers\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:503
|
#: src/Module/Settings/Account.php:509
|
||||||
msgid "Automatically approves all contact requests."
|
msgid "Automatically approves all contact requests."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:510
|
#: src/Module/Settings/Account.php:516
|
||||||
msgid ""
|
msgid ""
|
||||||
"Account for a popular profile that automatically approves contact requests "
|
"Account for a popular profile that automatically approves contact requests "
|
||||||
"as \"Friends\"."
|
"as \"Friends\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:515
|
#: src/Module/Settings/Account.php:521
|
||||||
msgid "Private Forum [Experimental]"
|
msgid "Private Forum [Experimental]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:517
|
#: src/Module/Settings/Account.php:523
|
||||||
msgid "Requires manual approval of contact requests."
|
msgid "Requires manual approval of contact requests."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:526
|
#: src/Module/Settings/Account.php:532
|
||||||
msgid "OpenID:"
|
msgid "OpenID:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:526
|
#: src/Module/Settings/Account.php:532
|
||||||
msgid "(Optional) Allow this OpenID to login to this account."
|
msgid "(Optional) Allow this OpenID to login to this account."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:534
|
#: src/Module/Settings/Account.php:540
|
||||||
msgid "Publish your profile in your local site directory?"
|
msgid "Publish your profile in your local site directory?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:534
|
#: src/Module/Settings/Account.php:540
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Your profile will be published in this node's <a href=\"%s\">local "
|
"Your profile will be published in this node's <a href=\"%s\">local "
|
||||||
|
@ -8779,103 +8779,103 @@ msgid ""
|
||||||
"system settings."
|
"system settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:540
|
#: src/Module/Settings/Account.php:546
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Your profile will also be published in the global friendica directories (e."
|
"Your profile will also be published in the global friendica directories (e."
|
||||||
"g. <a href=\"%s\">%s</a>)."
|
"g. <a href=\"%s\">%s</a>)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:550
|
#: src/Module/Settings/Account.php:556
|
||||||
msgid "Account Settings"
|
msgid "Account Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:551
|
#: src/Module/Settings/Account.php:557
|
||||||
#, php-format
|
#, php-format
|
||||||
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:559
|
#: src/Module/Settings/Account.php:565
|
||||||
msgid "Password Settings"
|
msgid "Password Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:560
|
#: src/Module/Settings/Account.php:566
|
||||||
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, accentuated letters and colon (:)."
|
"spaces, accentuated letters and colon (:)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:561
|
#: 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:562
|
#: src/Module/Settings/Account.php:568
|
||||||
msgid "Current Password:"
|
msgid "Current Password:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:562
|
#: 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/Settings/Account.php:563
|
#: src/Module/Settings/Account.php:569
|
||||||
msgid "Password:"
|
msgid "Password:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:563
|
#: 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:566
|
#: src/Module/Settings/Account.php:572
|
||||||
msgid "Delete OpenID URL"
|
msgid "Delete OpenID URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:568
|
#: src/Module/Settings/Account.php:574
|
||||||
msgid "Basic Settings"
|
msgid "Basic Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:570
|
#: src/Module/Settings/Account.php:576
|
||||||
msgid "Email Address:"
|
msgid "Email Address:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:571
|
#: src/Module/Settings/Account.php:577
|
||||||
msgid "Your Timezone:"
|
msgid "Your Timezone:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:572
|
#: src/Module/Settings/Account.php:578
|
||||||
msgid "Your Language:"
|
msgid "Your Language:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:572
|
#: 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:573
|
#: src/Module/Settings/Account.php:579
|
||||||
msgid "Default Post Location:"
|
msgid "Default Post Location:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:574
|
#: src/Module/Settings/Account.php:580
|
||||||
msgid "Use Browser Location:"
|
msgid "Use Browser Location:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:576
|
#: src/Module/Settings/Account.php:582
|
||||||
msgid "Security and Privacy Settings"
|
msgid "Security and Privacy Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:578
|
#: src/Module/Settings/Account.php:584
|
||||||
msgid "Maximum Friend Requests/Day:"
|
msgid "Maximum Friend Requests/Day:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:578 src/Module/Settings/Account.php:588
|
#: 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:580
|
#: 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:580
|
#: 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 "
|
||||||
|
@ -8883,43 +8883,43 @@ msgid ""
|
||||||
"indexed or not."
|
"indexed or not."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:581
|
#: 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:581
|
#: 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:582
|
#: src/Module/Settings/Account.php:588
|
||||||
msgid "Hide your profile details from anonymous viewers?"
|
msgid "Hide your profile details from anonymous viewers?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:582
|
#: src/Module/Settings/Account.php:588
|
||||||
msgid ""
|
msgid ""
|
||||||
"Anonymous visitors will only see your profile picture, your display name and "
|
"Anonymous visitors will only see your profile picture, your display name and "
|
||||||
"the nickname you are using on your profile page. Your public posts and "
|
"the nickname you are using on your profile page. Your public posts and "
|
||||||
"replies will still be accessible by other means."
|
"replies will still be accessible by other means."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:583
|
#: src/Module/Settings/Account.php:589
|
||||||
msgid "Make public posts unlisted"
|
msgid "Make public posts unlisted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:583
|
#: 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:584
|
#: 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:584
|
#: 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 "
|
||||||
|
@ -8927,233 +8927,237 @@ msgid ""
|
||||||
"public on your photo albums though."
|
"public on your photo albums though."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:585
|
#: 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:585
|
#: 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:586
|
#: 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:586
|
#: 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:587
|
#: 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:587
|
#: 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:588
|
#: 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:590
|
#: src/Module/Settings/Account.php:596
|
||||||
msgid "Default Post Permissions"
|
msgid "Default Post Permissions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:594
|
#: src/Module/Settings/Account.php:600
|
||||||
msgid "Expiration settings"
|
msgid "Expiration settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:595
|
#: 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:595
|
#: 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:596
|
#: src/Module/Settings/Account.php:602
|
||||||
msgid "Expire posts"
|
msgid "Expire posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:596
|
#: 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:597
|
#: src/Module/Settings/Account.php:603
|
||||||
msgid "Expire personal notes"
|
msgid "Expire personal notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:597
|
#: 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:598
|
#: src/Module/Settings/Account.php:604
|
||||||
msgid "Expire starred posts"
|
msgid "Expire starred posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:598
|
#: 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:599
|
#: 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:599
|
#: 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:602
|
#: src/Module/Settings/Account.php:608
|
||||||
msgid "Notification Settings"
|
msgid "Notification Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:603
|
#: 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:604
|
#: src/Module/Settings/Account.php:610
|
||||||
msgid "You receive an introduction"
|
msgid "You receive an introduction"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:605
|
#: src/Module/Settings/Account.php:611
|
||||||
msgid "Your introductions are confirmed"
|
msgid "Your introductions are confirmed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:606
|
#: 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:607
|
#: 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:608
|
#: 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:609
|
#: 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:610
|
#: 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:611
|
#: src/Module/Settings/Account.php:617
|
||||||
msgid "You are poked/prodded/etc. in a post"
|
msgid "You are poked/prodded/etc. in a post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:613
|
#: src/Module/Settings/Account.php:619
|
||||||
msgid "Create a desktop notification when:"
|
msgid "Create a desktop notification when:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:614
|
#: src/Module/Settings/Account.php:620
|
||||||
msgid "Someone liked your content"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:615
|
|
||||||
msgid "Someone shared your content"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:617
|
|
||||||
msgid "Someone tagged you"
|
msgid "Someone tagged you"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:618
|
#: src/Module/Settings/Account.php:621
|
||||||
msgid "Someone directly commented on your post"
|
msgid "Someone directly commented on your post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:619
|
#: src/Module/Settings/Account.php:622
|
||||||
msgid "Someone commented on your thread"
|
msgid "Someone liked your content"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:620
|
#: src/Module/Settings/Account.php:622 src/Module/Settings/Account.php:623
|
||||||
|
msgid "Can only be enabled, when the direct comment notification is enabled."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Module/Settings/Account.php:623
|
||||||
|
msgid "Someone shared your content"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Module/Settings/Account.php:624
|
||||||
|
msgid "Someone commented in your thread"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Module/Settings/Account.php:625
|
||||||
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:621
|
#: src/Module/Settings/Account.php:626
|
||||||
msgid "Someone commented on a thread where you interacted"
|
msgid "Someone commented in a thread where you interacted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:623
|
#: src/Module/Settings/Account.php:628
|
||||||
msgid "Activate desktop notifications"
|
msgid "Activate desktop notifications"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:623
|
#: src/Module/Settings/Account.php:628
|
||||||
msgid "Show desktop popup on new notifications"
|
msgid "Show desktop popup on new notifications"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:627
|
#: src/Module/Settings/Account.php:632
|
||||||
msgid "Text-only notification emails"
|
msgid "Text-only notification emails"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:629
|
#: src/Module/Settings/Account.php:634
|
||||||
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:633
|
#: src/Module/Settings/Account.php:638
|
||||||
msgid "Show detailled notifications"
|
msgid "Show detailled notifications"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:635
|
#: src/Module/Settings/Account.php:640
|
||||||
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:639
|
#: src/Module/Settings/Account.php:644
|
||||||
msgid "Show notifications of ignored contacts"
|
msgid "Show notifications of ignored contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:641
|
#: src/Module/Settings/Account.php:646
|
||||||
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:644
|
#: src/Module/Settings/Account.php:649
|
||||||
msgid "Advanced Account/Page Type Settings"
|
msgid "Advanced Account/Page Type Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:645
|
#: src/Module/Settings/Account.php:650
|
||||||
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:648
|
#: src/Module/Settings/Account.php:653
|
||||||
msgid "Import Contacts"
|
msgid "Import Contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:649
|
#: src/Module/Settings/Account.php:654
|
||||||
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:650
|
#: src/Module/Settings/Account.php:655
|
||||||
msgid "Upload File"
|
msgid "Upload File"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:653
|
#: src/Module/Settings/Account.php:658
|
||||||
msgid "Relocate"
|
msgid "Relocate"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Account.php:654
|
#: src/Module/Settings/Account.php:659
|
||||||
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:655
|
#: src/Module/Settings/Account.php:660
|
||||||
msgid "Resend relocate message to contacts"
|
msgid "Resend relocate message to contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -10282,7 +10286,7 @@ msgid "%1$s commented on your thread %2$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Navigation/Notifications/Repository/Notify.php:221
|
#: src/Navigation/Notifications/Repository/Notify.php:221
|
||||||
#: src/Navigation/Notifications/Repository/Notify.php:742
|
#: src/Navigation/Notifications/Repository/Notify.php:735
|
||||||
msgid "[Friendica:Notify]"
|
msgid "[Friendica:Notify]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -10326,7 +10330,7 @@ msgid "%1$s commented on their %2$s %3$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Navigation/Notifications/Repository/Notify.php:333
|
#: src/Navigation/Notifications/Repository/Notify.php:333
|
||||||
#: src/Navigation/Notifications/Repository/Notify.php:776
|
#: src/Navigation/Notifications/Repository/Notify.php:769
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%1$s Comment to conversation #%2$d by %3$s"
|
msgid "%1$s Comment to conversation #%2$d by %3$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -10339,7 +10343,7 @@ msgstr ""
|
||||||
#: src/Navigation/Notifications/Repository/Notify.php:339
|
#: src/Navigation/Notifications/Repository/Notify.php:339
|
||||||
#: src/Navigation/Notifications/Repository/Notify.php:354
|
#: src/Navigation/Notifications/Repository/Notify.php:354
|
||||||
#: src/Navigation/Notifications/Repository/Notify.php:373
|
#: src/Navigation/Notifications/Repository/Notify.php:373
|
||||||
#: src/Navigation/Notifications/Repository/Notify.php:791
|
#: src/Navigation/Notifications/Repository/Notify.php:784
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Please visit %s to view and/or reply to the conversation."
|
msgid "Please visit %s to view and/or reply to the conversation."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -10527,12 +10531,12 @@ msgstr ""
|
||||||
msgid "Please visit %s to approve or reject the request."
|
msgid "Please visit %s to approve or reject the request."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Navigation/Notifications/Repository/Notify.php:770
|
#: src/Navigation/Notifications/Repository/Notify.php:763
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s %s tagged you"
|
msgid "%s %s tagged you"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Navigation/Notifications/Repository/Notify.php:773
|
#: src/Navigation/Notifications/Repository/Notify.php:766
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s %s shared a new post"
|
msgid "%s %s shared a new post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -107,10 +107,10 @@
|
||||||
<div id="settings-notify-desc">{{$lbl_notify}}</div>
|
<div id="settings-notify-desc">{{$lbl_notify}}</div>
|
||||||
|
|
||||||
<div class="group">
|
<div class="group">
|
||||||
{{include file="field_checkbox.tpl" field=$notify_like}}
|
|
||||||
{{include file="field_checkbox.tpl" field=$notify_announce}}
|
|
||||||
{{include file="field_checkbox.tpl" field=$notify_tagged}}
|
{{include file="field_checkbox.tpl" field=$notify_tagged}}
|
||||||
{{include file="field_checkbox.tpl" field=$notify_direct_comment}}
|
{{include file="field_checkbox.tpl" field=$notify_direct_comment}}
|
||||||
|
{{include file="field_checkbox.tpl" field=$notify_like}}
|
||||||
|
{{include file="field_checkbox.tpl" field=$notify_announce}}
|
||||||
{{include file="field_checkbox.tpl" field=$notify_thread_comment}}
|
{{include file="field_checkbox.tpl" field=$notify_thread_comment}}
|
||||||
{{include file="field_checkbox.tpl" field=$notify_comment_participation}}
|
{{include file="field_checkbox.tpl" field=$notify_comment_participation}}
|
||||||
{{include file="field_checkbox.tpl" field=$notify_activity_participation}}
|
{{include file="field_checkbox.tpl" field=$notify_activity_participation}}
|
||||||
|
|
|
@ -158,10 +158,10 @@
|
||||||
<div id="settings-notify-desc">{{$lbl_notify}}</div>
|
<div id="settings-notify-desc">{{$lbl_notify}}</div>
|
||||||
|
|
||||||
<div class="group">
|
<div class="group">
|
||||||
{{include file="field_checkbox.tpl" field=$notify_like}}
|
|
||||||
{{include file="field_checkbox.tpl" field=$notify_announce}}
|
|
||||||
{{include file="field_checkbox.tpl" field=$notify_tagged}}
|
{{include file="field_checkbox.tpl" field=$notify_tagged}}
|
||||||
{{include file="field_checkbox.tpl" field=$notify_direct_comment}}
|
{{include file="field_checkbox.tpl" field=$notify_direct_comment}}
|
||||||
|
{{include file="field_checkbox.tpl" field=$notify_like}}
|
||||||
|
{{include file="field_checkbox.tpl" field=$notify_announce}}
|
||||||
{{include file="field_checkbox.tpl" field=$notify_thread_comment}}
|
{{include file="field_checkbox.tpl" field=$notify_thread_comment}}
|
||||||
{{include file="field_checkbox.tpl" field=$notify_comment_participation}}
|
{{include file="field_checkbox.tpl" field=$notify_comment_participation}}
|
||||||
{{include file="field_checkbox.tpl" field=$notify_activity_participation}}
|
{{include file="field_checkbox.tpl" field=$notify_activity_participation}}
|
||||||
|
|
Loading…
Reference in a new issue