diff --git a/src/Module/BaseProfile.php b/src/Module/BaseProfile.php index c034287469..4a73408bc9 100644 --- a/src/Module/BaseProfile.php +++ b/src/Module/BaseProfile.php @@ -31,35 +31,35 @@ class BaseProfile extends BaseModule $tabs = [ [ - 'label' => DI::l10n()->t('Profile'), - 'url' => $baseProfileUrl . '/profile', - 'sel' => $current == 'profile' ? 'active' : '', - 'title' => DI::l10n()->t('Profile Details'), - 'id' => 'profile-tab', + 'label' => DI::l10n()->t('Profile'), + 'url' => $baseProfileUrl . '/profile', + 'sel' => $current == 'profile' ? 'active' : '', + 'title' => DI::l10n()->t('Profile Details'), + 'id' => 'profile-tab', 'accesskey' => 'r', ], [ - 'label' => DI::l10n()->t('Conversations'), - 'url' => $baseProfileUrl . '/conversations', - 'sel' => $current == 'status' ? 'active' : '', - 'title' => DI::l10n()->t('Conversations started'), - 'id' => 'status-tab', + 'label' => DI::l10n()->t('Conversations'), + 'url' => $baseProfileUrl . '/conversations', + 'sel' => $current == 'status' ? 'active' : '', + 'title' => DI::l10n()->t('Conversations started'), + 'id' => 'status-tab', 'accesskey' => 'm', ], [ - 'label' => DI::l10n()->t('Photos'), - 'url' => $baseProfileUrl . '/photos', - 'sel' => $current == 'photos' ? 'active' : '', - 'title' => DI::l10n()->t('Photo Albums'), - 'id' => 'photo-tab', + 'label' => DI::l10n()->t('Photos'), + 'url' => $baseProfileUrl . '/photos', + 'sel' => $current == 'photos' ? 'active' : '', + 'title' => DI::l10n()->t('Photo Albums'), + 'id' => 'photo-tab', 'accesskey' => 'h', ], [ - 'label' => DI::l10n()->t('Media'), - 'url' => $baseProfileUrl . '/media', - 'sel' => $current == 'media' ? 'active' : '', - 'title' => DI::l10n()->t('Media'), - 'id' => 'media-tab', + 'label' => DI::l10n()->t('Media'), + 'url' => $baseProfileUrl . '/media', + 'sel' => $current == 'media' ? 'active' : '', + 'title' => DI::l10n()->t('Media'), + 'id' => 'media-tab', 'accesskey' => 'd', ], ]; @@ -67,22 +67,22 @@ class BaseProfile extends BaseModule // the calendar link for the full-featured events calendar if ($is_owner) { $tabs[] = [ - 'label' => DI::l10n()->t('Calendar'), - 'url' => DI::baseUrl() . '/calendar', - 'sel' => $current == 'calendar' ? 'active' : '', - 'title' => DI::l10n()->t('Calendar'), - 'id' => 'calendar-tab', + 'label' => DI::l10n()->t('Calendar'), + 'url' => DI::baseUrl() . '/calendar', + 'sel' => $current == 'calendar' ? 'active' : '', + 'title' => DI::l10n()->t('Calendar'), + 'id' => 'calendar-tab', 'accesskey' => 'c', ]; } else { $owner = User::getByNickname($nickname, ['uid']); if(DI::userSession()->isAuthenticated() || $owner && Feature::isEnabled($owner['uid'], Feature::PUBLIC_CALENDAR)) { $tabs[] = [ - 'label' => DI::l10n()->t('Calendar'), - 'url' => DI::baseUrl() . '/calendar/show/' . $nickname, - 'sel' => $current == 'calendar' ? 'active' : '', - 'title' => DI::l10n()->t('Calendar'), - 'id' => 'calendar-tab', + 'label' => DI::l10n()->t('Calendar'), + 'url' => DI::baseUrl() . '/calendar/show/' . $nickname, + 'sel' => $current == 'calendar' ? 'active' : '', + 'title' => DI::l10n()->t('Calendar'), + 'id' => 'calendar-tab', 'accesskey' => 'c', ]; } @@ -90,30 +90,30 @@ class BaseProfile extends BaseModule if ($is_owner) { $tabs[] = [ - 'label' => DI::l10n()->t('Personal Notes'), - 'url' => DI::baseUrl() . '/notes', - 'sel' => $current == 'notes' ? 'active' : '', - 'title' => DI::l10n()->t('Only You Can See This'), - 'id' => 'notes-tab', + 'label' => DI::l10n()->t('Personal Notes'), + 'url' => DI::baseUrl() . '/notes', + 'sel' => $current == 'notes' ? 'active' : '', + 'title' => DI::l10n()->t('Only You Can See This'), + 'id' => 'notes-tab', 'accesskey' => 't', ]; $tabs[] = [ - 'label' => DI::l10n()->t('Scheduled Posts'), - 'url' => $baseProfileUrl . '/schedule', - 'sel' => $current == 'schedule' ? 'active' : '', - 'title' => DI::l10n()->t('Posts that are scheduled for publishing'), - 'id' => 'schedule-tab', + 'label' => DI::l10n()->t('Scheduled Posts'), + 'url' => $baseProfileUrl . '/schedule', + 'sel' => $current == 'schedule' ? 'active' : '', + 'title' => DI::l10n()->t('Posts that are scheduled for publishing'), + 'id' => 'schedule-tab', 'accesskey' => 'o', ]; } if (!$hide_friends) { $tabs[] = [ - 'label' => DI::l10n()->t('Contacts'), - 'url' => $baseProfileUrl . '/contacts', - 'sel' => $current == 'contacts' ? 'active' : '', - 'title' => DI::l10n()->t('Contacts'), - 'id' => 'viewcontacts-tab', + 'label' => DI::l10n()->t('Contacts'), + 'url' => $baseProfileUrl . '/contacts', + 'sel' => $current == 'contacts' ? 'active' : '', + 'title' => DI::l10n()->t('Contacts'), + 'id' => 'viewcontacts-tab', 'accesskey' => 'k', ]; } diff --git a/src/Module/Calendar/Show.php b/src/Module/Calendar/Show.php index f808c9d50a..9e9376d8bf 100644 --- a/src/Module/Calendar/Show.php +++ b/src/Module/Calendar/Show.php @@ -21,7 +21,6 @@ use Friendica\Core\Session\Capability\IHandleUserSessions; use Friendica\Core\Theme; use Friendica\Model\Event; use Friendica\Model\Profile; -use Friendica\Model\User; use Friendica\Module\BaseProfile; use Friendica\Module\Response; use Friendica\Module\Security\Login; diff --git a/src/Module/Conversation/Channel.php b/src/Module/Conversation/Channel.php index 4c060b65d7..37d9b18985 100644 --- a/src/Module/Conversation/Channel.php +++ b/src/Module/Conversation/Channel.php @@ -163,7 +163,7 @@ class Channel extends Timeline throw new HTTPException\BadRequestException($this->l10n->t('Channel not available.')); } - $this->maxId = $request['last_created'] ?? $this->maxId; + $this->maxId = $request['last_created'] ?? $this->maxId; $this->minId = $request['first_created'] ?? $this->minId; } } diff --git a/src/Module/Conversation/Community.php b/src/Module/Conversation/Community.php index e3f75ddeaf..84e2179fe3 100644 --- a/src/Module/Conversation/Community.php +++ b/src/Module/Conversation/Community.php @@ -74,10 +74,10 @@ class Community extends Timeline $t = Renderer::getMarkupTemplate("community.tpl"); $o = Renderer::replaceMacros($t, [ - '$content' => '', - '$header' => '', + '$content' => '', + '$header' => '', '$show_global_community_hint' => ($this->selectedTab == CommunityEntity::GLOBAL) && $this->config->get('system', 'show_global_community_hint'), - '$global_community_hint' => $this->l10n->t("This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users.") + '$global_community_hint' => $this->l10n->t("This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users.") ]); if ($this->pConfig->get($this->session->getLocalUserId(), 'system', 'infinite_scroll')) { @@ -185,7 +185,7 @@ class Community extends Timeline } } - $this->maxId = $request['last_received'] ?? $this->maxId; + $this->maxId = $request['last_received'] ?? $this->maxId; $this->minId = $request['first_received'] ?? $this->minId; } } diff --git a/src/Module/Conversation/Network.php b/src/Module/Conversation/Network.php index d94aeb6cde..86c2fcf736 100644 --- a/src/Module/Conversation/Network.php +++ b/src/Module/Conversation/Network.php @@ -192,9 +192,9 @@ class Network extends Timeline $x = [ 'lockstate' => $this->circleId || $this->network || ACL::getLockstateForUserId($this->session->getLocalUserId()) ? 'lock' : 'unlock', - 'acl' => ACL::getFullSelectorHTML($this->page, $this->session->getLocalUserId(), true, $default_permissions), - 'bang' => (($this->circleId || $this->network) ? '!' : ''), - 'content' => '', + 'acl' => ACL::getFullSelectorHTML($this->page, $this->session->getLocalUserId(), true, $default_permissions), + 'bang' => (($this->circleId || $this->network) ? '!' : ''), + 'content' => '', ]; $o .= $this->conversation->statusEditor($x); @@ -236,7 +236,7 @@ class Network extends Timeline $pager = new BoundariesPager( $this->l10n, $this->args->getQueryString(), - $items[0][$this->order] ?? null, + $items[0][$this->order] ?? null, $items[count($items) - 1][$this->order] ?? null, $this->itemsPerPage ); @@ -313,23 +313,23 @@ class Network extends Timeline if (!empty($request['star'])) { $this->selectedTab = NetworkEntity::STAR; - $this->star = true; + $this->star = true; } else { $this->star = $this->selectedTab == NetworkEntity::STAR; } if (!empty($request['mention'])) { $this->selectedTab = NetworkEntity::MENTION; - $this->mention = true; + $this->mention = true; } else { $this->mention = $this->selectedTab == NetworkEntity::MENTION; } if (!empty($request['order'])) { $this->selectedTab = $request['order']; - $this->order = $request['order']; - $this->star = false; - $this->mention = false; + $this->order = $request['order']; + $this->star = false; + $this->mention = false; } elseif (in_array($this->selectedTab, [NetworkEntity::RECEIVED, NetworkEntity::STAR]) || $this->community->isTimeline($this->selectedTab)) { $this->order = 'received'; } elseif (($this->selectedTab == NetworkEntity::CREATED) || $this->channel->isTimeline($this->selectedTab) || $this->userDefinedChannel->isTimeline($this->selectedTab, $this->session->getLocalUserId())) { @@ -344,7 +344,8 @@ class Network extends Timeline // since otherwise the feed will optically jump, when some already visible thread has been updated. if ($this->update && ($this->selectedTab == NetworkEntity::COMMENTED)) { $this->order = 'received'; - $request['last_received'] = $request['last_commented'] ?? null; + + $request['last_received'] = $request['last_commented'] ?? null; $request['first_received'] = $request['first_commented'] ?? null; } @@ -361,7 +362,7 @@ class Network extends Timeline $this->network = $request['nets'] ?? ''; $this->dateFrom = $this->parameters['from'] ?? ''; - $this->dateTo = $this->parameters['to'] ?? ''; + $this->dateTo = $this->parameters['to'] ?? ''; $this->setMaxMinByOrder($request); diff --git a/tests/src/Content/Text/BBCodeTest.php b/tests/src/Content/Text/BBCodeTest.php index 4757200000..9c61e10887 100644 --- a/tests/src/Content/Text/BBCodeTest.php +++ b/tests/src/Content/Text/BBCodeTest.php @@ -32,7 +32,7 @@ class BBCodeTest extends FixtureTestCase $config->set('HTML.Doctype', 'HTML5'); $config->set('Attr.AllowedRel', [ 'noreferrer' => true, - 'noopener' => true, + 'noopener' => true, ]); $config->set('Attr.AllowedFrameTargets', [ '_blank' => true, @@ -46,77 +46,77 @@ class BBCodeTest extends FixtureTestCase return [ /** @see https://github.com/friendica/friendica/issues/2487 */ 'bug-2487-1' => [ - 'data' => 'https://de.wikipedia.org/wiki/Juha_Sipilä', + 'data' => 'https://de.wikipedia.org/wiki/Juha_Sipilä', 'assertHTML' => true, ], 'bug-2487-2' => [ - 'data' => 'https://de.wikipedia.org/wiki/Dnepr_(Motorradmarke)', + 'data' => 'https://de.wikipedia.org/wiki/Dnepr_(Motorradmarke)', 'assertHTML' => true, ], 'bug-2487-3' => [ - 'data' => 'https://friendica.wäckerlin.ch/friendica', + 'data' => 'https://friendica.wäckerlin.ch/friendica', 'assertHTML' => true, ], 'bug-2487-4' => [ - 'data' => 'https://mastodon.social/@morevnaproject', + 'data' => 'https://mastodon.social/@morevnaproject', 'assertHTML' => true, ], /** @see https://github.com/friendica/friendica/issues/5795 */ 'bug-5795' => [ - 'data' => 'https://social.nasqueron.org/@liw/100798039015010628', + 'data' => 'https://social.nasqueron.org/@liw/100798039015010628', 'assertHTML' => true, ], /** @see https://github.com/friendica/friendica/issues/6095 */ 'bug-6095' => [ - 'data' => 'https://en.wikipedia.org/wiki/Solid_(web_decentralization_project)', + 'data' => 'https://en.wikipedia.org/wiki/Solid_(web_decentralization_project)', 'assertHTML' => true, ], 'no-protocol' => [ - 'data' => 'example.com/path', + 'data' => 'example.com/path', 'assertHTML' => false ], 'wrong-protocol' => [ - 'data' => 'ftp://example.com', + 'data' => 'ftp://example.com', 'assertHTML' => false ], 'wrong-domain-without-path' => [ - 'data' => 'http://example', + 'data' => 'http://example', 'assertHTML' => false ], 'wrong-domain-with-path' => [ - 'data' => 'http://example/path', + 'data' => 'http://example/path', 'assertHTML' => false ], 'bug-6857-domain-start' => [ - 'data' => "http://\nexample.com", + 'data' => "http://\nexample.com", 'assertHTML' => false ], 'bug-6857-domain-end' => [ - 'data' => "http://example\n.com", + 'data' => "http://example\n.com", 'assertHTML' => false ], 'bug-6857-tld' => [ - 'data' => "http://example.\ncom", + 'data' => "http://example.\ncom", 'assertHTML' => false ], 'bug-6857-end' => [ - 'data' => "http://example.com\ntest", + 'data' => "http://example.com\ntest", 'assertHTML' => false ], 'bug-6901' => [ - 'data' => "http://example.com
<
',
- 'text' => '[code]<[/code]',
+ 'text' => '[code]<[/code]',
],
'bug-7808-code-gt' => [
'expectedHtml' => '>
',
- 'text' => '[code]>[/code]',
+ 'text' => '[code]>[/code]',
],
'bug-7808-code-amp' => [
'expectedHtml' => '&
',
- 'text' => '[code]&[/code]',
+ 'text' => '[code]&[/code]',
],
'task-8800-pre-spaces-notag' => [
'expectedHtml' => '[test] Space',
- 'text' => '[test] Space',
+ 'text' => '[test] Space',
],
'task-8800-pre-spaces' => [
'expectedHtml' => ' Spaces',
- 'text' => '[pre] Spaces[/pre]',
+ 'text' => '[pre] Spaces[/pre]',
],
'bug-9611-purify-xss-nobb' => [
'expectedHTML' => 'dare to move your mouse here',
- 'text' => '[nobb]dare to move your mouse here[/nobb]'
+ 'text' => '[nobb]dare to move your mouse here[/nobb]'
],
'bug-9611-purify-xss-noparse' => [
'expectedHTML' => 'dare to move your mouse here',
- 'text' => '[noparse]dare to move your mouse here[/noparse]'
+ 'text' => '[noparse]dare to move your mouse here[/noparse]'
],
'bug-9611-purify-xss-attributes' => [
'expectedHTML' => 'dare to move your mouse here',
- 'text' => '[color="onmouseover=alert(0) style="]dare to move your mouse here[/color]'
+ 'text' => '[color="onmouseover=alert(0) style="]dare to move your mouse here[/color]'
],
'bug-9611-purify-attributes-correct' => [
'expectedHTML' => 'dare to move your mouse here',
- 'text' => '[color=FFFFFF]dare to move your mouse here[/color]'
+ 'text' => '[color=FFFFFF]dare to move your mouse here[/color]'
],
'bug-9639-span-classes' => [
'expectedHTML' => 'Test',
- 'text' => '[class=arbitrary classes]Test[/class]',
+ 'text' => '[class=arbitrary classes]Test[/class]',
],
'bug-10772-duplicated-links' => [
'expectedHTML' => 'Jetzt wird mir klar, warum Kapitalisten jedes Mal durchdrehen wenn Marx und das Kapital ins Gespräch kommt. Soziopathen.This is a paragraph
with a line feed.
Second Chapter
', - 'text' => "[h4]Header[/h4][ul][li]One[li]Two[/ul]\n\nThis is a paragraph\nwith a line feed.\n\nSecond Chapter", + 'text' => "[h4]Header[/h4][ul][li]One[li]Two[/ul]\n\nThis is a paragraph\nwith a line feed.\n\nSecond Chapter", ], 'task-12900-header-with-paragraphs' => [ 'expectedHTML' => 'Some Chapter
', - 'text' => '[h4]Header[/h4]Some Chapter', + 'text' => '[h4]Header[/h4]Some Chapter', ], 'bug-12842-ul-newlines' => [ 'expectedHTML' => 'This is:
This is:
Paragraph
New Paragraph
', - 'text' => "Paragraph\n\t\nNew Paragraph", + 'text' => "Paragraph\n\t\nNew Paragraph", ], ]; } @@ -296,23 +296,23 @@ Karl Marx - Die ursprüngliche Akkumulation return [ 'bug-7808-gt' => [ 'expected' => '>`>`', - 'text' => '>[code]>[/code]', + 'text' => '>[code]>[/code]', ], 'bug-7808-lt' => [ 'expected' => '<`<`', - 'text' => '<[code]<[/code]', + 'text' => '<[code]<[/code]', ], 'bug-7808-amp' => [ 'expected' => '&`&`', - 'text' => '&[code]&[/code]', + 'text' => '&[code]&[/code]', ], 'bug-12701-quotes' => [ 'expected' => '[](https://domain.tld/photos/user/image/86912721086415cdc8e0a03226831581)', - 'text' => '[url=https://domain.tld/photos/user/image/86912721086415cdc8e0a03226831581][img=https://domain.tld/photo/86912721086415cdc8e0a03226831581-1.png]abc"fgh[/img][/url]' + 'text' => '[url=https://domain.tld/photos/user/image/86912721086415cdc8e0a03226831581][img=https://domain.tld/photo/86912721086415cdc8e0a03226831581-1.png]abc"fgh[/img][/url]' ], 'bug-12701-no-quotes' => [ 'expected' => '[](https://domain.tld/photos/user/image/86912721086415cdc8e0a03226831581)', - 'text' => '[url=https://domain.tld/photos/user/image/86912721086415cdc8e0a03226831581][img=https://domain.tld/photo/86912721086415cdc8e0a03226831581-1.png]abcfgh[/img][/url]' + 'text' => '[url=https://domain.tld/photos/user/image/86912721086415cdc8e0a03226831581][img=https://domain.tld/photo/86912721086415cdc8e0a03226831581-1.png]abcfgh[/img][/url]' ], ]; } @@ -367,53 +367,53 @@ Karl Marx - Die ursprüngliche Akkumulation return [ 'no-abstract' => [ 'expected' => '', - 'text' => 'Venture the only home we\'ve ever known laws of physics tendrils of gossamer clouds a still more glorious dawn awaits Sea of Tranquility. With pretty stories for which there\'s little good evidence the ash of stellar alchemy corpus callosum preserve and cherish that pale blue dot descended from astronomers preserve and cherish that pale blue dot. A mote of dust suspended in a sunbeam paroxysm of global death two ghostly white figures in coveralls and helmets are softly dancing descended from astronomers star stuff harvesting star light gathered by gravity and billions upon billions upon billions upon billions upon billions upon billions upon billions.', - 'addon' => '', + 'text' => 'Venture the only home we\'ve ever known laws of physics tendrils of gossamer clouds a still more glorious dawn awaits Sea of Tranquility. With pretty stories for which there\'s little good evidence the ash of stellar alchemy corpus callosum preserve and cherish that pale blue dot descended from astronomers preserve and cherish that pale blue dot. A mote of dust suspended in a sunbeam paroxysm of global death two ghostly white figures in coveralls and helmets are softly dancing descended from astronomers star stuff harvesting star light gathered by gravity and billions upon billions upon billions upon billions upon billions upon billions upon billions.', + 'addon' => '', ], 'no-abstract-addon' => [ 'expected' => '', - 'text' => 'Tingling of the spine tendrils of gossamer clouds Flatland trillion rich in heavy atoms of brilliant syntheses. Extraordinary claims require extraordinary evidence a very small stage in a vast cosmic arena made in the interiors of collapsing stars kindling the energy hidden in matter vastness is bearable only through love kindling the energy hidden in matter? Dispassionate extraterrestrial observer preserve and cherish that pale blue dot vastness is bearable only through love emerged into consciousness encyclopaedia galactica a still more glorious dawn awaits and billions upon billions upon billions upon billions upon billions upon billions upon billions.', - 'addon' => 'dfrn', + 'text' => 'Tingling of the spine tendrils of gossamer clouds Flatland trillion rich in heavy atoms of brilliant syntheses. Extraordinary claims require extraordinary evidence a very small stage in a vast cosmic arena made in the interiors of collapsing stars kindling the energy hidden in matter vastness is bearable only through love kindling the energy hidden in matter? Dispassionate extraterrestrial observer preserve and cherish that pale blue dot vastness is bearable only through love emerged into consciousness encyclopaedia galactica a still more glorious dawn awaits and billions upon billions upon billions upon billions upon billions upon billions upon billions.', + 'addon' => 'dfrn', ], 'abstract' => [ 'expected' => 'Abstract at the beginning of the text', - 'text' => '[abstract]Abstract at the beginning of the text[/abstract]A very small stage in a vast cosmic arena the ash of stellar alchemy rich in heavy atoms a still more glorious dawn awaits are creatures of the cosmos Orion\'s sword. Brain is the seed of intelligence dream of the mind\'s eye inconspicuous motes of rock and gas extraordinary claims require extraordinary evidence vastness is bearable only through love quasar? Made in the interiors of collapsing stars the carbon in our apple pies cosmic ocean citizens of distant epochs paroxysm of global death dispassionate extraterrestrial observer and billions upon billions upon billions upon billions upon billions upon billions upon billions.', - 'addon' => '', + 'text' => '[abstract]Abstract at the beginning of the text[/abstract]A very small stage in a vast cosmic arena the ash of stellar alchemy rich in heavy atoms a still more glorious dawn awaits are creatures of the cosmos Orion\'s sword. Brain is the seed of intelligence dream of the mind\'s eye inconspicuous motes of rock and gas extraordinary claims require extraordinary evidence vastness is bearable only through love quasar? Made in the interiors of collapsing stars the carbon in our apple pies cosmic ocean citizens of distant epochs paroxysm of global death dispassionate extraterrestrial observer and billions upon billions upon billions upon billions upon billions upon billions upon billions.', + 'addon' => '', ], 'abstract-addon-not-present' => [ 'expected' => 'Abstract at the beginning of the text', - 'text' => '[abstract]Abstract at the beginning of the text[/abstract]With pretty stories for which there\'s little good evidence rogue not a sunrise but a galaxyrise tingling of the spine birth cosmic fugue. Cosmos hundreds of thousands Apollonius of Perga network of wormholes rich in mystery globular star cluster. Another world vastness is bearable only through love encyclopaedia galactica something incredible is waiting to be known invent the universe hearts of the stars. Extraordinary claims require extraordinary evidence the sky calls to us the only home we\'ve ever known the sky calls to us the sky calls to us extraordinary claims require extraordinary evidence and billions upon billions upon billions upon billions upon billions upon billions upon billions.', - 'addon' => '', + 'text' => '[abstract]Abstract at the beginning of the text[/abstract]With pretty stories for which there\'s little good evidence rogue not a sunrise but a galaxyrise tingling of the spine birth cosmic fugue. Cosmos hundreds of thousands Apollonius of Perga network of wormholes rich in mystery globular star cluster. Another world vastness is bearable only through love encyclopaedia galactica something incredible is waiting to be known invent the universe hearts of the stars. Extraordinary claims require extraordinary evidence the sky calls to us the only home we\'ve ever known the sky calls to us the sky calls to us extraordinary claims require extraordinary evidence and billions upon billions upon billions upon billions upon billions upon billions upon billions.', + 'addon' => '', ], 'abstract-addon-present' => [ 'expected' => 'Abstract DFRN in the middle of the text', - 'text' => '[abstract]Abstract at the beginning of the text[/abstract][abstract=dfrn]Abstract DFRN in the middle of the text[/abstract]Kindling the energy hidden in matter hydrogen atoms at the edge of forever vanquish the impossible ship of the imagination take root and flourish. Tingling of the spine white dwarf as a patch of light the sky calls to us Drake Equation citizens of distant epochs. Concept of the number one dispassionate extraterrestrial observer citizens of distant epochs descended from astronomers extraordinary claims require extraordinary evidence something incredible is waiting to be known and billions upon billions upon billions upon billions upon billions upon billions upon billions.', - 'addon' => 'dfrn', + 'text' => '[abstract]Abstract at the beginning of the text[/abstract][abstract=dfrn]Abstract DFRN in the middle of the text[/abstract]Kindling the energy hidden in matter hydrogen atoms at the edge of forever vanquish the impossible ship of the imagination take root and flourish. Tingling of the spine white dwarf as a patch of light the sky calls to us Drake Equation citizens of distant epochs. Concept of the number one dispassionate extraterrestrial observer citizens of distant epochs descended from astronomers extraordinary claims require extraordinary evidence something incredible is waiting to be known and billions upon billions upon billions upon billions upon billions upon billions upon billions.', + 'addon' => 'dfrn', ], 'abstract-multiple-addon-present' => [ 'expected' => 'Abstract DFRN at the end of the text', - 'text' => '[abstract]Abstract at the beginning of the text[/abstract][abstract=ap]Abstract AP in the middle of the text[/abstract]Cambrian explosion rich in heavy atoms take root and flourish radio telescope light years cosmic fugue. Dispassionate extraterrestrial observer white dwarf the sky calls to us another world courage of our questions two ghostly white figures in coveralls and helmets are softly dancing. Extraordinary claims require extraordinary evidence concept of the number one not a sunrise but a galaxyrise are creatures of the cosmos two ghostly white figures in coveralls and helmets are softly dancing white dwarf and billions upon billions upon billions upon billions upon billions upon billions upon billions.[abstract=dfrn]Abstract DFRN at the end of the text[/abstract]', - 'addon' => 'dfrn', + 'text' => '[abstract]Abstract at the beginning of the text[/abstract][abstract=ap]Abstract AP in the middle of the text[/abstract]Cambrian explosion rich in heavy atoms take root and flourish radio telescope light years cosmic fugue. Dispassionate extraterrestrial observer white dwarf the sky calls to us another world courage of our questions two ghostly white figures in coveralls and helmets are softly dancing. Extraordinary claims require extraordinary evidence concept of the number one not a sunrise but a galaxyrise are creatures of the cosmos two ghostly white figures in coveralls and helmets are softly dancing white dwarf and billions upon billions upon billions upon billions upon billions upon billions upon billions.[abstract=dfrn]Abstract DFRN at the end of the text[/abstract]', + 'addon' => 'dfrn', ], 'bug-11445-code-abstract' => [ 'expected' => '', - 'text' => '[code][abstract]This should not be converted[/abstract][/code]', - 'addon' => '', + 'text' => '[code][abstract]This should not be converted[/abstract][/code]', + 'addon' => '', ], 'bug-11445-noparse-abstract' => [ 'expected' => '', - 'text' => '[noparse][abstract]This should not be converted[/abstract][/noparse]', - 'addon' => '', + 'text' => '[noparse][abstract]This should not be converted[/abstract][/noparse]', + 'addon' => '', ], 'bug-11445-nobb-abstract' => [ 'expected' => '', - 'text' => '[nobb][abstract]This should not be converted[/abstract][/nobb]', - 'addon' => '', + 'text' => '[nobb][abstract]This should not be converted[/abstract][/nobb]', + 'addon' => '', ], 'bug-11445-pre-abstract' => [ 'expected' => '', - 'text' => '[pre][abstract]This should not be converted[/abstract][/pre]', - 'addon' => '', + 'text' => '[pre][abstract]This should not be converted[/abstract][/pre]', + 'addon' => '', ], ]; } @@ -438,35 +438,35 @@ Karl Marx - Die ursprüngliche Akkumulation return [ 'no-abstract' => [ 'expected' => 'Venture the only home we\'ve ever known laws of physics tendrils of gossamer clouds a still more glorious dawn awaits Sea of Tranquility. With pretty stories for which there\'s little good evidence the ash of stellar alchemy corpus callosum preserve and cherish that pale blue dot descended from astronomers preserve and cherish that pale blue dot. A mote of dust suspended in a sunbeam paroxysm of global death two ghostly white figures in coveralls and helmets are softly dancing descended from astronomers star stuff harvesting star light gathered by gravity and billions upon billions upon billions upon billions upon billions upon billions upon billions.', - 'text' => 'Venture the only home we\'ve ever known laws of physics tendrils of gossamer clouds a still more glorious dawn awaits Sea of Tranquility. With pretty stories for which there\'s little good evidence the ash of stellar alchemy corpus callosum preserve and cherish that pale blue dot descended from astronomers preserve and cherish that pale blue dot. A mote of dust suspended in a sunbeam paroxysm of global death two ghostly white figures in coveralls and helmets are softly dancing descended from astronomers star stuff harvesting star light gathered by gravity and billions upon billions upon billions upon billions upon billions upon billions upon billions.', + 'text' => 'Venture the only home we\'ve ever known laws of physics tendrils of gossamer clouds a still more glorious dawn awaits Sea of Tranquility. With pretty stories for which there\'s little good evidence the ash of stellar alchemy corpus callosum preserve and cherish that pale blue dot descended from astronomers preserve and cherish that pale blue dot. A mote of dust suspended in a sunbeam paroxysm of global death two ghostly white figures in coveralls and helmets are softly dancing descended from astronomers star stuff harvesting star light gathered by gravity and billions upon billions upon billions upon billions upon billions upon billions upon billions.', ], 'abstract' => [ 'expected' => ' A very small stage in a vast cosmic arena the ash of stellar alchemy rich in heavy atoms a still more glorious dawn awaits are creatures of the cosmos Orion\'s sword. Brain is the seed of intelligence dream of the mind\'s eye inconspicuous motes of rock and gas extraordinary claims require extraordinary evidence vastness is bearable only through love quasar? Made in the interiors of collapsing stars the carbon in our apple pies cosmic ocean citizens of distant epochs paroxysm of global death dispassionate extraterrestrial observer and billions upon billions upon billions upon billions upon billions upon billions upon billions.', - 'text' => '[abstract]Abstract at the beginning of the text[/abstract]A very small stage in a vast cosmic arena the ash of stellar alchemy rich in heavy atoms a still more glorious dawn awaits are creatures of the cosmos Orion\'s sword. Brain is the seed of intelligence dream of the mind\'s eye inconspicuous motes of rock and gas extraordinary claims require extraordinary evidence vastness is bearable only through love quasar? Made in the interiors of collapsing stars the carbon in our apple pies cosmic ocean citizens of distant epochs paroxysm of global death dispassionate extraterrestrial observer and billions upon billions upon billions upon billions upon billions upon billions upon billions.', + 'text' => '[abstract]Abstract at the beginning of the text[/abstract]A very small stage in a vast cosmic arena the ash of stellar alchemy rich in heavy atoms a still more glorious dawn awaits are creatures of the cosmos Orion\'s sword. Brain is the seed of intelligence dream of the mind\'s eye inconspicuous motes of rock and gas extraordinary claims require extraordinary evidence vastness is bearable only through love quasar? Made in the interiors of collapsing stars the carbon in our apple pies cosmic ocean citizens of distant epochs paroxysm of global death dispassionate extraterrestrial observer and billions upon billions upon billions upon billions upon billions upon billions upon billions.', ], 'abstract-addon' => [ 'expected' => ' Kindling the energy hidden in matter hydrogen atoms at the edge of forever vanquish the impossible ship of the imagination take root and flourish. Tingling of the spine white dwarf as a patch of light the sky calls to us Drake Equation citizens of distant epochs. Concept of the number one dispassionate extraterrestrial observer citizens of distant epochs descended from astronomers extraordinary claims require extraordinary evidence something incredible is waiting to be known and billions upon billions upon billions upon billions upon billions upon billions upon billions.', - 'text' => '[abstract]Abstract at the beginning of the text[/abstract][abstract=dfrn]Abstract DFRN in the middle of the text[/abstract]Kindling the energy hidden in matter hydrogen atoms at the edge of forever vanquish the impossible ship of the imagination take root and flourish. Tingling of the spine white dwarf as a patch of light the sky calls to us Drake Equation citizens of distant epochs. Concept of the number one dispassionate extraterrestrial observer citizens of distant epochs descended from astronomers extraordinary claims require extraordinary evidence something incredible is waiting to be known and billions upon billions upon billions upon billions upon billions upon billions upon billions.', + 'text' => '[abstract]Abstract at the beginning of the text[/abstract][abstract=dfrn]Abstract DFRN in the middle of the text[/abstract]Kindling the energy hidden in matter hydrogen atoms at the edge of forever vanquish the impossible ship of the imagination take root and flourish. Tingling of the spine white dwarf as a patch of light the sky calls to us Drake Equation citizens of distant epochs. Concept of the number one dispassionate extraterrestrial observer citizens of distant epochs descended from astronomers extraordinary claims require extraordinary evidence something incredible is waiting to be known and billions upon billions upon billions upon billions upon billions upon billions upon billions.', ], 'abstract-multiple-addon-present' => [ 'expected' => ' Cambrian explosion rich in heavy atoms take root and flourish radio telescope light years cosmic fugue. Dispassionate extraterrestrial observer white dwarf the sky calls to us another world courage of our questions two ghostly white figures in coveralls and helmets are softly dancing. Extraordinary claims require extraordinary evidence concept of the number one not a sunrise but a galaxyrise are creatures of the cosmos two ghostly white figures in coveralls and helmets are softly dancing white dwarf and billions upon billions upon billions upon billions upon billions upon billions upon billions. ', - 'text' => '[abstract]Abstract at the beginning of the text[/abstract][abstract=ap]Abstract AP in the middle of the text[/abstract]Cambrian explosion rich in heavy atoms take root and flourish radio telescope light years cosmic fugue. Dispassionate extraterrestrial observer white dwarf the sky calls to us another world courage of our questions two ghostly white figures in coveralls and helmets are softly dancing. Extraordinary claims require extraordinary evidence concept of the number one not a sunrise but a galaxyrise are creatures of the cosmos two ghostly white figures in coveralls and helmets are softly dancing white dwarf and billions upon billions upon billions upon billions upon billions upon billions upon billions.[abstract=dfrn]Abstract DFRN at the end of the text[/abstract]', + 'text' => '[abstract]Abstract at the beginning of the text[/abstract][abstract=ap]Abstract AP in the middle of the text[/abstract]Cambrian explosion rich in heavy atoms take root and flourish radio telescope light years cosmic fugue. Dispassionate extraterrestrial observer white dwarf the sky calls to us another world courage of our questions two ghostly white figures in coveralls and helmets are softly dancing. Extraordinary claims require extraordinary evidence concept of the number one not a sunrise but a galaxyrise are creatures of the cosmos two ghostly white figures in coveralls and helmets are softly dancing white dwarf and billions upon billions upon billions upon billions upon billions upon billions upon billions.[abstract=dfrn]Abstract DFRN at the end of the text[/abstract]', ], 'bug-11445-code-abstract' => [ 'expected' => '[code][abstract]This should not be converted[/abstract][/code]', - 'text' => '[code][abstract]This should not be converted[/abstract][/code]', + 'text' => '[code][abstract]This should not be converted[/abstract][/code]', ], 'bug-11445-noparse-abstract' => [ 'expected' => '[noparse][abstract]This should not be converted[/abstract][/noparse]', - 'text' => '[noparse][abstract]This should not be converted[/abstract][/noparse]', + 'text' => '[noparse][abstract]This should not be converted[/abstract][/noparse]', ], 'bug-11445-nobb-abstract' => [ 'expected' => '[nobb][abstract]This should not be converted[/abstract][/nobb]', - 'text' => '[nobb][abstract]This should not be converted[/abstract][/nobb]', + 'text' => '[nobb][abstract]This should not be converted[/abstract][/nobb]', ], 'bug-11445-pre-abstract' => [ 'expected' => '[pre][abstract]This should not be converted[/abstract][/pre]', - 'text' => '[pre][abstract]This should not be converted[/abstract][/pre]', + 'text' => '[pre][abstract]This should not be converted[/abstract][/pre]', ], ]; } @@ -489,52 +489,52 @@ Karl Marx - Die ursprüngliche Akkumulation return [ 'no-tag' => [ 'expected' => [], - 'text' => 'Venture the only home we\'ve ever known laws of physics tendrils of gossamer clouds a still more glorious dawn awaits Sea of Tranquility. With pretty stories for which there\'s little good evidence the ash of stellar alchemy corpus callosum preserve and cherish that pale blue dot descended from astronomers preserve and cherish that pale blue dot. A mote of dust suspended in a sunbeam paroxysm of global death two ghostly white figures in coveralls and helmets are softly dancing descended from astronomers star stuff harvesting star light gathered by gravity and billions upon billions upon billions upon billions upon billions upon billions upon billions.', + 'text' => 'Venture the only home we\'ve ever known laws of physics tendrils of gossamer clouds a still more glorious dawn awaits Sea of Tranquility. With pretty stories for which there\'s little good evidence the ash of stellar alchemy corpus callosum preserve and cherish that pale blue dot descended from astronomers preserve and cherish that pale blue dot. A mote of dust suspended in a sunbeam paroxysm of global death two ghostly white figures in coveralls and helmets are softly dancing descended from astronomers star stuff harvesting star light gathered by gravity and billions upon billions upon billions upon billions upon billions upon billions upon billions.', ], 'just-open' => [ 'expected' => [], - 'text' => '[share]', + 'text' => '[share]', ], 'empty-tag' => [ 'expected' => [ - 'author' => '', - 'profile' => '', - 'avatar' => '', - 'link' => '', - 'posted' => '', - 'guid' => '', + 'author' => '', + 'profile' => '', + 'avatar' => '', + 'link' => '', + 'posted' => '', + 'guid' => '', 'message_id' => '', - 'comment' => '', - 'shared' => '', + 'comment' => '', + 'shared' => '', ], 'text' => '[share][/share]', ], 'comment-shared' => [ 'expected' => [ - 'author' => '', - 'profile' => '', - 'avatar' => '', - 'link' => '', - 'posted' => '', - 'guid' => '', + 'author' => '', + 'profile' => '', + 'avatar' => '', + 'link' => '', + 'posted' => '', + 'guid' => '', 'message_id' => 'https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243', - 'comment' => 'comment', - 'shared' => '', + 'comment' => 'comment', + 'shared' => '', ], 'text' => ' comment [share]https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243[/share]', ], 'all-attributes' => [ 'expected' => [ - 'author' => 'Hypolite Petovan', - 'profile' => 'https://friendica.mrpetovan.com/profile/hypolite', - 'avatar' => 'https://friendica.mrpetovan.com/photo/20682437145daa4e85f019a278584494-5.png', - 'link' => 'https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243', - 'posted' => '2022-06-16 12:34:10', - 'guid' => '735a2029-1062-ab23-42e4-f9c631220243', + 'author' => 'Hypolite Petovan', + 'profile' => 'https://friendica.mrpetovan.com/profile/hypolite', + 'avatar' => 'https://friendica.mrpetovan.com/photo/20682437145daa4e85f019a278584494-5.png', + 'link' => 'https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243', + 'posted' => '2022-06-16 12:34:10', + 'guid' => '735a2029-1062-ab23-42e4-f9c631220243', 'message_id' => 'https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243', - 'comment' => '', - 'shared' => 'George Lucas: I made a science-fiction universe with a straightforward anti-authoritarianism plot where even the libertarian joins the rebellion. + 'comment' => '', + 'shared' => 'George Lucas: I made a science-fiction universe with a straightforward anti-authoritarianism plot where even the libertarian joins the rebellion. Disney: So a morally grey “choose your side” story, right? Lucas: For the right price, yes.', ], @@ -552,15 +552,15 @@ Lucas: For the right price, yes.[/share]", ], 'optional-attributes' => [ 'expected' => [ - 'author' => 'Hypolite Petovan', - 'profile' => 'https://friendica.mrpetovan.com/profile/hypolite', - 'avatar' => 'https://friendica.mrpetovan.com/photo/20682437145daa4e85f019a278584494-5.png', - 'link' => 'https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243', - 'posted' => '2022-06-16 12:34:10', - 'guid' => '', + 'author' => 'Hypolite Petovan', + 'profile' => 'https://friendica.mrpetovan.com/profile/hypolite', + 'avatar' => 'https://friendica.mrpetovan.com/photo/20682437145daa4e85f019a278584494-5.png', + 'link' => 'https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243', + 'posted' => '2022-06-16 12:34:10', + 'guid' => '', 'message_id' => 'https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243', - 'comment' => '', - 'shared' => 'George Lucas: I made a science-fiction universe with a straightforward anti-authoritarianism plot where even the libertarian joins the rebellion. + 'comment' => '', + 'shared' => 'George Lucas: I made a science-fiction universe with a straightforward anti-authoritarianism plot where even the libertarian joins the rebellion. Disney: So a morally grey “choose your side” story, right? Lucas: For the right price, yes.', ], @@ -577,15 +577,15 @@ Lucas: For the right price, yes.[/share]", ], 'double-quotes' => [ 'expected' => [ - 'author' => 'Hypolite Petovan', - 'profile' => 'https://friendica.mrpetovan.com/profile/hypolite', - 'avatar' => 'https://friendica.mrpetovan.com/photo/20682437145daa4e85f019a278584494-5.png', - 'link' => 'https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243', - 'posted' => '2022-06-16 12:34:10', - 'guid' => '', + 'author' => 'Hypolite Petovan', + 'profile' => 'https://friendica.mrpetovan.com/profile/hypolite', + 'avatar' => 'https://friendica.mrpetovan.com/photo/20682437145daa4e85f019a278584494-5.png', + 'link' => 'https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243', + 'posted' => '2022-06-16 12:34:10', + 'guid' => '', 'message_id' => 'https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243', - 'comment' => '', - 'shared' => 'George Lucas: I made a science-fiction universe with a straightforward anti-authoritarianism plot where even the libertarian joins the rebellion. + 'comment' => '', + 'shared' => 'George Lucas: I made a science-fiction universe with a straightforward anti-authoritarianism plot where even the libertarian joins the rebellion. Disney: So a morally grey “choose your side” story, right? Lucas: For the right price, yes.', ], diff --git a/view/lang/C/messages.po b/view/lang/C/messages.po index 3820be4309..0a49e73411 100644 --- a/view/lang/C/messages.po +++ b/view/lang/C/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: 2025.02-dev\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-01-23 21:29+0000\n" +"POT-Creation-Date: 2025-01-26 12:50+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME