1
0
Fork 0

Updated messages.po / type added to query

This commit is contained in:
Michael 2022-04-08 04:17:52 +00:00
commit 6c8ea1d0d8
3 changed files with 264 additions and 266 deletions

View file

@ -1460,8 +1460,10 @@ class Contact
if ($pager->getStart() == 0) { if ($pager->getStart() == 0) {
$cdata = Contact::getPublicAndUserContactID($cid, local_user()); $cdata = Contact::getPublicAndUserContactID($cid, local_user());
$pinned = DBA::selectToArray('collection-view', ['uri-id'], ['cid' => $cdata['public']]); if (!empty($cdata['public'])) {
$items = array_merge($items, $pinned); $pinned = DBA::selectToArray('collection-view', ['uri-id'], ['cid' => $cdata['public'], 'type' => Post\Collection::FEATURED]);
$items = array_merge($items, $pinned);
}
} }
$o .= DI::conversation()->create($items, 'contacts', $update, false, 'pinned_commented', local_user()); $o .= DI::conversation()->create($items, 'contacts', $update, false, 'pinned_commented', local_user());
@ -1471,10 +1473,11 @@ class Contact
if ($pager->getStart() == 0) { if ($pager->getStart() == 0) {
$cdata = Contact::getPublicAndUserContactID($cid, local_user()); $cdata = Contact::getPublicAndUserContactID($cid, local_user());
$condition = ["`uri-id` IN (SELECT `uri-id` FROM `collection-view` WHERE `cid` = ?)", $cdata['public']]; if (!empty($cdata['public'])) {
$pinned = Post::toArray(Post::selectForUser(local_user(), $fields, $condition, $params)); $condition = ["`uri-id` IN (SELECT `uri-id` FROM `collection-view` WHERE `cid` = ?)", $cdata['public']];
//$items = $pinned; $pinned = Post::toArray(Post::selectForUser(local_user(), $fields, $condition, $params));
$items = array_merge($pinned, $items); $items = array_merge($pinned, $items);
}
} }
$o .= DI::conversation()->create($items, 'contact-posts', $update); $o .= DI::conversation()->create($items, 'contact-posts', $update);

View file

@ -209,7 +209,7 @@ class Status extends BaseProfile
if ($pager->getStart() == 0 && !empty($profile['uid'])) { if ($pager->getStart() == 0 && !empty($profile['uid'])) {
$pcid = Contact::getPublicIdByUserId($profile['uid']); $pcid = Contact::getPublicIdByUserId($profile['uid']);
$pinned = DBA::selectToArray('collection-view', [], ['cid' => $pcid]); $pinned = DBA::selectToArray('collection-view', [], ['cid' => $pcid, 'type' => Post\Collection::FEATURED]);
$items = array_merge($items, $pinned); $items = array_merge($items, $pinned);
} }

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 2022.05-dev\n" "Project-Id-Version: 2022.05-dev\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-03-20 20:21+0000\n" "POT-Creation-Date: 2022-04-08 04:06+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -18,8 +18,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
#: mod/cal.php:44 mod/cal.php:48 mod/follow.php:39 mod/redir.php:34 #: mod/cal.php:44 mod/cal.php:48 mod/follow.php:39 mod/redir.php:36
#: mod/redir.php:175 src/Module/Conversation/Community.php:181 #: mod/redir.php:177 src/Module/Conversation/Community.php:181
#: src/Module/Debug/ItemBody.php:37 src/Module/Diaspora/Receive.php:57 #: src/Module/Debug/ItemBody.php:37 src/Module/Diaspora/Receive.php:57
#: src/Module/Item/Follow.php:42 src/Module/Item/Ignore.php:41 #: src/Module/Item/Follow.php:42 src/Module/Item/Ignore.php:41
#: src/Module/Item/Pin.php:42 src/Module/Item/Pin.php:57 #: src/Module/Item/Pin.php:42 src/Module/Item/Pin.php:57
@ -28,16 +28,16 @@ msgid "Access denied."
msgstr "" msgstr ""
#: mod/cal.php:61 mod/cal.php:78 mod/photos.php:69 mod/photos.php:140 #: mod/cal.php:61 mod/cal.php:78 mod/photos.php:69 mod/photos.php:140
#: mod/photos.php:804 src/Model/Profile.php:229 src/Module/HCard.php:52 #: mod/photos.php:804 src/Model/Profile.php:231 src/Module/HCard.php:52
#: src/Module/Profile/Common.php:41 src/Module/Profile/Common.php:52 #: src/Module/Profile/Common.php:41 src/Module/Profile/Common.php:52
#: src/Module/Profile/Contacts.php:40 src/Module/Profile/Contacts.php:50 #: src/Module/Profile/Contacts.php:40 src/Module/Profile/Contacts.php:50
#: src/Module/Profile/Media.php:38 src/Module/Profile/Status.php:58 #: src/Module/Profile/Media.php:38 src/Module/Profile/Status.php:59
#: src/Module/Register.php:267 src/Module/RemoteFollow.php:58 #: src/Module/Register.php:267 src/Module/RemoteFollow.php:58
msgid "User not found." msgid "User not found."
msgstr "" msgstr ""
#: mod/cal.php:120 mod/display.php:238 src/Module/Profile/Profile.php:94 #: mod/cal.php:120 mod/display.php:238 src/Module/Profile/Profile.php:94
#: src/Module/Profile/Profile.php:109 src/Module/Profile/Status.php:109 #: src/Module/Profile/Profile.php:109 src/Module/Profile/Status.php:110
#: src/Module/Update/Profile.php:56 #: src/Module/Update/Profile.php:56
msgid "Access to this profile has been restricted." msgid "Access to this profile has been restricted."
msgstr "" msgstr ""
@ -84,7 +84,7 @@ msgstr ""
msgid "list" msgid "list"
msgstr "" msgstr ""
#: mod/cal.php:265 src/Console/User.php:182 src/Model/User.php:659 #: mod/cal.php:265 src/Console/User.php:182 src/Model/User.php:661
#: src/Module/Admin/Users/Active.php:73 src/Module/Admin/Users/Blocked.php:74 #: src/Module/Admin/Users/Active.php:73 src/Module/Admin/Users/Blocked.php:74
#: src/Module/Admin/Users/Index.php:80 src/Module/Admin/Users/Pending.php:71 #: src/Module/Admin/Users/Index.php:80 src/Module/Admin/Users/Pending.php:71
#: src/Module/Api/Twitter/ContactEndpoint.php:74 #: src/Module/Api/Twitter/ContactEndpoint.php:74
@ -119,7 +119,7 @@ msgstr ""
#: mod/editpost.php:38 mod/events.php:220 mod/follow.php:56 mod/follow.php:130 #: mod/editpost.php:38 mod/events.php:220 mod/follow.php:56 mod/follow.php:130
#: mod/item.php:184 mod/item.php:189 mod/item.php:877 mod/message.php:69 #: mod/item.php:184 mod/item.php:189 mod/item.php:877 mod/message.php:69
#: mod/message.php:111 mod/notes.php:44 mod/ostatus_subscribe.php:32 #: mod/message.php:111 mod/notes.php:44 mod/ostatus_subscribe.php:34
#: mod/photos.php:160 mod/photos.php:897 mod/repair_ostatus.php:31 #: mod/photos.php:160 mod/photos.php:897 mod/repair_ostatus.php:31
#: mod/settings.php:49 mod/settings.php:59 mod/settings.php:430 #: mod/settings.php:49 mod/settings.php:59 mod/settings.php:430
#: mod/suggest.php:34 mod/uimport.php:33 mod/unfollow.php:35 #: mod/suggest.php:34 mod/uimport.php:33 mod/unfollow.php:35
@ -163,7 +163,7 @@ msgid "Save"
msgstr "" msgstr ""
#: mod/editpost.php:92 mod/photos.php:1344 src/Content/Conversation.php:326 #: mod/editpost.php:92 mod/photos.php:1344 src/Content/Conversation.php:326
#: src/Module/Contact/Poke.php:176 src/Object/Post.php:986 #: src/Module/Contact/Poke.php:176 src/Object/Post.php:988
msgid "Loading..." msgid "Loading..."
msgstr "" msgstr ""
@ -228,8 +228,8 @@ msgstr ""
#: mod/editpost.php:107 mod/message.php:200 mod/message.php:358 #: mod/editpost.php:107 mod/message.php:200 mod/message.php:358
#: mod/photos.php:1495 mod/wallmessage.php:142 src/Content/Conversation.php:355 #: mod/photos.php:1495 mod/wallmessage.php:142 src/Content/Conversation.php:355
#: src/Content/Conversation.php:690 src/Module/Item/Compose.php:165 #: src/Content/Conversation.php:699 src/Module/Item/Compose.php:165
#: src/Object/Post.php:520 #: src/Object/Post.php:522
msgid "Please wait" msgid "Please wait"
msgstr "" msgstr ""
@ -261,7 +261,7 @@ msgstr ""
#: mod/editpost.php:128 mod/events.php:517 mod/photos.php:1343 #: mod/editpost.php:128 mod/events.php:517 mod/photos.php:1343
#: mod/photos.php:1399 mod/photos.php:1473 src/Content/Conversation.php:370 #: mod/photos.php:1399 mod/photos.php:1473 src/Content/Conversation.php:370
#: src/Module/Item/Compose.php:160 src/Object/Post.php:996 #: src/Module/Item/Compose.php:160 src/Object/Post.php:998
msgid "Preview" msgid "Preview"
msgstr "" msgstr ""
@ -273,42 +273,42 @@ msgid "Cancel"
msgstr "" msgstr ""
#: mod/editpost.php:134 src/Content/Conversation.php:331 #: mod/editpost.php:134 src/Content/Conversation.php:331
#: src/Module/Item/Compose.php:151 src/Object/Post.php:987 #: src/Module/Item/Compose.php:151 src/Object/Post.php:989
msgid "Bold" msgid "Bold"
msgstr "" msgstr ""
#: mod/editpost.php:135 src/Content/Conversation.php:332 #: mod/editpost.php:135 src/Content/Conversation.php:332
#: src/Module/Item/Compose.php:152 src/Object/Post.php:988 #: src/Module/Item/Compose.php:152 src/Object/Post.php:990
msgid "Italic" msgid "Italic"
msgstr "" msgstr ""
#: mod/editpost.php:136 src/Content/Conversation.php:333 #: mod/editpost.php:136 src/Content/Conversation.php:333
#: src/Module/Item/Compose.php:153 src/Object/Post.php:989 #: src/Module/Item/Compose.php:153 src/Object/Post.php:991
msgid "Underline" msgid "Underline"
msgstr "" msgstr ""
#: mod/editpost.php:137 src/Content/Conversation.php:334 #: mod/editpost.php:137 src/Content/Conversation.php:334
#: src/Module/Item/Compose.php:154 src/Object/Post.php:990 #: src/Module/Item/Compose.php:154 src/Object/Post.php:992
msgid "Quote" msgid "Quote"
msgstr "" msgstr ""
#: mod/editpost.php:138 src/Content/Conversation.php:335 #: mod/editpost.php:138 src/Content/Conversation.php:335
#: src/Module/Item/Compose.php:155 src/Object/Post.php:991 #: src/Module/Item/Compose.php:155 src/Object/Post.php:993
msgid "Code" msgid "Code"
msgstr "" msgstr ""
#: mod/editpost.php:139 src/Content/Conversation.php:337 #: mod/editpost.php:139 src/Content/Conversation.php:337
#: src/Module/Item/Compose.php:157 src/Object/Post.php:993 #: src/Module/Item/Compose.php:157 src/Object/Post.php:995
msgid "Link" msgid "Link"
msgstr "" msgstr ""
#: mod/editpost.php:140 src/Content/Conversation.php:338 #: mod/editpost.php:140 src/Content/Conversation.php:338
#: src/Module/Item/Compose.php:158 src/Object/Post.php:994 #: src/Module/Item/Compose.php:158 src/Object/Post.php:996
msgid "Link or Media" msgid "Link or Media"
msgstr "" msgstr ""
#: mod/editpost.php:143 src/Content/Conversation.php:380 #: mod/editpost.php:143 src/Content/Conversation.php:380
#: src/Content/Widget/VCard.php:107 src/Model/Profile.php:460 #: src/Content/Widget/VCard.php:107 src/Model/Profile.php:462
#: src/Module/Admin/Logs/View.php:93 #: src/Module/Admin/Logs/View.php:93
msgid "Message" msgid "Message"
msgstr "" msgstr ""
@ -385,7 +385,7 @@ msgstr ""
#: mod/events.php:508 src/Content/Widget/VCard.php:98 src/Model/Event.php:80 #: mod/events.php:508 src/Content/Widget/VCard.php:98 src/Model/Event.php:80
#: src/Model/Event.php:107 src/Model/Event.php:466 src/Model/Event.php:915 #: src/Model/Event.php:107 src/Model/Event.php:466 src/Model/Event.php:915
#: src/Model/Profile.php:368 src/Module/Contact/Profile.php:369 #: src/Model/Profile.php:370 src/Module/Contact/Profile.php:369
#: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:185 #: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:185
#: src/Module/Profile/Profile.php:194 #: src/Module/Profile/Profile.php:194
msgid "Location:" msgid "Location:"
@ -411,7 +411,7 @@ msgstr ""
#: src/Module/Install.php:252 src/Module/Install.php:294 #: src/Module/Install.php:252 src/Module/Install.php:294
#: src/Module/Install.php:331 src/Module/Invite.php:177 #: src/Module/Install.php:331 src/Module/Invite.php:177
#: src/Module/Item/Compose.php:150 src/Module/Profile/Profile.php:247 #: src/Module/Item/Compose.php:150 src/Module/Profile/Profile.php:247
#: src/Module/Settings/Profile/Index.php:222 src/Object/Post.php:985 #: src/Module/Settings/Profile/Index.php:222 src/Object/Post.php:987
#: view/theme/duepuntozero/config.php:69 view/theme/frio/config.php:160 #: view/theme/duepuntozero/config.php:69 view/theme/frio/config.php:160
#: view/theme/quattro/config.php:71 view/theme/vier/config.php:119 #: view/theme/quattro/config.php:71 view/theme/vier/config.php:119
msgid "Submit" msgid "Submit"
@ -465,7 +465,7 @@ msgid "OStatus support is disabled. Contact can't be added."
msgstr "" msgstr ""
#: mod/follow.php:138 src/Content/Item.php:455 src/Content/Widget.php:76 #: mod/follow.php:138 src/Content/Item.php:455 src/Content/Widget.php:76
#: src/Model/Contact.php:1083 src/Model/Contact.php:1095 #: src/Model/Contact.php:1080 src/Model/Contact.php:1092
#: view/theme/vier/theme.php:172 #: view/theme/vier/theme.php:172
msgid "Connect/Follow" msgid "Connect/Follow"
msgstr "" msgstr ""
@ -809,51 +809,51 @@ msgstr ""
msgid "Personal notes are visible only by yourself." msgid "Personal notes are visible only by yourself."
msgstr "" msgstr ""
#: mod/ostatus_subscribe.php:37 #: mod/ostatus_subscribe.php:39
msgid "Subscribing to contacts" msgid "Subscribing to contacts"
msgstr "" msgstr ""
#: mod/ostatus_subscribe.php:47 #: mod/ostatus_subscribe.php:49
msgid "No contact provided." msgid "No contact provided."
msgstr "" msgstr ""
#: mod/ostatus_subscribe.php:53 #: mod/ostatus_subscribe.php:55
msgid "Couldn't fetch information for contact." msgid "Couldn't fetch information for contact."
msgstr "" msgstr ""
#: mod/ostatus_subscribe.php:64 #: mod/ostatus_subscribe.php:66
msgid "Couldn't fetch friends for contact." msgid "Couldn't fetch friends for contact."
msgstr "" msgstr ""
#: mod/ostatus_subscribe.php:70 mod/ostatus_subscribe.php:81 #: mod/ostatus_subscribe.php:72 mod/ostatus_subscribe.php:83
msgid "Couldn't fetch following contacts." msgid "Couldn't fetch following contacts."
msgstr "" msgstr ""
#: mod/ostatus_subscribe.php:76 #: mod/ostatus_subscribe.php:78
msgid "Couldn't fetch remote profile." msgid "Couldn't fetch remote profile."
msgstr "" msgstr ""
#: mod/ostatus_subscribe.php:86 #: mod/ostatus_subscribe.php:88
msgid "Unsupported network" msgid "Unsupported network"
msgstr "" msgstr ""
#: mod/ostatus_subscribe.php:102 mod/repair_ostatus.php:51 #: mod/ostatus_subscribe.php:104 mod/repair_ostatus.php:51
msgid "Done" msgid "Done"
msgstr "" msgstr ""
#: mod/ostatus_subscribe.php:116 #: mod/ostatus_subscribe.php:118
msgid "success" msgid "success"
msgstr "" msgstr ""
#: mod/ostatus_subscribe.php:118 #: mod/ostatus_subscribe.php:120
msgid "failed" msgid "failed"
msgstr "" msgstr ""
#: mod/ostatus_subscribe.php:121 #: mod/ostatus_subscribe.php:123
msgid "ignored" msgid "ignored"
msgstr "" msgstr ""
#: mod/ostatus_subscribe.php:126 mod/repair_ostatus.php:57 #: mod/ostatus_subscribe.php:128 mod/repair_ostatus.php:57
msgid "Keep this window open until done." msgid "Keep this window open until done."
msgstr "" msgstr ""
@ -1066,12 +1066,12 @@ msgstr ""
#: mod/photos.php:1339 mod/photos.php:1395 mod/photos.php:1469 #: mod/photos.php:1339 mod/photos.php:1395 mod/photos.php:1469
#: src/Module/Contact.php:544 src/Module/Item/Compose.php:148 #: src/Module/Contact.php:544 src/Module/Item/Compose.php:148
#: src/Object/Post.php:982 #: src/Object/Post.php:984
msgid "This is you" msgid "This is you"
msgstr "" msgstr ""
#: mod/photos.php:1341 mod/photos.php:1397 mod/photos.php:1471 #: mod/photos.php:1341 mod/photos.php:1397 mod/photos.php:1471
#: src/Object/Post.php:514 src/Object/Post.php:984 #: src/Object/Post.php:516 src/Object/Post.php:986
msgid "Comment" msgid "Comment"
msgstr "" msgstr ""
@ -1109,11 +1109,11 @@ msgstr ""
msgid "View Album" msgid "View Album"
msgstr "" msgstr ""
#: mod/redir.php:49 mod/redir.php:102 #: mod/redir.php:51 mod/redir.php:104
msgid "Bad Request." msgid "Bad Request."
msgstr "" msgstr ""
#: mod/redir.php:55 mod/redir.php:129 src/Module/Contact/Advanced.php:70 #: mod/redir.php:57 mod/redir.php:131 src/Module/Contact/Advanced.php:70
#: src/Module/Contact/Advanced.php:109 src/Module/Contact/Contacts.php:55 #: src/Module/Contact/Advanced.php:109 src/Module/Contact/Contacts.php:55
#: src/Module/Contact/Conversations.php:78 #: src/Module/Contact/Conversations.php:78
#: src/Module/Contact/Conversations.php:83 #: src/Module/Contact/Conversations.php:83
@ -2068,7 +2068,7 @@ msgstr ""
msgid "File upload failed." msgid "File upload failed."
msgstr "" msgstr ""
#: mod/wall_upload.php:221 src/Model/Photo.php:1049 #: mod/wall_upload.php:221 src/Model/Photo.php:1053
msgid "Wall Photos" msgid "Wall Photos"
msgstr "" msgstr ""
@ -2391,7 +2391,7 @@ msgid "%s attends maybe."
msgstr "" msgstr ""
#: src/Content/Conversation.php:222 src/Content/Conversation.php:260 #: src/Content/Conversation.php:222 src/Content/Conversation.php:260
#: src/Content/Conversation.php:849 #: src/Content/Conversation.php:858
#, php-format #, php-format
msgid "%s reshared this." msgid "%s reshared this."
msgstr "" msgstr ""
@ -2465,7 +2465,7 @@ msgid "Visible to <strong>everybody</strong>"
msgstr "" msgstr ""
#: src/Content/Conversation.php:308 src/Module/Item/Compose.php:159 #: src/Content/Conversation.php:308 src/Module/Item/Compose.php:159
#: src/Object/Post.php:995 #: src/Object/Post.php:997
msgid "Please enter a image/video/audio/webpage URL:" msgid "Please enter a image/video/audio/webpage URL:"
msgstr "" msgstr ""
@ -2489,12 +2489,12 @@ msgstr ""
msgid "New Post" msgid "New Post"
msgstr "" msgstr ""
#: src/Content/Conversation.php:325 src/Object/Post.php:497 #: src/Content/Conversation.php:325 src/Object/Post.php:499
msgid "Share" msgid "Share"
msgstr "" msgstr ""
#: src/Content/Conversation.php:336 src/Module/Item/Compose.php:156 #: src/Content/Conversation.php:336 src/Module/Item/Compose.php:156
#: src/Object/Post.php:992 #: src/Object/Post.php:994
msgid "Image" msgid "Image"
msgstr "" msgstr ""
@ -2506,88 +2506,92 @@ msgstr ""
msgid "Scheduled at" msgid "Scheduled at"
msgstr "" msgstr ""
#: src/Content/Conversation.php:651 src/Object/Post.php:468 #: src/Content/Conversation.php:643 src/Object/Post.php:235
#: src/Object/Post.php:469 msgid "Pinned item"
msgstr ""
#: src/Content/Conversation.php:659 src/Object/Post.php:470
#: src/Object/Post.php:471
#, php-format #, php-format
msgid "View %s's profile @ %s" msgid "View %s's profile @ %s"
msgstr "" msgstr ""
#: src/Content/Conversation.php:664 src/Object/Post.php:456 #: src/Content/Conversation.php:672 src/Object/Post.php:458
msgid "Categories:" msgid "Categories:"
msgstr "" msgstr ""
#: src/Content/Conversation.php:665 src/Object/Post.php:457 #: src/Content/Conversation.php:673 src/Object/Post.php:459
msgid "Filed under:" msgid "Filed under:"
msgstr "" msgstr ""
#: src/Content/Conversation.php:673 src/Object/Post.php:482 #: src/Content/Conversation.php:681 src/Object/Post.php:484
#, php-format #, php-format
msgid "%s from %s" msgid "%s from %s"
msgstr "" msgstr ""
#: src/Content/Conversation.php:688 #: src/Content/Conversation.php:697
msgid "View in context" msgid "View in context"
msgstr "" msgstr ""
#: src/Content/Conversation.php:753 #: src/Content/Conversation.php:762
msgid "remove" msgid "remove"
msgstr "" msgstr ""
#: src/Content/Conversation.php:757 #: src/Content/Conversation.php:766
msgid "Delete Selected Items" msgid "Delete Selected Items"
msgstr "" msgstr ""
#: src/Content/Conversation.php:821 src/Content/Conversation.php:824 #: src/Content/Conversation.php:830 src/Content/Conversation.php:833
#: src/Content/Conversation.php:827 src/Content/Conversation.php:830 #: src/Content/Conversation.php:836 src/Content/Conversation.php:839
#, php-format #, php-format
msgid "You had been addressed (%s)." msgid "You had been addressed (%s)."
msgstr "" msgstr ""
#: src/Content/Conversation.php:833 #: src/Content/Conversation.php:842
#, php-format #, php-format
msgid "You are following %s." msgid "You are following %s."
msgstr "" msgstr ""
#: src/Content/Conversation.php:836 #: src/Content/Conversation.php:845
msgid "Tagged" msgid "Tagged"
msgstr "" msgstr ""
#: src/Content/Conversation.php:851 #: src/Content/Conversation.php:860
msgid "Reshared" msgid "Reshared"
msgstr "" msgstr ""
#: src/Content/Conversation.php:851 #: src/Content/Conversation.php:860
#, php-format #, php-format
msgid "Reshared by %s <%s>" msgid "Reshared by %s <%s>"
msgstr "" msgstr ""
#: src/Content/Conversation.php:854 #: src/Content/Conversation.php:863
#, php-format #, php-format
msgid "%s is participating in this thread." msgid "%s is participating in this thread."
msgstr "" msgstr ""
#: src/Content/Conversation.php:857 #: src/Content/Conversation.php:866
msgid "Stored" msgid "Stored"
msgstr "" msgstr ""
#: src/Content/Conversation.php:860 #: src/Content/Conversation.php:869
msgid "Global" msgid "Global"
msgstr "" msgstr ""
#: src/Content/Conversation.php:863 #: src/Content/Conversation.php:872
msgid "Relayed" msgid "Relayed"
msgstr "" msgstr ""
#: src/Content/Conversation.php:863 #: src/Content/Conversation.php:872
#, php-format #, php-format
msgid "Relayed by %s <%s>" msgid "Relayed by %s <%s>"
msgstr "" msgstr ""
#: src/Content/Conversation.php:866 #: src/Content/Conversation.php:875
msgid "Fetched" msgid "Fetched"
msgstr "" msgstr ""
#: src/Content/Conversation.php:866 #: src/Content/Conversation.php:875
#, php-format #, php-format
msgid "Fetched because of %s <%s>" msgid "Fetched because of %s <%s>"
msgstr "" msgstr ""
@ -2690,20 +2694,20 @@ msgstr ""
msgid "Display membership date in profile" msgid "Display membership date in profile"
msgstr "" msgstr ""
#: src/Content/ForumManager.php:145 src/Content/Nav.php:239 #: src/Content/ForumManager.php:151 src/Content/Nav.php:239
#: src/Content/Text/HTML.php:896 src/Content/Widget.php:520 #: src/Content/Text/HTML.php:896 src/Content/Widget.php:520
msgid "Forums" msgid "Forums"
msgstr "" msgstr ""
#: src/Content/ForumManager.php:147 #: src/Content/ForumManager.php:153
msgid "External link to forum" msgid "External link to forum"
msgstr "" msgstr ""
#: src/Content/ForumManager.php:150 src/Content/Widget.php:499 #: src/Content/ForumManager.php:156 src/Content/Widget.php:499
msgid "show less" msgid "show less"
msgstr "" msgstr ""
#: src/Content/ForumManager.php:151 src/Content/Widget.php:401 #: src/Content/ForumManager.php:157 src/Content/Widget.php:401
#: src/Content/Widget.php:500 #: src/Content/Widget.php:500
msgid "show more" msgid "show more"
msgstr "" msgstr ""
@ -2721,31 +2725,31 @@ msgstr ""
msgid "Follow Thread" msgid "Follow Thread"
msgstr "" msgstr ""
#: src/Content/Item.php:435 src/Model/Contact.php:1088 #: src/Content/Item.php:435 src/Model/Contact.php:1085
msgid "View Status" msgid "View Status"
msgstr "" msgstr ""
#: src/Content/Item.php:436 src/Content/Item.php:458 src/Model/Contact.php:1022 #: src/Content/Item.php:436 src/Content/Item.php:458 src/Model/Contact.php:1019
#: src/Model/Contact.php:1080 src/Model/Contact.php:1089 #: src/Model/Contact.php:1077 src/Model/Contact.php:1086
#: src/Module/Directory.php:157 src/Module/Settings/Profile/Index.php:225 #: src/Module/Directory.php:157 src/Module/Settings/Profile/Index.php:225
msgid "View Profile" msgid "View Profile"
msgstr "" msgstr ""
#: src/Content/Item.php:437 src/Model/Contact.php:1090 #: src/Content/Item.php:437 src/Model/Contact.php:1087
msgid "View Photos" msgid "View Photos"
msgstr "" msgstr ""
#: src/Content/Item.php:438 src/Model/Contact.php:1081 #: src/Content/Item.php:438 src/Model/Contact.php:1078
#: src/Model/Contact.php:1091 #: src/Model/Contact.php:1088
msgid "Network Posts" msgid "Network Posts"
msgstr "" msgstr ""
#: src/Content/Item.php:439 src/Model/Contact.php:1082 #: src/Content/Item.php:439 src/Model/Contact.php:1079
#: src/Model/Contact.php:1092 #: src/Model/Contact.php:1089
msgid "View Contact" msgid "View Contact"
msgstr "" msgstr ""
#: src/Content/Item.php:440 src/Model/Contact.php:1093 #: src/Content/Item.php:440 src/Model/Contact.php:1090
msgid "Send PM" msgid "Send PM"
msgstr "" msgstr ""
@ -2764,11 +2768,11 @@ msgstr ""
msgid "Ignore" msgid "Ignore"
msgstr "" msgstr ""
#: src/Content/Item.php:446 src/Object/Post.php:443 #: src/Content/Item.php:446 src/Object/Post.php:445
msgid "Languages" msgid "Languages"
msgstr "" msgstr ""
#: src/Content/Item.php:450 src/Model/Contact.php:1094 #: src/Content/Item.php:450 src/Model/Contact.php:1091
msgid "Poke" msgid "Poke"
msgstr "" msgstr ""
@ -3029,11 +3033,11 @@ msgstr ""
msgid "Site map" msgid "Site map"
msgstr "" msgstr ""
#: src/Content/OEmbed.php:298 #: src/Content/OEmbed.php:299
msgid "Embedding disabled" msgid "Embedding disabled"
msgstr "" msgstr ""
#: src/Content/OEmbed.php:416 #: src/Content/OEmbed.php:417
msgid "Embedded content" msgid "Embedded content"
msgstr "" msgstr ""
@ -3053,39 +3057,39 @@ msgstr ""
msgid "last" msgid "last"
msgstr "" msgstr ""
#: src/Content/Text/BBCode.php:987 src/Content/Text/BBCode.php:1781 #: src/Content/Text/BBCode.php:990 src/Content/Text/BBCode.php:1784
#: src/Content/Text/BBCode.php:1782 #: src/Content/Text/BBCode.php:1785
msgid "Image/photo" msgid "Image/photo"
msgstr "" msgstr ""
#: src/Content/Text/BBCode.php:1160 #: src/Content/Text/BBCode.php:1163
#, php-format #, php-format
msgid "" msgid ""
"<a href=\"%1$s\" target=\"_blank\" rel=\"noopener noreferrer\">%2$s</a> %3$s" "<a href=\"%1$s\" target=\"_blank\" rel=\"noopener noreferrer\">%2$s</a> %3$s"
msgstr "" msgstr ""
#: src/Content/Text/BBCode.php:1185 src/Model/Item.php:3204 #: src/Content/Text/BBCode.php:1188 src/Model/Item.php:3210
#: src/Model/Item.php:3210 src/Model/Item.php:3211 #: src/Model/Item.php:3216 src/Model/Item.php:3217
msgid "Link to source" msgid "Link to source"
msgstr "" msgstr ""
#: src/Content/Text/BBCode.php:1699 src/Content/Text/HTML.php:933 #: src/Content/Text/BBCode.php:1702 src/Content/Text/HTML.php:933
msgid "Click to open/close" msgid "Click to open/close"
msgstr "" msgstr ""
#: src/Content/Text/BBCode.php:1730 #: src/Content/Text/BBCode.php:1733
msgid "$1 wrote:" msgid "$1 wrote:"
msgstr "" msgstr ""
#: src/Content/Text/BBCode.php:1786 src/Content/Text/BBCode.php:1787 #: src/Content/Text/BBCode.php:1789 src/Content/Text/BBCode.php:1790
msgid "Encrypted content" msgid "Encrypted content"
msgstr "" msgstr ""
#: src/Content/Text/BBCode.php:2002 #: src/Content/Text/BBCode.php:2005
msgid "Invalid source protocol" msgid "Invalid source protocol"
msgstr "" msgstr ""
#: src/Content/Text/BBCode.php:2017 #: src/Content/Text/BBCode.php:2020
msgid "Invalid link protocol" msgid "Invalid link protocol"
msgstr "" msgstr ""
@ -3098,7 +3102,7 @@ msgid "The end"
msgstr "" msgstr ""
#: src/Content/Text/HTML.php:875 src/Content/Widget/VCard.php:103 #: src/Content/Text/HTML.php:875 src/Content/Widget/VCard.php:103
#: src/Model/Profile.php:454 #: src/Model/Profile.php:456
msgid "Follow" msgid "Follow"
msgstr "" msgstr ""
@ -3220,7 +3224,7 @@ msgstr ""
msgid "Organisations" msgid "Organisations"
msgstr "" msgstr ""
#: src/Content/Widget.php:519 src/Model/Contact.php:1498 #: src/Content/Widget.php:519 src/Model/Contact.php:1510
msgid "News" msgid "News"
msgstr "" msgstr ""
@ -3274,22 +3278,22 @@ msgstr[1] ""
msgid "More Trending Tags" msgid "More Trending Tags"
msgstr "" msgstr ""
#: src/Content/Widget/VCard.php:96 src/Model/Profile.php:373 #: src/Content/Widget/VCard.php:96 src/Model/Profile.php:375
#: src/Module/Contact/Profile.php:371 src/Module/Profile/Profile.php:176 #: src/Module/Contact/Profile.php:371 src/Module/Profile/Profile.php:176
msgid "XMPP:" msgid "XMPP:"
msgstr "" msgstr ""
#: src/Content/Widget/VCard.php:97 src/Model/Profile.php:374 #: src/Content/Widget/VCard.php:97 src/Model/Profile.php:376
#: src/Module/Contact/Profile.php:373 src/Module/Profile/Profile.php:180 #: src/Module/Contact/Profile.php:373 src/Module/Profile/Profile.php:180
msgid "Matrix:" msgid "Matrix:"
msgstr "" msgstr ""
#: src/Content/Widget/VCard.php:101 src/Model/Profile.php:466 #: src/Content/Widget/VCard.php:101 src/Model/Profile.php:468
#: src/Module/Notifications/Introductions.php:199 #: src/Module/Notifications/Introductions.php:199
msgid "Network:" msgid "Network:"
msgstr "" msgstr ""
#: src/Content/Widget/VCard.php:105 src/Model/Profile.php:456 #: src/Content/Widget/VCard.php:105 src/Model/Profile.php:458
msgid "Unfollow" msgid "Unfollow"
msgstr "" msgstr ""
@ -4044,81 +4048,81 @@ msgstr ""
msgid "Legacy module file not found: %s" msgid "Legacy module file not found: %s"
msgstr "" msgstr ""
#: src/Model/Contact.php:1084 src/Model/Contact.php:1096 #: src/Model/Contact.php:1081 src/Model/Contact.php:1093
msgid "UnFollow" msgid "UnFollow"
msgstr "" msgstr ""
#: src/Model/Contact.php:1102 src/Module/Admin/Users/Pending.php:107 #: src/Model/Contact.php:1099 src/Module/Admin/Users/Pending.php:107
#: src/Module/Notifications/Introductions.php:130 #: src/Module/Notifications/Introductions.php:130
#: src/Module/Notifications/Introductions.php:202 #: src/Module/Notifications/Introductions.php:202
msgid "Approve" msgid "Approve"
msgstr "" msgstr ""
#: src/Model/Contact.php:1494 #: src/Model/Contact.php:1506
msgid "Organisation" msgid "Organisation"
msgstr "" msgstr ""
#: src/Model/Contact.php:1502 #: src/Model/Contact.php:1514
msgid "Forum" msgid "Forum"
msgstr "" msgstr ""
#: src/Model/Contact.php:2437 #: src/Model/Contact.php:2453
msgid "Disallowed profile URL." msgid "Disallowed profile URL."
msgstr "" msgstr ""
#: src/Model/Contact.php:2442 src/Module/Friendica.php:81 #: src/Model/Contact.php:2458 src/Module/Friendica.php:81
msgid "Blocked domain" msgid "Blocked domain"
msgstr "" msgstr ""
#: src/Model/Contact.php:2447 #: src/Model/Contact.php:2463
msgid "Connect URL missing." msgid "Connect URL missing."
msgstr "" msgstr ""
#: src/Model/Contact.php:2456 #: src/Model/Contact.php:2472
msgid "" msgid ""
"The contact could not be added. Please check the relevant network " "The contact could not be added. Please check the relevant network "
"credentials in your Settings -> Social Networks page." "credentials in your Settings -> Social Networks page."
msgstr "" msgstr ""
#: src/Model/Contact.php:2493 #: src/Model/Contact.php:2509
msgid "The profile address specified does not provide adequate information." msgid "The profile address specified does not provide adequate information."
msgstr "" msgstr ""
#: src/Model/Contact.php:2495 #: src/Model/Contact.php:2511
msgid "No compatible communication protocols or feeds were discovered." msgid "No compatible communication protocols or feeds were discovered."
msgstr "" msgstr ""
#: src/Model/Contact.php:2498 #: src/Model/Contact.php:2514
msgid "An author or name was not found." msgid "An author or name was not found."
msgstr "" msgstr ""
#: src/Model/Contact.php:2501 #: src/Model/Contact.php:2517
msgid "No browser URL could be matched to this address." msgid "No browser URL could be matched to this address."
msgstr "" msgstr ""
#: src/Model/Contact.php:2504 #: src/Model/Contact.php:2520
msgid "" msgid ""
"Unable to match @-style Identity Address with a known protocol or email " "Unable to match @-style Identity Address with a known protocol or email "
"contact." "contact."
msgstr "" msgstr ""
#: src/Model/Contact.php:2505 #: src/Model/Contact.php:2521
msgid "Use mailto: in front of address to force email check." msgid "Use mailto: in front of address to force email check."
msgstr "" msgstr ""
#: src/Model/Contact.php:2511 #: src/Model/Contact.php:2527
msgid "" msgid ""
"The profile address specified belongs to a network which has been disabled " "The profile address specified belongs to a network which has been disabled "
"on this site." "on this site."
msgstr "" msgstr ""
#: src/Model/Contact.php:2516 #: src/Model/Contact.php:2532
msgid "" msgid ""
"Limited profile. This person will be unable to receive direct/personal " "Limited profile. This person will be unable to receive direct/personal "
"notifications from you." "notifications from you."
msgstr "" msgstr ""
#: src/Model/Contact.php:2575 #: src/Model/Contact.php:2591
msgid "Unable to retrieve contact information." msgid "Unable to retrieve contact information."
msgstr "" msgstr ""
@ -4264,7 +4268,7 @@ msgstr ""
msgid "bytes" msgid "bytes"
msgstr "" msgstr ""
#: src/Model/Item.php:3198 src/Model/Item.php:3199 #: src/Model/Item.php:3204 src/Model/Item.php:3205
msgid "View on separate page" msgid "View on separate page"
msgstr "" msgstr ""
@ -4272,282 +4276,282 @@ msgstr ""
msgid "[no subject]" msgid "[no subject]"
msgstr "" msgstr ""
#: src/Model/Profile.php:356 src/Module/Profile/Profile.php:256 #: src/Model/Profile.php:358 src/Module/Profile/Profile.php:256
#: src/Module/Profile/Profile.php:258 #: src/Module/Profile/Profile.php:258
msgid "Edit profile" msgid "Edit profile"
msgstr "" msgstr ""
#: src/Model/Profile.php:358 #: src/Model/Profile.php:360
msgid "Change profile photo" msgid "Change profile photo"
msgstr "" msgstr ""
#: src/Model/Profile.php:371 src/Module/Directory.php:152 #: src/Model/Profile.php:373 src/Module/Directory.php:152
#: src/Module/Profile/Profile.php:184 #: src/Module/Profile/Profile.php:184
msgid "Homepage:" msgid "Homepage:"
msgstr "" msgstr ""
#: src/Model/Profile.php:372 src/Module/Contact/Profile.php:375 #: src/Model/Profile.php:374 src/Module/Contact/Profile.php:375
#: src/Module/Notifications/Introductions.php:187 #: src/Module/Notifications/Introductions.php:187
msgid "About:" msgid "About:"
msgstr "" msgstr ""
#: src/Model/Profile.php:458 #: src/Model/Profile.php:460
msgid "Atom feed" msgid "Atom feed"
msgstr "" msgstr ""
#: src/Model/Profile.php:502 #: src/Model/Profile.php:504
msgid "F d" msgid "F d"
msgstr "" msgstr ""
#: src/Model/Profile.php:566 src/Model/Profile.php:650 #: src/Model/Profile.php:568 src/Model/Profile.php:652
msgid "[today]" msgid "[today]"
msgstr "" msgstr ""
#: src/Model/Profile.php:575 #: src/Model/Profile.php:577
msgid "Birthday Reminders" msgid "Birthday Reminders"
msgstr "" msgstr ""
#: src/Model/Profile.php:576 #: src/Model/Profile.php:578
msgid "Birthdays this week:" msgid "Birthdays this week:"
msgstr "" msgstr ""
#: src/Model/Profile.php:599 #: src/Model/Profile.php:601
msgid "g A l F d" msgid "g A l F d"
msgstr "" msgstr ""
#: src/Model/Profile.php:637 #: src/Model/Profile.php:639
msgid "[No description]" msgid "[No description]"
msgstr "" msgstr ""
#: src/Model/Profile.php:663 #: src/Model/Profile.php:665
msgid "Event Reminders" msgid "Event Reminders"
msgstr "" msgstr ""
#: src/Model/Profile.php:664 #: src/Model/Profile.php:666
msgid "Upcoming events the next 7 days:" msgid "Upcoming events the next 7 days:"
msgstr "" msgstr ""
#: src/Model/Profile.php:852 #: src/Model/Profile.php:854
#, php-format #, php-format
msgid "OpenWebAuth: %1$s welcomes %2$s" msgid "OpenWebAuth: %1$s welcomes %2$s"
msgstr "" msgstr ""
#: src/Model/Profile.php:984 #: src/Model/Profile.php:986
msgid "Hometown:" msgid "Hometown:"
msgstr "" msgstr ""
#: src/Model/Profile.php:985 #: src/Model/Profile.php:987
msgid "Marital Status:" msgid "Marital Status:"
msgstr "" msgstr ""
#: src/Model/Profile.php:986 #: src/Model/Profile.php:988
msgid "With:" msgid "With:"
msgstr "" msgstr ""
#: src/Model/Profile.php:987 #: src/Model/Profile.php:989
msgid "Since:" msgid "Since:"
msgstr "" msgstr ""
#: src/Model/Profile.php:988 #: src/Model/Profile.php:990
msgid "Sexual Preference:" msgid "Sexual Preference:"
msgstr "" msgstr ""
#: src/Model/Profile.php:989 #: src/Model/Profile.php:991
msgid "Political Views:" msgid "Political Views:"
msgstr "" msgstr ""
#: src/Model/Profile.php:990 #: src/Model/Profile.php:992
msgid "Religious Views:" msgid "Religious Views:"
msgstr "" msgstr ""
#: src/Model/Profile.php:991 #: src/Model/Profile.php:993
msgid "Likes:" msgid "Likes:"
msgstr "" msgstr ""
#: src/Model/Profile.php:992 #: src/Model/Profile.php:994
msgid "Dislikes:" msgid "Dislikes:"
msgstr "" msgstr ""
#: src/Model/Profile.php:993 #: src/Model/Profile.php:995
msgid "Title/Description:" msgid "Title/Description:"
msgstr "" msgstr ""
#: src/Model/Profile.php:994 src/Module/Admin/Summary.php:233 #: src/Model/Profile.php:996 src/Module/Admin/Summary.php:235
msgid "Summary" msgid "Summary"
msgstr "" msgstr ""
#: src/Model/Profile.php:995 #: src/Model/Profile.php:997
msgid "Musical interests" msgid "Musical interests"
msgstr "" msgstr ""
#: src/Model/Profile.php:996 #: src/Model/Profile.php:998
msgid "Books, literature" msgid "Books, literature"
msgstr "" msgstr ""
#: src/Model/Profile.php:997 #: src/Model/Profile.php:999
msgid "Television" msgid "Television"
msgstr "" msgstr ""
#: src/Model/Profile.php:998 #: src/Model/Profile.php:1000
msgid "Film/dance/culture/entertainment" msgid "Film/dance/culture/entertainment"
msgstr "" msgstr ""
#: src/Model/Profile.php:999 #: src/Model/Profile.php:1001
msgid "Hobbies/Interests" msgid "Hobbies/Interests"
msgstr "" msgstr ""
#: src/Model/Profile.php:1000 #: src/Model/Profile.php:1002
msgid "Love/romance" msgid "Love/romance"
msgstr "" msgstr ""
#: src/Model/Profile.php:1001 #: src/Model/Profile.php:1003
msgid "Work/employment" msgid "Work/employment"
msgstr "" msgstr ""
#: src/Model/Profile.php:1002 #: src/Model/Profile.php:1004
msgid "School/education" msgid "School/education"
msgstr "" msgstr ""
#: src/Model/Profile.php:1003 #: src/Model/Profile.php:1005
msgid "Contact information and Social Networks" msgid "Contact information and Social Networks"
msgstr "" msgstr ""
#: src/Model/User.php:208 src/Model/User.php:1056 #: src/Model/User.php:210 src/Model/User.php:1058
msgid "SERIOUS ERROR: Generation of security keys failed." msgid "SERIOUS ERROR: Generation of security keys failed."
msgstr "" msgstr ""
#: src/Model/User.php:568 src/Model/User.php:601 #: src/Model/User.php:570 src/Model/User.php:603
msgid "Login failed" msgid "Login failed"
msgstr "" msgstr ""
#: src/Model/User.php:633 #: src/Model/User.php:635
msgid "Not enough information to authenticate" msgid "Not enough information to authenticate"
msgstr "" msgstr ""
#: src/Model/User.php:728 #: src/Model/User.php:730
msgid "Password can't be empty" msgid "Password can't be empty"
msgstr "" msgstr ""
#: src/Model/User.php:747 #: src/Model/User.php:749
msgid "Empty passwords are not allowed." msgid "Empty passwords are not allowed."
msgstr "" msgstr ""
#: src/Model/User.php:751 #: src/Model/User.php:753
msgid "" msgid ""
"The new password has been exposed in a public data dump, please choose " "The new password has been exposed in a public data dump, please choose "
"another." "another."
msgstr "" msgstr ""
#: src/Model/User.php:757 #: src/Model/User.php:759
msgid "" msgid ""
"The password can't contain accentuated letters, white spaces or colons (:)" "The password can't contain accentuated letters, white spaces or colons (:)"
msgstr "" msgstr ""
#: src/Model/User.php:936 #: src/Model/User.php:938
msgid "Passwords do not match. Password unchanged." msgid "Passwords do not match. Password unchanged."
msgstr "" msgstr ""
#: src/Model/User.php:943 #: src/Model/User.php:945
msgid "An invitation is required." msgid "An invitation is required."
msgstr "" msgstr ""
#: src/Model/User.php:947 #: src/Model/User.php:949
msgid "Invitation could not be verified." msgid "Invitation could not be verified."
msgstr "" msgstr ""
#: src/Model/User.php:955 #: src/Model/User.php:957
msgid "Invalid OpenID url" msgid "Invalid OpenID url"
msgstr "" msgstr ""
#: src/Model/User.php:968 src/Security/Authentication.php:235 #: src/Model/User.php:970 src/Security/Authentication.php:235
msgid "" msgid ""
"We encountered a problem while logging in with the OpenID you provided. " "We encountered a problem while logging in with the OpenID you provided. "
"Please check the correct spelling of the ID." "Please check the correct spelling of the ID."
msgstr "" msgstr ""
#: src/Model/User.php:968 src/Security/Authentication.php:235 #: src/Model/User.php:970 src/Security/Authentication.php:235
msgid "The error message was:" msgid "The error message was:"
msgstr "" msgstr ""
#: src/Model/User.php:974 #: src/Model/User.php:976
msgid "Please enter the required information." msgid "Please enter the required information."
msgstr "" msgstr ""
#: src/Model/User.php:988 #: src/Model/User.php:990
#, php-format #, php-format
msgid "" msgid ""
"system.username_min_length (%s) and system.username_max_length (%s) are " "system.username_min_length (%s) and system.username_max_length (%s) are "
"excluding each other, swapping values." "excluding each other, swapping values."
msgstr "" msgstr ""
#: src/Model/User.php:995 #: src/Model/User.php:997
#, php-format #, php-format
msgid "Username should be at least %s character." msgid "Username should be at least %s character."
msgid_plural "Username should be at least %s characters." msgid_plural "Username should be at least %s characters."
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: src/Model/User.php:999 #: src/Model/User.php:1001
#, php-format #, php-format
msgid "Username should be at most %s character." msgid "Username should be at most %s character."
msgid_plural "Username should be at most %s characters." msgid_plural "Username should be at most %s characters."
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: src/Model/User.php:1007 #: src/Model/User.php:1009
msgid "That doesn't appear to be your full (First Last) name." msgid "That doesn't appear to be your full (First Last) name."
msgstr "" msgstr ""
#: src/Model/User.php:1012 #: src/Model/User.php:1014
msgid "Your email domain is not among those allowed on this site." msgid "Your email domain is not among those allowed on this site."
msgstr "" msgstr ""
#: src/Model/User.php:1016 #: src/Model/User.php:1018
msgid "Not a valid email address." msgid "Not a valid email address."
msgstr "" msgstr ""
#: src/Model/User.php:1019 #: src/Model/User.php:1021
msgid "The nickname was blocked from registration by the nodes admin." msgid "The nickname was blocked from registration by the nodes admin."
msgstr "" msgstr ""
#: src/Model/User.php:1023 src/Model/User.php:1031 #: src/Model/User.php:1025 src/Model/User.php:1033
msgid "Cannot use that email." msgid "Cannot use that email."
msgstr "" msgstr ""
#: src/Model/User.php:1038 #: src/Model/User.php:1040
msgid "Your nickname can only contain a-z, 0-9 and _." msgid "Your nickname can only contain a-z, 0-9 and _."
msgstr "" msgstr ""
#: src/Model/User.php:1046 src/Model/User.php:1103 #: src/Model/User.php:1048 src/Model/User.php:1105
msgid "Nickname is already registered. Please choose another." msgid "Nickname is already registered. Please choose another."
msgstr "" msgstr ""
#: src/Model/User.php:1090 src/Model/User.php:1094 #: src/Model/User.php:1092 src/Model/User.php:1096
msgid "An error occurred during registration. Please try again." msgid "An error occurred during registration. Please try again."
msgstr "" msgstr ""
#: src/Model/User.php:1117 #: src/Model/User.php:1119
msgid "An error occurred creating your default profile. Please try again." msgid "An error occurred creating your default profile. Please try again."
msgstr "" msgstr ""
#: src/Model/User.php:1124 #: src/Model/User.php:1126
msgid "An error occurred creating your self contact. Please try again." msgid "An error occurred creating your self contact. Please try again."
msgstr "" msgstr ""
#: src/Model/User.php:1129 #: src/Model/User.php:1131
msgid "Friends" msgid "Friends"
msgstr "" msgstr ""
#: src/Model/User.php:1133 #: src/Model/User.php:1135
msgid "" msgid ""
"An error occurred creating your default contact group. Please try again." "An error occurred creating your default contact group. Please try again."
msgstr "" msgstr ""
#: src/Model/User.php:1171 #: src/Model/User.php:1174
msgid "Profile Photos" msgid "Profile Photos"
msgstr "" msgstr ""
#: src/Model/User.php:1365 #: src/Model/User.php:1368
#, php-format #, php-format
msgid "" msgid ""
"\n" "\n"
@ -4555,7 +4559,7 @@ msgid ""
"\t\t\tthe administrator of %2$s has set up an account for you." "\t\t\tthe administrator of %2$s has set up an account for you."
msgstr "" msgstr ""
#: src/Model/User.php:1368 #: src/Model/User.php:1371
#, php-format #, php-format
msgid "" msgid ""
"\n" "\n"
@ -4592,12 +4596,12 @@ msgid ""
"\t\tThank you and welcome to %4$s." "\t\tThank you and welcome to %4$s."
msgstr "" msgstr ""
#: src/Model/User.php:1401 src/Model/User.php:1508 #: src/Model/User.php:1404 src/Model/User.php:1511
#, php-format #, php-format
msgid "Registration details for %s" msgid "Registration details for %s"
msgstr "" msgstr ""
#: src/Model/User.php:1421 #: src/Model/User.php:1424
#, php-format #, php-format
msgid "" msgid ""
"\n" "\n"
@ -4613,12 +4617,12 @@ msgid ""
"\t\t" "\t\t"
msgstr "" msgstr ""
#: src/Model/User.php:1440 #: src/Model/User.php:1443
#, php-format #, php-format
msgid "Registration at %s" msgid "Registration at %s"
msgstr "" msgstr ""
#: src/Model/User.php:1464 #: src/Model/User.php:1467
#, php-format #, php-format
msgid "" msgid ""
"\n" "\n"
@ -4627,7 +4631,7 @@ msgid ""
"\t\t\t" "\t\t\t"
msgstr "" msgstr ""
#: src/Model/User.php:1472 #: src/Model/User.php:1475
#, php-format #, php-format
msgid "" msgid ""
"\n" "\n"
@ -4697,7 +4701,7 @@ msgstr ""
#: src/Module/Admin/Federation.php:194 src/Module/Admin/Item/Delete.php:64 #: src/Module/Admin/Federation.php:194 src/Module/Admin/Item/Delete.php:64
#: src/Module/Admin/Logs/Settings.php:79 src/Module/Admin/Logs/View.php:84 #: src/Module/Admin/Logs/Settings.php:79 src/Module/Admin/Logs/View.php:84
#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:498 #: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:498
#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:232 #: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:234
#: src/Module/Admin/Themes/Details.php:90 src/Module/Admin/Themes/Index.php:111 #: src/Module/Admin/Themes/Details.php:90 src/Module/Admin/Themes/Index.php:111
#: src/Module/Admin/Tos.php:75 src/Module/Admin/Users/Active.php:136 #: src/Module/Admin/Tos.php:75 src/Module/Admin/Users/Active.php:136
#: src/Module/Admin/Users/Blocked.php:137 src/Module/Admin/Users/Create.php:61 #: src/Module/Admin/Users/Blocked.php:137 src/Module/Admin/Users/Create.php:61
@ -6388,12 +6392,12 @@ msgstr ""
msgid "Database (legacy)" msgid "Database (legacy)"
msgstr "" msgstr ""
#: src/Module/Admin/Summary.php:53 #: src/Module/Admin/Summary.php:55
#, php-format #, php-format
msgid "Template engine (%s) error: %s" msgid "Template engine (%s) error: %s"
msgstr "" msgstr ""
#: src/Module/Admin/Summary.php:57 #: src/Module/Admin/Summary.php:59
#, php-format #, php-format
msgid "" msgid ""
"Your DB still runs with MyISAM tables. You should change the engine type to " "Your DB still runs with MyISAM tables. You should change the engine type to "
@ -6404,7 +6408,7 @@ msgid ""
"automatic conversion.<br />" "automatic conversion.<br />"
msgstr "" msgstr ""
#: src/Module/Admin/Summary.php:62 #: src/Module/Admin/Summary.php:64
#, php-format #, php-format
msgid "" msgid ""
"Your DB still runs with InnoDB tables in the Antelope file format. You " "Your DB still runs with InnoDB tables in the Antelope file format. You "
@ -6415,7 +6419,7 @@ msgid ""
"installation for an automatic conversion.<br />" "installation for an automatic conversion.<br />"
msgstr "" msgstr ""
#: src/Module/Admin/Summary.php:72 #: src/Module/Admin/Summary.php:74
#, php-format #, php-format
msgid "" msgid ""
"Your table_definition_cache is too low (%d). This can lead to the database " "Your table_definition_cache is too low (%d). This can lead to the database "
@ -6423,39 +6427,39 @@ msgid ""
"to %d. See <a href=\"%s\">here</a> for more information.<br />" "to %d. See <a href=\"%s\">here</a> for more information.<br />"
msgstr "" msgstr ""
#: src/Module/Admin/Summary.php:82 #: src/Module/Admin/Summary.php:84
#, php-format #, php-format
msgid "" msgid ""
"There is a new version of Friendica available for download. Your current " "There is a new version of Friendica available for download. Your current "
"version is %1$s, upstream version is %2$s" "version is %1$s, upstream version is %2$s"
msgstr "" msgstr ""
#: src/Module/Admin/Summary.php:91 #: src/Module/Admin/Summary.php:93
msgid "" msgid ""
"The database update failed. Please run \"php bin/console.php dbstructure " "The database update failed. Please run \"php bin/console.php dbstructure "
"update\" from the command line and have a look at the errors that might " "update\" from the command line and have a look at the errors that might "
"appear." "appear."
msgstr "" msgstr ""
#: src/Module/Admin/Summary.php:95 #: src/Module/Admin/Summary.php:97
msgid "" msgid ""
"The last update failed. Please run \"php bin/console.php dbstructure update" "The last update failed. Please run \"php bin/console.php dbstructure update"
"\" from the command line and have a look at the errors that might appear. " "\" from the command line and have a look at the errors that might appear. "
"(Some of the errors are possibly inside the logfile.)" "(Some of the errors are possibly inside the logfile.)"
msgstr "" msgstr ""
#: src/Module/Admin/Summary.php:100 #: src/Module/Admin/Summary.php:102
msgid "The worker was never executed. Please check your database structure!" msgid "The worker was never executed. Please check your database structure!"
msgstr "" msgstr ""
#: src/Module/Admin/Summary.php:102 #: src/Module/Admin/Summary.php:104
#, php-format #, php-format
msgid "" msgid ""
"The last worker execution was on %s UTC. This is older than one hour. Please " "The last worker execution was on %s UTC. This is older than one hour. Please "
"check your crontab settings." "check your crontab settings."
msgstr "" msgstr ""
#: src/Module/Admin/Summary.php:107 #: src/Module/Admin/Summary.php:109
#, php-format #, php-format
msgid "" msgid ""
"Friendica's configuration now is stored in config/local.config.php, please " "Friendica's configuration now is stored in config/local.config.php, please "
@ -6464,7 +6468,7 @@ msgid ""
"with the transition." "with the transition."
msgstr "" msgstr ""
#: src/Module/Admin/Summary.php:111 #: src/Module/Admin/Summary.php:113
#, php-format #, php-format
msgid "" msgid ""
"Friendica's configuration now is stored in config/local.config.php, please " "Friendica's configuration now is stored in config/local.config.php, please "
@ -6473,7 +6477,7 @@ msgid ""
"with the transition." "with the transition."
msgstr "" msgstr ""
#: src/Module/Admin/Summary.php:117 #: src/Module/Admin/Summary.php:119
#, php-format #, php-format
msgid "" msgid ""
"<a href=\"%s\">%s</a> is not reachable on your system. This is a severe " "<a href=\"%s\">%s</a> is not reachable on your system. This is a severe "
@ -6481,82 +6485,82 @@ msgid ""
"href=\"%s\">the installation page</a> for help." "href=\"%s\">the installation page</a> for help."
msgstr "" msgstr ""
#: src/Module/Admin/Summary.php:135 #: src/Module/Admin/Summary.php:137
#, php-format #, php-format
msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" msgid "The logfile '%s' is not usable. No logging possible (error: '%s')"
msgstr "" msgstr ""
#: src/Module/Admin/Summary.php:149 #: src/Module/Admin/Summary.php:151
#, php-format #, php-format
msgid "The debug logfile '%s' is not usable. No logging possible (error: '%s')" msgid "The debug logfile '%s' is not usable. No logging possible (error: '%s')"
msgstr "" msgstr ""
#: src/Module/Admin/Summary.php:165 #: src/Module/Admin/Summary.php:167
#, php-format #, php-format
msgid "" msgid ""
"Friendica's system.basepath was updated from '%s' to '%s'. Please remove the " "Friendica's system.basepath was updated from '%s' to '%s'. Please remove the "
"system.basepath from your db to avoid differences." "system.basepath from your db to avoid differences."
msgstr "" msgstr ""
#: src/Module/Admin/Summary.php:173 #: src/Module/Admin/Summary.php:175
#, php-format #, php-format
msgid "" msgid ""
"Friendica's current system.basepath '%s' is wrong and the config file '%s' " "Friendica's current system.basepath '%s' is wrong and the config file '%s' "
"isn't used." "isn't used."
msgstr "" msgstr ""
#: src/Module/Admin/Summary.php:181 #: src/Module/Admin/Summary.php:183
#, php-format #, php-format
msgid "" msgid ""
"Friendica's current system.basepath '%s' is not equal to the config file " "Friendica's current system.basepath '%s' is not equal to the config file "
"'%s'. Please fix your configuration." "'%s'. Please fix your configuration."
msgstr "" msgstr ""
#: src/Module/Admin/Summary.php:188 #: src/Module/Admin/Summary.php:190
msgid "Normal Account" msgid "Normal Account"
msgstr "" msgstr ""
#: src/Module/Admin/Summary.php:189 #: src/Module/Admin/Summary.php:191
msgid "Automatic Follower Account" msgid "Automatic Follower Account"
msgstr "" msgstr ""
#: src/Module/Admin/Summary.php:190 #: src/Module/Admin/Summary.php:192
msgid "Public Forum Account" msgid "Public Forum Account"
msgstr "" msgstr ""
#: src/Module/Admin/Summary.php:191 #: src/Module/Admin/Summary.php:193
msgid "Automatic Friend Account" msgid "Automatic Friend Account"
msgstr "" msgstr ""
#: src/Module/Admin/Summary.php:192 #: src/Module/Admin/Summary.php:194
msgid "Blog Account" msgid "Blog Account"
msgstr "" msgstr ""
#: src/Module/Admin/Summary.php:193 #: src/Module/Admin/Summary.php:195
msgid "Private Forum Account" msgid "Private Forum Account"
msgstr "" msgstr ""
#: src/Module/Admin/Summary.php:213 #: src/Module/Admin/Summary.php:215
msgid "Message queues" msgid "Message queues"
msgstr "" msgstr ""
#: src/Module/Admin/Summary.php:219 #: src/Module/Admin/Summary.php:221
msgid "Server Settings" msgid "Server Settings"
msgstr "" msgstr ""
#: src/Module/Admin/Summary.php:235 #: src/Module/Admin/Summary.php:237
msgid "Registered users" msgid "Registered users"
msgstr "" msgstr ""
#: src/Module/Admin/Summary.php:237 #: src/Module/Admin/Summary.php:239
msgid "Pending registrations" msgid "Pending registrations"
msgstr "" msgstr ""
#: src/Module/Admin/Summary.php:238 #: src/Module/Admin/Summary.php:240
msgid "Version" msgid "Version"
msgstr "" msgstr ""
#: src/Module/Admin/Summary.php:242 #: src/Module/Admin/Summary.php:244
msgid "Active addons" msgid "Active addons"
msgstr "" msgstr ""
@ -6853,11 +6857,6 @@ msgstr ""
msgid "Only starting posts can be muted" msgid "Only starting posts can be muted"
msgstr "" msgstr ""
#: src/Module/Api/Mastodon/Statuses/Pin.php:50
#: src/Module/Api/Mastodon/Statuses/Unpin.php:50
msgid "Only starting posts can be pinned"
msgstr ""
#: src/Module/Api/Mastodon/Statuses/Reblog.php:53 #: src/Module/Api/Mastodon/Statuses/Reblog.php:53
#, php-format #, php-format
msgid "Posts from %s can't be shared" msgid "Posts from %s can't be shared"
@ -7844,12 +7843,12 @@ msgstr ""
msgid "Twitter Source / Tweet URL (requires API key)" msgid "Twitter Source / Tweet URL (requires API key)"
msgstr "" msgstr ""
#: src/Module/Debug/Feed.php:50 src/Module/Filer/SaveTag.php:46 #: src/Module/Debug/Feed.php:51 src/Module/Filer/SaveTag.php:46
#: src/Module/Settings/Profile/Index.php:141 #: src/Module/Settings/Profile/Index.php:141
msgid "You must be logged in to use this module" msgid "You must be logged in to use this module"
msgstr "" msgstr ""
#: src/Module/Debug/Feed.php:75 #: src/Module/Debug/Feed.php:76
msgid "Source URL" msgid "Source URL"
msgstr "" msgstr ""
@ -8597,21 +8596,21 @@ msgstr ""
msgid "<b>BCC:</b> %s<br>" msgid "<b>BCC:</b> %s<br>"
msgstr "" msgstr ""
#: src/Module/Photo.php:123 #: src/Module/Photo.php:124
msgid "The Photo is not available." msgid "The Photo is not available."
msgstr "" msgstr ""
#: src/Module/Photo.php:136 #: src/Module/Photo.php:137
#, php-format #, php-format
msgid "The Photo with id %s is not available." msgid "The Photo with id %s is not available."
msgstr "" msgstr ""
#: src/Module/Photo.php:169 #: src/Module/Photo.php:170
#, php-format #, php-format
msgid "Invalid external resource with url %s." msgid "Invalid external resource with url %s."
msgstr "" msgstr ""
#: src/Module/Photo.php:171 #: src/Module/Photo.php:172
#, php-format #, php-format
msgid "Invalid photo with id %s." msgid "Invalid photo with id %s."
msgstr "" msgstr ""
@ -8673,20 +8672,20 @@ msgid "View as"
msgstr "" msgstr ""
#: src/Module/Profile/Profile.php:326 src/Module/Profile/Profile.php:329 #: src/Module/Profile/Profile.php:326 src/Module/Profile/Profile.php:329
#: src/Module/Profile/Status.php:65 src/Module/Profile/Status.php:68 #: src/Module/Profile/Status.php:66 src/Module/Profile/Status.php:69
#: src/Protocol/Feed.php:1017 src/Protocol/OStatus.php:1245 #: src/Protocol/Feed.php:1017 src/Protocol/OStatus.php:1246
#, php-format #, php-format
msgid "%s's timeline" msgid "%s's timeline"
msgstr "" msgstr ""
#: src/Module/Profile/Profile.php:327 src/Module/Profile/Status.php:66 #: src/Module/Profile/Profile.php:327 src/Module/Profile/Status.php:67
#: src/Protocol/Feed.php:1021 src/Protocol/OStatus.php:1249 #: src/Protocol/Feed.php:1021 src/Protocol/OStatus.php:1250
#, php-format #, php-format
msgid "%s's posts" msgid "%s's posts"
msgstr "" msgstr ""
#: src/Module/Profile/Profile.php:328 src/Module/Profile/Status.php:67 #: src/Module/Profile/Profile.php:328 src/Module/Profile/Status.php:68
#: src/Protocol/Feed.php:1024 src/Protocol/OStatus.php:1252 #: src/Protocol/Feed.php:1024 src/Protocol/OStatus.php:1253
#, php-format #, php-format
msgid "%s's comments" msgid "%s's comments"
msgstr "" msgstr ""
@ -10446,10 +10445,6 @@ msgstr ""
msgid "Edit" msgid "Edit"
msgstr "" msgstr ""
#: src/Object/Post.php:235
msgid "Pinned item"
msgstr ""
#: src/Object/Post.php:239 #: src/Object/Post.php:239
msgid "Delete globally" msgid "Delete globally"
msgstr "" msgstr ""
@ -10547,94 +10542,94 @@ msgstr ""
msgid "Unshare" msgid "Unshare"
msgstr "" msgstr ""
#: src/Object/Post.php:421 #: src/Object/Post.php:423
#, php-format #, php-format
msgid "%s (Received %s)" msgid "%s (Received %s)"
msgstr "" msgstr ""
#: src/Object/Post.php:426 #: src/Object/Post.php:428
msgid "Comment this item on your system" msgid "Comment this item on your system"
msgstr "" msgstr ""
#: src/Object/Post.php:426 #: src/Object/Post.php:428
msgid "Remote comment" msgid "Remote comment"
msgstr "" msgstr ""
#: src/Object/Post.php:470 #: src/Object/Post.php:472
msgid "to" msgid "to"
msgstr "" msgstr ""
#: src/Object/Post.php:471 #: src/Object/Post.php:473
msgid "via" msgid "via"
msgstr "" msgstr ""
#: src/Object/Post.php:472 #: src/Object/Post.php:474
msgid "Wall-to-Wall" msgid "Wall-to-Wall"
msgstr "" msgstr ""
#: src/Object/Post.php:473 #: src/Object/Post.php:475
msgid "via Wall-To-Wall:" msgid "via Wall-To-Wall:"
msgstr "" msgstr ""
#: src/Object/Post.php:515 #: src/Object/Post.php:517
#, php-format #, php-format
msgid "Reply to %s" msgid "Reply to %s"
msgstr "" msgstr ""
#: src/Object/Post.php:518 #: src/Object/Post.php:520
msgid "More" msgid "More"
msgstr "" msgstr ""
#: src/Object/Post.php:536 #: src/Object/Post.php:538
msgid "Notifier task is pending" msgid "Notifier task is pending"
msgstr "" msgstr ""
#: src/Object/Post.php:537 #: src/Object/Post.php:539
msgid "Delivery to remote servers is pending" msgid "Delivery to remote servers is pending"
msgstr "" msgstr ""
#: src/Object/Post.php:538 #: src/Object/Post.php:540
msgid "Delivery to remote servers is underway" msgid "Delivery to remote servers is underway"
msgstr "" msgstr ""
#: src/Object/Post.php:539 #: src/Object/Post.php:541
msgid "Delivery to remote servers is mostly done" msgid "Delivery to remote servers is mostly done"
msgstr "" msgstr ""
#: src/Object/Post.php:540 #: src/Object/Post.php:542
msgid "Delivery to remote servers is done" msgid "Delivery to remote servers is done"
msgstr "" msgstr ""
#: src/Object/Post.php:560 #: src/Object/Post.php:562
#, php-format #, php-format
msgid "%d comment" msgid "%d comment"
msgid_plural "%d comments" msgid_plural "%d comments"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: src/Object/Post.php:561 #: src/Object/Post.php:563
msgid "Show more" msgid "Show more"
msgstr "" msgstr ""
#: src/Object/Post.php:562 #: src/Object/Post.php:564
msgid "Show fewer" msgid "Show fewer"
msgstr "" msgstr ""
#: src/Protocol/OStatus.php:1648 #: src/Protocol/OStatus.php:1649
#, php-format #, php-format
msgid "%s is now following %s." msgid "%s is now following %s."
msgstr "" msgstr ""
#: src/Protocol/OStatus.php:1649 #: src/Protocol/OStatus.php:1650
msgid "following" msgid "following"
msgstr "" msgstr ""
#: src/Protocol/OStatus.php:1652 #: src/Protocol/OStatus.php:1653
#, php-format #, php-format
msgid "%s stopped following %s." msgid "%s stopped following %s."
msgstr "" msgstr ""
#: src/Protocol/OStatus.php:1653 #: src/Protocol/OStatus.php:1654
msgid "stopped following" msgid "stopped following"
msgstr "" msgstr ""