diff --git a/mod/settings.php b/mod/settings.php index 8f48f66862..9ece81b556 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -76,8 +76,8 @@ function settings_post(App $a) if (!empty($_POST['general-submit'])) { DI::pConfig()->set(local_user(), 'system', 'accept_only_sharer', intval($_POST['accept_only_sharer'])); - DI::pConfig()->set(local_user(), 'system', 'disable_cw', intval($_POST['disable_cw'])); - DI::pConfig()->set(local_user(), 'system', 'no_intelligent_shortening', intval($_POST['no_intelligent_shortening'])); + DI::pConfig()->set(local_user(), 'system', 'disable_cw', !intval($_POST['enable_cw'])); + DI::pConfig()->set(local_user(), 'system', 'no_intelligent_shortening', !intval($_POST['enable_smart_shortening'])); DI::pConfig()->set(local_user(), 'system', 'simple_shortening', intval($_POST['simple_shortening'])); DI::pConfig()->set(local_user(), 'system', 'attach_link_title', intval($_POST['attach_link_title'])); DI::pConfig()->set(local_user(), 'ostatus', 'legacy_contact', $_POST['legacy_contact']); @@ -486,8 +486,8 @@ function settings_content(App $a) if ((DI::args()->getArgc() > 1) && (DI::args()->getArgv()[1] === 'connectors')) { $accept_only_sharer = intval(DI::pConfig()->get(local_user(), 'system', 'accept_only_sharer')); - $disable_cw = intval(DI::pConfig()->get(local_user(), 'system', 'disable_cw')); - $no_intelligent_shortening = intval(DI::pConfig()->get(local_user(), 'system', 'no_intelligent_shortening')); + $enable_cw = !intval(DI::pConfig()->get(local_user(), 'system', 'disable_cw')); + $enable_smart_shortening = !intval(DI::pConfig()->get(local_user(), 'system', 'no_intelligent_shortening')); $simple_shortening = intval(DI::pConfig()->get(local_user(), 'system', 'simple_shortening')); $attach_link_title = intval(DI::pConfig()->get(local_user(), 'system', 'attach_link_title')); $legacy_contact = DI::pConfig()->get(local_user(), 'ostatus', 'legacy_contact'); @@ -548,8 +548,8 @@ function settings_content(App $a) '$general_settings' => DI::l10n()->t('General Social Media Settings'), '$accept_only_sharer' => ['accept_only_sharer', DI::l10n()->t('Accept only top level posts by contacts you follow'), $accept_only_sharer, DI::l10n()->t('The system does an auto completion of threads when a comment arrives. This has got the side effect that you can receive posts that had been started by a non-follower but had been commented by someone you follow. This setting deactivates this behaviour. When activated, you strictly only will receive posts from people you really do follow.')], - '$disable_cw' => ['disable_cw', DI::l10n()->t('Disable Content Warning'), $disable_cw, DI::l10n()->t('Users on networks like Mastodon or Pleroma are able to set a content warning field which collapse their post by default. This disables the automatic collapsing and sets the content warning as the post title. Doesn\'t affect any other content filtering you eventually set up.')], - '$no_intelligent_shortening' => ['no_intelligent_shortening', DI::l10n()->t('Disable intelligent shortening'), $no_intelligent_shortening, DI::l10n()->t('Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post.')], + '$enable_cw' => ['enable_cw', DI::l10n()->t('Enable Content Warning'), $enable_cw, DI::l10n()->t('Users on networks like Mastodon or Pleroma are able to set a content warning field which collapse their post by default. This enables the automatic collapsing instead of setting the content warning as the post title. Doesn\'t affect any other content filtering you eventually set up.')], + '$enable_smart_shortening' => ['enable_smart_shortening', DI::l10n()->t('Enable intelligent shortening'), $enable_smart_shortening, DI::l10n()->t('Normally the system tries to find the best link to add to shortened posts. If disabled, every shortened post will always point to the original friendica post.')], '$simple_shortening' => ['simple_shortening', DI::l10n()->t('Enable simple text shortening'), $simple_shortening, DI::l10n()->t('Normally the system shortens posts at the next line feed. If this option is enabled then the system will shorten the text at the maximum character limit.')], '$attach_link_title' => ['attach_link_title', DI::l10n()->t('Attach the link title'), $attach_link_title, DI::l10n()->t('When activated, the title of the attached link will be added as a title on posts to Diaspora. This is mostly helpful with "remote-self" contacts that share feed content.')], '$legacy_contact' => ['legacy_contact', DI::l10n()->t('Your legacy ActivityPub/GNU Social account'), $legacy_contact, DI::l10n()->t("If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.")], diff --git a/view/lang/C/messages.po b/view/lang/C/messages.po index 1f46e17c7c..1294927b2a 100644 --- a/view/lang/C/messages.po +++ b/view/lang/C/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: 2021.09-rc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-05 14:58-0400\n" +"POT-Creation-Date: 2021-09-06 12:45-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -77,8 +77,8 @@ msgstr "" #: include/conversation.php:468 mod/photos.php:1460 mod/settings.php:573 #: src/Module/Admin/Users/Active.php:139 src/Module/Admin/Users/Blocked.php:140 -#: src/Module/Admin/Users/Index.php:153 src/Module/Contact.php:842 -#: src/Module/Contact.php:1125 +#: src/Module/Admin/Users/Index.php:153 src/Module/Contact.php:849 +#: src/Module/Contact.php:1132 msgid "Delete" msgstr "" @@ -215,13 +215,13 @@ msgstr "" #: include/conversation.php:851 src/Module/Admin/Blocklist/Contact.php:84 #: src/Module/Admin/Users/Active.php:140 src/Module/Admin/Users/Index.php:154 -#: src/Module/Contact.php:580 src/Module/Contact.php:840 -#: src/Module/Contact.php:1108 +#: src/Module/Contact.php:587 src/Module/Contact.php:847 +#: src/Module/Contact.php:1115 msgid "Block" msgstr "" -#: include/conversation.php:852 src/Module/Contact.php:581 -#: src/Module/Contact.php:841 src/Module/Contact.php:1116 +#: include/conversation.php:852 src/Module/Contact.php:588 +#: src/Module/Contact.php:848 src/Module/Contact.php:1123 #: src/Module/Notifications/Introductions.php:113 #: src/Module/Notifications/Introductions.php:185 #: src/Module/Notifications/Notification.php:59 @@ -483,7 +483,7 @@ msgstr "" #: include/conversation.php:1164 mod/editpost.php:130 mod/fbrowser.php:105 #: mod/fbrowser.php:134 mod/follow.php:144 mod/photos.php:1028 #: mod/photos.php:1134 mod/tagrm.php:37 mod/tagrm.php:129 mod/unfollow.php:97 -#: src/Module/Contact.php:416 src/Module/RemoteFollow.php:116 +#: src/Module/Contact.php:422 src/Module/RemoteFollow.php:116 msgid "Cancel" msgstr "" @@ -763,7 +763,7 @@ msgstr "" #: mod/wallmessage.php:96 mod/wallmessage.php:120 src/Module/Attach.php:55 #: src/Module/BaseApi.php:79 src/Module/BaseApi.php:88 #: src/Module/BaseApi.php:97 src/Module/BaseApi.php:106 -#: src/Module/BaseNotifications.php:88 src/Module/Contact.php:343 +#: src/Module/BaseNotifications.php:88 src/Module/Contact.php:346 #: src/Module/Contact/Advanced.php:44 src/Module/Delegation.php:119 #: src/Module/FollowConfirm.php:16 src/Module/FriendSuggest.php:44 #: src/Module/Group.php:45 src/Module/Group.php:90 src/Module/Invite.php:41 @@ -993,7 +993,7 @@ msgstr "" #: mod/events.php:568 src/Content/Widget/VCard.php:98 src/Model/Event.php:86 #: src/Model/Event.php:113 src/Model/Event.php:483 src/Model/Event.php:969 -#: src/Model/Profile.php:367 src/Module/Contact.php:601 +#: src/Model/Profile.php:367 src/Module/Contact.php:608 #: src/Module/Directory.php:150 src/Module/Notifications/Introductions.php:166 #: src/Module/Profile/Profile.php:194 msgid "Location:" @@ -1010,7 +1010,7 @@ msgstr "" #: mod/events.php:580 mod/message.php:204 mod/message.php:367 #: mod/photos.php:947 mod/photos.php:1045 mod/photos.php:1330 #: mod/photos.php:1371 mod/photos.php:1427 mod/photos.php:1501 -#: src/Module/Admin/Item/Source.php:65 src/Module/Contact.php:559 +#: src/Module/Admin/Item/Source.php:65 src/Module/Contact.php:566 #: src/Module/Contact/Advanced.php:133 src/Module/Contact/Poke.php:158 #: src/Module/Debug/ActivityPubConversion.php:141 #: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 @@ -1029,7 +1029,7 @@ msgstr "" msgid "Basic" msgstr "" -#: mod/events.php:582 src/Module/Admin/Site.php:503 src/Module/Contact.php:909 +#: mod/events.php:582 src/Module/Admin/Site.php:503 src/Module/Contact.php:916 #: src/Module/Profile/Profile.php:249 msgid "Advanced" msgstr "" @@ -1081,13 +1081,13 @@ msgid "Your Identity Address:" msgstr "" #: mod/follow.php:141 mod/unfollow.php:100 -#: src/Module/Admin/Blocklist/Contact.php:100 src/Module/Contact.php:597 +#: src/Module/Admin/Blocklist/Contact.php:100 src/Module/Contact.php:604 #: src/Module/Notifications/Introductions.php:108 #: src/Module/Notifications/Introductions.php:177 msgid "Profile URL" msgstr "" -#: mod/follow.php:142 src/Module/Contact.php:609 +#: mod/follow.php:142 src/Module/Contact.php:616 #: src/Module/Notifications/Introductions.php:170 #: src/Module/Profile/Profile.php:207 msgid "Tags:" @@ -1103,7 +1103,7 @@ msgid "Add a personal note:" msgstr "" #: mod/follow.php:163 mod/unfollow.php:109 src/Module/BaseProfile.php:59 -#: src/Module/Contact.php:887 +#: src/Module/Contact.php:894 msgid "Status Messages and Posts" msgstr "" @@ -1666,7 +1666,7 @@ msgid "Rotate CCW (left)" msgstr "" #: mod/photos.php:1368 mod/photos.php:1424 mod/photos.php:1498 -#: src/Module/Contact.php:1039 src/Module/Item/Compose.php:148 +#: src/Module/Contact.php:1046 src/Module/Item/Compose.php:148 #: src/Object/Post.php:959 msgid "This is you" msgstr "" @@ -1923,26 +1923,26 @@ msgid "" msgstr "" #: mod/settings.php:551 -msgid "Disable Content Warning" +msgid "Enable Content Warning" msgstr "" #: mod/settings.php:551 msgid "" "Users on networks like Mastodon or Pleroma are able to set a content warning " -"field which collapse their post by default. This disables the automatic " -"collapsing and sets the content warning as the post title. Doesn't affect " -"any other content filtering you eventually set up." +"field which collapse their post by default. This enables the automatic " +"collapsing instead of setting the content warning as the post title. Doesn't " +"affect any other content filtering you eventually set up." msgstr "" #: mod/settings.php:552 -msgid "Disable intelligent shortening" +msgid "Enable intelligent shortening" msgstr "" #: mod/settings.php:552 msgid "" "Normally the system tries to find the best link to add to shortened posts. " -"If this option is enabled then every shortened post will always point to the " -"original friendica post." +"If disabled, every shortened post will always point to the original " +"friendica post." msgstr "" #: mod/settings.php:553 @@ -2720,16 +2720,16 @@ msgid "All contacts" msgstr "" #: src/BaseModule.php:212 src/Content/Widget.php:238 src/Core/ACL.php:195 -#: src/Module/Contact.php:809 src/Module/PermissionTooltip.php:77 +#: src/Module/Contact.php:816 src/Module/PermissionTooltip.php:77 #: src/Module/PermissionTooltip.php:99 msgid "Followers" msgstr "" -#: src/BaseModule.php:217 src/Content/Widget.php:239 src/Module/Contact.php:810 +#: src/BaseModule.php:217 src/Content/Widget.php:239 src/Module/Contact.php:817 msgid "Following" msgstr "" -#: src/BaseModule.php:222 src/Content/Widget.php:240 src/Module/Contact.php:811 +#: src/BaseModule.php:222 src/Content/Widget.php:240 src/Module/Contact.php:818 msgid "Mutual friends" msgstr "" @@ -3086,7 +3086,7 @@ msgid "Sign in" msgstr "" #: src/Content/Nav.php:190 src/Module/BaseProfile.php:56 -#: src/Module/Contact.php:612 src/Module/Contact.php:876 +#: src/Module/Contact.php:619 src/Module/Contact.php:883 #: src/Module/Settings/TwoFactor/Index.php:112 view/theme/frio/theme.php:226 msgid "Status" msgstr "" @@ -3097,8 +3097,8 @@ msgid "Your posts and conversations" msgstr "" #: src/Content/Nav.php:191 src/Module/BaseProfile.php:48 -#: src/Module/BaseSettings.php:57 src/Module/Contact.php:614 -#: src/Module/Contact.php:892 src/Module/Profile/Profile.php:241 +#: src/Module/BaseSettings.php:57 src/Module/Contact.php:621 +#: src/Module/Contact.php:899 src/Module/Profile/Profile.php:241 #: src/Module/Welcome.php:57 view/theme/frio/theme.php:227 msgid "Profile" msgstr "" @@ -3184,8 +3184,8 @@ msgstr "" #: src/Content/Nav.php:235 src/Content/Nav.php:294 #: src/Content/Text/HTML.php:902 src/Module/BaseProfile.php:126 -#: src/Module/BaseProfile.php:129 src/Module/Contact.php:812 -#: src/Module/Contact.php:899 view/theme/frio/theme.php:237 +#: src/Module/BaseProfile.php:129 src/Module/Contact.php:819 +#: src/Module/Contact.php:906 view/theme/frio/theme.php:237 msgid "Contacts" msgstr "" @@ -3415,7 +3415,7 @@ msgstr "" msgid "Examples: Robert Morgenstein, Fishing" msgstr "" -#: src/Content/Widget.php:78 src/Module/Contact.php:833 +#: src/Content/Widget.php:78 src/Module/Contact.php:840 #: src/Module/Directory.php:99 view/theme/vier/theme.php:174 msgid "Find" msgstr "" @@ -3442,7 +3442,7 @@ msgid "Local Directory" msgstr "" #: src/Content/Widget.php:214 src/Model/Group.php:535 -#: src/Module/Contact.php:796 src/Module/Welcome.php:76 +#: src/Module/Contact.php:803 src/Module/Welcome.php:76 msgid "Groups" msgstr "" @@ -3454,7 +3454,7 @@ msgstr "" msgid "Relationships" msgstr "" -#: src/Content/Widget.php:247 src/Module/Contact.php:748 +#: src/Content/Widget.php:247 src/Module/Contact.php:755 #: src/Module/Group.php:292 msgid "All Contacts" msgstr "" @@ -3553,12 +3553,12 @@ msgid "More Trending Tags" msgstr "" #: src/Content/Widget/VCard.php:96 src/Model/Profile.php:372 -#: src/Module/Contact.php:603 src/Module/Profile/Profile.php:176 +#: src/Module/Contact.php:610 src/Module/Profile/Profile.php:176 msgid "XMPP:" msgstr "" #: src/Content/Widget/VCard.php:97 src/Model/Profile.php:373 -#: src/Module/Contact.php:605 src/Module/Profile/Profile.php:180 +#: src/Module/Contact.php:612 src/Module/Profile/Profile.php:180 msgid "Matrix:" msgstr "" @@ -4710,7 +4710,7 @@ msgstr "" msgid "Homepage:" msgstr "" -#: src/Model/Profile.php:371 src/Module/Contact.php:607 +#: src/Model/Profile.php:371 src/Module/Contact.php:614 #: src/Module/Notifications/Introductions.php:168 msgid "About:" msgstr "" @@ -5111,8 +5111,8 @@ msgstr "" msgid "List of active accounts" msgstr "" -#: src/Module/Admin/BaseUsers.php:66 src/Module/Contact.php:756 -#: src/Module/Contact.php:816 +#: src/Module/Admin/BaseUsers.php:66 src/Module/Contact.php:763 +#: src/Module/Contact.php:823 msgid "Pending" msgstr "" @@ -5120,8 +5120,8 @@ msgstr "" msgid "List of pending registrations" msgstr "" -#: src/Module/Admin/BaseUsers.php:74 src/Module/Contact.php:764 -#: src/Module/Contact.php:817 +#: src/Module/Admin/BaseUsers.php:74 src/Module/Contact.php:771 +#: src/Module/Contact.php:824 msgid "Blocked" msgstr "" @@ -5178,8 +5178,8 @@ msgstr "" #: src/Module/Admin/Blocklist/Contact.php:85 #: src/Module/Admin/Users/Blocked.php:142 src/Module/Admin/Users/Index.php:156 -#: src/Module/Contact.php:580 src/Module/Contact.php:840 -#: src/Module/Contact.php:1108 +#: src/Module/Contact.php:587 src/Module/Contact.php:847 +#: src/Module/Contact.php:1115 msgid "Unblock" msgstr "" @@ -6454,7 +6454,7 @@ msgid "" "received." msgstr "" -#: src/Module/Admin/Site.php:606 src/Module/Contact.php:509 +#: src/Module/Admin/Site.php:606 src/Module/Contact.php:516 #: src/Module/Settings/TwoFactor/Index.php:118 msgid "Disabled" msgstr "" @@ -7025,7 +7025,8 @@ msgstr "" msgid "Posts from %s can't be unshared" msgstr "" -#: src/Module/Api/Twitter/ContactEndpoint.php:63 src/Module/Contact.php:358 +#: src/Module/Api/Twitter/ContactEndpoint.php:63 src/Module/Contact.php:361 +#: src/Module/Contact.php:366 msgid "Contact not found" msgstr "" @@ -7146,7 +7147,7 @@ msgstr "" msgid "Too Many Requests" msgstr "" -#: src/Module/BaseProfile.php:51 src/Module/Contact.php:895 +#: src/Module/BaseProfile.php:51 src/Module/Contact.php:902 msgid "Profile Details" msgstr "" @@ -7228,350 +7229,350 @@ msgstr "" msgid "Failed to update contact record." msgstr "" -#: src/Module/Contact.php:377 +#: src/Module/Contact.php:383 msgid "You can't block yourself" msgstr "" -#: src/Module/Contact.php:383 +#: src/Module/Contact.php:389 msgid "Contact has been blocked" msgstr "" -#: src/Module/Contact.php:383 +#: src/Module/Contact.php:389 msgid "Contact has been unblocked" msgstr "" -#: src/Module/Contact.php:391 +#: src/Module/Contact.php:397 msgid "You can't ignore yourself" msgstr "" -#: src/Module/Contact.php:397 +#: src/Module/Contact.php:403 msgid "Contact has been ignored" msgstr "" -#: src/Module/Contact.php:397 +#: src/Module/Contact.php:403 msgid "Contact has been unignored" msgstr "" -#: src/Module/Contact.php:409 +#: src/Module/Contact.php:415 msgid "Drop contact" msgstr "" -#: src/Module/Contact.php:412 src/Module/Contact.php:836 +#: src/Module/Contact.php:418 src/Module/Contact.php:843 msgid "Do you really want to delete this contact?" msgstr "" -#: src/Module/Contact.php:413 src/Module/Notifications/Introductions.php:123 +#: src/Module/Contact.php:419 src/Module/Notifications/Introductions.php:123 #: src/Module/OAuth/Acknowledge.php:47 src/Module/Register.php:115 msgid "Yes" msgstr "" -#: src/Module/Contact.php:425 +#: src/Module/Contact.php:431 msgid "Contact has been removed." msgstr "" -#: src/Module/Contact.php:451 +#: src/Module/Contact.php:458 #, php-format msgid "You are mutual friends with %s" msgstr "" -#: src/Module/Contact.php:455 +#: src/Module/Contact.php:462 #, php-format msgid "You are sharing with %s" msgstr "" -#: src/Module/Contact.php:459 +#: src/Module/Contact.php:466 #, php-format msgid "%s is sharing with you" msgstr "" -#: src/Module/Contact.php:483 +#: src/Module/Contact.php:490 msgid "Private communications are not available for this contact." msgstr "" -#: src/Module/Contact.php:485 +#: src/Module/Contact.php:492 msgid "Never" msgstr "" -#: src/Module/Contact.php:488 +#: src/Module/Contact.php:495 msgid "(Update was not successful)" msgstr "" -#: src/Module/Contact.php:488 +#: src/Module/Contact.php:495 msgid "(Update was successful)" msgstr "" -#: src/Module/Contact.php:490 src/Module/Contact.php:1079 +#: src/Module/Contact.php:497 src/Module/Contact.php:1086 msgid "Suggest friends" msgstr "" -#: src/Module/Contact.php:494 +#: src/Module/Contact.php:501 #, php-format msgid "Network type: %s" msgstr "" -#: src/Module/Contact.php:499 +#: src/Module/Contact.php:506 msgid "Communications lost with this contact!" msgstr "" -#: src/Module/Contact.php:505 +#: src/Module/Contact.php:512 msgid "Fetch further information for feeds" msgstr "" -#: src/Module/Contact.php:507 +#: src/Module/Contact.php:514 msgid "" "Fetch information like preview pictures, title and teaser from the feed " "item. You can activate this if the feed doesn't contain much text. Keywords " "are taken from the meta header in the feed item and are posted as hash tags." msgstr "" -#: src/Module/Contact.php:510 +#: src/Module/Contact.php:517 msgid "Fetch information" msgstr "" -#: src/Module/Contact.php:511 +#: src/Module/Contact.php:518 msgid "Fetch keywords" msgstr "" -#: src/Module/Contact.php:512 +#: src/Module/Contact.php:519 msgid "Fetch information and keywords" msgstr "" -#: src/Module/Contact.php:524 src/Module/Contact.php:528 #: src/Module/Contact.php:531 src/Module/Contact.php:535 +#: src/Module/Contact.php:538 src/Module/Contact.php:542 msgid "No mirroring" msgstr "" -#: src/Module/Contact.php:525 +#: src/Module/Contact.php:532 msgid "Mirror as forwarded posting" msgstr "" -#: src/Module/Contact.php:526 src/Module/Contact.php:532 -#: src/Module/Contact.php:536 +#: src/Module/Contact.php:533 src/Module/Contact.php:539 +#: src/Module/Contact.php:543 msgid "Mirror as my own posting" msgstr "" -#: src/Module/Contact.php:529 src/Module/Contact.php:533 +#: src/Module/Contact.php:536 src/Module/Contact.php:540 msgid "Native reshare" msgstr "" -#: src/Module/Contact.php:548 +#: src/Module/Contact.php:555 msgid "Contact Information / Notes" msgstr "" -#: src/Module/Contact.php:549 +#: src/Module/Contact.php:556 msgid "Contact Settings" msgstr "" -#: src/Module/Contact.php:557 +#: src/Module/Contact.php:564 msgid "Contact" msgstr "" -#: src/Module/Contact.php:561 +#: src/Module/Contact.php:568 msgid "Their personal note" msgstr "" -#: src/Module/Contact.php:563 +#: src/Module/Contact.php:570 msgid "Edit contact notes" msgstr "" -#: src/Module/Contact.php:566 src/Module/Contact.php:1047 +#: src/Module/Contact.php:573 src/Module/Contact.php:1054 #, php-format msgid "Visit %s's profile [%s]" msgstr "" -#: src/Module/Contact.php:567 +#: src/Module/Contact.php:574 msgid "Block/Unblock contact" msgstr "" -#: src/Module/Contact.php:568 +#: src/Module/Contact.php:575 msgid "Ignore contact" msgstr "" -#: src/Module/Contact.php:569 +#: src/Module/Contact.php:576 msgid "View conversations" msgstr "" -#: src/Module/Contact.php:574 +#: src/Module/Contact.php:581 msgid "Last update:" msgstr "" -#: src/Module/Contact.php:576 +#: src/Module/Contact.php:583 msgid "Update public posts" msgstr "" -#: src/Module/Contact.php:578 src/Module/Contact.php:1089 +#: src/Module/Contact.php:585 src/Module/Contact.php:1096 msgid "Update now" msgstr "" -#: src/Module/Contact.php:581 src/Module/Contact.php:841 -#: src/Module/Contact.php:1116 +#: src/Module/Contact.php:588 src/Module/Contact.php:848 +#: src/Module/Contact.php:1123 msgid "Unignore" msgstr "" -#: src/Module/Contact.php:585 +#: src/Module/Contact.php:592 msgid "Currently blocked" msgstr "" -#: src/Module/Contact.php:586 +#: src/Module/Contact.php:593 msgid "Currently ignored" msgstr "" -#: src/Module/Contact.php:587 +#: src/Module/Contact.php:594 msgid "Currently archived" msgstr "" -#: src/Module/Contact.php:588 +#: src/Module/Contact.php:595 msgid "Awaiting connection acknowledge" msgstr "" -#: src/Module/Contact.php:589 src/Module/Notifications/Introductions.php:171 +#: src/Module/Contact.php:596 src/Module/Notifications/Introductions.php:171 msgid "Hide this contact from others" msgstr "" -#: src/Module/Contact.php:589 +#: src/Module/Contact.php:596 msgid "" "Replies/likes to your public posts may still be visible" msgstr "" -#: src/Module/Contact.php:590 +#: src/Module/Contact.php:597 msgid "Notification for new posts" msgstr "" -#: src/Module/Contact.php:590 +#: src/Module/Contact.php:597 msgid "Send a notification of every new post of this contact" msgstr "" -#: src/Module/Contact.php:592 +#: src/Module/Contact.php:599 msgid "Keyword Deny List" msgstr "" -#: src/Module/Contact.php:592 +#: src/Module/Contact.php:599 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" msgstr "" -#: src/Module/Contact.php:610 src/Module/Settings/TwoFactor/Index.php:132 +#: src/Module/Contact.php:617 src/Module/Settings/TwoFactor/Index.php:132 msgid "Actions" msgstr "" -#: src/Module/Contact.php:617 +#: src/Module/Contact.php:624 msgid "Mirror postings from this contact" msgstr "" -#: src/Module/Contact.php:619 +#: src/Module/Contact.php:626 msgid "" "Mark this contact as remote_self, this will cause friendica to repost new " "entries from this contact." msgstr "" -#: src/Module/Contact.php:751 +#: src/Module/Contact.php:758 msgid "Show all contacts" msgstr "" -#: src/Module/Contact.php:759 +#: src/Module/Contact.php:766 msgid "Only show pending contacts" msgstr "" -#: src/Module/Contact.php:767 +#: src/Module/Contact.php:774 msgid "Only show blocked contacts" msgstr "" -#: src/Module/Contact.php:772 src/Module/Contact.php:819 +#: src/Module/Contact.php:779 src/Module/Contact.php:826 #: src/Object/Post.php:308 msgid "Ignored" msgstr "" -#: src/Module/Contact.php:775 +#: src/Module/Contact.php:782 msgid "Only show ignored contacts" msgstr "" -#: src/Module/Contact.php:780 src/Module/Contact.php:820 +#: src/Module/Contact.php:787 src/Module/Contact.php:827 msgid "Archived" msgstr "" -#: src/Module/Contact.php:783 +#: src/Module/Contact.php:790 msgid "Only show archived contacts" msgstr "" -#: src/Module/Contact.php:788 src/Module/Contact.php:818 +#: src/Module/Contact.php:795 src/Module/Contact.php:825 msgid "Hidden" msgstr "" -#: src/Module/Contact.php:791 +#: src/Module/Contact.php:798 msgid "Only show hidden contacts" msgstr "" -#: src/Module/Contact.php:799 +#: src/Module/Contact.php:806 msgid "Organize your contact groups" msgstr "" -#: src/Module/Contact.php:831 +#: src/Module/Contact.php:838 msgid "Search your contacts" msgstr "" -#: src/Module/Contact.php:832 src/Module/Search/Index.php:194 +#: src/Module/Contact.php:839 src/Module/Search/Index.php:194 #, php-format msgid "Results for: %s" msgstr "" -#: src/Module/Contact.php:839 +#: src/Module/Contact.php:846 msgid "Update" msgstr "" -#: src/Module/Contact.php:844 +#: src/Module/Contact.php:851 msgid "Batch Actions" msgstr "" -#: src/Module/Contact.php:879 +#: src/Module/Contact.php:886 msgid "Conversations started by this contact" msgstr "" -#: src/Module/Contact.php:884 +#: src/Module/Contact.php:891 msgid "Posts and Comments" msgstr "" -#: src/Module/Contact.php:902 +#: src/Module/Contact.php:909 msgid "View all known contacts" msgstr "" -#: src/Module/Contact.php:912 +#: src/Module/Contact.php:919 msgid "Advanced Contact Settings" msgstr "" -#: src/Module/Contact.php:1006 +#: src/Module/Contact.php:1013 msgid "Mutual Friendship" msgstr "" -#: src/Module/Contact.php:1010 +#: src/Module/Contact.php:1017 msgid "is a fan of yours" msgstr "" -#: src/Module/Contact.php:1014 +#: src/Module/Contact.php:1021 msgid "you are a fan of" msgstr "" -#: src/Module/Contact.php:1032 +#: src/Module/Contact.php:1039 msgid "Pending outgoing contact request" msgstr "" -#: src/Module/Contact.php:1034 +#: src/Module/Contact.php:1041 msgid "Pending incoming contact request" msgstr "" -#: src/Module/Contact.php:1099 +#: src/Module/Contact.php:1106 msgid "Refetch contact data" msgstr "" -#: src/Module/Contact.php:1110 +#: src/Module/Contact.php:1117 msgid "Toggle Blocked status" msgstr "" -#: src/Module/Contact.php:1118 +#: src/Module/Contact.php:1125 msgid "Toggle Ignored status" msgstr "" -#: src/Module/Contact.php:1127 +#: src/Module/Contact.php:1134 msgid "Delete contact" msgstr ""