Display language name / only search for available languages
This commit is contained in:
parent
fe040dfe4c
commit
bda87e6536
4 changed files with 630 additions and 559 deletions
|
|
@ -64,7 +64,8 @@
|
||||||
"npm-asset/moment": "^2.24",
|
"npm-asset/moment": "^2.24",
|
||||||
"npm-asset/perfect-scrollbar": "0.6.16",
|
"npm-asset/perfect-scrollbar": "0.6.16",
|
||||||
"npm-asset/textcomplete": "^0.18.2",
|
"npm-asset/textcomplete": "^0.18.2",
|
||||||
"npm-asset/typeahead.js": "^0.11.1"
|
"npm-asset/typeahead.js": "^0.11.1",
|
||||||
|
"matriphe/iso-639": "^1.2"
|
||||||
},
|
},
|
||||||
"repositories": [
|
"repositories": [
|
||||||
{
|
{
|
||||||
|
|
|
||||||
46
composer.lock
generated
46
composer.lock
generated
|
|
@ -4,7 +4,7 @@
|
||||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||||
"This file is @generated automatically"
|
"This file is @generated automatically"
|
||||||
],
|
],
|
||||||
"content-hash": "744827edc867db110530c378e051db9b",
|
"content-hash": "fd22bd8c29dcea3d6b6eeb117d79af52",
|
||||||
"packages": [
|
"packages": [
|
||||||
{
|
{
|
||||||
"name": "asika/simple-console",
|
"name": "asika/simple-console",
|
||||||
|
|
@ -877,6 +877,50 @@
|
||||||
],
|
],
|
||||||
"time": "2013-10-27T16:25:49+00:00"
|
"time": "2013-10-27T16:25:49+00:00"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "matriphe/iso-639",
|
||||||
|
"version": "1.2",
|
||||||
|
"source": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/matriphe/php-iso-639.git",
|
||||||
|
"reference": "0245d844daeefdd22a54b47103ffdb0e03c323e1"
|
||||||
|
},
|
||||||
|
"dist": {
|
||||||
|
"type": "zip",
|
||||||
|
"url": "https://api.github.com/repos/matriphe/php-iso-639/zipball/0245d844daeefdd22a54b47103ffdb0e03c323e1",
|
||||||
|
"reference": "0245d844daeefdd22a54b47103ffdb0e03c323e1",
|
||||||
|
"shasum": ""
|
||||||
|
},
|
||||||
|
"require-dev": {
|
||||||
|
"phpunit/phpunit": "^4.7"
|
||||||
|
},
|
||||||
|
"type": "library",
|
||||||
|
"autoload": {
|
||||||
|
"psr-4": {
|
||||||
|
"Matriphe\\ISO639\\": "src/"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"notification-url": "https://packagist.org/downloads/",
|
||||||
|
"license": [
|
||||||
|
"MIT"
|
||||||
|
],
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "Muhammad Zamroni",
|
||||||
|
"email": "halo@matriphe.com"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "PHP library to convert ISO-639-1 code to language name.",
|
||||||
|
"keywords": [
|
||||||
|
"639",
|
||||||
|
"iso",
|
||||||
|
"iso-639",
|
||||||
|
"lang",
|
||||||
|
"language",
|
||||||
|
"laravel"
|
||||||
|
],
|
||||||
|
"time": "2017-07-19T15:11:19+00:00"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "michelf/php-markdown",
|
"name": "michelf/php-markdown",
|
||||||
"version": "1.9.0",
|
"version": "1.9.0",
|
||||||
|
|
|
||||||
|
|
@ -2494,7 +2494,7 @@ class Item
|
||||||
// Remove possibly remaining links
|
// Remove possibly remaining links
|
||||||
$naked_body = preg_replace(Strings::autoLinkRegEx(), '', $naked_body);
|
$naked_body = preg_replace(Strings::autoLinkRegEx(), '', $naked_body);
|
||||||
|
|
||||||
$ld = new Language();
|
$ld = new Language(DI::l10n()->getAvailableLanguages());
|
||||||
$languages = $ld->detect($naked_body)->limit(0, 3)->close();
|
$languages = $ld->detect($naked_body)->limit(0, 3)->close();
|
||||||
if (is_array($languages)) {
|
if (is_array($languages)) {
|
||||||
return json_encode($languages);
|
return json_encode($languages);
|
||||||
|
|
@ -2505,11 +2505,13 @@ class Item
|
||||||
|
|
||||||
public static function getLanguageMessage(array $item)
|
public static function getLanguageMessage(array $item)
|
||||||
{
|
{
|
||||||
|
$iso639 = new \Matriphe\ISO639\ISO639;
|
||||||
|
|
||||||
$used_languages = '';
|
$used_languages = '';
|
||||||
foreach (json_decode($item['language'], true) as $language => $reliability) {
|
foreach (json_decode($item['language'], true) as $language => $reliability) {
|
||||||
$used_languages .= $language . ": " . number_format($reliability, 5) . '\n';
|
$used_languages .= $iso639->languageByCode1($language) . ' (' . $language . "): " . number_format($reliability, 5) . '\n';
|
||||||
}
|
}
|
||||||
$used_languages = DI::l10n()->t('Used languages in this post:\n%s', $used_languages);
|
$used_languages = DI::l10n()->t('Detected languages in this post:\n%s', $used_languages);
|
||||||
return $used_languages;
|
return $used_languages;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: 2020.12-dev\n"
|
"Project-Id-Version: 2020.12-dev\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2020-09-26 18:36+0000\n"
|
"POT-Creation-Date: 2020-10-07 04:10+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"
|
||||||
|
|
@ -51,7 +51,7 @@ msgstr ""
|
||||||
#: mod/message.php:206 mod/message.php:375 mod/events.php:572
|
#: mod/message.php:206 mod/message.php:375 mod/events.php:572
|
||||||
#: mod/photos.php:959 mod/photos.php:1062 mod/photos.php:1348
|
#: mod/photos.php:959 mod/photos.php:1062 mod/photos.php:1348
|
||||||
#: mod/photos.php:1400 mod/photos.php:1457 mod/photos.php:1530
|
#: mod/photos.php:1400 mod/photos.php:1457 mod/photos.php:1530
|
||||||
#: src/Object/Post.php:937 src/Module/Debug/Localtime.php:64
|
#: src/Object/Post.php:943 src/Module/Debug/Localtime.php:64
|
||||||
#: src/Module/Profile/Profile.php:241 src/Module/FriendSuggest.php:129
|
#: src/Module/Profile/Profile.php:241 src/Module/FriendSuggest.php:129
|
||||||
#: src/Module/Install.php:230 src/Module/Install.php:270
|
#: src/Module/Install.php:230 src/Module/Install.php:270
|
||||||
#: src/Module/Install.php:306 src/Module/Delegation.php:151
|
#: src/Module/Install.php:306 src/Module/Delegation.php:151
|
||||||
|
|
@ -64,7 +64,7 @@ msgstr ""
|
||||||
|
|
||||||
#: view/theme/duepuntozero/config.php:70 view/theme/quattro/config.php:72
|
#: view/theme/duepuntozero/config.php:70 view/theme/quattro/config.php:72
|
||||||
#: view/theme/vier/config.php:120 view/theme/frio/config.php:161
|
#: view/theme/vier/config.php:120 view/theme/frio/config.php:161
|
||||||
#: src/Module/Settings/Display.php:189
|
#: src/Module/Settings/Display.php:193
|
||||||
msgid "Theme settings"
|
msgid "Theme settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -144,8 +144,8 @@ msgstr ""
|
||||||
msgid "Enter name or interest"
|
msgid "Enter name or interest"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: view/theme/vier/theme.php:171 include/conversation.php:922
|
#: view/theme/vier/theme.php:171 include/conversation.php:930
|
||||||
#: mod/follow.php:163 src/Model/Contact.php:960 src/Model/Contact.php:973
|
#: mod/follow.php:163 src/Model/Contact.php:964 src/Model/Contact.php:977
|
||||||
#: src/Content/Widget.php:79
|
#: src/Content/Widget.php:79
|
||||||
msgid "Connect/Follow"
|
msgid "Connect/Follow"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -184,7 +184,7 @@ msgstr ""
|
||||||
msgid "Local Directory"
|
msgid "Local Directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: view/theme/vier/theme.php:220 src/Module/Conversation/Community.php:124
|
#: view/theme/vier/theme.php:220 src/Content/Widget.php:546
|
||||||
#: src/Content/Nav.php:229 src/Content/ForumManager.php:144
|
#: src/Content/Nav.php:229 src/Content/ForumManager.php:144
|
||||||
#: src/Content/Text/HTML.php:917
|
#: src/Content/Text/HTML.php:917
|
||||||
msgid "Forums"
|
msgid "Forums"
|
||||||
|
|
@ -423,7 +423,7 @@ msgstr ""
|
||||||
msgid "Manage/edit friends and contacts"
|
msgid "Manage/edit friends and contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: view/theme/frio/theme.php:321 include/conversation.php:905
|
#: view/theme/frio/theme.php:321 include/conversation.php:909
|
||||||
msgid "Follow Thread"
|
msgid "Follow Thread"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -482,7 +482,7 @@ msgstr ""
|
||||||
msgid "%1$s poked %2$s"
|
msgid "%1$s poked %2$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:221 src/Model/Item.php:3406
|
#: include/conversation.php:221 src/Model/Item.php:3442
|
||||||
msgid "event"
|
msgid "event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -490,7 +490,7 @@ msgstr ""
|
||||||
msgid "status"
|
msgid "status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:229 mod/tagger.php:89 src/Model/Item.php:3408
|
#: include/conversation.php:229 mod/tagger.php:89 src/Model/Item.php:3444
|
||||||
msgid "photo"
|
msgid "photo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -504,386 +504,390 @@ msgid "Select"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:561 mod/settings.php:560 mod/settings.php:702
|
#: include/conversation.php:561 mod/settings.php:560 mod/settings.php:702
|
||||||
#: mod/photos.php:1489 src/Module/Contact.php:842 src/Module/Contact.php:1145
|
#: mod/photos.php:1489 src/Module/Contact.php:842 src/Module/Contact.php:1146
|
||||||
#: src/Module/Admin/Users.php:248
|
#: src/Module/Admin/Users.php:248
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:591 src/Object/Post.php:434 src/Object/Post.php:435
|
#: include/conversation.php:595 src/Object/Post.php:439 src/Object/Post.php:440
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "View %s's profile @ %s"
|
msgid "View %s's profile @ %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:604 src/Object/Post.php:422
|
#: include/conversation.php:608 src/Object/Post.php:427
|
||||||
msgid "Categories:"
|
msgid "Categories:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:605 src/Object/Post.php:423
|
#: include/conversation.php:609 src/Object/Post.php:428
|
||||||
msgid "Filed under:"
|
msgid "Filed under:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:612 src/Object/Post.php:448
|
#: include/conversation.php:616 src/Object/Post.php:453
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s from %s"
|
msgid "%s from %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:627
|
#: include/conversation.php:631
|
||||||
msgid "View in context"
|
msgid "View in context"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:629 include/conversation.php:1175
|
#: include/conversation.php:633 include/conversation.php:1189
|
||||||
#: mod/wallmessage.php:155 mod/message.php:205 mod/message.php:376
|
#: mod/wallmessage.php:155 mod/message.php:205 mod/message.php:376
|
||||||
#: mod/editpost.php:104 mod/photos.php:1373 src/Object/Post.php:480
|
#: mod/editpost.php:104 mod/photos.php:1373 src/Object/Post.php:486
|
||||||
#: src/Module/Item/Compose.php:159
|
#: src/Module/Item/Compose.php:159
|
||||||
msgid "Please wait"
|
msgid "Please wait"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:693
|
#: include/conversation.php:697
|
||||||
msgid "remove"
|
msgid "remove"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:697
|
#: include/conversation.php:701
|
||||||
msgid "Delete Selected Items"
|
msgid "Delete Selected Items"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:719 include/conversation.php:722
|
#: include/conversation.php:723 include/conversation.php:726
|
||||||
#: include/conversation.php:725 include/conversation.php:728
|
#: include/conversation.php:729 include/conversation.php:732
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "You had been addressed (%s)."
|
msgid "You had been addressed (%s)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:731
|
#: include/conversation.php:735
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "You are following %s."
|
msgid "You are following %s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:734
|
#: include/conversation.php:738
|
||||||
msgid "Tagged"
|
msgid "Tagged"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:744 include/conversation.php:1063
|
#: include/conversation.php:748 include/conversation.php:1077
|
||||||
#: include/conversation.php:1106
|
#: include/conversation.php:1120
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s reshared this."
|
msgid "%s reshared this."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:746
|
#: include/conversation.php:750
|
||||||
msgid "Reshared"
|
msgid "Reshared"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:746
|
#: include/conversation.php:750
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Reshared by %s"
|
msgid "Reshared by %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:749
|
#: include/conversation.php:753
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s is participating in this thread."
|
msgid "%s is participating in this thread."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:752
|
#: include/conversation.php:756
|
||||||
msgid "Stored"
|
msgid "Stored"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:755
|
#: include/conversation.php:759
|
||||||
msgid "Global"
|
msgid "Global"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:758
|
#: include/conversation.php:762
|
||||||
msgid "Relayed"
|
msgid "Relayed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:758
|
#: include/conversation.php:762
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Relayed by %s."
|
msgid "Relayed by %s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:761
|
#: include/conversation.php:765
|
||||||
msgid "Fetched"
|
msgid "Fetched"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:761
|
#: include/conversation.php:765
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Fetched because of %s"
|
msgid "Fetched because of %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:906 src/Model/Contact.php:965
|
#: include/conversation.php:910 src/Model/Contact.php:969
|
||||||
msgid "View Status"
|
msgid "View Status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:907 include/conversation.php:925
|
#: include/conversation.php:911 include/conversation.php:933
|
||||||
#: src/Module/Directory.php:166 src/Module/Settings/Profile/Index.php:240
|
#: src/Module/Directory.php:166 src/Module/Settings/Profile/Index.php:240
|
||||||
#: src/Model/Contact.php:891 src/Model/Contact.php:957
|
#: src/Model/Contact.php:895 src/Model/Contact.php:961
|
||||||
#: src/Model/Contact.php:966
|
#: src/Model/Contact.php:970
|
||||||
msgid "View Profile"
|
msgid "View Profile"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:908 src/Model/Contact.php:967
|
#: include/conversation.php:912 src/Model/Contact.php:971
|
||||||
msgid "View Photos"
|
msgid "View Photos"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:909 src/Model/Contact.php:958
|
#: include/conversation.php:913 src/Model/Contact.php:962
|
||||||
#: src/Model/Contact.php:968
|
#: src/Model/Contact.php:972
|
||||||
msgid "Network Posts"
|
msgid "Network Posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:910 src/Model/Contact.php:959
|
#: include/conversation.php:914 src/Model/Contact.php:963
|
||||||
#: src/Model/Contact.php:969
|
#: src/Model/Contact.php:973
|
||||||
msgid "View Contact"
|
msgid "View Contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:911 src/Model/Contact.php:971
|
#: include/conversation.php:915 src/Model/Contact.php:975
|
||||||
msgid "Send PM"
|
msgid "Send PM"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:912 src/Module/Contact.php:593
|
#: include/conversation.php:916 src/Module/Contact.php:593
|
||||||
#: src/Module/Contact.php:839 src/Module/Contact.php:1120
|
#: src/Module/Contact.php:839 src/Module/Contact.php:1121
|
||||||
#: src/Module/Admin/Users.php:249 src/Module/Admin/Blocklist/Contact.php:84
|
#: src/Module/Admin/Users.php:249 src/Module/Admin/Blocklist/Contact.php:84
|
||||||
msgid "Block"
|
msgid "Block"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:913 src/Module/Notifications/Notification.php:59
|
#: include/conversation.php:917 src/Module/Notifications/Notification.php:59
|
||||||
#: src/Module/Notifications/Introductions.php:110
|
#: src/Module/Notifications/Introductions.php:112
|
||||||
#: src/Module/Notifications/Introductions.php:185 src/Module/Contact.php:594
|
#: src/Module/Notifications/Introductions.php:187 src/Module/Contact.php:594
|
||||||
#: src/Module/Contact.php:840 src/Module/Contact.php:1128
|
#: src/Module/Contact.php:840 src/Module/Contact.php:1129
|
||||||
msgid "Ignore"
|
msgid "Ignore"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:917 src/Model/Contact.php:972
|
#: include/conversation.php:921 src/Object/Post.php:416
|
||||||
|
msgid "Languages"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: include/conversation.php:925 src/Model/Contact.php:976
|
||||||
msgid "Poke"
|
msgid "Poke"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1048
|
#: include/conversation.php:1062
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s likes this."
|
msgid "%s likes this."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1051
|
#: include/conversation.php:1065
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s doesn't like this."
|
msgid "%s doesn't like this."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1054
|
#: include/conversation.php:1068
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s attends."
|
msgid "%s attends."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1057
|
#: include/conversation.php:1071
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s doesn't attend."
|
msgid "%s doesn't attend."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1060
|
#: include/conversation.php:1074
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s attends maybe."
|
msgid "%s attends maybe."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1071
|
#: include/conversation.php:1085
|
||||||
msgid "and"
|
msgid "and"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1077
|
#: include/conversation.php:1091
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "and %d other people"
|
msgid "and %d other people"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1085
|
#: include/conversation.php:1099
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "<span %1$s>%2$d people</span> like this"
|
msgid "<span %1$s>%2$d people</span> like this"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1086
|
#: include/conversation.php:1100
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s like this."
|
msgid "%s like this."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1089
|
#: include/conversation.php:1103
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "<span %1$s>%2$d people</span> don't like this"
|
msgid "<span %1$s>%2$d people</span> don't like this"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1090
|
#: include/conversation.php:1104
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s don't like this."
|
msgid "%s don't like this."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1093
|
#: include/conversation.php:1107
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "<span %1$s>%2$d people</span> attend"
|
msgid "<span %1$s>%2$d people</span> attend"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1094
|
#: include/conversation.php:1108
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s attend."
|
msgid "%s attend."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1097
|
#: include/conversation.php:1111
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "<span %1$s>%2$d people</span> don't attend"
|
msgid "<span %1$s>%2$d people</span> don't attend"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1098
|
#: include/conversation.php:1112
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s don't attend."
|
msgid "%s don't attend."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1101
|
#: include/conversation.php:1115
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "<span %1$s>%2$d people</span> attend maybe"
|
msgid "<span %1$s>%2$d people</span> attend maybe"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1102
|
#: include/conversation.php:1116
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s attend maybe."
|
msgid "%s attend maybe."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1105
|
#: include/conversation.php:1119
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "<span %1$s>%2$d people</span> reshared this"
|
msgid "<span %1$s>%2$d people</span> reshared this"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1135
|
#: include/conversation.php:1149
|
||||||
msgid "Visible to <strong>everybody</strong>"
|
msgid "Visible to <strong>everybody</strong>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1136 src/Object/Post.php:947
|
#: include/conversation.php:1150 src/Object/Post.php:953
|
||||||
#: src/Module/Item/Compose.php:153
|
#: src/Module/Item/Compose.php:153
|
||||||
msgid "Please enter a image/video/audio/webpage URL:"
|
msgid "Please enter a image/video/audio/webpage URL:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1137
|
#: include/conversation.php:1151
|
||||||
msgid "Tag term:"
|
msgid "Tag term:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1138 src/Module/Filer/SaveTag.php:65
|
#: include/conversation.php:1152 src/Module/Filer/SaveTag.php:65
|
||||||
msgid "Save to Folder:"
|
msgid "Save to Folder:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1139
|
#: include/conversation.php:1153
|
||||||
msgid "Where are you right now?"
|
msgid "Where are you right now?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1140
|
#: include/conversation.php:1154
|
||||||
msgid "Delete item(s)?"
|
msgid "Delete item(s)?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1150
|
#: include/conversation.php:1164
|
||||||
msgid "New Post"
|
msgid "New Post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1153
|
#: include/conversation.php:1167
|
||||||
msgid "Share"
|
msgid "Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1154 mod/editpost.php:89 mod/photos.php:1402
|
#: include/conversation.php:1168 mod/editpost.php:89 mod/photos.php:1402
|
||||||
#: src/Object/Post.php:938 src/Module/Contact/Poke.php:155
|
#: src/Object/Post.php:944 src/Module/Contact/Poke.php:155
|
||||||
msgid "Loading..."
|
msgid "Loading..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1155 mod/wallmessage.php:153 mod/message.php:203
|
#: include/conversation.php:1169 mod/wallmessage.php:153 mod/message.php:203
|
||||||
#: mod/message.php:373 mod/editpost.php:90
|
#: mod/message.php:373 mod/editpost.php:90
|
||||||
msgid "Upload photo"
|
msgid "Upload photo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1156 mod/editpost.php:91
|
#: include/conversation.php:1170 mod/editpost.php:91
|
||||||
msgid "upload photo"
|
msgid "upload photo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1157 mod/editpost.php:92
|
#: include/conversation.php:1171 mod/editpost.php:92
|
||||||
msgid "Attach file"
|
msgid "Attach file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1158 mod/editpost.php:93
|
#: include/conversation.php:1172 mod/editpost.php:93
|
||||||
msgid "attach file"
|
msgid "attach file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1159 src/Object/Post.php:939
|
#: include/conversation.php:1173 src/Object/Post.php:945
|
||||||
#: src/Module/Item/Compose.php:145
|
#: src/Module/Item/Compose.php:145
|
||||||
msgid "Bold"
|
msgid "Bold"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1160 src/Object/Post.php:940
|
#: include/conversation.php:1174 src/Object/Post.php:946
|
||||||
#: src/Module/Item/Compose.php:146
|
#: src/Module/Item/Compose.php:146
|
||||||
msgid "Italic"
|
msgid "Italic"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1161 src/Object/Post.php:941
|
#: include/conversation.php:1175 src/Object/Post.php:947
|
||||||
#: src/Module/Item/Compose.php:147
|
#: src/Module/Item/Compose.php:147
|
||||||
msgid "Underline"
|
msgid "Underline"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1162 src/Object/Post.php:942
|
#: include/conversation.php:1176 src/Object/Post.php:948
|
||||||
#: src/Module/Item/Compose.php:148
|
#: src/Module/Item/Compose.php:148
|
||||||
msgid "Quote"
|
msgid "Quote"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1163 src/Object/Post.php:943
|
#: include/conversation.php:1177 src/Object/Post.php:949
|
||||||
#: src/Module/Item/Compose.php:149
|
#: src/Module/Item/Compose.php:149
|
||||||
msgid "Code"
|
msgid "Code"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1164 src/Object/Post.php:944
|
#: include/conversation.php:1178 src/Object/Post.php:950
|
||||||
#: src/Module/Item/Compose.php:150
|
#: src/Module/Item/Compose.php:150
|
||||||
msgid "Image"
|
msgid "Image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1165 src/Object/Post.php:945
|
#: include/conversation.php:1179 src/Object/Post.php:951
|
||||||
#: src/Module/Item/Compose.php:151
|
#: src/Module/Item/Compose.php:151
|
||||||
msgid "Link"
|
msgid "Link"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1166 src/Object/Post.php:946
|
#: include/conversation.php:1180 src/Object/Post.php:952
|
||||||
#: src/Module/Item/Compose.php:152
|
#: src/Module/Item/Compose.php:152
|
||||||
msgid "Link or Media"
|
msgid "Link or Media"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1167 mod/editpost.php:100
|
#: include/conversation.php:1181 mod/editpost.php:100
|
||||||
#: src/Module/Item/Compose.php:155
|
#: src/Module/Item/Compose.php:155
|
||||||
msgid "Set your location"
|
msgid "Set your location"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1168 mod/editpost.php:101
|
#: include/conversation.php:1182 mod/editpost.php:101
|
||||||
msgid "set location"
|
msgid "set location"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1169 mod/editpost.php:102
|
#: include/conversation.php:1183 mod/editpost.php:102
|
||||||
msgid "Clear browser location"
|
msgid "Clear browser location"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1170 mod/editpost.php:103
|
#: include/conversation.php:1184 mod/editpost.php:103
|
||||||
msgid "clear location"
|
msgid "clear location"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1172 mod/editpost.php:117
|
#: include/conversation.php:1186 mod/editpost.php:117
|
||||||
#: src/Module/Item/Compose.php:160
|
#: src/Module/Item/Compose.php:160
|
||||||
msgid "Set title"
|
msgid "Set title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1174 mod/editpost.php:119
|
#: include/conversation.php:1188 mod/editpost.php:119
|
||||||
#: src/Module/Item/Compose.php:161
|
#: src/Module/Item/Compose.php:161
|
||||||
msgid "Categories (comma-separated list)"
|
msgid "Categories (comma-separated list)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1176 mod/editpost.php:105
|
#: include/conversation.php:1190 mod/editpost.php:105
|
||||||
msgid "Permission settings"
|
msgid "Permission settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1177 mod/editpost.php:134 mod/events.php:575
|
#: include/conversation.php:1191 mod/editpost.php:134 mod/events.php:575
|
||||||
#: mod/photos.php:977 mod/photos.php:1344
|
#: mod/photos.php:977 mod/photos.php:1344
|
||||||
msgid "Permissions"
|
msgid "Permissions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1186 mod/editpost.php:114
|
#: include/conversation.php:1200 mod/editpost.php:114
|
||||||
msgid "Public post"
|
msgid "Public post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1190 mod/editpost.php:125 mod/events.php:570
|
#: include/conversation.php:1204 mod/editpost.php:125 mod/events.php:570
|
||||||
#: mod/photos.php:1401 mod/photos.php:1458 mod/photos.php:1531
|
#: mod/photos.php:1401 mod/photos.php:1458 mod/photos.php:1531
|
||||||
#: src/Object/Post.php:948 src/Module/Item/Compose.php:154
|
#: src/Object/Post.php:954 src/Module/Item/Compose.php:154
|
||||||
msgid "Preview"
|
msgid "Preview"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1194 mod/settings.php:500 mod/settings.php:526
|
#: include/conversation.php:1208 mod/settings.php:500 mod/settings.php:526
|
||||||
#: mod/unfollow.php:137 mod/tagrm.php:36 mod/tagrm.php:126
|
#: mod/unfollow.php:137 mod/tagrm.php:36 mod/tagrm.php:126
|
||||||
#: mod/dfrn_request.php:648 mod/editpost.php:128 mod/follow.php:169
|
#: mod/dfrn_request.php:648 mod/editpost.php:128 mod/follow.php:169
|
||||||
#: mod/fbrowser.php:105 mod/fbrowser.php:134 mod/photos.php:1045
|
#: mod/fbrowser.php:105 mod/fbrowser.php:134 mod/photos.php:1045
|
||||||
|
|
@ -892,16 +896,16 @@ msgstr ""
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1201 mod/editpost.php:132
|
#: include/conversation.php:1215 mod/editpost.php:132
|
||||||
#: src/Module/Contact.php:336 src/Model/Profile.php:444
|
#: src/Module/Contact.php:336 src/Model/Profile.php:444
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1202 mod/editpost.php:133
|
#: include/conversation.php:1216 mod/editpost.php:133
|
||||||
msgid "Browser"
|
msgid "Browser"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:1204 mod/editpost.php:136
|
#: include/conversation.php:1218 mod/editpost.php:136
|
||||||
msgid "Open Compose page"
|
msgid "Open Compose page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1230,26 +1234,26 @@ msgstr ""
|
||||||
msgid "Please visit %s to approve or reject the request."
|
msgid "Please visit %s to approve or reject the request."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/api.php:1127
|
#: include/api.php:1129
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Daily posting limit of %d post reached. The post was rejected."
|
msgid "Daily posting limit of %d post reached. The post was rejected."
|
||||||
msgid_plural "Daily posting limit of %d posts reached. The post was rejected."
|
msgid_plural "Daily posting limit of %d posts reached. The post was rejected."
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
|
|
||||||
#: include/api.php:1141
|
#: include/api.php:1143
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Weekly posting limit of %d post reached. The post was rejected."
|
msgid "Weekly posting limit of %d post reached. The post was rejected."
|
||||||
msgid_plural "Weekly posting limit of %d posts reached. The post was rejected."
|
msgid_plural "Weekly posting limit of %d posts reached. The post was rejected."
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
|
|
||||||
#: include/api.php:1155
|
#: include/api.php:1157
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Monthly posting limit of %d post reached. The post was rejected."
|
msgid "Monthly posting limit of %d post reached. The post was rejected."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/api.php:4452 mod/photos.php:106 mod/photos.php:197
|
#: include/api.php:4454 mod/photos.php:106 mod/photos.php:197
|
||||||
#: mod/photos.php:634 mod/photos.php:1051 mod/photos.php:1068
|
#: mod/photos.php:634 mod/photos.php:1051 mod/photos.php:1068
|
||||||
#: mod/photos.php:1605 src/Module/Settings/Profile/Photo/Crop.php:97
|
#: mod/photos.php:1605 src/Module/Settings/Profile/Photo/Crop.php:97
|
||||||
#: src/Module/Settings/Profile/Photo/Crop.php:113
|
#: src/Module/Settings/Profile/Photo/Crop.php:113
|
||||||
|
|
@ -1263,7 +1267,7 @@ msgstr ""
|
||||||
|
|
||||||
#: mod/redir.php:34 mod/redir.php:203 mod/cal.php:47 mod/cal.php:51
|
#: mod/redir.php:34 mod/redir.php:203 mod/cal.php:47 mod/cal.php:51
|
||||||
#: mod/follow.php:37 src/Module/Debug/ItemBody.php:37
|
#: mod/follow.php:37 src/Module/Debug/ItemBody.php:37
|
||||||
#: src/Module/Conversation/Community.php:179 src/Module/Item/Ignore.php:41
|
#: src/Module/Conversation/Community.php:192 src/Module/Item/Ignore.php:41
|
||||||
#: src/Module/Diaspora/Receive.php:51
|
#: src/Module/Diaspora/Receive.php:51
|
||||||
msgid "Access denied."
|
msgid "Access denied."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -1281,11 +1285,11 @@ msgstr ""
|
||||||
|
|
||||||
#: mod/wallmessage.php:35 mod/wallmessage.php:59 mod/wallmessage.php:96
|
#: mod/wallmessage.php:35 mod/wallmessage.php:59 mod/wallmessage.php:96
|
||||||
#: mod/wallmessage.php:120 mod/dfrn_confirm.php:78 mod/settings.php:47
|
#: mod/wallmessage.php:120 mod/dfrn_confirm.php:78 mod/settings.php:47
|
||||||
#: mod/settings.php:65 mod/settings.php:489 mod/network.php:47
|
#: mod/settings.php:65 mod/settings.php:489 mod/network.php:48
|
||||||
#: mod/repair_ostatus.php:31 mod/unfollow.php:37 mod/unfollow.php:91
|
#: mod/repair_ostatus.php:31 mod/unfollow.php:37 mod/unfollow.php:91
|
||||||
#: mod/unfollow.php:123 mod/message.php:70 mod/message.php:113
|
#: mod/unfollow.php:123 mod/message.php:70 mod/message.php:113
|
||||||
#: mod/ostatus_subscribe.php:30 mod/suggest.php:34 mod/wall_upload.php:99
|
#: mod/ostatus_subscribe.php:30 mod/suggest.php:34 mod/wall_upload.php:99
|
||||||
#: mod/wall_upload.php:102 mod/api.php:50 mod/api.php:55 mod/wall_attach.php:78
|
#: mod/wall_upload.php:102 mod/api.php:52 mod/api.php:57 mod/wall_attach.php:78
|
||||||
#: mod/wall_attach.php:81 mod/item.php:189 mod/item.php:194 mod/item.php:941
|
#: mod/wall_attach.php:81 mod/item.php:189 mod/item.php:194 mod/item.php:941
|
||||||
#: mod/uimport.php:32 mod/editpost.php:38 mod/events.php:228 mod/follow.php:76
|
#: mod/uimport.php:32 mod/editpost.php:38 mod/events.php:228 mod/follow.php:76
|
||||||
#: mod/follow.php:152 mod/notes.php:43 mod/photos.php:179 mod/photos.php:930
|
#: mod/follow.php:152 mod/notes.php:43 mod/photos.php:179 mod/photos.php:930
|
||||||
|
|
@ -1304,7 +1308,7 @@ msgstr ""
|
||||||
#: src/Module/Settings/Profile/Photo/Crop.php:157
|
#: src/Module/Settings/Profile/Photo/Crop.php:157
|
||||||
#: src/Module/Settings/Profile/Photo/Index.php:113
|
#: src/Module/Settings/Profile/Photo/Index.php:113
|
||||||
#: src/Module/Settings/Delegation.php:42 src/Module/Settings/Delegation.php:70
|
#: src/Module/Settings/Delegation.php:42 src/Module/Settings/Delegation.php:70
|
||||||
#: src/Module/Settings/Display.php:42 src/Module/Settings/Display.php:116
|
#: src/Module/Settings/Display.php:42 src/Module/Settings/Display.php:118
|
||||||
msgid "Permission denied."
|
msgid "Permission denied."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1436,13 +1440,13 @@ msgstr ""
|
||||||
msgid "Unable to update your contact profile details on our system"
|
msgid "Unable to update your contact profile details on our system"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/dfrn_confirm.php:552 mod/dfrn_request.php:569 src/Model/Contact.php:2392
|
#: mod/dfrn_confirm.php:552 mod/dfrn_request.php:569 src/Model/Contact.php:2422
|
||||||
msgid "[Name Withheld]"
|
msgid "[Name Withheld]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/videos.php:129 mod/display.php:179 mod/dfrn_request.php:606
|
#: mod/videos.php:129 mod/display.php:179 mod/dfrn_request.php:606
|
||||||
#: mod/photos.php:844 src/Module/Debug/WebFinger.php:38
|
#: mod/photos.php:844 src/Module/Debug/WebFinger.php:38
|
||||||
#: src/Module/Debug/Probe.php:39 src/Module/Conversation/Community.php:173
|
#: src/Module/Debug/Probe.php:39 src/Module/Conversation/Community.php:186
|
||||||
#: src/Module/Directory.php:49 src/Module/Search/Index.php:50
|
#: src/Module/Directory.php:49 src/Module/Search/Index.php:50
|
||||||
#: src/Module/Search/Index.php:55
|
#: src/Module/Search/Index.php:55
|
||||||
msgid "Public access denied."
|
msgid "Public access denied."
|
||||||
|
|
@ -1456,7 +1460,7 @@ msgstr ""
|
||||||
msgid "Access to this item is restricted."
|
msgid "Access to this item is restricted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/videos.php:252 src/Model/Item.php:3598
|
#: mod/videos.php:252 src/Model/Item.php:3632
|
||||||
msgid "View Video"
|
msgid "View Video"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1571,9 +1575,9 @@ msgstr ""
|
||||||
#: mod/settings.php:499 mod/settings.php:606 mod/settings.php:704
|
#: mod/settings.php:499 mod/settings.php:606 mod/settings.php:704
|
||||||
#: mod/settings.php:839 src/Module/Admin/Themes/Index.php:113
|
#: mod/settings.php:839 src/Module/Admin/Themes/Index.php:113
|
||||||
#: src/Module/Admin/Features.php:87 src/Module/Admin/Logs/Settings.php:82
|
#: src/Module/Admin/Features.php:87 src/Module/Admin/Logs/Settings.php:82
|
||||||
#: src/Module/Admin/Site.php:583 src/Module/Admin/Tos.php:66
|
#: src/Module/Admin/Site.php:585 src/Module/Admin/Tos.php:66
|
||||||
#: src/Module/Admin/Addons/Index.php:69 src/Module/Settings/Delegation.php:170
|
#: src/Module/Admin/Addons/Index.php:69 src/Module/Settings/Delegation.php:170
|
||||||
#: src/Module/Settings/Display.php:185
|
#: src/Module/Settings/Display.php:189
|
||||||
msgid "Save Settings"
|
msgid "Save Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2289,52 +2293,52 @@ msgstr ""
|
||||||
msgid "{0} requested registration"
|
msgid "{0} requested registration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/network.php:297
|
#: mod/network.php:328
|
||||||
msgid "No items found"
|
msgid "No items found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/network.php:528
|
#: mod/network.php:567
|
||||||
msgid "No such group"
|
msgid "No such group"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/network.php:536
|
#: mod/network.php:575
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Group: %s"
|
msgid "Group: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/network.php:548 src/Module/Contact/Contacts.php:28
|
#: mod/network.php:587 src/Module/Contact/Contacts.php:28
|
||||||
msgid "Invalid contact."
|
msgid "Invalid contact."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/network.php:684
|
#: mod/network.php:723
|
||||||
msgid "Latest Activity"
|
msgid "Latest Activity"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/network.php:687
|
#: mod/network.php:726
|
||||||
msgid "Sort by latest activity"
|
msgid "Sort by latest activity"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/network.php:692
|
#: mod/network.php:731
|
||||||
msgid "Latest Posts"
|
msgid "Latest Posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/network.php:695
|
#: mod/network.php:734
|
||||||
msgid "Sort by post received date"
|
msgid "Sort by post received date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/network.php:702 src/Module/Settings/Profile/Index.php:242
|
#: mod/network.php:741 src/Module/Settings/Profile/Index.php:242
|
||||||
msgid "Personal"
|
msgid "Personal"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/network.php:705
|
#: mod/network.php:744
|
||||||
msgid "Posts that mention or involve you"
|
msgid "Posts that mention or involve you"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/network.php:711
|
#: mod/network.php:750
|
||||||
msgid "Starred"
|
msgid "Starred"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/network.php:714
|
#: mod/network.php:753
|
||||||
msgid "Favourite Posts"
|
msgid "Favourite Posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2380,8 +2384,8 @@ msgid "Submit Request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/unfollow.php:140 mod/follow.php:166
|
#: mod/unfollow.php:140 mod/follow.php:166
|
||||||
#: src/Module/Notifications/Introductions.php:103
|
#: src/Module/Notifications/Introductions.php:107
|
||||||
#: src/Module/Notifications/Introductions.php:177 src/Module/Contact.php:610
|
#: src/Module/Notifications/Introductions.php:179 src/Module/Contact.php:610
|
||||||
#: src/Module/Admin/Blocklist/Contact.php:100
|
#: src/Module/Admin/Blocklist/Contact.php:100
|
||||||
msgid "Profile URL"
|
msgid "Profile URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -2400,8 +2404,8 @@ msgid "Unable to locate contact information."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:122 src/Module/Notifications/Notification.php:56
|
#: mod/message.php:122 src/Module/Notifications/Notification.php:56
|
||||||
#: src/Module/Notifications/Introductions.php:111
|
#: src/Module/Notifications/Introductions.php:113
|
||||||
#: src/Module/Notifications/Introductions.php:149
|
#: src/Module/Notifications/Introductions.php:151
|
||||||
msgid "Discard"
|
msgid "Discard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2792,12 +2796,12 @@ msgstr ""
|
||||||
msgid "Invalid profile URL."
|
msgid "Invalid profile URL."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/dfrn_request.php:355 src/Model/Contact.php:2017
|
#: mod/dfrn_request.php:355 src/Model/Contact.php:2047
|
||||||
msgid "Disallowed profile URL."
|
msgid "Disallowed profile URL."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/dfrn_request.php:361 src/Module/Friendica.php:79
|
#: mod/dfrn_request.php:361 src/Module/Friendica.php:80
|
||||||
#: src/Model/Contact.php:2022
|
#: src/Model/Contact.php:2052
|
||||||
msgid "Blocked domain"
|
msgid "Blocked domain"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2879,30 +2883,30 @@ msgstr ""
|
||||||
msgid "Add a personal note:"
|
msgid "Add a personal note:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/api.php:100 mod/api.php:122
|
#: mod/api.php:102 mod/api.php:124
|
||||||
msgid "Authorize application connection"
|
msgid "Authorize application connection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/api.php:101
|
#: mod/api.php:103
|
||||||
msgid "Return to your app and insert this Securty Code:"
|
msgid "Return to your app and insert this Securty Code:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/api.php:110 src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58
|
#: mod/api.php:112 src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58
|
||||||
msgid "Please login to continue."
|
msgid "Please login to continue."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/api.php:124
|
#: mod/api.php:126
|
||||||
msgid ""
|
msgid ""
|
||||||
"Do you want to authorize this application to access your posts and contacts, "
|
"Do you want to authorize this application to access your posts and contacts, "
|
||||||
"and/or create new posts for you?"
|
"and/or create new posts for you?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/api.php:125 src/Module/Notifications/Introductions.php:119
|
#: mod/api.php:127 src/Module/Notifications/Introductions.php:121
|
||||||
#: src/Module/Register.php:115 src/Module/Contact.php:446
|
#: src/Module/Register.php:115 src/Module/Contact.php:446
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/api.php:126 src/Module/Notifications/Introductions.php:119
|
#: mod/api.php:128 src/Module/Notifications/Introductions.php:121
|
||||||
#: src/Module/Register.php:116
|
#: src/Module/Register.php:116
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -3142,7 +3146,7 @@ msgstr ""
|
||||||
msgid "Description:"
|
msgid "Description:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/events.php:560 src/Module/Notifications/Introductions.php:166
|
#: mod/events.php:560 src/Module/Notifications/Introductions.php:168
|
||||||
#: src/Module/Profile/Profile.php:190 src/Module/Contact.php:614
|
#: src/Module/Profile/Profile.php:190 src/Module/Contact.php:614
|
||||||
#: src/Module/Directory.php:156 src/Model/Event.php:84 src/Model/Event.php:111
|
#: src/Module/Directory.php:156 src/Model/Event.php:84 src/Model/Event.php:111
|
||||||
#: src/Model/Event.php:454 src/Model/Event.php:948 src/Model/Profile.php:358
|
#: src/Model/Event.php:454 src/Model/Event.php:948 src/Model/Profile.php:358
|
||||||
|
|
@ -3162,7 +3166,7 @@ msgid "Basic"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/events.php:574 src/Module/Profile/Profile.php:243
|
#: mod/events.php:574 src/Module/Profile/Profile.php:243
|
||||||
#: src/Module/Contact.php:909 src/Module/Admin/Site.php:588
|
#: src/Module/Contact.php:909 src/Module/Admin/Site.php:590
|
||||||
msgid "Advanced"
|
msgid "Advanced"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -3190,7 +3194,7 @@ msgstr ""
|
||||||
msgid "OStatus support is disabled. Contact can't be added."
|
msgid "OStatus support is disabled. Contact can't be added."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/follow.php:167 src/Module/Notifications/Introductions.php:170
|
#: mod/follow.php:167 src/Module/Notifications/Introductions.php:172
|
||||||
#: src/Module/Profile/Profile.php:202 src/Module/Contact.php:620
|
#: src/Module/Profile/Profile.php:202 src/Module/Contact.php:620
|
||||||
msgid "Tags:"
|
msgid "Tags:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -3408,13 +3412,13 @@ msgid "I don't like this (toggle)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:1397 mod/photos.php:1454 mod/photos.php:1527
|
#: mod/photos.php:1397 mod/photos.php:1454 mod/photos.php:1527
|
||||||
#: src/Object/Post.php:934 src/Module/Contact.php:1051
|
#: src/Object/Post.php:940 src/Module/Contact.php:1052
|
||||||
#: src/Module/Item/Compose.php:142
|
#: src/Module/Item/Compose.php:142
|
||||||
msgid "This is you"
|
msgid "This is you"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:1399 mod/photos.php:1456 mod/photos.php:1529
|
#: mod/photos.php:1399 mod/photos.php:1456 mod/photos.php:1529
|
||||||
#: src/Object/Post.php:474 src/Object/Post.php:936
|
#: src/Object/Post.php:480 src/Object/Post.php:942
|
||||||
msgid "Comment"
|
msgid "Comment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -3434,33 +3438,6 @@ msgstr ""
|
||||||
msgid "toggle mobile"
|
msgid "toggle mobile"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/App/Authentication.php:210 src/App/Authentication.php:262
|
|
||||||
msgid "Login failed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/App/Authentication.php:224 src/Model/User.php:797
|
|
||||||
msgid ""
|
|
||||||
"We encountered a problem while logging in with the OpenID you provided. "
|
|
||||||
"Please check the correct spelling of the ID."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/App/Authentication.php:224 src/Model/User.php:797
|
|
||||||
msgid "The error message was:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/App/Authentication.php:273
|
|
||||||
msgid "Login failed. Please check your credentials."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/App/Authentication.php:389
|
|
||||||
#, php-format
|
|
||||||
msgid "Welcome %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/App/Authentication.php:390
|
|
||||||
msgid "Please upload a profile photo."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/App/Router.php:224
|
#: src/App/Router.php:224
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Method not allowed for this module. Allowed method(s): %s"
|
msgid "Method not allowed for this module. Allowed method(s): %s"
|
||||||
|
|
@ -3470,6 +3447,33 @@ msgstr ""
|
||||||
msgid "Page not found."
|
msgid "Page not found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Security/Authentication.php:210 src/Security/Authentication.php:262
|
||||||
|
msgid "Login failed."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Security/Authentication.php:224 src/Model/User.php:797
|
||||||
|
msgid ""
|
||||||
|
"We encountered a problem while logging in with the OpenID you provided. "
|
||||||
|
"Please check the correct spelling of the ID."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Security/Authentication.php:224 src/Model/User.php:797
|
||||||
|
msgid "The error message was:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Security/Authentication.php:273
|
||||||
|
msgid "Login failed. Please check your credentials."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Security/Authentication.php:389
|
||||||
|
#, php-format
|
||||||
|
msgid "Welcome %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Security/Authentication.php:390
|
||||||
|
msgid "Please upload a profile photo."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/Database/DBStructure.php:64
|
#: src/Database/DBStructure.php:64
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "The database version had been set to %s."
|
msgid "The database version had been set to %s."
|
||||||
|
|
@ -3882,7 +3886,7 @@ msgstr ""
|
||||||
msgid "Could not connect to database."
|
msgid "Could not connect to database."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/L10n.php:371 src/Module/Settings/Display.php:174
|
#: src/Core/L10n.php:371 src/Module/Settings/Display.php:178
|
||||||
#: src/Model/Event.php:413
|
#: src/Model/Event.php:413
|
||||||
msgid "Monday"
|
msgid "Monday"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -3907,7 +3911,7 @@ msgstr ""
|
||||||
msgid "Saturday"
|
msgid "Saturday"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/L10n.php:371 src/Module/Settings/Display.php:174
|
#: src/Core/L10n.php:371 src/Module/Settings/Display.php:178
|
||||||
#: src/Model/Event.php:412
|
#: src/Model/Event.php:412
|
||||||
msgid "Sunday"
|
msgid "Sunday"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -4268,67 +4272,67 @@ msgstr ""
|
||||||
msgid "Pulled"
|
msgid "Pulled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Object/Post.php:436
|
#: src/Object/Post.php:441
|
||||||
msgid "to"
|
msgid "to"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Object/Post.php:437
|
#: src/Object/Post.php:442
|
||||||
msgid "via"
|
msgid "via"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Object/Post.php:438
|
#: src/Object/Post.php:443
|
||||||
msgid "Wall-to-Wall"
|
msgid "Wall-to-Wall"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Object/Post.php:439
|
#: src/Object/Post.php:444
|
||||||
msgid "via Wall-To-Wall:"
|
msgid "via Wall-To-Wall:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Object/Post.php:475
|
#: src/Object/Post.php:481
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Reply to %s"
|
msgid "Reply to %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Object/Post.php:478
|
#: src/Object/Post.php:484
|
||||||
msgid "More"
|
msgid "More"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Object/Post.php:496
|
#: src/Object/Post.php:502
|
||||||
msgid "Notifier task is pending"
|
msgid "Notifier task is pending"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Object/Post.php:497
|
#: src/Object/Post.php:503
|
||||||
msgid "Delivery to remote servers is pending"
|
msgid "Delivery to remote servers is pending"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Object/Post.php:498
|
#: src/Object/Post.php:504
|
||||||
msgid "Delivery to remote servers is underway"
|
msgid "Delivery to remote servers is underway"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Object/Post.php:499
|
#: src/Object/Post.php:505
|
||||||
msgid "Delivery to remote servers is mostly done"
|
msgid "Delivery to remote servers is mostly done"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Object/Post.php:500
|
#: src/Object/Post.php:506
|
||||||
msgid "Delivery to remote servers is done"
|
msgid "Delivery to remote servers is done"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Object/Post.php:520
|
#: src/Object/Post.php:526
|
||||||
#, 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:521
|
#: src/Object/Post.php:527
|
||||||
msgid "Show more"
|
msgid "Show more"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Object/Post.php:522
|
#: src/Object/Post.php:528
|
||||||
msgid "Show fewer"
|
msgid "Show fewer"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Object/Post.php:533 src/Model/Item.php:3412
|
#: src/Object/Post.php:539 src/Model/Item.php:3448
|
||||||
msgid "comment"
|
msgid "comment"
|
||||||
msgid_plural "comments"
|
msgid_plural "comments"
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
|
|
@ -4571,7 +4575,7 @@ msgid "Home Notifications"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Notifications/Notifications.php:133
|
#: src/Module/Notifications/Notifications.php:133
|
||||||
#: src/Module/Notifications/Introductions.php:195
|
#: src/Module/Notifications/Introductions.php:197
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "No more %s notifications."
|
msgid "No more %s notifications."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -4588,80 +4592,79 @@ msgstr ""
|
||||||
msgid "You must be logged in to show this page."
|
msgid "You must be logged in to show this page."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Notifications/Introductions.php:52
|
#: src/Module/Notifications/Introductions.php:53
|
||||||
#: src/Module/BaseNotifications.php:139 src/Content/Nav.php:268
|
#: src/Module/BaseNotifications.php:139 src/Content/Nav.php:268
|
||||||
msgid "Notifications"
|
msgid "Notifications"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Notifications/Introductions.php:76
|
#: src/Module/Notifications/Introductions.php:77
|
||||||
msgid "Show Ignored Requests"
|
msgid "Show Ignored Requests"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Notifications/Introductions.php:76
|
#: src/Module/Notifications/Introductions.php:77
|
||||||
msgid "Hide Ignored Requests"
|
msgid "Hide Ignored Requests"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Notifications/Introductions.php:90
|
#: src/Module/Notifications/Introductions.php:93
|
||||||
#: src/Module/Notifications/Introductions.php:157
|
#: src/Module/Notifications/Introductions.php:159
|
||||||
msgid "Notification type:"
|
msgid "Notification type:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Notifications/Introductions.php:93
|
#: src/Module/Notifications/Introductions.php:96
|
||||||
msgid "Suggested by:"
|
msgid "Suggested by:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Notifications/Introductions.php:105
|
#: src/Module/Notifications/Introductions.php:110
|
||||||
#: src/Module/Notifications/Introductions.php:171 src/Module/Contact.php:602
|
#: src/Module/Notifications/Introductions.php:185
|
||||||
msgid "Hide this contact from others"
|
#: src/Module/Admin/Users.php:246 src/Model/Contact.php:984
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/Module/Notifications/Introductions.php:107
|
|
||||||
#: src/Module/Notifications/Introductions.php:183
|
|
||||||
#: src/Module/Admin/Users.php:246 src/Model/Contact.php:980
|
|
||||||
msgid "Approve"
|
msgid "Approve"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Notifications/Introductions.php:118
|
#: src/Module/Notifications/Introductions.php:120
|
||||||
msgid "Claims to be known to you: "
|
msgid "Claims to be known to you: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Notifications/Introductions.php:125
|
#: src/Module/Notifications/Introductions.php:127
|
||||||
msgid "Shall your connection be bidirectional or not?"
|
msgid "Shall your connection be bidirectional or not?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Notifications/Introductions.php:126
|
#: src/Module/Notifications/Introductions.php:128
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
|
"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
|
||||||
"also receive updates from them in your news feed."
|
"also receive updates from them in your news feed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Notifications/Introductions.php:127
|
#: src/Module/Notifications/Introductions.php:129
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Accepting %s as a subscriber allows them to subscribe to your posts, but you "
|
"Accepting %s as a subscriber allows them to subscribe to your posts, but you "
|
||||||
"will not receive updates from them in your news feed."
|
"will not receive updates from them in your news feed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Notifications/Introductions.php:129
|
#: src/Module/Notifications/Introductions.php:131
|
||||||
msgid "Friend"
|
msgid "Friend"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Notifications/Introductions.php:130
|
#: src/Module/Notifications/Introductions.php:132
|
||||||
msgid "Subscriber"
|
msgid "Subscriber"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Notifications/Introductions.php:168 src/Module/Contact.php:618
|
#: src/Module/Notifications/Introductions.php:170 src/Module/Contact.php:618
|
||||||
#: src/Model/Profile.php:362
|
#: src/Model/Profile.php:362
|
||||||
msgid "About:"
|
msgid "About:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Notifications/Introductions.php:180 src/Module/Contact.php:330
|
#: src/Module/Notifications/Introductions.php:173 src/Module/Contact.php:602
|
||||||
|
msgid "Hide this contact from others"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Module/Notifications/Introductions.php:182 src/Module/Contact.php:330
|
||||||
#: src/Model/Profile.php:450
|
#: src/Model/Profile.php:450
|
||||||
msgid "Network:"
|
msgid "Network:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Notifications/Introductions.php:194
|
#: src/Module/Notifications/Introductions.php:196
|
||||||
msgid "No introductions."
|
msgid "No introductions."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -5217,7 +5220,7 @@ msgstr ""
|
||||||
msgid "Your invitation code: "
|
msgid "Your invitation code: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Register.php:139 src/Module/Admin/Site.php:585
|
#: src/Module/Register.php:139 src/Module/Admin/Site.php:587
|
||||||
msgid "Registration"
|
msgid "Registration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -5426,15 +5429,15 @@ msgstr ""
|
||||||
msgid "Check again"
|
msgid "Check again"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Install.php:200 src/Module/Admin/Site.php:524
|
#: src/Module/Install.php:200 src/Module/Admin/Site.php:526
|
||||||
msgid "No SSL policy, links will track page SSL state"
|
msgid "No SSL policy, links will track page SSL state"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Install.php:201 src/Module/Admin/Site.php:525
|
#: src/Module/Install.php:201 src/Module/Admin/Site.php:527
|
||||||
msgid "Force all links to use SSL"
|
msgid "Force all links to use SSL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Install.php:202 src/Module/Admin/Site.php:526
|
#: src/Module/Install.php:202 src/Module/Admin/Site.php:528
|
||||||
msgid "Self-signed certificate, use SSL for local links only (discouraged)"
|
msgid "Self-signed certificate, use SSL for local links only (discouraged)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -5442,11 +5445,11 @@ msgstr ""
|
||||||
msgid "Base settings"
|
msgid "Base settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Install.php:210 src/Module/Admin/Site.php:609
|
#: src/Module/Install.php:210 src/Module/Admin/Site.php:611
|
||||||
msgid "SSL link policy"
|
msgid "SSL link policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Install.php:212 src/Module/Admin/Site.php:609
|
#: src/Module/Install.php:212 src/Module/Admin/Site.php:611
|
||||||
msgid "Determines whether generated links should be forced to use SSL"
|
msgid "Determines whether generated links should be forced to use SSL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -5624,70 +5627,50 @@ msgstr ""
|
||||||
msgid "Select an identity to manage: "
|
msgid "Select an identity to manage: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Conversation/Community.php:56
|
#: src/Module/Conversation/Community.php:67
|
||||||
msgid "Local Community"
|
msgid "Local Community"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Conversation/Community.php:59
|
#: src/Module/Conversation/Community.php:70
|
||||||
msgid "Posts from local users on this server"
|
msgid "Posts from local users on this server"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Conversation/Community.php:67
|
#: src/Module/Conversation/Community.php:78
|
||||||
msgid "Global Community"
|
msgid "Global Community"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Conversation/Community.php:70
|
#: src/Module/Conversation/Community.php:81
|
||||||
msgid "Posts from users of the whole federated network"
|
msgid "Posts from users of the whole federated network"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Conversation/Community.php:84 src/Module/Search/Index.php:139
|
#: src/Module/Conversation/Community.php:114
|
||||||
#: src/Module/Search/Index.php:176
|
|
||||||
msgid "No results."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/Module/Conversation/Community.php:117 src/Content/Nav.php:279
|
|
||||||
msgid "Accounts"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/Module/Conversation/Community.php:120
|
|
||||||
msgid "All"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/Module/Conversation/Community.php:121
|
|
||||||
msgid "Persons"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/Module/Conversation/Community.php:122
|
|
||||||
msgid "Organisations"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/Module/Conversation/Community.php:123 src/Model/Contact.php:1371
|
|
||||||
msgid "News"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/Module/Conversation/Community.php:141
|
|
||||||
msgid "Own Contacts"
|
msgid "Own Contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Conversation/Community.php:145
|
#: src/Module/Conversation/Community.php:118
|
||||||
msgid "Include"
|
msgid "Include"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Conversation/Community.php:146
|
#: src/Module/Conversation/Community.php:119
|
||||||
msgid "Hide"
|
msgid "Hide"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Conversation/Community.php:159
|
#: src/Module/Conversation/Community.php:147 src/Module/Search/Index.php:139
|
||||||
|
#: src/Module/Search/Index.php:178
|
||||||
|
msgid "No results."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Module/Conversation/Community.php:172
|
||||||
msgid ""
|
msgid ""
|
||||||
"This community stream shows all public posts received by this node. They may "
|
"This community stream shows all public posts received by this node. They may "
|
||||||
"not reflect the opinions of this node’s users."
|
"not reflect the opinions of this node’s users."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Conversation/Community.php:212
|
#: src/Module/Conversation/Community.php:225
|
||||||
msgid "Community option not available."
|
msgid "Community option not available."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Conversation/Community.php:228
|
#: src/Module/Conversation/Community.php:241
|
||||||
msgid "Not available."
|
msgid "Not available."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -5899,7 +5882,7 @@ msgstr ""
|
||||||
msgid "Configuration"
|
msgid "Configuration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/BaseAdmin.php:90 src/Module/Admin/Site.php:582
|
#: src/Module/BaseAdmin.php:90 src/Module/Admin/Site.php:584
|
||||||
msgid "Site"
|
msgid "Site"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -6094,7 +6077,7 @@ msgstr ""
|
||||||
msgid "(Update was not successful)"
|
msgid "(Update was not successful)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:525 src/Module/Contact.php:1091
|
#: src/Module/Contact.php:525 src/Module/Contact.php:1092
|
||||||
msgid "Suggest friends"
|
msgid "Suggest friends"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -6118,8 +6101,8 @@ msgid ""
|
||||||
"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:544 src/Module/Admin/Site.php:687
|
#: src/Module/Contact.php:544 src/Module/Admin/Site.php:689
|
||||||
#: src/Module/Admin/Site.php:697 src/Module/Settings/TwoFactor/Index.php:113
|
#: src/Module/Admin/Site.php:699 src/Module/Settings/TwoFactor/Index.php:113
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -6155,7 +6138,7 @@ msgstr ""
|
||||||
msgid "Edit contact notes"
|
msgid "Edit contact notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:579 src/Module/Contact.php:1059
|
#: src/Module/Contact.php:579 src/Module/Contact.php:1060
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Visit %s's profile [%s]"
|
msgid "Visit %s's profile [%s]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -6180,18 +6163,18 @@ msgstr ""
|
||||||
msgid "Update public posts"
|
msgid "Update public posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:591 src/Module/Contact.php:1101
|
#: src/Module/Contact.php:591 src/Module/Contact.php:1102
|
||||||
msgid "Update now"
|
msgid "Update now"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:593 src/Module/Contact.php:839
|
#: src/Module/Contact.php:593 src/Module/Contact.php:839
|
||||||
#: src/Module/Contact.php:1120 src/Module/Admin/Users.php:251
|
#: src/Module/Contact.php:1121 src/Module/Admin/Users.php:251
|
||||||
#: src/Module/Admin/Blocklist/Contact.php:85
|
#: src/Module/Admin/Blocklist/Contact.php:85
|
||||||
msgid "Unblock"
|
msgid "Unblock"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:594 src/Module/Contact.php:840
|
#: src/Module/Contact.php:594 src/Module/Contact.php:840
|
||||||
#: src/Module/Contact.php:1128
|
#: src/Module/Contact.php:1129
|
||||||
msgid "Unignore"
|
msgid "Unignore"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -6303,16 +6286,16 @@ msgstr ""
|
||||||
msgid "Search your contacts"
|
msgid "Search your contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:831 src/Module/Search/Index.php:183
|
#: src/Module/Contact.php:831 src/Module/Search/Index.php:190
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Results for: %s"
|
msgid "Results for: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:841 src/Module/Contact.php:1137
|
#: src/Module/Contact.php:841 src/Module/Contact.php:1138
|
||||||
msgid "Archive"
|
msgid "Archive"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:841 src/Module/Contact.php:1137
|
#: src/Module/Contact.php:841 src/Module/Contact.php:1138
|
||||||
msgid "Unarchive"
|
msgid "Unarchive"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -6340,43 +6323,43 @@ msgstr ""
|
||||||
msgid "Advanced Contact Settings"
|
msgid "Advanced Contact Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:1018
|
#: src/Module/Contact.php:1019
|
||||||
msgid "Mutual Friendship"
|
msgid "Mutual Friendship"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:1022
|
#: src/Module/Contact.php:1023
|
||||||
msgid "is a fan of yours"
|
msgid "is a fan of yours"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:1026
|
#: src/Module/Contact.php:1027
|
||||||
msgid "you are a fan of"
|
msgid "you are a fan of"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:1044
|
#: src/Module/Contact.php:1045
|
||||||
msgid "Pending outgoing contact request"
|
msgid "Pending outgoing contact request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:1046
|
#: src/Module/Contact.php:1047
|
||||||
msgid "Pending incoming contact request"
|
msgid "Pending incoming contact request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:1111 src/Module/Contact/Advanced.php:138
|
#: src/Module/Contact.php:1112 src/Module/Contact/Advanced.php:138
|
||||||
msgid "Refetch contact data"
|
msgid "Refetch contact data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:1122
|
#: src/Module/Contact.php:1123
|
||||||
msgid "Toggle Blocked status"
|
msgid "Toggle Blocked status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:1130
|
#: src/Module/Contact.php:1131
|
||||||
msgid "Toggle Ignored status"
|
msgid "Toggle Ignored status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:1139
|
#: src/Module/Contact.php:1140
|
||||||
msgid "Toggle Archive status"
|
msgid "Toggle Archive status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Contact.php:1147
|
#: src/Module/Contact.php:1148
|
||||||
msgid "Delete contact"
|
msgid "Delete contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -6572,7 +6555,7 @@ msgstr ""
|
||||||
#: 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/Users.php:237 src/Module/Admin/Queue.php:72
|
#: src/Module/Admin/Users.php:237 src/Module/Admin/Queue.php:72
|
||||||
#: src/Module/Admin/Federation.php:140 src/Module/Admin/Logs/View.php:64
|
#: src/Module/Admin/Federation.php:140 src/Module/Admin/Logs/View.php:64
|
||||||
#: src/Module/Admin/Logs/Settings.php:80 src/Module/Admin/Site.php:581
|
#: src/Module/Admin/Logs/Settings.php:80 src/Module/Admin/Site.php:583
|
||||||
#: src/Module/Admin/Summary.php:230 src/Module/Admin/Tos.php:58
|
#: src/Module/Admin/Summary.php:230 src/Module/Admin/Tos.php:58
|
||||||
#: src/Module/Admin/Blocklist/Server.php:88
|
#: src/Module/Admin/Blocklist/Server.php:88
|
||||||
#: src/Module/Admin/Blocklist/Contact.php:78
|
#: src/Module/Admin/Blocklist/Contact.php:78
|
||||||
|
|
@ -6901,7 +6884,7 @@ msgstr ""
|
||||||
msgid "Other"
|
msgid "Other"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Federation.php:107 src/Module/Admin/Federation.php:266
|
#: src/Module/Admin/Federation.php:107 src/Module/Admin/Federation.php:267
|
||||||
msgid "unknown"
|
msgid "unknown"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -6989,235 +6972,235 @@ msgstr ""
|
||||||
msgid "Relocation started. Could take a while to complete."
|
msgid "Relocation started. Could take a while to complete."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:250
|
#: src/Module/Admin/Site.php:251
|
||||||
msgid "Invalid storage backend setting value."
|
msgid "Invalid storage backend setting value."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:451 src/Module/Settings/Display.php:132
|
#: src/Module/Admin/Site.php:453 src/Module/Settings/Display.php:134
|
||||||
msgid "No special theme for mobile devices"
|
msgid "No special theme for mobile devices"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:468 src/Module/Settings/Display.php:142
|
#: src/Module/Admin/Site.php:470 src/Module/Settings/Display.php:144
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s - (Experimental)"
|
msgid "%s - (Experimental)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:480
|
#: src/Module/Admin/Site.php:482
|
||||||
msgid "No community page for local users"
|
msgid "No community page for local users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:481
|
#: src/Module/Admin/Site.php:483
|
||||||
msgid "No community page"
|
msgid "No community page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:482
|
#: src/Module/Admin/Site.php:484
|
||||||
msgid "Public postings from users of this site"
|
msgid "Public postings from users of this site"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:483
|
#: src/Module/Admin/Site.php:485
|
||||||
msgid "Public postings from the federated network"
|
msgid "Public postings from the federated network"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:484
|
#: src/Module/Admin/Site.php:486
|
||||||
msgid "Public postings from local users and the federated network"
|
msgid "Public postings from local users and the federated network"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:490
|
#: src/Module/Admin/Site.php:492
|
||||||
msgid "Multi user instance"
|
msgid "Multi user instance"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:518
|
#: src/Module/Admin/Site.php:520
|
||||||
msgid "Closed"
|
msgid "Closed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:519
|
#: src/Module/Admin/Site.php:521
|
||||||
msgid "Requires approval"
|
msgid "Requires approval"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:520
|
#: src/Module/Admin/Site.php:522
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:530
|
#: src/Module/Admin/Site.php:532
|
||||||
msgid "Don't check"
|
msgid "Don't check"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:531
|
#: src/Module/Admin/Site.php:533
|
||||||
msgid "check the stable version"
|
msgid "check the stable version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:532
|
#: src/Module/Admin/Site.php:534
|
||||||
msgid "check the development version"
|
msgid "check the development version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:536
|
#: src/Module/Admin/Site.php:538
|
||||||
msgid "none"
|
msgid "none"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:537
|
#: src/Module/Admin/Site.php:539
|
||||||
msgid "Local contacts"
|
msgid "Local contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:538
|
#: src/Module/Admin/Site.php:540
|
||||||
msgid "Interactors"
|
msgid "Interactors"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:551
|
#: src/Module/Admin/Site.php:553
|
||||||
msgid "Database (legacy)"
|
msgid "Database (legacy)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:584
|
#: src/Module/Admin/Site.php:586
|
||||||
msgid "Republish users to directory"
|
msgid "Republish users to directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:586
|
#: src/Module/Admin/Site.php:588
|
||||||
msgid "File upload"
|
msgid "File upload"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:587
|
#: src/Module/Admin/Site.php:589
|
||||||
msgid "Policies"
|
msgid "Policies"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:589
|
#: src/Module/Admin/Site.php:591
|
||||||
msgid "Auto Discovered Contact Directory"
|
msgid "Auto Discovered Contact Directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:590
|
#: src/Module/Admin/Site.php:592
|
||||||
msgid "Performance"
|
msgid "Performance"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:591
|
#: src/Module/Admin/Site.php:593
|
||||||
msgid "Worker"
|
msgid "Worker"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:592
|
#: src/Module/Admin/Site.php:594
|
||||||
msgid "Message Relay"
|
msgid "Message Relay"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:593
|
#: src/Module/Admin/Site.php:595
|
||||||
msgid "Relocate Instance"
|
msgid "Relocate Instance"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:594
|
#: src/Module/Admin/Site.php:596
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>Warning!</strong> Advanced function. Could make this server "
|
"<strong>Warning!</strong> Advanced function. Could make this server "
|
||||||
"unreachable."
|
"unreachable."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:598
|
#: src/Module/Admin/Site.php:600
|
||||||
msgid "Site name"
|
msgid "Site name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:599
|
#: src/Module/Admin/Site.php:601
|
||||||
msgid "Sender Email"
|
msgid "Sender Email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:599
|
#: src/Module/Admin/Site.php:601
|
||||||
msgid ""
|
msgid ""
|
||||||
"The email address your server shall use to send notification emails from."
|
"The email address your server shall use to send notification emails from."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:600
|
#: src/Module/Admin/Site.php:602
|
||||||
msgid "Name of the system actor"
|
msgid "Name of the system actor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:600
|
#: src/Module/Admin/Site.php:602
|
||||||
msgid ""
|
msgid ""
|
||||||
"Name of the internal system account that is used to perform ActivityPub "
|
"Name of the internal system account that is used to perform ActivityPub "
|
||||||
"requests. This must be an unused username. If set, this can't be changed "
|
"requests. This must be an unused username. If set, this can't be changed "
|
||||||
"again."
|
"again."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:601
|
#: src/Module/Admin/Site.php:603
|
||||||
msgid "Banner/Logo"
|
msgid "Banner/Logo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:602
|
#: src/Module/Admin/Site.php:604
|
||||||
msgid "Email Banner/Logo"
|
msgid "Email Banner/Logo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:603
|
#: src/Module/Admin/Site.php:605
|
||||||
msgid "Shortcut icon"
|
msgid "Shortcut icon"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:603
|
#: src/Module/Admin/Site.php:605
|
||||||
msgid "Link to an icon that will be used for browsers."
|
msgid "Link to an icon that will be used for browsers."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:604
|
#: src/Module/Admin/Site.php:606
|
||||||
msgid "Touch icon"
|
msgid "Touch icon"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:604
|
#: src/Module/Admin/Site.php:606
|
||||||
msgid "Link to an icon that will be used for tablets and mobiles."
|
msgid "Link to an icon that will be used for tablets and mobiles."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:605
|
#: src/Module/Admin/Site.php:607
|
||||||
msgid "Additional Info"
|
msgid "Additional Info"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:605
|
#: src/Module/Admin/Site.php:607
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"For public servers: you can add additional information here that will be "
|
"For public servers: you can add additional information here that will be "
|
||||||
"listed at %s/servers."
|
"listed at %s/servers."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:606
|
#: src/Module/Admin/Site.php:608
|
||||||
msgid "System language"
|
msgid "System language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:607
|
#: src/Module/Admin/Site.php:609
|
||||||
msgid "System theme"
|
msgid "System theme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:607
|
#: src/Module/Admin/Site.php:609
|
||||||
msgid ""
|
msgid ""
|
||||||
"Default system theme - may be over-ridden by user profiles - <a href=\"/"
|
"Default system theme - may be over-ridden by user profiles - <a href=\"/"
|
||||||
"admin/themes\" id=\"cnftheme\">Change default theme settings</a>"
|
"admin/themes\" id=\"cnftheme\">Change default theme settings</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:608
|
#: src/Module/Admin/Site.php:610
|
||||||
msgid "Mobile system theme"
|
msgid "Mobile system theme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:608
|
#: src/Module/Admin/Site.php:610
|
||||||
msgid "Theme for mobile devices"
|
msgid "Theme for mobile devices"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:610
|
#: src/Module/Admin/Site.php:612
|
||||||
msgid "Force SSL"
|
msgid "Force SSL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:610
|
#: src/Module/Admin/Site.php:612
|
||||||
msgid ""
|
msgid ""
|
||||||
"Force all Non-SSL requests to SSL - Attention: on some systems it could lead "
|
"Force all Non-SSL requests to SSL - Attention: on some systems it could lead "
|
||||||
"to endless loops."
|
"to endless loops."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:611
|
#: src/Module/Admin/Site.php:613
|
||||||
msgid "Hide help entry from navigation menu"
|
msgid "Hide help entry from navigation menu"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:611
|
#: src/Module/Admin/Site.php:613
|
||||||
msgid ""
|
msgid ""
|
||||||
"Hides the menu entry for the Help pages from the navigation menu. You can "
|
"Hides the menu entry for the Help pages from the navigation menu. You can "
|
||||||
"still access it calling /help directly."
|
"still access it calling /help directly."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:612
|
#: src/Module/Admin/Site.php:614
|
||||||
msgid "Single user instance"
|
msgid "Single user instance"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:612
|
#: src/Module/Admin/Site.php:614
|
||||||
msgid "Make this instance multi-user or single-user for the named user"
|
msgid "Make this instance multi-user or single-user for the named user"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:614
|
#: src/Module/Admin/Site.php:616
|
||||||
msgid "File storage backend"
|
msgid "File storage backend"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:614
|
#: src/Module/Admin/Site.php:616
|
||||||
msgid ""
|
msgid ""
|
||||||
"The backend used to store uploaded data. If you change the storage backend, "
|
"The backend used to store uploaded data. If you change the storage backend, "
|
||||||
"you can manually move the existing files. If you do not do so, the files "
|
"you can manually move the existing files. If you do not do so, the files "
|
||||||
|
|
@ -7226,201 +7209,201 @@ msgid ""
|
||||||
"for more information about the choices and the moving procedure."
|
"for more information about the choices and the moving procedure."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:616
|
#: src/Module/Admin/Site.php:618
|
||||||
msgid "Maximum image size"
|
msgid "Maximum image size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:616
|
#: src/Module/Admin/Site.php:618
|
||||||
msgid ""
|
msgid ""
|
||||||
"Maximum size in bytes of uploaded images. Default is 0, which means no "
|
"Maximum size in bytes of uploaded images. Default is 0, which means no "
|
||||||
"limits."
|
"limits."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:617
|
#: src/Module/Admin/Site.php:619
|
||||||
msgid "Maximum image length"
|
msgid "Maximum image length"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:617
|
#: src/Module/Admin/Site.php:619
|
||||||
msgid ""
|
msgid ""
|
||||||
"Maximum length in pixels of the longest side of uploaded images. Default is "
|
"Maximum length in pixels of the longest side of uploaded images. Default is "
|
||||||
"-1, which means no limits."
|
"-1, which means no limits."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:618
|
#: src/Module/Admin/Site.php:620
|
||||||
msgid "JPEG image quality"
|
msgid "JPEG image quality"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:618
|
#: src/Module/Admin/Site.php:620
|
||||||
msgid ""
|
msgid ""
|
||||||
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
|
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
|
||||||
"100, which is full quality."
|
"100, which is full quality."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:620
|
#: src/Module/Admin/Site.php:622
|
||||||
msgid "Register policy"
|
msgid "Register policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:621
|
#: src/Module/Admin/Site.php:623
|
||||||
msgid "Maximum Daily Registrations"
|
msgid "Maximum Daily Registrations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:621
|
#: src/Module/Admin/Site.php:623
|
||||||
msgid ""
|
msgid ""
|
||||||
"If registration is permitted above, this sets the maximum number of new user "
|
"If registration is permitted above, this sets the maximum number of new user "
|
||||||
"registrations to accept per day. If register is set to closed, this setting "
|
"registrations to accept per day. If register is set to closed, this setting "
|
||||||
"has no effect."
|
"has no effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:622
|
#: src/Module/Admin/Site.php:624
|
||||||
msgid "Register text"
|
msgid "Register text"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:622
|
#: src/Module/Admin/Site.php:624
|
||||||
msgid ""
|
msgid ""
|
||||||
"Will be displayed prominently on the registration page. You can use BBCode "
|
"Will be displayed prominently on the registration page. You can use BBCode "
|
||||||
"here."
|
"here."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:623
|
#: src/Module/Admin/Site.php:625
|
||||||
msgid "Forbidden Nicknames"
|
msgid "Forbidden Nicknames"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:623
|
#: src/Module/Admin/Site.php:625
|
||||||
msgid ""
|
msgid ""
|
||||||
"Comma separated list of nicknames that are forbidden from registration. "
|
"Comma separated list of nicknames that are forbidden from registration. "
|
||||||
"Preset is a list of role names according RFC 2142."
|
"Preset is a list of role names according RFC 2142."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:624
|
#: src/Module/Admin/Site.php:626
|
||||||
msgid "Accounts abandoned after x days"
|
msgid "Accounts abandoned after x days"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:624
|
#: src/Module/Admin/Site.php:626
|
||||||
msgid ""
|
msgid ""
|
||||||
"Will not waste system resources polling external sites for abandonded "
|
"Will not waste system resources polling external sites for abandonded "
|
||||||
"accounts. Enter 0 for no time limit."
|
"accounts. Enter 0 for no time limit."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:625
|
#: src/Module/Admin/Site.php:627
|
||||||
msgid "Allowed friend domains"
|
msgid "Allowed friend domains"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:625
|
#: src/Module/Admin/Site.php:627
|
||||||
msgid ""
|
msgid ""
|
||||||
"Comma separated list of domains which are allowed to establish friendships "
|
"Comma separated list of domains which are allowed to establish friendships "
|
||||||
"with this site. Wildcards are accepted. Empty to allow any domains"
|
"with this site. Wildcards are accepted. Empty to allow any domains"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:626
|
#: src/Module/Admin/Site.php:628
|
||||||
msgid "Allowed email domains"
|
msgid "Allowed email domains"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:626
|
#: src/Module/Admin/Site.php:628
|
||||||
msgid ""
|
msgid ""
|
||||||
"Comma separated list of domains which are allowed in email addresses for "
|
"Comma separated list of domains which are allowed in email addresses for "
|
||||||
"registrations to this site. Wildcards are accepted. Empty to allow any "
|
"registrations to this site. Wildcards are accepted. Empty to allow any "
|
||||||
"domains"
|
"domains"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:627
|
#: src/Module/Admin/Site.php:629
|
||||||
msgid "No OEmbed rich content"
|
msgid "No OEmbed rich content"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:627
|
#: src/Module/Admin/Site.php:629
|
||||||
msgid ""
|
msgid ""
|
||||||
"Don't show the rich content (e.g. embedded PDF), except from the domains "
|
"Don't show the rich content (e.g. embedded PDF), except from the domains "
|
||||||
"listed below."
|
"listed below."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:628
|
#: src/Module/Admin/Site.php:630
|
||||||
msgid "Allowed OEmbed domains"
|
msgid "Allowed OEmbed domains"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:628
|
#: src/Module/Admin/Site.php:630
|
||||||
msgid ""
|
msgid ""
|
||||||
"Comma separated list of domains which oembed content is allowed to be "
|
"Comma separated list of domains which oembed content is allowed to be "
|
||||||
"displayed. Wildcards are accepted."
|
"displayed. Wildcards are accepted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:629
|
#: src/Module/Admin/Site.php:631
|
||||||
msgid "Block public"
|
msgid "Block public"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:629
|
#: src/Module/Admin/Site.php:631
|
||||||
msgid ""
|
msgid ""
|
||||||
"Check to block public access to all otherwise public personal pages on this "
|
"Check to block public access to all otherwise public personal pages on this "
|
||||||
"site unless you are currently logged in."
|
"site unless you are currently logged in."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:630
|
#: src/Module/Admin/Site.php:632
|
||||||
msgid "Force publish"
|
msgid "Force publish"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:630
|
#: src/Module/Admin/Site.php:632
|
||||||
msgid ""
|
msgid ""
|
||||||
"Check to force all profiles on this site to be listed in the site directory."
|
"Check to force all profiles on this site to be listed in the site directory."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:630
|
#: src/Module/Admin/Site.php:632
|
||||||
msgid "Enabling this may violate privacy laws like the GDPR"
|
msgid "Enabling this may violate privacy laws like the GDPR"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:631
|
#: src/Module/Admin/Site.php:633
|
||||||
msgid "Global directory URL"
|
msgid "Global directory URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:631
|
#: src/Module/Admin/Site.php:633
|
||||||
msgid ""
|
msgid ""
|
||||||
"URL to the global directory. If this is not set, the global directory is "
|
"URL to the global directory. If this is not set, the global directory is "
|
||||||
"completely unavailable to the application."
|
"completely unavailable to the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:632
|
#: src/Module/Admin/Site.php:634
|
||||||
msgid "Private posts by default for new users"
|
msgid "Private posts by default for new users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:632
|
#: src/Module/Admin/Site.php:634
|
||||||
msgid ""
|
msgid ""
|
||||||
"Set default post permissions for all new members to the default privacy "
|
"Set default post permissions for all new members to the default privacy "
|
||||||
"group rather than public."
|
"group rather than public."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:633
|
#: src/Module/Admin/Site.php:635
|
||||||
msgid "Don't include post content in email notifications"
|
msgid "Don't include post content in email notifications"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:633
|
#: src/Module/Admin/Site.php:635
|
||||||
msgid ""
|
msgid ""
|
||||||
"Don't include the content of a post/comment/private message/etc. in the "
|
"Don't include the content of a post/comment/private message/etc. in the "
|
||||||
"email notifications that are sent out from this site, as a privacy measure."
|
"email notifications that are sent out from this site, as a privacy measure."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:634
|
#: src/Module/Admin/Site.php:636
|
||||||
msgid "Disallow public access to addons listed in the apps menu."
|
msgid "Disallow public access to addons listed in the apps menu."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:634
|
#: src/Module/Admin/Site.php:636
|
||||||
msgid ""
|
msgid ""
|
||||||
"Checking this box will restrict addons listed in the apps menu to members "
|
"Checking this box will restrict addons listed in the apps menu to members "
|
||||||
"only."
|
"only."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:635
|
#: src/Module/Admin/Site.php:637
|
||||||
msgid "Don't embed private images in posts"
|
msgid "Don't embed private images in posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:635
|
#: src/Module/Admin/Site.php:637
|
||||||
msgid ""
|
msgid ""
|
||||||
"Don't replace locally-hosted private photos in posts with an embedded copy "
|
"Don't replace locally-hosted private photos in posts with an embedded copy "
|
||||||
"of the image. This means that contacts who receive posts containing private "
|
"of the image. This means that contacts who receive posts containing private "
|
||||||
"photos will have to authenticate and load each image, which may take a while."
|
"photos will have to authenticate and load each image, which may take a while."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:636
|
#: src/Module/Admin/Site.php:638
|
||||||
msgid "Explicit Content"
|
msgid "Explicit Content"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:636
|
#: src/Module/Admin/Site.php:638
|
||||||
msgid ""
|
msgid ""
|
||||||
"Set this to announce that your node is used mostly for explicit content that "
|
"Set this to announce that your node is used mostly for explicit content that "
|
||||||
"might not be suited for minors. This information will be published in the "
|
"might not be suited for minors. This information will be published in the "
|
||||||
|
|
@ -7429,234 +7412,234 @@ msgid ""
|
||||||
"will be shown at the user registration page."
|
"will be shown at the user registration page."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:637
|
#: src/Module/Admin/Site.php:639
|
||||||
msgid "Allow Users to set remote_self"
|
msgid "Allow Users to set remote_self"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:637
|
#: src/Module/Admin/Site.php:639
|
||||||
msgid ""
|
msgid ""
|
||||||
"With checking this, every user is allowed to mark every contact as a "
|
"With checking this, every user is allowed to mark every contact as a "
|
||||||
"remote_self in the repair contact dialog. Setting this flag on a contact "
|
"remote_self in the repair contact dialog. Setting this flag on a contact "
|
||||||
"causes mirroring every posting of that contact in the users stream."
|
"causes mirroring every posting of that contact in the users stream."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:638
|
#: src/Module/Admin/Site.php:640
|
||||||
msgid "Block multiple registrations"
|
msgid "Block multiple registrations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:638
|
#: src/Module/Admin/Site.php:640
|
||||||
msgid "Disallow users to register additional accounts for use as pages."
|
msgid "Disallow users to register additional accounts for use as pages."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:639
|
#: src/Module/Admin/Site.php:641
|
||||||
msgid "Disable OpenID"
|
msgid "Disable OpenID"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:639
|
#: src/Module/Admin/Site.php:641
|
||||||
msgid "Disable OpenID support for registration and logins."
|
msgid "Disable OpenID support for registration and logins."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:640
|
#: src/Module/Admin/Site.php:642
|
||||||
msgid "No Fullname check"
|
msgid "No Fullname check"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:640
|
#: src/Module/Admin/Site.php:642
|
||||||
msgid ""
|
msgid ""
|
||||||
"Allow users to register without a space between the first name and the last "
|
"Allow users to register without a space between the first name and the last "
|
||||||
"name in their full name."
|
"name in their full name."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:641
|
#: src/Module/Admin/Site.php:643
|
||||||
msgid "Community pages for visitors"
|
msgid "Community pages for visitors"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:641
|
#: src/Module/Admin/Site.php:643
|
||||||
msgid ""
|
msgid ""
|
||||||
"Which community pages should be available for visitors. Local users always "
|
"Which community pages should be available for visitors. Local users always "
|
||||||
"see both pages."
|
"see both pages."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:642
|
#: src/Module/Admin/Site.php:644
|
||||||
msgid "Posts per user on community page"
|
msgid "Posts per user on community page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:642
|
#: src/Module/Admin/Site.php:644
|
||||||
msgid ""
|
msgid ""
|
||||||
"The maximum number of posts per user on the community page. (Not valid for "
|
"The maximum number of posts per user on the community page. (Not valid for "
|
||||||
"\"Global Community\")"
|
"\"Global Community\")"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:643
|
#: src/Module/Admin/Site.php:645
|
||||||
msgid "Disable OStatus support"
|
msgid "Disable OStatus support"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:643
|
#: src/Module/Admin/Site.php:645
|
||||||
msgid ""
|
msgid ""
|
||||||
"Disable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
|
"Disable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
|
||||||
"communications in OStatus are public, so privacy warnings will be "
|
"communications in OStatus are public, so privacy warnings will be "
|
||||||
"occasionally displayed."
|
"occasionally displayed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:644
|
#: src/Module/Admin/Site.php:646
|
||||||
msgid "OStatus support can only be enabled if threading is enabled."
|
msgid "OStatus support can only be enabled if threading is enabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:646
|
#: src/Module/Admin/Site.php:648
|
||||||
msgid ""
|
msgid ""
|
||||||
"Diaspora support can't be enabled because Friendica was installed into a sub "
|
"Diaspora support can't be enabled because Friendica was installed into a sub "
|
||||||
"directory."
|
"directory."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:647
|
#: src/Module/Admin/Site.php:649
|
||||||
msgid "Enable Diaspora support"
|
msgid "Enable Diaspora support"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:647
|
#: src/Module/Admin/Site.php:649
|
||||||
msgid "Provide built-in Diaspora network compatibility."
|
msgid "Provide built-in Diaspora network compatibility."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:648
|
#: src/Module/Admin/Site.php:650
|
||||||
msgid "Only allow Friendica contacts"
|
msgid "Only allow Friendica contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:648
|
#: src/Module/Admin/Site.php:650
|
||||||
msgid ""
|
msgid ""
|
||||||
"All contacts must use Friendica protocols. All other built-in communication "
|
"All contacts must use Friendica protocols. All other built-in communication "
|
||||||
"protocols disabled."
|
"protocols disabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:649
|
#: src/Module/Admin/Site.php:651
|
||||||
msgid "Verify SSL"
|
msgid "Verify SSL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:649
|
#: src/Module/Admin/Site.php:651
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you wish, you can turn on strict certificate checking. This will mean you "
|
"If you wish, you can turn on strict certificate checking. This will mean you "
|
||||||
"cannot connect (at all) to self-signed SSL sites."
|
"cannot connect (at all) to self-signed SSL sites."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:650
|
#: src/Module/Admin/Site.php:652
|
||||||
msgid "Proxy user"
|
msgid "Proxy user"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:651
|
#: src/Module/Admin/Site.php:653
|
||||||
msgid "Proxy URL"
|
msgid "Proxy URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:652
|
#: src/Module/Admin/Site.php:654
|
||||||
msgid "Network timeout"
|
msgid "Network timeout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:652
|
#: src/Module/Admin/Site.php:654
|
||||||
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
|
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:653
|
#: src/Module/Admin/Site.php:655
|
||||||
msgid "Maximum Load Average"
|
msgid "Maximum Load Average"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:653
|
#: src/Module/Admin/Site.php:655
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Maximum system load before delivery and poll processes are deferred - "
|
"Maximum system load before delivery and poll processes are deferred - "
|
||||||
"default %d."
|
"default %d."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:654
|
#: src/Module/Admin/Site.php:656
|
||||||
msgid "Maximum Load Average (Frontend)"
|
msgid "Maximum Load Average (Frontend)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:654
|
#: src/Module/Admin/Site.php:656
|
||||||
msgid "Maximum system load before the frontend quits service - default 50."
|
msgid "Maximum system load before the frontend quits service - default 50."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:655
|
#: src/Module/Admin/Site.php:657
|
||||||
msgid "Minimal Memory"
|
msgid "Minimal Memory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:655
|
#: src/Module/Admin/Site.php:657
|
||||||
msgid ""
|
msgid ""
|
||||||
"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
|
"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
|
||||||
"default 0 (deactivated)."
|
"default 0 (deactivated)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:656
|
#: src/Module/Admin/Site.php:658
|
||||||
msgid "Periodically optimize tables"
|
msgid "Periodically optimize tables"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:656
|
#: src/Module/Admin/Site.php:658
|
||||||
msgid "Periodically optimize tables like the cache and the workerqueue"
|
msgid "Periodically optimize tables like the cache and the workerqueue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:658
|
#: src/Module/Admin/Site.php:660
|
||||||
msgid "Discover followers/followings from contacts"
|
msgid "Discover followers/followings from contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:658
|
#: src/Module/Admin/Site.php:660
|
||||||
msgid ""
|
msgid ""
|
||||||
"If enabled, contacts are checked for their followers and following contacts."
|
"If enabled, contacts are checked for their followers and following contacts."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:659
|
#: src/Module/Admin/Site.php:661
|
||||||
msgid "None - deactivated"
|
msgid "None - deactivated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:660
|
#: src/Module/Admin/Site.php:662
|
||||||
msgid ""
|
msgid ""
|
||||||
"Local contacts - contacts of our local contacts are discovered for their "
|
"Local contacts - contacts of our local contacts are discovered for their "
|
||||||
"followers/followings."
|
"followers/followings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:661
|
#: src/Module/Admin/Site.php:663
|
||||||
msgid ""
|
msgid ""
|
||||||
"Interactors - contacts of our local contacts and contacts who interacted on "
|
"Interactors - contacts of our local contacts and contacts who interacted on "
|
||||||
"locally visible postings are discovered for their followers/followings."
|
"locally visible postings are discovered for their followers/followings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:663
|
#: src/Module/Admin/Site.php:665
|
||||||
msgid "Synchronize the contacts with the directory server"
|
msgid "Synchronize the contacts with the directory server"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:663
|
#: src/Module/Admin/Site.php:665
|
||||||
msgid ""
|
msgid ""
|
||||||
"if enabled, the system will check periodically for new contacts on the "
|
"if enabled, the system will check periodically for new contacts on the "
|
||||||
"defined directory server."
|
"defined directory server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:665
|
#: src/Module/Admin/Site.php:667
|
||||||
msgid "Days between requery"
|
msgid "Days between requery"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:665
|
#: src/Module/Admin/Site.php:667
|
||||||
msgid "Number of days after which a server is requeried for his contacts."
|
msgid "Number of days after which a server is requeried for his contacts."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:666
|
#: src/Module/Admin/Site.php:668
|
||||||
msgid "Discover contacts from other servers"
|
msgid "Discover contacts from other servers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:666
|
#: src/Module/Admin/Site.php:668
|
||||||
msgid ""
|
msgid ""
|
||||||
"Periodically query other servers for contacts. The system queries Friendica, "
|
"Periodically query other servers for contacts. The system queries Friendica, "
|
||||||
"Mastodon and Hubzilla servers."
|
"Mastodon and Hubzilla servers."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:667
|
#: src/Module/Admin/Site.php:669
|
||||||
msgid "Search the local directory"
|
msgid "Search the local directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:667
|
#: src/Module/Admin/Site.php:669
|
||||||
msgid ""
|
msgid ""
|
||||||
"Search the local directory instead of the global directory. When searching "
|
"Search the local directory instead of the global directory. When searching "
|
||||||
"locally, every search will be executed on the global directory in the "
|
"locally, every search will be executed on the global directory in the "
|
||||||
"background. This improves the search results when the search is repeated."
|
"background. This improves the search results when the search is repeated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:669
|
#: src/Module/Admin/Site.php:671
|
||||||
msgid "Publish server information"
|
msgid "Publish server information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:669
|
#: src/Module/Admin/Site.php:671
|
||||||
msgid ""
|
msgid ""
|
||||||
"If enabled, general server and usage data will be published. The data "
|
"If enabled, general server and usage data will be published. The data "
|
||||||
"contains the name and version of the server, number of users with public "
|
"contains the name and version of the server, number of users with public "
|
||||||
|
|
@ -7664,50 +7647,50 @@ msgid ""
|
||||||
"href=\"http://the-federation.info/\">the-federation.info</a> for details."
|
"href=\"http://the-federation.info/\">the-federation.info</a> for details."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:671
|
#: src/Module/Admin/Site.php:673
|
||||||
msgid "Check upstream version"
|
msgid "Check upstream version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:671
|
#: src/Module/Admin/Site.php:673
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enables checking for new Friendica versions at github. If there is a new "
|
"Enables checking for new Friendica versions at github. If there is a new "
|
||||||
"version, you will be informed in the admin panel overview."
|
"version, you will be informed in the admin panel overview."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:672
|
#: src/Module/Admin/Site.php:674
|
||||||
msgid "Suppress Tags"
|
msgid "Suppress Tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:672
|
#: src/Module/Admin/Site.php:674
|
||||||
msgid "Suppress showing a list of hashtags at the end of the posting."
|
msgid "Suppress showing a list of hashtags at the end of the posting."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:673
|
#: src/Module/Admin/Site.php:675
|
||||||
msgid "Clean database"
|
msgid "Clean database"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:673
|
#: src/Module/Admin/Site.php:675
|
||||||
msgid ""
|
msgid ""
|
||||||
"Remove old remote items, orphaned database records and old content from some "
|
"Remove old remote items, orphaned database records and old content from some "
|
||||||
"other helper tables."
|
"other helper tables."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:674
|
#: src/Module/Admin/Site.php:676
|
||||||
msgid "Lifespan of remote items"
|
msgid "Lifespan of remote items"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:674
|
#: src/Module/Admin/Site.php:676
|
||||||
msgid ""
|
msgid ""
|
||||||
"When the database cleanup is enabled, this defines the days after which "
|
"When the database cleanup is enabled, this defines the days after which "
|
||||||
"remote items will be deleted. Own items, and marked or filed items are "
|
"remote items will be deleted. Own items, and marked or filed items are "
|
||||||
"always kept. 0 disables this behaviour."
|
"always kept. 0 disables this behaviour."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:675
|
#: src/Module/Admin/Site.php:677
|
||||||
msgid "Lifespan of unclaimed items"
|
msgid "Lifespan of unclaimed items"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:675
|
#: src/Module/Admin/Site.php:677
|
||||||
msgid ""
|
msgid ""
|
||||||
"When the database cleanup is enabled, this defines the days after which "
|
"When the database cleanup is enabled, this defines the days after which "
|
||||||
"unclaimed remote items (mostly content from the relay) will be deleted. "
|
"unclaimed remote items (mostly content from the relay) will be deleted. "
|
||||||
|
|
@ -7715,140 +7698,140 @@ msgid ""
|
||||||
"items if set to 0."
|
"items if set to 0."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:676
|
#: src/Module/Admin/Site.php:678
|
||||||
msgid "Lifespan of raw conversation data"
|
msgid "Lifespan of raw conversation data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:676
|
#: src/Module/Admin/Site.php:678
|
||||||
msgid ""
|
msgid ""
|
||||||
"The conversation data is used for ActivityPub and OStatus, as well as for "
|
"The conversation data is used for ActivityPub and OStatus, as well as for "
|
||||||
"debug purposes. It should be safe to remove it after 14 days, default is 90 "
|
"debug purposes. It should be safe to remove it after 14 days, default is 90 "
|
||||||
"days."
|
"days."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:677
|
#: src/Module/Admin/Site.php:679
|
||||||
msgid "Path to item cache"
|
msgid "Path to item cache"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:677
|
#: src/Module/Admin/Site.php:679
|
||||||
msgid "The item caches buffers generated bbcode and external images."
|
msgid "The item caches buffers generated bbcode and external images."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:678
|
#: src/Module/Admin/Site.php:680
|
||||||
msgid "Cache duration in seconds"
|
msgid "Cache duration in seconds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:678
|
#: src/Module/Admin/Site.php:680
|
||||||
msgid ""
|
msgid ""
|
||||||
"How long should the cache files be hold? Default value is 86400 seconds (One "
|
"How long should the cache files be hold? Default value is 86400 seconds (One "
|
||||||
"day). To disable the item cache, set the value to -1."
|
"day). To disable the item cache, set the value to -1."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:679
|
#: src/Module/Admin/Site.php:681
|
||||||
msgid "Maximum numbers of comments per post"
|
msgid "Maximum numbers of comments per post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:679
|
#: src/Module/Admin/Site.php:681
|
||||||
msgid "How much comments should be shown for each post? Default value is 100."
|
msgid "How much comments should be shown for each post? Default value is 100."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:680
|
#: src/Module/Admin/Site.php:682
|
||||||
msgid "Maximum numbers of comments per post on the display page"
|
msgid "Maximum numbers of comments per post on the display page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:680
|
#: src/Module/Admin/Site.php:682
|
||||||
msgid ""
|
msgid ""
|
||||||
"How many comments should be shown on the single view for each post? Default "
|
"How many comments should be shown on the single view for each post? Default "
|
||||||
"value is 1000."
|
"value is 1000."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:681
|
#: src/Module/Admin/Site.php:683
|
||||||
msgid "Temp path"
|
msgid "Temp path"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:681
|
#: src/Module/Admin/Site.php:683
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you have a restricted system where the webserver can't access the system "
|
"If you have a restricted system where the webserver can't access the system "
|
||||||
"temp path, enter another path here."
|
"temp path, enter another path here."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:682
|
#: src/Module/Admin/Site.php:684
|
||||||
msgid "Disable picture proxy"
|
msgid "Disable picture proxy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:682
|
#: src/Module/Admin/Site.php:684
|
||||||
msgid ""
|
msgid ""
|
||||||
"The picture proxy increases performance and privacy. It shouldn't be used on "
|
"The picture proxy increases performance and privacy. It shouldn't be used on "
|
||||||
"systems with very low bandwidth."
|
"systems with very low bandwidth."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:683
|
#: src/Module/Admin/Site.php:685
|
||||||
msgid "Only search in tags"
|
msgid "Only search in tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:683
|
#: src/Module/Admin/Site.php:685
|
||||||
msgid "On large systems the text search can slow down the system extremely."
|
msgid "On large systems the text search can slow down the system extremely."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:685
|
#: src/Module/Admin/Site.php:687
|
||||||
msgid "New base url"
|
msgid "New base url"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:685
|
#: src/Module/Admin/Site.php:687
|
||||||
msgid ""
|
msgid ""
|
||||||
"Change base url for this server. Sends relocate message to all Friendica and "
|
"Change base url for this server. Sends relocate message to all Friendica and "
|
||||||
"Diaspora* contacts of all users."
|
"Diaspora* contacts of all users."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:687
|
#: src/Module/Admin/Site.php:689
|
||||||
msgid "RINO Encryption"
|
msgid "RINO Encryption"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:687
|
#: src/Module/Admin/Site.php:689
|
||||||
msgid "Encryption layer between nodes."
|
msgid "Encryption layer between nodes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:687
|
#: src/Module/Admin/Site.php:689
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:689
|
#: src/Module/Admin/Site.php:691
|
||||||
msgid "Maximum number of parallel workers"
|
msgid "Maximum number of parallel workers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:689
|
#: src/Module/Admin/Site.php:691
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"On shared hosters set this to %d. On larger systems, values of %d are great. "
|
"On shared hosters set this to %d. On larger systems, values of %d are great. "
|
||||||
"Default value is %d."
|
"Default value is %d."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:690
|
#: src/Module/Admin/Site.php:692
|
||||||
msgid "Don't use \"proc_open\" with the worker"
|
msgid "Don't use \"proc_open\" with the worker"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:690
|
#: src/Module/Admin/Site.php:692
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enable this if your system doesn't allow the use of \"proc_open\". This can "
|
"Enable this if your system doesn't allow the use of \"proc_open\". This can "
|
||||||
"happen on shared hosters. If this is enabled you should increase the "
|
"happen on shared hosters. If this is enabled you should increase the "
|
||||||
"frequency of worker calls in your crontab."
|
"frequency of worker calls in your crontab."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:691
|
#: src/Module/Admin/Site.php:693
|
||||||
msgid "Enable fastlane"
|
msgid "Enable fastlane"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:691
|
#: src/Module/Admin/Site.php:693
|
||||||
msgid ""
|
msgid ""
|
||||||
"When enabed, the fastlane mechanism starts an additional worker if processes "
|
"When enabed, the fastlane mechanism starts an additional worker if processes "
|
||||||
"with higher priority are blocked by processes of lower priority."
|
"with higher priority are blocked by processes of lower priority."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:692
|
#: src/Module/Admin/Site.php:694
|
||||||
msgid "Enable frontend worker"
|
msgid "Enable frontend worker"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:692
|
#: src/Module/Admin/Site.php:694
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"When enabled the Worker process is triggered when backend access is "
|
"When enabled the Worker process is triggered when backend access is "
|
||||||
|
|
@ -7858,21 +7841,21 @@ msgid ""
|
||||||
"server."
|
"server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:694
|
#: src/Module/Admin/Site.php:696
|
||||||
msgid "Use relay servers"
|
msgid "Use relay servers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:694
|
#: src/Module/Admin/Site.php:696
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enables the receiving of public posts from relay servers. They will be "
|
"Enables the receiving of public posts from relay servers. They will be "
|
||||||
"included in the search, subscribed tags and on the global community page."
|
"included in the search, subscribed tags and on the global community page."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:695
|
#: src/Module/Admin/Site.php:697
|
||||||
msgid "\"Social Relay\" server"
|
msgid "\"Social Relay\" server"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:695
|
#: src/Module/Admin/Site.php:697
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Address of the \"Social Relay\" server where public posts should be send to. "
|
"Address of the \"Social Relay\" server where public posts should be send to. "
|
||||||
|
|
@ -7880,53 +7863,61 @@ msgid ""
|
||||||
"relay\" command line command."
|
"relay\" command line command."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:696
|
#: src/Module/Admin/Site.php:698
|
||||||
msgid "Direct relay transfer"
|
msgid "Direct relay transfer"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:696
|
#: src/Module/Admin/Site.php:698
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enables the direct transfer to other servers without using the relay servers"
|
"Enables the direct transfer to other servers without using the relay servers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:697
|
#: src/Module/Admin/Site.php:699
|
||||||
msgid "Relay scope"
|
msgid "Relay scope"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:697
|
#: src/Module/Admin/Site.php:699
|
||||||
msgid ""
|
msgid ""
|
||||||
"Can be \"all\" or \"tags\". \"all\" means that every public post should be "
|
"Can be \"all\" or \"tags\". \"all\" means that every public post should be "
|
||||||
"received. \"tags\" means that only posts with selected tags should be "
|
"received. \"tags\" means that only posts with selected tags should be "
|
||||||
"received."
|
"received."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:697
|
#: src/Module/Admin/Site.php:699
|
||||||
msgid "all"
|
msgid "all"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:697
|
#: src/Module/Admin/Site.php:699
|
||||||
msgid "tags"
|
msgid "tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:698
|
#: src/Module/Admin/Site.php:700
|
||||||
msgid "Server tags"
|
msgid "Server tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:698
|
#: src/Module/Admin/Site.php:700
|
||||||
msgid "Comma separated list of tags for the \"tags\" subscription."
|
msgid "Comma separated list of tags for the \"tags\" subscription."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:699
|
#: src/Module/Admin/Site.php:701
|
||||||
|
msgid "Deny Server tags"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Module/Admin/Site.php:701
|
||||||
|
msgid "Comma separated list of tags that are rejected."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Module/Admin/Site.php:702
|
||||||
msgid "Allow user tags"
|
msgid "Allow user tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:699
|
#: src/Module/Admin/Site.php:702
|
||||||
msgid ""
|
msgid ""
|
||||||
"If enabled, the tags from the saved searches will used for the \"tags\" "
|
"If enabled, the tags from the saved searches will used for the \"tags\" "
|
||||||
"subscription in addition to the \"relay_server_tags\"."
|
"subscription in addition to the \"relay_server_tags\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:702
|
#: src/Module/Admin/Site.php:705
|
||||||
msgid "Start Relocation"
|
msgid "Start Relocation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -8149,7 +8140,7 @@ msgid "Blocked server domain pattern"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Blocklist/Server.php:80
|
#: src/Module/Admin/Blocklist/Server.php:80
|
||||||
#: src/Module/Admin/Blocklist/Server.php:105 src/Module/Friendica.php:80
|
#: src/Module/Admin/Blocklist/Server.php:105 src/Module/Friendica.php:81
|
||||||
msgid "Reason for the block"
|
msgid "Reason for the block"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -8414,45 +8405,45 @@ msgid ""
|
||||||
"your device"
|
"your device"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Friendica.php:60
|
#: src/Module/Friendica.php:61
|
||||||
msgid "Installed addons/apps:"
|
msgid "Installed addons/apps:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Friendica.php:65
|
#: src/Module/Friendica.php:66
|
||||||
msgid "No installed addons/apps"
|
msgid "No installed addons/apps"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Friendica.php:70
|
#: src/Module/Friendica.php:71
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Read about the <a href=\"%1$s/tos\">Terms of Service</a> of this node."
|
msgid "Read about the <a href=\"%1$s/tos\">Terms of Service</a> of this node."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Friendica.php:77
|
#: src/Module/Friendica.php:78
|
||||||
msgid "On this server the following remote servers are blocked."
|
msgid "On this server the following remote servers are blocked."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Friendica.php:95
|
#: src/Module/Friendica.php:96
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is Friendica, version %s that is running at the web location %s. The "
|
"This is Friendica, version %s that is running at the web location %s. The "
|
||||||
"database version is %s, the post update version is %s."
|
"database version is %s, the post update version is %s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Friendica.php:100
|
#: src/Module/Friendica.php:101
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please visit <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more "
|
"Please visit <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more "
|
||||||
"about the Friendica project."
|
"about the Friendica project."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Friendica.php:101
|
#: src/Module/Friendica.php:102
|
||||||
msgid "Bug reports and issues: please visit"
|
msgid "Bug reports and issues: please visit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Friendica.php:101
|
#: src/Module/Friendica.php:102
|
||||||
msgid "the bugtracker at github"
|
msgid "the bugtracker at github"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Friendica.php:102
|
#: src/Module/Friendica.php:103
|
||||||
msgid ""
|
msgid ""
|
||||||
"Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"
|
"Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -8503,7 +8494,7 @@ msgstr ""
|
||||||
msgid "Connected apps"
|
msgid "Connected apps"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/BaseSettings.php:108 src/Module/Settings/UserExport.php:65
|
#: src/Module/BaseSettings.php:108 src/Module/Settings/UserExport.php:66
|
||||||
msgid "Export personal data"
|
msgid "Export personal data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -8621,7 +8612,7 @@ msgstr ""
|
||||||
msgid "Search"
|
msgid "Search"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Search/Index.php:181
|
#: src/Module/Search/Index.php:188
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Items tagged with: %s"
|
msgid "Items tagged with: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -9279,146 +9270,154 @@ msgstr ""
|
||||||
msgid "Generate"
|
msgid "Generate"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:103
|
#: src/Module/Settings/Display.php:105
|
||||||
msgid "The theme you chose isn't available."
|
msgid "The theme you chose isn't available."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:140
|
#: src/Module/Settings/Display.php:142
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s - (Unsupported)"
|
msgid "%s - (Unsupported)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:184
|
#: src/Module/Settings/Display.php:188
|
||||||
msgid "Display Settings"
|
msgid "Display Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:186
|
#: src/Module/Settings/Display.php:190
|
||||||
msgid "General Theme Settings"
|
msgid "General Theme Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:187
|
#: src/Module/Settings/Display.php:191
|
||||||
msgid "Custom Theme Settings"
|
msgid "Custom Theme Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:188
|
#: src/Module/Settings/Display.php:192
|
||||||
msgid "Content Settings"
|
msgid "Content Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:190
|
#: src/Module/Settings/Display.php:194
|
||||||
msgid "Calendar"
|
msgid "Calendar"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:196
|
#: src/Module/Settings/Display.php:200
|
||||||
msgid "Display Theme:"
|
msgid "Display Theme:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:197
|
#: src/Module/Settings/Display.php:201
|
||||||
msgid "Mobile Theme:"
|
msgid "Mobile Theme:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:200
|
#: src/Module/Settings/Display.php:204
|
||||||
msgid "Number of items to display per page:"
|
msgid "Number of items to display per page:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:200 src/Module/Settings/Display.php:201
|
#: src/Module/Settings/Display.php:204 src/Module/Settings/Display.php:205
|
||||||
msgid "Maximum of 100 items"
|
msgid "Maximum of 100 items"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:201
|
#: src/Module/Settings/Display.php:205
|
||||||
msgid "Number of items to display per page when viewed from mobile device:"
|
msgid "Number of items to display per page when viewed from mobile device:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:202
|
#: src/Module/Settings/Display.php:206
|
||||||
msgid "Update browser every xx seconds"
|
msgid "Update browser every xx seconds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:202
|
#: src/Module/Settings/Display.php:206
|
||||||
msgid "Minimum of 10 seconds. Enter -1 to disable it."
|
msgid "Minimum of 10 seconds. Enter -1 to disable it."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:203
|
#: src/Module/Settings/Display.php:207
|
||||||
msgid "Automatic updates only at the top of the post stream pages"
|
msgid "Automatic updates only at the top of the post stream pages"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:203
|
#: src/Module/Settings/Display.php:207
|
||||||
msgid ""
|
msgid ""
|
||||||
"Auto update may add new posts at the top of the post stream pages, which can "
|
"Auto update may add new posts at the top of the post stream pages, which can "
|
||||||
"affect the scroll position and perturb normal reading if it happens anywhere "
|
"affect the scroll position and perturb normal reading if it happens anywhere "
|
||||||
"else the top of the page."
|
"else the top of the page."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:204
|
#: src/Module/Settings/Display.php:208
|
||||||
msgid "Don't show emoticons"
|
msgid "Don't show emoticons"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:204
|
#: src/Module/Settings/Display.php:208
|
||||||
msgid ""
|
msgid ""
|
||||||
"Normally emoticons are replaced with matching symbols. This setting disables "
|
"Normally emoticons are replaced with matching symbols. This setting disables "
|
||||||
"this behaviour."
|
"this behaviour."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:205
|
#: src/Module/Settings/Display.php:209
|
||||||
msgid "Infinite scroll"
|
msgid "Infinite scroll"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:205
|
#: src/Module/Settings/Display.php:209
|
||||||
msgid "Automatic fetch new items when reaching the page end."
|
msgid "Automatic fetch new items when reaching the page end."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:206
|
#: src/Module/Settings/Display.php:210
|
||||||
msgid "Disable Smart Threading"
|
msgid "Disable Smart Threading"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:206
|
#: src/Module/Settings/Display.php:210
|
||||||
msgid "Disable the automatic suppression of extraneous thread indentation."
|
msgid "Disable the automatic suppression of extraneous thread indentation."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:207
|
#: src/Module/Settings/Display.php:211
|
||||||
msgid "Hide the Dislike feature"
|
msgid "Hide the Dislike feature"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:207
|
#: src/Module/Settings/Display.php:211
|
||||||
msgid "Hides the Dislike button and dislike reactions on posts and comments."
|
msgid "Hides the Dislike button and dislike reactions on posts and comments."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:208
|
#: src/Module/Settings/Display.php:212
|
||||||
msgid "Display the resharer"
|
msgid "Display the resharer"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:208
|
#: src/Module/Settings/Display.php:212
|
||||||
msgid "Display the first resharer as icon and text on a reshared item."
|
msgid "Display the first resharer as icon and text on a reshared item."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Display.php:210
|
#: src/Module/Settings/Display.php:213
|
||||||
|
msgid "Stay local"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Module/Settings/Display.php:213
|
||||||
|
msgid "Don't go to a remote system when following a contact link."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Module/Settings/Display.php:215
|
||||||
msgid "Beginning of week:"
|
msgid "Beginning of week:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/UserExport.php:57
|
#: src/Module/Settings/UserExport.php:58
|
||||||
msgid "Export account"
|
msgid "Export account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/UserExport.php:57
|
#: src/Module/Settings/UserExport.php:58
|
||||||
msgid ""
|
msgid ""
|
||||||
"Export your account info and contacts. Use this to make a backup of your "
|
"Export your account info and contacts. Use this to make a backup of your "
|
||||||
"account and/or to move it to another server."
|
"account and/or to move it to another server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/UserExport.php:58
|
#: src/Module/Settings/UserExport.php:59
|
||||||
msgid "Export all"
|
msgid "Export all"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/UserExport.php:58
|
#: src/Module/Settings/UserExport.php:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"Export your account info, contacts and all your items as json. Could be a "
|
"Export your account info, contacts and all your items as json. Could be a "
|
||||||
"very big file, and could take a lot of time. Use this to make a full backup "
|
"very big file, and could take a lot of time. Use this to make a full backup "
|
||||||
"of your account (photos are not exported)"
|
"of your account (photos are not exported)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/UserExport.php:59
|
#: src/Module/Settings/UserExport.php:60
|
||||||
msgid "Export Contacts to CSV"
|
msgid "Export Contacts to CSV"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/UserExport.php:59
|
#: src/Module/Settings/UserExport.php:60
|
||||||
msgid ""
|
msgid ""
|
||||||
"Export the list of the accounts you are following as CSV file. Compatible to "
|
"Export the list of the accounts you are following as CSV file. Compatible to "
|
||||||
"e.g. Mastodon."
|
"e.g. Mastodon."
|
||||||
|
|
@ -9446,7 +9445,7 @@ msgstr ""
|
||||||
msgid "stopped following"
|
msgid "stopped following"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Protocol/Diaspora.php:3523
|
#: src/Protocol/Diaspora.php:3562
|
||||||
msgid "Attachments:"
|
msgid "Attachments:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -9575,32 +9574,37 @@ msgstr ""
|
||||||
msgid "Enter a valid existing folder"
|
msgid "Enter a valid existing folder"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Item.php:3410
|
#: src/Model/Item.php:2514
|
||||||
|
#, php-format
|
||||||
|
msgid "Detected languages in this post:\\n%s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Model/Item.php:3446
|
||||||
msgid "activity"
|
msgid "activity"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Item.php:3415
|
#: src/Model/Item.php:3451
|
||||||
msgid "post"
|
msgid "post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Item.php:3538
|
#: src/Model/Item.php:3574
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Content warning: %s"
|
msgid "Content warning: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Item.php:3615
|
#: src/Model/Item.php:3649
|
||||||
msgid "bytes"
|
msgid "bytes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Item.php:3660
|
#: src/Model/Item.php:3694
|
||||||
msgid "View on separate page"
|
msgid "View on separate page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Item.php:3661
|
#: src/Model/Item.php:3695
|
||||||
msgid "view on separate page"
|
msgid "view on separate page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Item.php:3666 src/Model/Item.php:3672
|
#: src/Model/Item.php:3700 src/Model/Item.php:3706
|
||||||
#: src/Content/Text/BBCode.php:1071
|
#: src/Content/Text/BBCode.php:1071
|
||||||
msgid "link to source"
|
msgid "link to source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -9609,76 +9613,80 @@ msgstr ""
|
||||||
msgid "[no subject]"
|
msgid "[no subject]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:961 src/Model/Contact.php:974
|
#: src/Model/Contact.php:965 src/Model/Contact.php:978
|
||||||
msgid "UnFollow"
|
msgid "UnFollow"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:970
|
#: src/Model/Contact.php:974
|
||||||
msgid "Drop Contact"
|
msgid "Drop Contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:1367
|
#: src/Model/Contact.php:1393
|
||||||
msgid "Organisation"
|
msgid "Organisation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:1375
|
#: src/Model/Contact.php:1397 src/Content/Widget.php:545
|
||||||
|
msgid "News"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Model/Contact.php:1401
|
||||||
msgid "Forum"
|
msgid "Forum"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:2027
|
#: src/Model/Contact.php:2057
|
||||||
msgid "Connect URL missing."
|
msgid "Connect URL missing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:2036
|
#: src/Model/Contact.php:2066
|
||||||
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:2077
|
#: src/Model/Contact.php:2107
|
||||||
msgid ""
|
msgid ""
|
||||||
"This site is not configured to allow communications with other networks."
|
"This site is not configured to allow communications with other networks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:2078 src/Model/Contact.php:2091
|
#: src/Model/Contact.php:2108 src/Model/Contact.php:2121
|
||||||
msgid "No compatible communication protocols or feeds were discovered."
|
msgid "No compatible communication protocols or feeds were discovered."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:2089
|
#: src/Model/Contact.php:2119
|
||||||
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:2094
|
#: src/Model/Contact.php:2124
|
||||||
msgid "An author or name was not found."
|
msgid "An author or name was not found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:2097
|
#: src/Model/Contact.php:2127
|
||||||
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:2100
|
#: src/Model/Contact.php:2130
|
||||||
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:2101
|
#: src/Model/Contact.php:2131
|
||||||
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:2107
|
#: src/Model/Contact.php:2137
|
||||||
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:2112
|
#: src/Model/Contact.php:2142
|
||||||
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:2171
|
#: src/Model/Contact.php:2201
|
||||||
msgid "Unable to retrieve contact information."
|
msgid "Unable to retrieve contact information."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -10128,6 +10136,22 @@ msgstr[1] ""
|
||||||
msgid "Archives"
|
msgid "Archives"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Content/Widget.php:539 src/Content/Nav.php:279
|
||||||
|
msgid "Accounts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Content/Widget.php:542
|
||||||
|
msgid "All"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Content/Widget.php:543
|
||||||
|
msgid "Persons"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Content/Widget.php:544
|
||||||
|
msgid "Organisations"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/ContactSelector.php:48
|
#: src/Content/ContactSelector.php:48
|
||||||
msgid "Frequently"
|
msgid "Frequently"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -10511,12 +10535,12 @@ msgstr ""
|
||||||
msgid "The end"
|
msgid "The end"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Text/HTML.php:954 src/Content/Text/BBCode.php:1523
|
#: src/Content/Text/HTML.php:954 src/Content/Text/BBCode.php:1534
|
||||||
msgid "Click to open/close"
|
msgid "Click to open/close"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Text/BBCode.php:946 src/Content/Text/BBCode.php:1605
|
#: src/Content/Text/BBCode.php:946 src/Content/Text/BBCode.php:1616
|
||||||
#: src/Content/Text/BBCode.php:1606
|
#: src/Content/Text/BBCode.php:1617
|
||||||
msgid "Image/photo"
|
msgid "Image/photo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -10526,19 +10550,19 @@ 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:1554
|
#: src/Content/Text/BBCode.php:1565
|
||||||
msgid "$1 wrote:"
|
msgid "$1 wrote:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Text/BBCode.php:1608 src/Content/Text/BBCode.php:1609
|
#: src/Content/Text/BBCode.php:1619 src/Content/Text/BBCode.php:1620
|
||||||
msgid "Encrypted content"
|
msgid "Encrypted content"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Text/BBCode.php:1831
|
#: src/Content/Text/BBCode.php:1842
|
||||||
msgid "Invalid source protocol"
|
msgid "Invalid source protocol"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Text/BBCode.php:1846
|
#: src/Content/Text/BBCode.php:1857
|
||||||
msgid "Invalid link protocol"
|
msgid "Invalid link protocol"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue