Issue 8542: User option to display the event list/birthday notification
This commit is contained in:
parent
5c3227ac4c
commit
b3d7dfb9a5
|
@ -22,6 +22,7 @@
|
||||||
namespace Friendica\Model;
|
namespace Friendica\Model;
|
||||||
|
|
||||||
use Friendica\App;
|
use Friendica\App;
|
||||||
|
use Friendica\App\Mode;
|
||||||
use Friendica\Content\Text\BBCode;
|
use Friendica\Content\Text\BBCode;
|
||||||
use Friendica\Content\Widget\ContactBlock;
|
use Friendica\Content\Widget\ContactBlock;
|
||||||
use Friendica\Core\Cache\Enum\Duration;
|
use Friendica\Core\Cache\Enum\Duration;
|
||||||
|
@ -506,30 +507,40 @@ class Profile
|
||||||
return $o;
|
return $o;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Check if the event list should be displayed
|
||||||
|
*
|
||||||
|
* @param integer $uid
|
||||||
|
* @param Mode $mode
|
||||||
|
* @return boolean
|
||||||
|
*/
|
||||||
|
public static function displayEventList(int $uid, Mode $mode): bool
|
||||||
|
{
|
||||||
|
if (empty($uid) || $mode->isMobile()) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!DI::pConfig()->get($uid, 'system', 'display_eventlist', true)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return !DI::config()->get('theme', 'hide_eventlist');
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the upcoming birthdays of contacts of the current user as HTML content
|
* Returns the upcoming birthdays of contacts of the current user as HTML content
|
||||||
|
* @param int $uid User Id
|
||||||
*
|
*
|
||||||
* @return string The upcoming birthdays (HTML)
|
* @return string The upcoming birthdays (HTML)
|
||||||
* @throws HTTPException\InternalServerErrorException
|
* @throws HTTPException\InternalServerErrorException
|
||||||
* @throws HTTPException\ServiceUnavailableException
|
* @throws HTTPException\ServiceUnavailableException
|
||||||
* @throws \ImagickException
|
* @throws \ImagickException
|
||||||
*/
|
*/
|
||||||
public static function getBirthdays(): string
|
public static function getBirthdays(int $uid): string
|
||||||
{
|
{
|
||||||
if (!DI::userSession()->getLocalUserId() || DI::mode()->isMobile() || DI::mode()->isMobile()) {
|
|
||||||
return '';
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* $mobile_detect = new Mobile_Detect();
|
|
||||||
* $is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
|
|
||||||
* if ($is_mobile)
|
|
||||||
* return $o;
|
|
||||||
*/
|
|
||||||
|
|
||||||
$bd_short = DI::l10n()->t('F d');
|
$bd_short = DI::l10n()->t('F d');
|
||||||
|
|
||||||
$cacheKey = 'get_birthdays:' . DI::userSession()->getLocalUserId();
|
$cacheKey = 'get_birthdays:' . $uid;
|
||||||
$events = DI::cache()->get($cacheKey);
|
$events = DI::cache()->get($cacheKey);
|
||||||
if (is_null($events)) {
|
if (is_null($events)) {
|
||||||
$result = DBA::p(
|
$result = DBA::p(
|
||||||
|
@ -546,7 +557,7 @@ class Profile
|
||||||
ORDER BY `start`",
|
ORDER BY `start`",
|
||||||
Contact::SHARING,
|
Contact::SHARING,
|
||||||
Contact::FRIEND,
|
Contact::FRIEND,
|
||||||
DI::userSession()->getLocalUserId(),
|
$uid,
|
||||||
DateTimeFormat::utc('now + 6 days'),
|
DateTimeFormat::utc('now + 6 days'),
|
||||||
DateTimeFormat::utcNow()
|
DateTimeFormat::utcNow()
|
||||||
);
|
);
|
||||||
|
@ -610,30 +621,18 @@ class Profile
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Renders HTML for event reminder (e.g. contact birthdays
|
* Renders HTML for event reminder (e.g. contact birthdays
|
||||||
|
* @param int $uid User Id
|
||||||
|
* @param int $pcid Public Contact Id
|
||||||
*
|
*
|
||||||
* @return string Rendered HTML
|
* @return string Rendered HTML
|
||||||
*/
|
*/
|
||||||
public static function getEventsReminderHTML(): string
|
public static function getEventsReminderHTML(int $uid, int $pcid): string
|
||||||
{
|
{
|
||||||
$a = DI::app();
|
|
||||||
$o = '';
|
|
||||||
|
|
||||||
if (!DI::userSession()->getLocalUserId() || DI::mode()->isMobile() || DI::mode()->isMobile()) {
|
|
||||||
return $o;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* $mobile_detect = new Mobile_Detect();
|
|
||||||
* $is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
|
|
||||||
* if ($is_mobile)
|
|
||||||
* return $o;
|
|
||||||
*/
|
|
||||||
|
|
||||||
$bd_format = DI::l10n()->t('g A l F d'); // 8 AM Friday January 18
|
$bd_format = DI::l10n()->t('g A l F d'); // 8 AM Friday January 18
|
||||||
$classtoday = '';
|
$classtoday = '';
|
||||||
|
|
||||||
$condition = ["`uid` = ? AND `type` != 'birthday' AND `start` < ? AND `start` >= ?",
|
$condition = ["`uid` = ? AND `type` != 'birthday' AND `start` < ? AND `start` >= ?",
|
||||||
DI::userSession()->getLocalUserId(), DateTimeFormat::utc('now + 7 days'), DateTimeFormat::utc('now - 1 days')];
|
$uid, DateTimeFormat::utc('now + 7 days'), DateTimeFormat::utc('now - 1 days')];
|
||||||
$s = DBA::select('event', [], $condition, ['order' => ['start']]);
|
$s = DBA::select('event', [], $condition, ['order' => ['start']]);
|
||||||
|
|
||||||
$r = [];
|
$r = [];
|
||||||
|
@ -643,7 +642,7 @@ class Profile
|
||||||
$total = 0;
|
$total = 0;
|
||||||
|
|
||||||
while ($rr = DBA::fetch($s)) {
|
while ($rr = DBA::fetch($s)) {
|
||||||
$condition = ['parent-uri' => $rr['uri'], 'uid' => $rr['uid'], 'author-id' => DI::userSession()->getPublicContactId(),
|
$condition = ['parent-uri' => $rr['uri'], 'uid' => $rr['uid'], 'author-id' => $pcid,
|
||||||
'vid' => [Verb::getID(Activity::ATTEND), Verb::getID(Activity::ATTENDMAYBE)],
|
'vid' => [Verb::getID(Activity::ATTEND), Verb::getID(Activity::ATTENDMAYBE)],
|
||||||
'visible' => true, 'deleted' => false];
|
'visible' => true, 'deleted' => false];
|
||||||
if (!Post::exists($condition)) {
|
if (!Post::exists($condition)) {
|
||||||
|
|
|
@ -231,9 +231,9 @@ class Network extends Timeline
|
||||||
} else {
|
} else {
|
||||||
$this->systemMessages->addNotice($this->l10n->t('Invalid contact.'));
|
$this->systemMessages->addNotice($this->l10n->t('Invalid contact.'));
|
||||||
}
|
}
|
||||||
} elseif (!$this->config->get('theme', 'hide_eventlist')) {
|
} elseif (Profile::displayEventList($this->session->getLocalUserId(), $this->mode)) {
|
||||||
$o .= Profile::getBirthdays();
|
$o .= Profile::getBirthdays($this->session->getLocalUserId());
|
||||||
$o .= Profile::getEventsReminderHTML();
|
$o .= Profile::getEventsReminderHTML($this->session->getLocalUserId(), $this->session->getPublicContactId());
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
|
|
@ -220,9 +220,9 @@ class Conversations extends BaseProfile
|
||||||
$last_updated_array[$last_updated_key] = time();
|
$last_updated_array[$last_updated_key] = time();
|
||||||
$this->session->set('last_updated', $last_updated_array);
|
$this->session->set('last_updated', $last_updated_array);
|
||||||
|
|
||||||
if ($is_owner && !$this->config->get('theme', 'hide_eventlist')) {
|
if ($is_owner && ProfileModel::displayEventList($this->session->getLocalUserId(), $this->mode)) {
|
||||||
$o .= ProfileModel::getBirthdays();
|
$o .= ProfileModel::getBirthdays($this->session->getLocalUserId());
|
||||||
$o .= ProfileModel::getEventsReminderHTML();
|
$o .= ProfileModel::getEventsReminderHTML($this->session->getLocalUserId(), $this->session->getPublicContactId());
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($is_owner) {
|
if ($is_owner) {
|
||||||
|
|
|
@ -108,6 +108,7 @@ class Display extends BaseSettings
|
||||||
$display_resharer = (bool)$request['display_resharer'];
|
$display_resharer = (bool)$request['display_resharer'];
|
||||||
$stay_local = (bool)$request['stay_local'];
|
$stay_local = (bool)$request['stay_local'];
|
||||||
$show_page_drop = (bool)$request['show_page_drop'];
|
$show_page_drop = (bool)$request['show_page_drop'];
|
||||||
|
$display_eventlist = (bool)$request['display_eventlist'];
|
||||||
$preview_mode = (int)$request['preview_mode'];
|
$preview_mode = (int)$request['preview_mode'];
|
||||||
$browser_update = (int)$request['browser_update'];
|
$browser_update = (int)$request['browser_update'];
|
||||||
if ($browser_update != -1) {
|
if ($browser_update != -1) {
|
||||||
|
@ -158,6 +159,7 @@ class Display extends BaseSettings
|
||||||
$this->pConfig->set($uid, 'system', 'display_resharer' , $display_resharer);
|
$this->pConfig->set($uid, 'system', 'display_resharer' , $display_resharer);
|
||||||
$this->pConfig->set($uid, 'system', 'stay_local' , $stay_local);
|
$this->pConfig->set($uid, 'system', 'stay_local' , $stay_local);
|
||||||
$this->pConfig->set($uid, 'system', 'show_page_drop' , $show_page_drop);
|
$this->pConfig->set($uid, 'system', 'show_page_drop' , $show_page_drop);
|
||||||
|
$this->pConfig->set($uid, 'system', 'display_eventlist' , $display_eventlist);
|
||||||
$this->pConfig->set($uid, 'system', 'preview_mode' , $preview_mode);
|
$this->pConfig->set($uid, 'system', 'preview_mode' , $preview_mode);
|
||||||
|
|
||||||
$this->pConfig->set($uid, 'system', 'network_timelines' , $network_timelines);
|
$this->pConfig->set($uid, 'system', 'network_timelines' , $network_timelines);
|
||||||
|
@ -251,6 +253,7 @@ class Display extends BaseSettings
|
||||||
$display_resharer = $this->pConfig->get($uid, 'system', 'display_resharer', false);
|
$display_resharer = $this->pConfig->get($uid, 'system', 'display_resharer', false);
|
||||||
$stay_local = $this->pConfig->get($uid, 'system', 'stay_local', false);
|
$stay_local = $this->pConfig->get($uid, 'system', 'stay_local', false);
|
||||||
$show_page_drop = $this->pConfig->get($uid, 'system', 'show_page_drop', true);
|
$show_page_drop = $this->pConfig->get($uid, 'system', 'show_page_drop', true);
|
||||||
|
$display_eventlist = $this->pConfig->get($uid, 'system', 'display_eventlist', true);
|
||||||
|
|
||||||
$preview_mode = $this->pConfig->get($uid, 'system', 'preview_mode', BBCode::PREVIEW_LARGE);
|
$preview_mode = $this->pConfig->get($uid, 'system', 'preview_mode', BBCode::PREVIEW_LARGE);
|
||||||
$preview_modes = [
|
$preview_modes = [
|
||||||
|
@ -329,6 +332,7 @@ class Display extends BaseSettings
|
||||||
'$display_resharer' => ['display_resharer' , $this->t('Display the resharer'), $display_resharer, $this->t('Display the first resharer as icon and text on a reshared item.')],
|
'$display_resharer' => ['display_resharer' , $this->t('Display the resharer'), $display_resharer, $this->t('Display the first resharer as icon and text on a reshared item.')],
|
||||||
'$stay_local' => ['stay_local' , $this->t('Stay local'), $stay_local, $this->t("Don't go to a remote system when following a contact link.")],
|
'$stay_local' => ['stay_local' , $this->t('Stay local'), $stay_local, $this->t("Don't go to a remote system when following a contact link.")],
|
||||||
'$show_page_drop' => ['show_page_drop' , $this->t('Show the post deletion checkbox'), $show_page_drop, $this->t("Display the checkbox for the post deletion on the network page.")],
|
'$show_page_drop' => ['show_page_drop' , $this->t('Show the post deletion checkbox'), $show_page_drop, $this->t("Display the checkbox for the post deletion on the network page.")],
|
||||||
|
'$display_eventlist' => ['display_eventlist' , $this->t('DIsplay the event list'), $display_eventlist, $this->t("Display the birthday reminder and event list on the network page.")],
|
||||||
'$preview_mode' => ['preview_mode' , $this->t('Link preview mode'), $preview_mode, $this->t('Appearance of the link preview that is added to each post with a link.'), $preview_modes, false],
|
'$preview_mode' => ['preview_mode' , $this->t('Link preview mode'), $preview_mode, $this->t('Appearance of the link preview that is added to each post with a link.'), $preview_modes, false],
|
||||||
|
|
||||||
'$timeline_label' => $this->t('Label'),
|
'$timeline_label' => $this->t('Label'),
|
||||||
|
|
|
@ -104,9 +104,9 @@ class Profile extends BaseModule
|
||||||
$last_updated_array[$last_updated_key] = time();
|
$last_updated_array[$last_updated_key] = time();
|
||||||
DI::session()->set('last_updated', $last_updated_array);
|
DI::session()->set('last_updated', $last_updated_array);
|
||||||
|
|
||||||
if ($is_owner && !$a->getProfileOwner() && !DI::config()->get('theme', 'hide_eventlist')) {
|
if ($is_owner && !$a->getProfileOwner() && ProfileModel::displayEventList(DI::userSession()->getLocalUserId(), DI::mode())) {
|
||||||
$o .= ProfileModel::getBirthdays();
|
$o .= ProfileModel::getBirthdays(DI::userSession()->getLocalUserId());
|
||||||
$o .= ProfileModel::getEventsReminderHTML();
|
$o .= ProfileModel::getEventsReminderHTML(DI::userSession()->getLocalUserId(), DI::userSession()->getPublicContactId());
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($is_owner) {
|
if ($is_owner) {
|
||||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: 2023.09-rc\n"
|
"Project-Id-Version: 2023.09-rc\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2023-11-21 23:10+0000\n"
|
"POT-Creation-Date: 2023-11-25 14:54+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"
|
||||||
|
@ -70,7 +70,7 @@ msgstr ""
|
||||||
#: src/Module/Settings/Account.php:50 src/Module/Settings/Account.php:388
|
#: src/Module/Settings/Account.php:50 src/Module/Settings/Account.php:388
|
||||||
#: src/Module/Settings/Channels.php:56 src/Module/Settings/Channels.php:114
|
#: src/Module/Settings/Channels.php:56 src/Module/Settings/Channels.php:114
|
||||||
#: src/Module/Settings/Delegation.php:90 src/Module/Settings/Display.php:90
|
#: src/Module/Settings/Delegation.php:90 src/Module/Settings/Display.php:90
|
||||||
#: src/Module/Settings/Display.php:195
|
#: src/Module/Settings/Display.php:197
|
||||||
#: src/Module/Settings/Profile/Photo/Crop.php:165
|
#: src/Module/Settings/Profile/Photo/Crop.php:165
|
||||||
#: src/Module/Settings/Profile/Photo/Index.php:112
|
#: src/Module/Settings/Profile/Photo/Index.php:112
|
||||||
#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:80
|
#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:80
|
||||||
|
@ -391,7 +391,7 @@ msgid "Save"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:578
|
#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:578
|
||||||
#: src/Model/Event.php:512 src/Model/Profile.php:232
|
#: src/Model/Event.php:512 src/Model/Profile.php:233
|
||||||
#: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74
|
#: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74
|
||||||
#: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:65 src/Module/HCard.php:51
|
#: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:65 src/Module/HCard.php:51
|
||||||
#: src/Module/Profile/Common.php:62 src/Module/Profile/Common.php:71
|
#: src/Module/Profile/Common.php:62 src/Module/Profile/Common.php:71
|
||||||
|
@ -1382,7 +1382,7 @@ msgid "Public post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Conversation.php:426 src/Content/Widget/VCard.php:131
|
#: src/Content/Conversation.php:426 src/Content/Widget/VCard.php:131
|
||||||
#: src/Model/Profile.php:484 src/Module/Admin/Logs/View.php:92
|
#: src/Model/Profile.php:485 src/Module/Admin/Logs/View.php:92
|
||||||
#: src/Module/Post/Edit.php:181
|
#: src/Module/Post/Edit.php:181
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1770,7 +1770,7 @@ msgstr ""
|
||||||
msgid "Create new group"
|
msgid "Create new group"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Item.php:332 src/Model/Item.php:3134
|
#: src/Content/Item.php:332 src/Model/Item.php:3137
|
||||||
msgid "event"
|
msgid "event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -1778,7 +1778,7 @@ msgstr ""
|
||||||
msgid "status"
|
msgid "status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Item.php:341 src/Model/Item.php:3136
|
#: src/Content/Item.php:341 src/Model/Item.php:3139
|
||||||
#: src/Module/Post/Tag/Add.php:123
|
#: src/Module/Post/Tag/Add.php:123
|
||||||
msgid "photo"
|
msgid "photo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1807,7 +1807,7 @@ msgid "View Photos"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Item.php:433 src/Model/Contact.php:1211
|
#: src/Content/Item.php:433 src/Model/Contact.php:1211
|
||||||
#: src/Model/Profile.php:469
|
#: src/Model/Profile.php:470
|
||||||
msgid "Network Posts"
|
msgid "Network Posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -1935,7 +1935,7 @@ msgstr ""
|
||||||
#: src/Content/Nav.php:233 src/Content/Nav.php:293
|
#: src/Content/Nav.php:233 src/Content/Nav.php:293
|
||||||
#: 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:313 view/theme/frio/theme.php:236
|
#: src/Module/Settings/Display.php:316 view/theme/frio/theme.php:236
|
||||||
#: view/theme/frio/theme.php:240
|
#: view/theme/frio/theme.php:240
|
||||||
msgid "Calendar"
|
msgid "Calendar"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -2190,8 +2190,8 @@ msgid ""
|
||||||
"<a href=\"%1$s\" target=\"_blank\" rel=\"noopener noreferrer\">%2$s</a> %3$s"
|
"<a href=\"%1$s\" target=\"_blank\" rel=\"noopener noreferrer\">%2$s</a> %3$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Text/BBCode.php:994 src/Model/Item.php:3867
|
#: src/Content/Text/BBCode.php:994 src/Model/Item.php:3870
|
||||||
#: src/Model/Item.php:3873 src/Model/Item.php:3874
|
#: src/Model/Item.php:3876 src/Model/Item.php:3877
|
||||||
msgid "Link to source"
|
msgid "Link to source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -2224,7 +2224,7 @@ msgid "The end"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Text/HTML.php:859 src/Content/Widget/VCard.php:127
|
#: src/Content/Text/HTML.php:859 src/Content/Widget/VCard.php:127
|
||||||
#: src/Model/Profile.php:478 src/Module/Contact/Profile.php:471
|
#: src/Model/Profile.php:479 src/Module/Contact/Profile.php:471
|
||||||
msgid "Follow"
|
msgid "Follow"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -2372,7 +2372,7 @@ msgid "All"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Widget.php:591 src/Module/BaseSettings.php:125
|
#: src/Content/Widget.php:591 src/Module/BaseSettings.php:125
|
||||||
#: src/Module/Settings/Channels.php:158 src/Module/Settings/Display.php:312
|
#: src/Module/Settings/Channels.php:158 src/Module/Settings/Display.php:315
|
||||||
msgid "Channels"
|
msgid "Channels"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -2423,46 +2423,46 @@ msgid "More Trending Tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Widget/VCard.php:106 src/Model/Contact.php:1204
|
#: src/Content/Widget/VCard.php:106 src/Model/Contact.php:1204
|
||||||
#: src/Model/Profile.php:462
|
#: src/Model/Profile.php:463
|
||||||
msgid "Post to group"
|
msgid "Post to group"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Widget/VCard.php:110 src/Model/Contact.php:1209
|
#: src/Content/Widget/VCard.php:110 src/Model/Contact.php:1209
|
||||||
#: src/Model/Profile.php:467 src/Module/Moderation/Item/Source.php:85
|
#: src/Model/Profile.php:468 src/Module/Moderation/Item/Source.php:85
|
||||||
msgid "Mention"
|
msgid "Mention"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Widget/VCard.php:120 src/Model/Profile.php:381
|
#: src/Content/Widget/VCard.php:120 src/Model/Profile.php:382
|
||||||
#: src/Module/Contact/Profile.php:408 src/Module/Profile/Profile.php:199
|
#: src/Module/Contact/Profile.php:408 src/Module/Profile/Profile.php:199
|
||||||
msgid "XMPP:"
|
msgid "XMPP:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Widget/VCard.php:121 src/Model/Profile.php:382
|
#: src/Content/Widget/VCard.php:121 src/Model/Profile.php:383
|
||||||
#: src/Module/Contact/Profile.php:410 src/Module/Profile/Profile.php:203
|
#: src/Module/Contact/Profile.php:410 src/Module/Profile/Profile.php:203
|
||||||
msgid "Matrix:"
|
msgid "Matrix:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Widget/VCard.php:122 src/Model/Event.php:82
|
#: src/Content/Widget/VCard.php:122 src/Model/Event.php:82
|
||||||
#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:963
|
#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:963
|
||||||
#: src/Model/Profile.php:376 src/Module/Contact/Profile.php:406
|
#: src/Model/Profile.php:377 src/Module/Contact/Profile.php:406
|
||||||
#: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187
|
#: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187
|
||||||
#: src/Module/Profile/Profile.php:221
|
#: src/Module/Profile/Profile.php:221
|
||||||
msgid "Location:"
|
msgid "Location:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Widget/VCard.php:125 src/Model/Profile.php:491
|
#: src/Content/Widget/VCard.php:125 src/Model/Profile.php:492
|
||||||
#: src/Module/Notifications/Introductions.php:201
|
#: src/Module/Notifications/Introductions.php:201
|
||||||
msgid "Network:"
|
msgid "Network:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Widget/VCard.php:129 src/Model/Contact.php:1237
|
#: src/Content/Widget/VCard.php:129 src/Model/Contact.php:1237
|
||||||
#: src/Model/Contact.php:1249 src/Model/Profile.php:480
|
#: src/Model/Contact.php:1249 src/Model/Profile.php:481
|
||||||
#: src/Module/Contact/Profile.php:463
|
#: src/Module/Contact/Profile.php:463
|
||||||
msgid "Unfollow"
|
msgid "Unfollow"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Widget/VCard.php:135 src/Model/Contact.php:1206
|
#: src/Content/Widget/VCard.php:135 src/Model/Contact.php:1206
|
||||||
#: src/Model/Profile.php:464
|
#: src/Model/Profile.php:465
|
||||||
msgid "View group"
|
msgid "View group"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -2859,37 +2859,37 @@ msgid "%s (%s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/L10n.php:494 src/Model/Event.php:430
|
#: src/Core/L10n.php:494 src/Model/Event.php:430
|
||||||
#: src/Module/Settings/Display.php:281
|
#: src/Module/Settings/Display.php:284
|
||||||
msgid "Monday"
|
msgid "Monday"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/L10n.php:494 src/Model/Event.php:431
|
#: src/Core/L10n.php:494 src/Model/Event.php:431
|
||||||
#: src/Module/Settings/Display.php:282
|
#: src/Module/Settings/Display.php:285
|
||||||
msgid "Tuesday"
|
msgid "Tuesday"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/L10n.php:494 src/Model/Event.php:432
|
#: src/Core/L10n.php:494 src/Model/Event.php:432
|
||||||
#: src/Module/Settings/Display.php:283
|
#: src/Module/Settings/Display.php:286
|
||||||
msgid "Wednesday"
|
msgid "Wednesday"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/L10n.php:494 src/Model/Event.php:433
|
#: src/Core/L10n.php:494 src/Model/Event.php:433
|
||||||
#: src/Module/Settings/Display.php:284
|
#: src/Module/Settings/Display.php:287
|
||||||
msgid "Thursday"
|
msgid "Thursday"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/L10n.php:494 src/Model/Event.php:434
|
#: src/Core/L10n.php:494 src/Model/Event.php:434
|
||||||
#: src/Module/Settings/Display.php:285
|
#: src/Module/Settings/Display.php:288
|
||||||
msgid "Friday"
|
msgid "Friday"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/L10n.php:494 src/Model/Event.php:435
|
#: src/Core/L10n.php:494 src/Model/Event.php:435
|
||||||
#: src/Module/Settings/Display.php:286
|
#: src/Module/Settings/Display.php:289
|
||||||
msgid "Saturday"
|
msgid "Saturday"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/L10n.php:494 src/Model/Event.php:429
|
#: src/Core/L10n.php:494 src/Model/Event.php:429
|
||||||
#: src/Module/Settings/Display.php:280
|
#: src/Module/Settings/Display.php:283
|
||||||
msgid "Sunday"
|
msgid "Sunday"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -3334,17 +3334,17 @@ msgid "today"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Event.php:463 src/Module/Calendar/Show.php:129
|
#: src/Model/Event.php:463 src/Module/Calendar/Show.php:129
|
||||||
#: src/Module/Settings/Display.php:291 src/Util/Temporal.php:353
|
#: src/Module/Settings/Display.php:294 src/Util/Temporal.php:353
|
||||||
msgid "month"
|
msgid "month"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Event.php:464 src/Module/Calendar/Show.php:130
|
#: src/Model/Event.php:464 src/Module/Calendar/Show.php:130
|
||||||
#: src/Module/Settings/Display.php:292 src/Util/Temporal.php:354
|
#: src/Module/Settings/Display.php:295 src/Util/Temporal.php:354
|
||||||
msgid "week"
|
msgid "week"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Event.php:465 src/Module/Calendar/Show.php:131
|
#: src/Model/Event.php:465 src/Module/Calendar/Show.php:131
|
||||||
#: src/Module/Settings/Display.php:293 src/Util/Temporal.php:355
|
#: src/Module/Settings/Display.php:296 src/Util/Temporal.php:355
|
||||||
msgid "day"
|
msgid "day"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -3422,76 +3422,76 @@ msgstr ""
|
||||||
msgid "Detected languages in this post:\\n%s"
|
msgid "Detected languages in this post:\\n%s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Item.php:3138
|
#: src/Model/Item.php:3141
|
||||||
msgid "activity"
|
msgid "activity"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Item.php:3140
|
#: src/Model/Item.php:3143
|
||||||
msgid "comment"
|
msgid "comment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Item.php:3143 src/Module/Post/Tag/Add.php:123
|
#: src/Model/Item.php:3146 src/Module/Post/Tag/Add.php:123
|
||||||
msgid "post"
|
msgid "post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Item.php:3313
|
#: src/Model/Item.php:3316
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s is blocked"
|
msgid "%s is blocked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Item.php:3315
|
#: src/Model/Item.php:3318
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s is ignored"
|
msgid "%s is ignored"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Item.php:3317
|
#: src/Model/Item.php:3320
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Content from %s is collapsed"
|
msgid "Content from %s is collapsed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Item.php:3321
|
#: src/Model/Item.php:3324
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Content warning: %s"
|
msgid "Content warning: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Item.php:3774
|
#: src/Model/Item.php:3777
|
||||||
msgid "bytes"
|
msgid "bytes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Item.php:3805
|
#: src/Model/Item.php:3808
|
||||||
#, 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:3807
|
#: src/Model/Item.php:3810
|
||||||
#, 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:3812
|
#: src/Model/Item.php:3815
|
||||||
#, 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:3814
|
#: src/Model/Item.php:3817
|
||||||
#, 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:3816
|
#: src/Model/Item.php:3819
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Poll end: %s"
|
msgid "Poll end: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Item.php:3850 src/Model/Item.php:3851
|
#: src/Model/Item.php:3853 src/Model/Item.php:3854
|
||||||
msgid "View on separate page"
|
msgid "View on separate page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -3503,149 +3503,149 @@ msgstr ""
|
||||||
msgid "Wall Photos"
|
msgid "Wall Photos"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:364 src/Module/Profile/Profile.php:283
|
#: src/Model/Profile.php:365 src/Module/Profile/Profile.php:283
|
||||||
#: src/Module/Profile/Profile.php:285
|
#: src/Module/Profile/Profile.php:285
|
||||||
msgid "Edit profile"
|
msgid "Edit profile"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:366
|
#: src/Model/Profile.php:367
|
||||||
msgid "Change profile photo"
|
msgid "Change profile photo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:379 src/Module/Directory.php:152
|
#: src/Model/Profile.php:380 src/Module/Directory.php:152
|
||||||
#: src/Module/Profile/Profile.php:209
|
#: src/Module/Profile/Profile.php:209
|
||||||
msgid "Homepage:"
|
msgid "Homepage:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:380 src/Module/Contact/Profile.php:412
|
#: src/Model/Profile.php:381 src/Module/Contact/Profile.php:412
|
||||||
#: src/Module/Notifications/Introductions.php:189
|
#: src/Module/Notifications/Introductions.php:189
|
||||||
msgid "About:"
|
msgid "About:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:482
|
#: src/Model/Profile.php:483
|
||||||
msgid "Atom feed"
|
msgid "Atom feed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:489
|
#: src/Model/Profile.php:490
|
||||||
msgid "This website has been verified to belong to the same person."
|
msgid "This website has been verified to belong to the same person."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:530
|
#: src/Model/Profile.php:541
|
||||||
msgid "F d"
|
msgid "F d"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:594 src/Model/Profile.php:683
|
#: src/Model/Profile.php:605 src/Model/Profile.php:682
|
||||||
msgid "[today]"
|
msgid "[today]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:603
|
#: src/Model/Profile.php:614
|
||||||
msgid "Birthday Reminders"
|
msgid "Birthday Reminders"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:604
|
#: src/Model/Profile.php:615
|
||||||
msgid "Birthdays this week:"
|
msgid "Birthdays this week:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:632
|
#: src/Model/Profile.php:631
|
||||||
msgid "g A l F d"
|
msgid "g A l F d"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:670
|
#: src/Model/Profile.php:669
|
||||||
msgid "[No description]"
|
msgid "[No description]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:696
|
#: src/Model/Profile.php:695
|
||||||
msgid "Event Reminders"
|
msgid "Event Reminders"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:697
|
#: src/Model/Profile.php:696
|
||||||
msgid "Upcoming events the next 7 days:"
|
msgid "Upcoming events the next 7 days:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:896
|
#: src/Model/Profile.php:895
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "OpenWebAuth: %1$s welcomes %2$s"
|
msgid "OpenWebAuth: %1$s welcomes %2$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:1036
|
#: src/Model/Profile.php:1035
|
||||||
msgid "Hometown:"
|
msgid "Hometown:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:1037
|
#: src/Model/Profile.php:1036
|
||||||
msgid "Marital Status:"
|
msgid "Marital Status:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:1038
|
#: src/Model/Profile.php:1037
|
||||||
msgid "With:"
|
msgid "With:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:1039
|
#: src/Model/Profile.php:1038
|
||||||
msgid "Since:"
|
msgid "Since:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:1040
|
#: src/Model/Profile.php:1039
|
||||||
msgid "Sexual Preference:"
|
msgid "Sexual Preference:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:1041
|
#: src/Model/Profile.php:1040
|
||||||
msgid "Political Views:"
|
msgid "Political Views:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:1042
|
#: src/Model/Profile.php:1041
|
||||||
msgid "Religious Views:"
|
msgid "Religious Views:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:1043
|
#: src/Model/Profile.php:1042
|
||||||
msgid "Likes:"
|
msgid "Likes:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:1044
|
#: src/Model/Profile.php:1043
|
||||||
msgid "Dislikes:"
|
msgid "Dislikes:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:1045
|
#: src/Model/Profile.php:1044
|
||||||
msgid "Title/Description:"
|
msgid "Title/Description:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:1046 src/Module/Admin/Summary.php:197
|
#: src/Model/Profile.php:1045 src/Module/Admin/Summary.php:197
|
||||||
#: src/Module/Moderation/Report/Create.php:280
|
#: src/Module/Moderation/Report/Create.php:280
|
||||||
#: src/Module/Moderation/Summary.php:77
|
#: src/Module/Moderation/Summary.php:77
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:1047
|
#: src/Model/Profile.php:1046
|
||||||
msgid "Musical interests"
|
msgid "Musical interests"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:1048
|
#: src/Model/Profile.php:1047
|
||||||
msgid "Books, literature"
|
msgid "Books, literature"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:1049
|
#: src/Model/Profile.php:1048
|
||||||
msgid "Television"
|
msgid "Television"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:1050
|
#: src/Model/Profile.php:1049
|
||||||
msgid "Film/dance/culture/entertainment"
|
msgid "Film/dance/culture/entertainment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:1051
|
#: src/Model/Profile.php:1050
|
||||||
msgid "Hobbies/Interests"
|
msgid "Hobbies/Interests"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:1052
|
#: src/Model/Profile.php:1051
|
||||||
msgid "Love/romance"
|
msgid "Love/romance"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:1053
|
#: src/Model/Profile.php:1052
|
||||||
msgid "Work/employment"
|
msgid "Work/employment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:1054
|
#: src/Model/Profile.php:1053
|
||||||
msgid "School/education"
|
msgid "School/education"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Profile.php:1055
|
#: src/Model/Profile.php:1054
|
||||||
msgid "Contact information and Social Networks"
|
msgid "Contact information and Social Networks"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -3929,7 +3929,7 @@ msgid "Disable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Addons/Details.php:91
|
#: src/Module/Admin/Addons/Details.php:91
|
||||||
#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:336
|
#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:340
|
||||||
msgid "Enable"
|
msgid "Enable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -3979,7 +3979,7 @@ msgstr ""
|
||||||
#: src/Module/Settings/Account.php:541 src/Module/Settings/Addons.php:78
|
#: src/Module/Settings/Account.php:541 src/Module/Settings/Addons.php:78
|
||||||
#: src/Module/Settings/Connectors.php:160
|
#: src/Module/Settings/Connectors.php:160
|
||||||
#: src/Module/Settings/Connectors.php:246
|
#: src/Module/Settings/Connectors.php:246
|
||||||
#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:306
|
#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:309
|
||||||
#: src/Module/Settings/Features.php:76
|
#: src/Module/Settings/Features.php:76
|
||||||
msgid "Save Settings"
|
msgid "Save Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -4340,11 +4340,11 @@ msgstr ""
|
||||||
msgid "%s is no valid input for maximum image size"
|
msgid "%s is no valid input for maximum image size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:313 src/Module/Settings/Display.php:213
|
#: src/Module/Admin/Site.php:313 src/Module/Settings/Display.php:215
|
||||||
msgid "No special theme for mobile devices"
|
msgid "No special theme for mobile devices"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:330 src/Module/Settings/Display.php:223
|
#: src/Module/Admin/Site.php:330 src/Module/Settings/Display.php:225
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s - (Experimental)"
|
msgid "%s - (Experimental)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -5954,7 +5954,7 @@ msgstr ""
|
||||||
msgid "Create New Event"
|
msgid "Create New Event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:294
|
#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:297
|
||||||
msgid "list"
|
msgid "list"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -9933,12 +9933,12 @@ msgid "No Addon settings configured"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Channels.php:131 src/Module/Settings/Channels.php:147
|
#: src/Module/Settings/Channels.php:131 src/Module/Settings/Channels.php:147
|
||||||
#: src/Module/Settings/Display.php:334
|
#: src/Module/Settings/Display.php:338
|
||||||
msgid "Label"
|
msgid "Label"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Channels.php:132 src/Module/Settings/Channels.php:148
|
#: src/Module/Settings/Channels.php:132 src/Module/Settings/Channels.php:148
|
||||||
#: src/Module/Settings/Display.php:335
|
#: src/Module/Settings/Display.php:339
|
||||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:137
|
#: src/Module/Settings/TwoFactor/AppSpecific.php:137
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -10314,172 +10314,180 @@ msgstr ""
|
||||||
msgid "No entries."
|
msgid "No entries."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:181
|
#: src/Module/Settings/Display.php:183
|
||||||
msgid "The theme you chose isn't available."
|
msgid "The theme you chose isn't available."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:221
|
#: src/Module/Settings/Display.php:223
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s - (Unsupported)"
|
msgid "%s - (Unsupported)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:257
|
#: src/Module/Settings/Display.php:260
|
||||||
msgid "No preview"
|
msgid "No preview"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:258
|
#: src/Module/Settings/Display.php:261
|
||||||
msgid "No image"
|
msgid "No image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:259
|
#: src/Module/Settings/Display.php:262
|
||||||
msgid "Small Image"
|
msgid "Small Image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:260
|
#: src/Module/Settings/Display.php:263
|
||||||
msgid "Large Image"
|
msgid "Large Image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:305
|
#: src/Module/Settings/Display.php:308
|
||||||
msgid "Display Settings"
|
msgid "Display Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:307
|
#: src/Module/Settings/Display.php:310
|
||||||
msgid "General Theme Settings"
|
msgid "General Theme Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:308
|
#: src/Module/Settings/Display.php:311
|
||||||
msgid "Custom Theme Settings"
|
msgid "Custom Theme Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:309
|
#: src/Module/Settings/Display.php:312
|
||||||
msgid "Content Settings"
|
msgid "Content Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:310 view/theme/duepuntozero/config.php:86
|
#: src/Module/Settings/Display.php:313 view/theme/duepuntozero/config.php:86
|
||||||
#: view/theme/frio/config.php:172 view/theme/quattro/config.php:88
|
#: view/theme/frio/config.php:172 view/theme/quattro/config.php:88
|
||||||
#: view/theme/vier/config.php:136
|
#: view/theme/vier/config.php:136
|
||||||
msgid "Theme settings"
|
msgid "Theme settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:311
|
#: src/Module/Settings/Display.php:314
|
||||||
msgid "Timelines"
|
msgid "Timelines"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:318
|
#: src/Module/Settings/Display.php:321
|
||||||
msgid "Display Theme:"
|
msgid "Display Theme:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:319
|
#: src/Module/Settings/Display.php:322
|
||||||
msgid "Mobile Theme:"
|
msgid "Mobile Theme:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:322
|
#: src/Module/Settings/Display.php:325
|
||||||
msgid "Number of items to display per page:"
|
msgid "Number of items to display per page:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:322 src/Module/Settings/Display.php:323
|
#: src/Module/Settings/Display.php:325 src/Module/Settings/Display.php:326
|
||||||
msgid "Maximum of 100 items"
|
msgid "Maximum of 100 items"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:323
|
#: src/Module/Settings/Display.php:326
|
||||||
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:324
|
#: src/Module/Settings/Display.php:327
|
||||||
msgid "Update browser every xx seconds"
|
msgid "Update browser every xx seconds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:324
|
#: src/Module/Settings/Display.php:327
|
||||||
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:325
|
#: src/Module/Settings/Display.php:328
|
||||||
msgid "Display emoticons"
|
msgid "Display emoticons"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:325
|
#: src/Module/Settings/Display.php:328
|
||||||
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:326
|
#: src/Module/Settings/Display.php:329
|
||||||
msgid "Infinite scroll"
|
msgid "Infinite scroll"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:326
|
#: src/Module/Settings/Display.php:329
|
||||||
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:327
|
#: src/Module/Settings/Display.php:330
|
||||||
msgid "Enable Smart Threading"
|
msgid "Enable Smart Threading"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:327
|
#: src/Module/Settings/Display.php:330
|
||||||
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:328
|
#: src/Module/Settings/Display.php:331
|
||||||
msgid "Display the Dislike feature"
|
msgid "Display the Dislike feature"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:328
|
#: src/Module/Settings/Display.php:331
|
||||||
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:329
|
#: src/Module/Settings/Display.php:332
|
||||||
msgid "Display the resharer"
|
msgid "Display the resharer"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:329
|
#: src/Module/Settings/Display.php:332
|
||||||
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:330
|
#: src/Module/Settings/Display.php:333
|
||||||
msgid "Stay local"
|
msgid "Stay local"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:330
|
#: src/Module/Settings/Display.php:333
|
||||||
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:331
|
#: src/Module/Settings/Display.php:334
|
||||||
msgid "Show the post deletion checkbox"
|
msgid "Show the post deletion checkbox"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:331
|
#: src/Module/Settings/Display.php:334
|
||||||
msgid "Display the checkbox for the post deletion on the network page."
|
msgid "Display the checkbox for the post deletion on the network page."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:332
|
#: src/Module/Settings/Display.php:335
|
||||||
|
msgid "DIsplay the event list"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Module/Settings/Display.php:335
|
||||||
|
msgid "Display the birthday reminder and event list on the network page."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Module/Settings/Display.php:336
|
||||||
msgid "Link preview mode"
|
msgid "Link preview mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:332
|
#: src/Module/Settings/Display.php:336
|
||||||
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:337
|
#: src/Module/Settings/Display.php:341
|
||||||
msgid "Bookmark"
|
msgid "Bookmark"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:339
|
#: src/Module/Settings/Display.php:343
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enable timelines that you want to see in the channels widget. Bookmark "
|
"Enable timelines that you want to see in the channels widget. Bookmark "
|
||||||
"timelines that you want to see in the top menu."
|
"timelines that you want to see in the top menu."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:341
|
#: src/Module/Settings/Display.php:345
|
||||||
msgid "Channel languages:"
|
msgid "Channel languages:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:341
|
#: src/Module/Settings/Display.php:345
|
||||||
msgid "Select all languages that you want to see in your channels."
|
msgid "Select all languages that you want to see in your channels."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:343
|
#: src/Module/Settings/Display.php:347
|
||||||
msgid "Beginning of week:"
|
msgid "Beginning of week:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:344
|
#: src/Module/Settings/Display.php:348
|
||||||
msgid "Default calendar view:"
|
msgid "Default calendar view:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -12218,7 +12226,7 @@ msgstr ""
|
||||||
msgid "Quote shared by: %s"
|
msgid "Quote shared by: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Protocol/ActivityPub/Receiver.php:534
|
#: src/Protocol/ActivityPub/Receiver.php:581
|
||||||
msgid "Chat"
|
msgid "Chat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
|
@ -20,6 +20,7 @@
|
||||||
{{include file="field_checkbox.tpl" field=$display_resharer}}
|
{{include file="field_checkbox.tpl" field=$display_resharer}}
|
||||||
{{include file="field_checkbox.tpl" field=$stay_local}}
|
{{include file="field_checkbox.tpl" field=$stay_local}}
|
||||||
{{include file="field_checkbox.tpl" field=$show_page_drop}}
|
{{include file="field_checkbox.tpl" field=$show_page_drop}}
|
||||||
|
{{include file="field_checkbox.tpl" field=$display_eventlist}}
|
||||||
{{include file="field_select.tpl" field=$preview_mode}}
|
{{include file="field_select.tpl" field=$preview_mode}}
|
||||||
|
|
||||||
<h2>{{$timeline_title}}</h2>
|
<h2>{{$timeline_title}}</h2>
|
||||||
|
|
|
@ -67,6 +67,7 @@
|
||||||
{{include file="field_checkbox.tpl" field=$display_resharer}}
|
{{include file="field_checkbox.tpl" field=$display_resharer}}
|
||||||
{{include file="field_checkbox.tpl" field=$stay_local}}
|
{{include file="field_checkbox.tpl" field=$stay_local}}
|
||||||
{{include file="field_checkbox.tpl" field=$show_page_drop}}
|
{{include file="field_checkbox.tpl" field=$show_page_drop}}
|
||||||
|
{{include file="field_checkbox.tpl" field=$display_eventlist}}
|
||||||
{{include file="field_select.tpl" field=$preview_mode}}
|
{{include file="field_select.tpl" field=$preview_mode}}
|
||||||
</div>
|
</div>
|
||||||
<div class="panel-footer">
|
<div class="panel-footer">
|
||||||
|
|
Loading…
Reference in New Issue
Block a user