Merge pull request #10674 from MrPetovan/task/10640-convert-disable-settings-to-enable
Convert the two remaining "Disable..." setting names to "Enable..."
This commit is contained in:
commit
b52b78efbd
2 changed files with 137 additions and 136 deletions
|
@ -76,8 +76,8 @@ function settings_post(App $a)
|
||||||
|
|
||||||
if (!empty($_POST['general-submit'])) {
|
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', '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', 'disable_cw', !intval($_POST['enable_cw']));
|
||||||
DI::pConfig()->set(local_user(), 'system', 'no_intelligent_shortening', intval($_POST['no_intelligent_shortening']));
|
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', '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(), 'system', 'attach_link_title', intval($_POST['attach_link_title']));
|
||||||
DI::pConfig()->set(local_user(), 'ostatus', 'legacy_contact', $_POST['legacy_contact']);
|
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')) {
|
if ((DI::args()->getArgc() > 1) && (DI::args()->getArgv()[1] === 'connectors')) {
|
||||||
$accept_only_sharer = intval(DI::pConfig()->get(local_user(), 'system', 'accept_only_sharer'));
|
$accept_only_sharer = intval(DI::pConfig()->get(local_user(), 'system', 'accept_only_sharer'));
|
||||||
$disable_cw = intval(DI::pConfig()->get(local_user(), 'system', 'disable_cw'));
|
$enable_cw = !intval(DI::pConfig()->get(local_user(), 'system', 'disable_cw'));
|
||||||
$no_intelligent_shortening = intval(DI::pConfig()->get(local_user(), 'system', 'no_intelligent_shortening'));
|
$enable_smart_shortening = !intval(DI::pConfig()->get(local_user(), 'system', 'no_intelligent_shortening'));
|
||||||
$simple_shortening = intval(DI::pConfig()->get(local_user(), 'system', 'simple_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'));
|
$attach_link_title = intval(DI::pConfig()->get(local_user(), 'system', 'attach_link_title'));
|
||||||
$legacy_contact = DI::pConfig()->get(local_user(), 'ostatus', 'legacy_contact');
|
$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'),
|
'$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.')],
|
'$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.')],
|
'$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.')],
|
||||||
'$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_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.')],
|
'$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.')],
|
'$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.")],
|
'$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.")],
|
||||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: 2021.09-rc\n"
|
"Project-Id-Version: 2021.09-rc\n"
|
||||||
"Report-Msgid-Bugs-To: \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"
|
"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"
|
||||||
|
@ -77,8 +77,8 @@ msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:468 mod/photos.php:1460 mod/settings.php:573
|
#: 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/Active.php:139 src/Module/Admin/Users/Blocked.php:140
|
||||||
#: src/Module/Admin/Users/Index.php:153 src/Module/Contact.php:842
|
#: src/Module/Admin/Users/Index.php:153 src/Module/Contact.php:849
|
||||||
#: src/Module/Contact.php:1125
|
#: src/Module/Contact.php:1132
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -215,13 +215,13 @@ msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:851 src/Module/Admin/Blocklist/Contact.php:84
|
#: 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/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:587 src/Module/Contact.php:847
|
||||||
#: src/Module/Contact.php:1108
|
#: src/Module/Contact.php:1115
|
||||||
msgid "Block"
|
msgid "Block"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:852 src/Module/Contact.php:581
|
#: include/conversation.php:852 src/Module/Contact.php:588
|
||||||
#: src/Module/Contact.php:841 src/Module/Contact.php:1116
|
#: src/Module/Contact.php:848 src/Module/Contact.php:1123
|
||||||
#: src/Module/Notifications/Introductions.php:113
|
#: src/Module/Notifications/Introductions.php:113
|
||||||
#: src/Module/Notifications/Introductions.php:185
|
#: src/Module/Notifications/Introductions.php:185
|
||||||
#: src/Module/Notifications/Notification.php:59
|
#: src/Module/Notifications/Notification.php:59
|
||||||
|
@ -483,7 +483,7 @@ msgstr ""
|
||||||
#: include/conversation.php:1164 mod/editpost.php:130 mod/fbrowser.php:105
|
#: 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/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
|
#: 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"
|
msgid "Cancel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -763,7 +763,7 @@ msgstr ""
|
||||||
#: mod/wallmessage.php:96 mod/wallmessage.php:120 src/Module/Attach.php:55
|
#: 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:79 src/Module/BaseApi.php:88
|
||||||
#: src/Module/BaseApi.php:97 src/Module/BaseApi.php:106
|
#: 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/Contact/Advanced.php:44 src/Module/Delegation.php:119
|
||||||
#: src/Module/FollowConfirm.php:16 src/Module/FriendSuggest.php:44
|
#: 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
|
#: 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
|
#: 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/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/Directory.php:150 src/Module/Notifications/Introductions.php:166
|
||||||
#: src/Module/Profile/Profile.php:194
|
#: src/Module/Profile/Profile.php:194
|
||||||
msgid "Location:"
|
msgid "Location:"
|
||||||
|
@ -1010,7 +1010,7 @@ msgstr ""
|
||||||
#: mod/events.php:580 mod/message.php:204 mod/message.php:367
|
#: 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:947 mod/photos.php:1045 mod/photos.php:1330
|
||||||
#: mod/photos.php:1371 mod/photos.php:1427 mod/photos.php:1501
|
#: 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/Contact/Advanced.php:133 src/Module/Contact/Poke.php:158
|
||||||
#: src/Module/Debug/ActivityPubConversion.php:141
|
#: src/Module/Debug/ActivityPubConversion.php:141
|
||||||
#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64
|
#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64
|
||||||
|
@ -1029,7 +1029,7 @@ msgstr ""
|
||||||
msgid "Basic"
|
msgid "Basic"
|
||||||
msgstr ""
|
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
|
#: src/Module/Profile/Profile.php:249
|
||||||
msgid "Advanced"
|
msgid "Advanced"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1081,13 +1081,13 @@ msgid "Your Identity Address:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/follow.php:141 mod/unfollow.php:100
|
#: 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:108
|
||||||
#: src/Module/Notifications/Introductions.php:177
|
#: src/Module/Notifications/Introductions.php:177
|
||||||
msgid "Profile URL"
|
msgid "Profile URL"
|
||||||
msgstr ""
|
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/Notifications/Introductions.php:170
|
||||||
#: src/Module/Profile/Profile.php:207
|
#: src/Module/Profile/Profile.php:207
|
||||||
msgid "Tags:"
|
msgid "Tags:"
|
||||||
|
@ -1103,7 +1103,7 @@ msgid "Add a personal note:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/follow.php:163 mod/unfollow.php:109 src/Module/BaseProfile.php:59
|
#: 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"
|
msgid "Status Messages and Posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -1666,7 +1666,7 @@ msgid "Rotate CCW (left)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:1368 mod/photos.php:1424 mod/photos.php:1498
|
#: 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
|
#: src/Object/Post.php:959
|
||||||
msgid "This is you"
|
msgid "This is you"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1923,26 +1923,26 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:551
|
#: mod/settings.php:551
|
||||||
msgid "Disable Content Warning"
|
msgid "Enable Content Warning"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:551
|
#: mod/settings.php:551
|
||||||
msgid ""
|
msgid ""
|
||||||
"Users on networks like Mastodon or Pleroma are able to set a content warning "
|
"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 "
|
"field which collapse their post by default. This enables the automatic "
|
||||||
"collapsing and sets the content warning as the post title. Doesn't affect "
|
"collapsing instead of setting the content warning as the post title. Doesn't "
|
||||||
"any other content filtering you eventually set up."
|
"affect any other content filtering you eventually set up."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:552
|
#: mod/settings.php:552
|
||||||
msgid "Disable intelligent shortening"
|
msgid "Enable intelligent shortening"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:552
|
#: mod/settings.php:552
|
||||||
msgid ""
|
msgid ""
|
||||||
"Normally the system tries to find the best link to add to shortened posts. "
|
"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 "
|
"If disabled, every shortened post will always point to the original "
|
||||||
"original friendica post."
|
"friendica post."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:553
|
#: mod/settings.php:553
|
||||||
|
@ -2720,16 +2720,16 @@ msgid "All contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/BaseModule.php:212 src/Content/Widget.php:238 src/Core/ACL.php:195
|
#: 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
|
#: src/Module/PermissionTooltip.php:99
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
msgstr ""
|
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"
|
msgid "Following"
|
||||||
msgstr ""
|
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"
|
msgid "Mutual friends"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -3086,7 +3086,7 @@ msgid "Sign in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:190 src/Module/BaseProfile.php:56
|
#: 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
|
#: src/Module/Settings/TwoFactor/Index.php:112 view/theme/frio/theme.php:226
|
||||||
msgid "Status"
|
msgid "Status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3097,8 +3097,8 @@ msgid "Your posts and conversations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:191 src/Module/BaseProfile.php:48
|
#: src/Content/Nav.php:191 src/Module/BaseProfile.php:48
|
||||||
#: src/Module/BaseSettings.php:57 src/Module/Contact.php:614
|
#: src/Module/BaseSettings.php:57 src/Module/Contact.php:621
|
||||||
#: src/Module/Contact.php:892 src/Module/Profile/Profile.php:241
|
#: src/Module/Contact.php:899 src/Module/Profile/Profile.php:241
|
||||||
#: src/Module/Welcome.php:57 view/theme/frio/theme.php:227
|
#: src/Module/Welcome.php:57 view/theme/frio/theme.php:227
|
||||||
msgid "Profile"
|
msgid "Profile"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3184,8 +3184,8 @@ msgstr ""
|
||||||
|
|
||||||
#: src/Content/Nav.php:235 src/Content/Nav.php:294
|
#: src/Content/Nav.php:235 src/Content/Nav.php:294
|
||||||
#: src/Content/Text/HTML.php:902 src/Module/BaseProfile.php:126
|
#: src/Content/Text/HTML.php:902 src/Module/BaseProfile.php:126
|
||||||
#: src/Module/BaseProfile.php:129 src/Module/Contact.php:812
|
#: src/Module/BaseProfile.php:129 src/Module/Contact.php:819
|
||||||
#: src/Module/Contact.php:899 view/theme/frio/theme.php:237
|
#: src/Module/Contact.php:906 view/theme/frio/theme.php:237
|
||||||
msgid "Contacts"
|
msgid "Contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -3415,7 +3415,7 @@ msgstr ""
|
||||||
msgid "Examples: Robert Morgenstein, Fishing"
|
msgid "Examples: Robert Morgenstein, Fishing"
|
||||||
msgstr ""
|
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
|
#: src/Module/Directory.php:99 view/theme/vier/theme.php:174
|
||||||
msgid "Find"
|
msgid "Find"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3442,7 +3442,7 @@ msgid "Local Directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Widget.php:214 src/Model/Group.php:535
|
#: 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"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -3454,7 +3454,7 @@ msgstr ""
|
||||||
msgid "Relationships"
|
msgid "Relationships"
|
||||||
msgstr ""
|
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
|
#: src/Module/Group.php:292
|
||||||
msgid "All Contacts"
|
msgid "All Contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3553,12 +3553,12 @@ msgid "More Trending Tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Widget/VCard.php:96 src/Model/Profile.php:372
|
#: 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:"
|
msgid "XMPP:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Widget/VCard.php:97 src/Model/Profile.php:373
|
#: 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:"
|
msgid "Matrix:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -4710,7 +4710,7 @@ msgstr ""
|
||||||
msgid "Homepage:"
|
msgid "Homepage:"
|
||||||
msgstr ""
|
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
|
#: src/Module/Notifications/Introductions.php:168
|
||||||
msgid "About:"
|
msgid "About:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -5111,8 +5111,8 @@ msgstr ""
|
||||||
msgid "List of active accounts"
|
msgid "List of active accounts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/BaseUsers.php:66 src/Module/Contact.php:756
|
#: src/Module/Admin/BaseUsers.php:66 src/Module/Contact.php:763
|
||||||
#: src/Module/Contact.php:816
|
#: src/Module/Contact.php:823
|
||||||
msgid "Pending"
|
msgid "Pending"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -5120,8 +5120,8 @@ msgstr ""
|
||||||
msgid "List of pending registrations"
|
msgid "List of pending registrations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/BaseUsers.php:74 src/Module/Contact.php:764
|
#: src/Module/Admin/BaseUsers.php:74 src/Module/Contact.php:771
|
||||||
#: src/Module/Contact.php:817
|
#: src/Module/Contact.php:824
|
||||||
msgid "Blocked"
|
msgid "Blocked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -5178,8 +5178,8 @@ msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Blocklist/Contact.php:85
|
#: src/Module/Admin/Blocklist/Contact.php:85
|
||||||
#: src/Module/Admin/Users/Blocked.php:142 src/Module/Admin/Users/Index.php:156
|
#: 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:587 src/Module/Contact.php:847
|
||||||
#: src/Module/Contact.php:1108
|
#: src/Module/Contact.php:1115
|
||||||
msgid "Unblock"
|
msgid "Unblock"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -6454,7 +6454,7 @@ msgid ""
|
||||||
"received."
|
"received."
|
||||||
msgstr ""
|
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
|
#: src/Module/Settings/TwoFactor/Index.php:118
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -7025,7 +7025,8 @@ msgstr ""
|
||||||
msgid "Posts from %s can't be unshared"
|
msgid "Posts from %s can't be unshared"
|
||||||
msgstr ""
|
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"
|
msgid "Contact not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -7146,7 +7147,7 @@ msgstr ""
|
||||||
msgid "Too Many Requests"
|
msgid "Too Many Requests"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/BaseProfile.php:51 src/Module/Contact.php:895
|
#: src/Module/BaseProfile.php:51 src/Module/Contact.php:902
|
||||||
msgid "Profile Details"
|
msgid "Profile Details"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -7228,350 +7229,350 @@ msgstr ""
|
||||||
msgid "Failed to update contact record."
|
msgid "Failed to update contact record."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:377
|
#: src/Module/Contact.php:383
|
||||||
msgid "You can't block yourself"
|
msgid "You can't block yourself"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:383
|
#: src/Module/Contact.php:389
|
||||||
msgid "Contact has been blocked"
|
msgid "Contact has been blocked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:383
|
#: src/Module/Contact.php:389
|
||||||
msgid "Contact has been unblocked"
|
msgid "Contact has been unblocked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:391
|
#: src/Module/Contact.php:397
|
||||||
msgid "You can't ignore yourself"
|
msgid "You can't ignore yourself"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:397
|
#: src/Module/Contact.php:403
|
||||||
msgid "Contact has been ignored"
|
msgid "Contact has been ignored"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:397
|
#: src/Module/Contact.php:403
|
||||||
msgid "Contact has been unignored"
|
msgid "Contact has been unignored"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:409
|
#: src/Module/Contact.php:415
|
||||||
msgid "Drop contact"
|
msgid "Drop contact"
|
||||||
msgstr ""
|
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?"
|
msgid "Do you really want to delete this contact?"
|
||||||
msgstr ""
|
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
|
#: src/Module/OAuth/Acknowledge.php:47 src/Module/Register.php:115
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:425
|
#: src/Module/Contact.php:431
|
||||||
msgid "Contact has been removed."
|
msgid "Contact has been removed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:451
|
#: src/Module/Contact.php:458
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "You are mutual friends with %s"
|
msgid "You are mutual friends with %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:455
|
#: src/Module/Contact.php:462
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "You are sharing with %s"
|
msgid "You are sharing with %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:459
|
#: src/Module/Contact.php:466
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s is sharing with you"
|
msgid "%s is sharing with you"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:483
|
#: src/Module/Contact.php:490
|
||||||
msgid "Private communications are not available for this contact."
|
msgid "Private communications are not available for this contact."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:485
|
#: src/Module/Contact.php:492
|
||||||
msgid "Never"
|
msgid "Never"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:488
|
#: src/Module/Contact.php:495
|
||||||
msgid "(Update was not successful)"
|
msgid "(Update was not successful)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:488
|
#: src/Module/Contact.php:495
|
||||||
msgid "(Update was successful)"
|
msgid "(Update was successful)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:490 src/Module/Contact.php:1079
|
#: src/Module/Contact.php:497 src/Module/Contact.php:1086
|
||||||
msgid "Suggest friends"
|
msgid "Suggest friends"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:494
|
#: src/Module/Contact.php:501
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Network type: %s"
|
msgid "Network type: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:499
|
#: src/Module/Contact.php:506
|
||||||
msgid "Communications lost with this contact!"
|
msgid "Communications lost with this contact!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:505
|
#: src/Module/Contact.php:512
|
||||||
msgid "Fetch further information for feeds"
|
msgid "Fetch further information for feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:507
|
#: src/Module/Contact.php:514
|
||||||
msgid ""
|
msgid ""
|
||||||
"Fetch information like preview pictures, title and teaser from the feed "
|
"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 "
|
"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."
|
"are taken from the meta header in the feed item and are posted as hash tags."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:510
|
#: src/Module/Contact.php:517
|
||||||
msgid "Fetch information"
|
msgid "Fetch information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:511
|
#: src/Module/Contact.php:518
|
||||||
msgid "Fetch keywords"
|
msgid "Fetch keywords"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:512
|
#: src/Module/Contact.php:519
|
||||||
msgid "Fetch information and keywords"
|
msgid "Fetch information and keywords"
|
||||||
msgstr ""
|
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:531 src/Module/Contact.php:535
|
||||||
|
#: src/Module/Contact.php:538 src/Module/Contact.php:542
|
||||||
msgid "No mirroring"
|
msgid "No mirroring"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:525
|
#: src/Module/Contact.php:532
|
||||||
msgid "Mirror as forwarded posting"
|
msgid "Mirror as forwarded posting"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:526 src/Module/Contact.php:532
|
#: src/Module/Contact.php:533 src/Module/Contact.php:539
|
||||||
#: src/Module/Contact.php:536
|
#: src/Module/Contact.php:543
|
||||||
msgid "Mirror as my own posting"
|
msgid "Mirror as my own posting"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:529 src/Module/Contact.php:533
|
#: src/Module/Contact.php:536 src/Module/Contact.php:540
|
||||||
msgid "Native reshare"
|
msgid "Native reshare"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:548
|
#: src/Module/Contact.php:555
|
||||||
msgid "Contact Information / Notes"
|
msgid "Contact Information / Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:549
|
#: src/Module/Contact.php:556
|
||||||
msgid "Contact Settings"
|
msgid "Contact Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:557
|
#: src/Module/Contact.php:564
|
||||||
msgid "Contact"
|
msgid "Contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:561
|
#: src/Module/Contact.php:568
|
||||||
msgid "Their personal note"
|
msgid "Their personal note"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:563
|
#: src/Module/Contact.php:570
|
||||||
msgid "Edit contact notes"
|
msgid "Edit contact notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:566 src/Module/Contact.php:1047
|
#: src/Module/Contact.php:573 src/Module/Contact.php:1054
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Visit %s's profile [%s]"
|
msgid "Visit %s's profile [%s]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:567
|
#: src/Module/Contact.php:574
|
||||||
msgid "Block/Unblock contact"
|
msgid "Block/Unblock contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:568
|
#: src/Module/Contact.php:575
|
||||||
msgid "Ignore contact"
|
msgid "Ignore contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:569
|
#: src/Module/Contact.php:576
|
||||||
msgid "View conversations"
|
msgid "View conversations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:574
|
#: src/Module/Contact.php:581
|
||||||
msgid "Last update:"
|
msgid "Last update:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:576
|
#: src/Module/Contact.php:583
|
||||||
msgid "Update public posts"
|
msgid "Update public posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:578 src/Module/Contact.php:1089
|
#: src/Module/Contact.php:585 src/Module/Contact.php:1096
|
||||||
msgid "Update now"
|
msgid "Update now"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:581 src/Module/Contact.php:841
|
#: src/Module/Contact.php:588 src/Module/Contact.php:848
|
||||||
#: src/Module/Contact.php:1116
|
#: src/Module/Contact.php:1123
|
||||||
msgid "Unignore"
|
msgid "Unignore"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:585
|
#: src/Module/Contact.php:592
|
||||||
msgid "Currently blocked"
|
msgid "Currently blocked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:586
|
#: src/Module/Contact.php:593
|
||||||
msgid "Currently ignored"
|
msgid "Currently ignored"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:587
|
#: src/Module/Contact.php:594
|
||||||
msgid "Currently archived"
|
msgid "Currently archived"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:588
|
#: src/Module/Contact.php:595
|
||||||
msgid "Awaiting connection acknowledge"
|
msgid "Awaiting connection acknowledge"
|
||||||
msgstr ""
|
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"
|
msgid "Hide this contact from others"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:589
|
#: src/Module/Contact.php:596
|
||||||
msgid ""
|
msgid ""
|
||||||
"Replies/likes to your public posts <strong>may</strong> still be visible"
|
"Replies/likes to your public posts <strong>may</strong> still be visible"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:590
|
#: src/Module/Contact.php:597
|
||||||
msgid "Notification for new posts"
|
msgid "Notification for new posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:590
|
#: src/Module/Contact.php:597
|
||||||
msgid "Send a notification of every new post of this contact"
|
msgid "Send a notification of every new post of this contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:592
|
#: src/Module/Contact.php:599
|
||||||
msgid "Keyword Deny List"
|
msgid "Keyword Deny List"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:592
|
#: src/Module/Contact.php:599
|
||||||
msgid ""
|
msgid ""
|
||||||
"Comma separated list of keywords that should not be converted to hashtags, "
|
"Comma separated list of keywords that should not be converted to hashtags, "
|
||||||
"when \"Fetch information and keywords\" is selected"
|
"when \"Fetch information and keywords\" is selected"
|
||||||
msgstr ""
|
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"
|
msgid "Actions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:617
|
#: src/Module/Contact.php:624
|
||||||
msgid "Mirror postings from this contact"
|
msgid "Mirror postings from this contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:619
|
#: src/Module/Contact.php:626
|
||||||
msgid ""
|
msgid ""
|
||||||
"Mark this contact as remote_self, this will cause friendica to repost new "
|
"Mark this contact as remote_self, this will cause friendica to repost new "
|
||||||
"entries from this contact."
|
"entries from this contact."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:751
|
#: src/Module/Contact.php:758
|
||||||
msgid "Show all contacts"
|
msgid "Show all contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:759
|
#: src/Module/Contact.php:766
|
||||||
msgid "Only show pending contacts"
|
msgid "Only show pending contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:767
|
#: src/Module/Contact.php:774
|
||||||
msgid "Only show blocked contacts"
|
msgid "Only show blocked contacts"
|
||||||
msgstr ""
|
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
|
#: src/Object/Post.php:308
|
||||||
msgid "Ignored"
|
msgid "Ignored"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:775
|
#: src/Module/Contact.php:782
|
||||||
msgid "Only show ignored contacts"
|
msgid "Only show ignored contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:780 src/Module/Contact.php:820
|
#: src/Module/Contact.php:787 src/Module/Contact.php:827
|
||||||
msgid "Archived"
|
msgid "Archived"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:783
|
#: src/Module/Contact.php:790
|
||||||
msgid "Only show archived contacts"
|
msgid "Only show archived contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:788 src/Module/Contact.php:818
|
#: src/Module/Contact.php:795 src/Module/Contact.php:825
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:791
|
#: src/Module/Contact.php:798
|
||||||
msgid "Only show hidden contacts"
|
msgid "Only show hidden contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:799
|
#: src/Module/Contact.php:806
|
||||||
msgid "Organize your contact groups"
|
msgid "Organize your contact groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:831
|
#: src/Module/Contact.php:838
|
||||||
msgid "Search your contacts"
|
msgid "Search your contacts"
|
||||||
msgstr ""
|
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
|
#, php-format
|
||||||
msgid "Results for: %s"
|
msgid "Results for: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:839
|
#: src/Module/Contact.php:846
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:844
|
#: src/Module/Contact.php:851
|
||||||
msgid "Batch Actions"
|
msgid "Batch Actions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:879
|
#: src/Module/Contact.php:886
|
||||||
msgid "Conversations started by this contact"
|
msgid "Conversations started by this contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:884
|
#: src/Module/Contact.php:891
|
||||||
msgid "Posts and Comments"
|
msgid "Posts and Comments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:902
|
#: src/Module/Contact.php:909
|
||||||
msgid "View all known contacts"
|
msgid "View all known contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:912
|
#: src/Module/Contact.php:919
|
||||||
msgid "Advanced Contact Settings"
|
msgid "Advanced Contact Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:1006
|
#: src/Module/Contact.php:1013
|
||||||
msgid "Mutual Friendship"
|
msgid "Mutual Friendship"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:1010
|
#: src/Module/Contact.php:1017
|
||||||
msgid "is a fan of yours"
|
msgid "is a fan of yours"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:1014
|
#: src/Module/Contact.php:1021
|
||||||
msgid "you are a fan of"
|
msgid "you are a fan of"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:1032
|
#: src/Module/Contact.php:1039
|
||||||
msgid "Pending outgoing contact request"
|
msgid "Pending outgoing contact request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:1034
|
#: src/Module/Contact.php:1041
|
||||||
msgid "Pending incoming contact request"
|
msgid "Pending incoming contact request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:1099
|
#: src/Module/Contact.php:1106
|
||||||
msgid "Refetch contact data"
|
msgid "Refetch contact data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:1110
|
#: src/Module/Contact.php:1117
|
||||||
msgid "Toggle Blocked status"
|
msgid "Toggle Blocked status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:1118
|
#: src/Module/Contact.php:1125
|
||||||
msgid "Toggle Ignored status"
|
msgid "Toggle Ignored status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:1127
|
#: src/Module/Contact.php:1134
|
||||||
msgid "Delete contact"
|
msgid "Delete contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue