All references to boot.php are now removed

This commit is contained in:
Michael 2022-10-19 20:38:25 +00:00
commit d3e167c77c
16 changed files with 381 additions and 423 deletions

View file

@ -1,4 +1,4 @@
INPUT = README.md index.php boot.php update.php bin/ mod/ include/ view/ src/ VERSION INPUT = README.md index.php update.php bin/ mod/ include/ view/ src/ VERSION
RECURSIVE = YES RECURSIVE = YES
PROJECT_NAME = "Friendica" PROJECT_NAME = "Friendica"
PROJECT_LOGO = images/friendica-64.png PROJECT_LOGO = images/friendica-64.png

View file

@ -45,7 +45,7 @@ $longopts = ['foreground'];
$options = getopt($shortopts, $longopts); $options = getopt($shortopts, $longopts);
// Ensure that daemon.php is executed from the base path of the installation // Ensure that daemon.php is executed from the base path of the installation
if (!file_exists('boot.php') && (sizeof($_SERVER['argv']) != 0)) { if (!file_exists('index.php') && (sizeof($_SERVER['argv']) != 0)) {
$directory = dirname($_SERVER['argv'][0]); $directory = dirname($_SERVER['argv'][0]);
if (substr($directory, 0, 1) != '/') { if (substr($directory, 0, 1) != '/') {

View file

@ -40,7 +40,7 @@ $longopts = ['spawn', 'no_cron'];
$options = getopt($shortopts, $longopts); $options = getopt($shortopts, $longopts);
// Ensure that worker.php is executed from the base path of the installation // Ensure that worker.php is executed from the base path of the installation
if (!file_exists("boot.php") && (sizeof($_SERVER["argv"]) != 0)) { if (!file_exists("index.php") && (sizeof($_SERVER["argv"]) != 0)) {
$directory = dirname($_SERVER["argv"][0]); $directory = dirname($_SERVER["argv"][0]);
if (substr($directory, 0, 1) != '/') { if (substr($directory, 0, 1) != '/') {

View file

@ -1,28 +0,0 @@
<?php
/**
* @copyright Copyright (C) 2010-2022, the Friendica project
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
* Friendica is a communications platform for integrated social communications
* utilising decentralised communications and linkage to several indie social
* projects - as well as popular mainstream providers.
*
* Our mission is to free our friends and families from the clutches of
* data-harvesting corporations, and pave the way to a future where social
* communications are free and open and flow between alternate providers as
* easily as email does today.
*/

View file

@ -83,10 +83,7 @@
"psr-4": { "psr-4": {
"Friendica\\": "src/", "Friendica\\": "src/",
"Friendica\\Addon\\": "addon/" "Friendica\\Addon\\": "addon/"
}, }
"files": [
"boot.php"
]
}, },
"autoload-dev": { "autoload-dev": {
"psr-4": { "psr-4": {

View file

@ -6,7 +6,7 @@ Using Composer
Friendica uses [Composer](https://getcomposer.org) to manage dependencies libraries and the class autoloader both for libraries and namespaced Friendica classes. Friendica uses [Composer](https://getcomposer.org) to manage dependencies libraries and the class autoloader both for libraries and namespaced Friendica classes.
It's a command-line tool that downloads required libraries into the `vendor` folder and makes any namespaced class in `src` available through the whole application through `boot.php`. It's a command-line tool that downloads required libraries into the `vendor` folder and makes any namespaced class in `src` available through the whole application.
* [Class autoloading](help/autoloader) * [Class autoloading](help/autoloader)

View file

@ -47,7 +47,7 @@ Friendica uses an implementation of [Domain-Driven-Design](help/Developer-Domain
Friendica uses [Composer](https://getcomposer.org) to manage dependencies libraries and the class autoloader both for libraries and namespaced Friendica classes. Friendica uses [Composer](https://getcomposer.org) to manage dependencies libraries and the class autoloader both for libraries and namespaced Friendica classes.
It's a command-line tool that downloads required libraries into the `vendor` folder and makes any namespaced class in `src` available through the whole application through `boot.php`. It's a command-line tool that downloads required libraries into the `vendor` folder and makes any namespaced class in `src` available through the whole application.
If you want to have git automatically update the dependencies with composer, you can use the `post-merge` [git-hook](https://git-scm.com/book/en/v2/Customizing-Git-Git-Hooks) with a script similar to this one: If you want to have git automatically update the dependencies with composer, you can use the `post-merge` [git-hook](https://git-scm.com/book/en/v2/Customizing-Git-Git-Hooks) with a script similar to this one:

View file

@ -6,7 +6,7 @@ Autoloader with Composer
Friendica uses [Composer](https://getcomposer.org) to manage dependencies libraries and the class autoloader both for libraries and namespaced Friendica classes. Friendica uses [Composer](https://getcomposer.org) to manage dependencies libraries and the class autoloader both for libraries and namespaced Friendica classes.
It's a command-line tool that downloads required libraries into the `vendor` folder and makes any namespaced class in `src` available through the whole application through `boot.php`. It's a command-line tool that downloads required libraries into the `vendor` folder and makes any namespaced class in `src` available through the whole application.
* [Using Composer](help/Composer) * [Using Composer](help/Composer)
@ -39,7 +39,6 @@ Namespaces are useful to keep classes separated and avoid names conflicts (could
Let's say now that you need to load some items in a view, maybe in a fictional `mod/network.php`. Let's say now that you need to load some items in a view, maybe in a fictional `mod/network.php`.
In order for the Composer autoloader to work, it must first be included. In order for the Composer autoloader to work, it must first be included.
In Friendica this is already done at the top of `boot.php`, with `require_once('vendor/autoload.php');`.
The code will be something like: The code will be something like:

View file

@ -19,7 +19,6 @@ static/
vendor/ vendor/
view/ view/
.htaccess-dist .htaccess-dist
boot.php
CHANGELOG CHANGELOG
CREDITS.txt CREDITS.txt
database.sql database.sql

View file

@ -75,7 +75,7 @@ HELP;
$arr = []; $arr = [];
$files = array_merge( $files = array_merge(
['index.php', 'boot.php'], ['index.php'],
glob('mod/*'), glob('mod/*'),
glob('include/*'), glob('include/*'),
glob('addon/*/*'), glob('addon/*/*'),

View file

@ -25,8 +25,6 @@ use Friendica\DI;
use Friendica\Model\Profile; use Friendica\Model\Profile;
use Friendica\Util\Strings; use Friendica\Util\Strings;
require_once 'boot.php';
/** /**
* Some functions to handle themes * Some functions to handle themes
*/ */

View file

@ -38,8 +38,6 @@ use Friendica\Protocol\Relay;
use Friendica\Util\BasePath; use Friendica\Util\BasePath;
use Friendica\Util\EMailer\MailBuilder; use Friendica\Util\EMailer\MailBuilder;
require_once __DIR__ . '/../../../boot.php';
class Site extends BaseAdmin class Site extends BaseAdmin
{ {
protected function post(array $request = []) protected function post(array $request = [])

View file

@ -28,8 +28,6 @@ use Friendica\Core\Session;
use Friendica\DI; use Friendica\DI;
use Friendica\Network\HTTPException; use Friendica\Network\HTTPException;
require_once 'boot.php';
/** /**
* This abstract module is meant to be extended by all modules that are reserved to administrator users. * This abstract module is meant to be extended by all modules that are reserved to administrator users.
* *

View file

@ -29,8 +29,6 @@ use Friendica\Database\DBA;
use Friendica\DI; use Friendica\DI;
use Friendica\Model; use Friendica\Model;
require_once 'boot.php';
class Group extends BaseModule class Group extends BaseModule
{ {
protected function post(array $request = []) protected function post(array $request = [])

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 2022.12-dev\n" "Project-Id-Version: 2022.12-dev\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-10-19 08:56+0000\n" "POT-Creation-Date: 2022-10-19 20:30+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"
@ -19,7 +19,7 @@ msgstr ""
#: mod/cal.php:46 mod/cal.php:50 mod/follow.php:40 mod/redir.php:36 #: mod/cal.php:46 mod/cal.php:50 mod/follow.php:40 mod/redir.php:36
#: mod/redir.php:177 src/Module/Conversation/Community.php:196 #: mod/redir.php:177 src/Module/Conversation/Community.php:194
#: src/Module/Debug/ItemBody.php:39 src/Module/Diaspora/Receive.php:57 #: src/Module/Debug/ItemBody.php:39 src/Module/Diaspora/Receive.php:57
#: src/Module/Item/Follow.php:42 src/Module/Item/Ignore.php:42 #: src/Module/Item/Follow.php:42 src/Module/Item/Ignore.php:42
#: src/Module/Item/Pin.php:42 src/Module/Item/Pin.php:57 #: src/Module/Item/Pin.php:42 src/Module/Item/Pin.php:57
@ -105,7 +105,7 @@ msgid "calendar"
msgstr "" msgstr ""
#: mod/display.php:143 mod/photos.php:798 #: mod/display.php:143 mod/photos.php:798
#: src/Module/Conversation/Community.php:190 src/Module/Directory.php:49 #: src/Module/Conversation/Community.php:188 src/Module/Directory.php:49
#: src/Module/Search/Index.php:65 #: src/Module/Search/Index.php:65
msgid "Public access denied." msgid "Public access denied."
msgstr "" msgstr ""
@ -129,9 +129,9 @@ msgstr ""
#: mod/wallmessage.php:37 mod/wallmessage.php:56 mod/wallmessage.php:90 #: mod/wallmessage.php:37 mod/wallmessage.php:56 mod/wallmessage.php:90
#: mod/wallmessage.php:110 src/Module/Attach.php:56 src/Module/BaseApi.php:94 #: mod/wallmessage.php:110 src/Module/Attach.php:56 src/Module/BaseApi.php:94
#: src/Module/BaseNotifications.php:98 src/Module/Contact/Advanced.php:61 #: src/Module/BaseNotifications.php:98 src/Module/Contact/Advanced.php:61
#: src/Module/Delegation.php:118 src/Module/FollowConfirm.php:39 #: src/Module/Delegation.php:119 src/Module/FollowConfirm.php:39
#: src/Module/FriendSuggest.php:58 src/Module/Group.php:43 #: src/Module/FriendSuggest.php:58 src/Module/Group.php:41
#: src/Module/Group.php:86 src/Module/Invite.php:43 src/Module/Invite.php:132 #: src/Module/Group.php:84 src/Module/Invite.php:43 src/Module/Invite.php:132
#: src/Module/Notifications/Notification.php:77 #: src/Module/Notifications/Notification.php:77
#: src/Module/Notifications/Notification.php:108 #: src/Module/Notifications/Notification.php:108
#: src/Module/Profile/Common.php:56 src/Module/Profile/Contacts.php:56 #: src/Module/Profile/Common.php:56 src/Module/Profile/Contacts.php:56
@ -164,25 +164,25 @@ msgstr ""
msgid "Save" msgid "Save"
msgstr "" msgstr ""
#: mod/editpost.php:93 mod/photos.php:1334 src/Content/Conversation.php:340 #: mod/editpost.php:93 mod/photos.php:1334 src/Content/Conversation.php:342
#: src/Object/Post.php:993 #: src/Object/Post.php:993
msgid "Loading..." msgid "Loading..."
msgstr "" msgstr ""
#: mod/editpost.php:94 mod/message.php:202 mod/message.php:358 #: mod/editpost.php:94 mod/message.php:202 mod/message.php:358
#: mod/wallmessage.php:140 src/Content/Conversation.php:341 #: mod/wallmessage.php:140 src/Content/Conversation.php:343
msgid "Upload photo" msgid "Upload photo"
msgstr "" msgstr ""
#: mod/editpost.php:95 src/Content/Conversation.php:342 #: mod/editpost.php:95 src/Content/Conversation.php:344
msgid "upload photo" msgid "upload photo"
msgstr "" msgstr ""
#: mod/editpost.php:96 src/Content/Conversation.php:343 #: mod/editpost.php:96 src/Content/Conversation.php:345
msgid "Attach file" msgid "Attach file"
msgstr "" msgstr ""
#: mod/editpost.php:97 src/Content/Conversation.php:344 #: mod/editpost.php:97 src/Content/Conversation.php:346
msgid "attach file" msgid "attach file"
msgstr "" msgstr ""
@ -211,31 +211,31 @@ msgstr ""
msgid "audio link" msgid "audio link"
msgstr "" msgstr ""
#: mod/editpost.php:104 src/Content/Conversation.php:354 #: mod/editpost.php:104 src/Content/Conversation.php:356
#: src/Module/Item/Compose.php:201 #: src/Module/Item/Compose.php:201
msgid "Set your location" msgid "Set your location"
msgstr "" msgstr ""
#: mod/editpost.php:105 src/Content/Conversation.php:355 #: mod/editpost.php:105 src/Content/Conversation.php:357
msgid "set location" msgid "set location"
msgstr "" msgstr ""
#: mod/editpost.php:106 src/Content/Conversation.php:356 #: mod/editpost.php:106 src/Content/Conversation.php:358
msgid "Clear browser location" msgid "Clear browser location"
msgstr "" msgstr ""
#: mod/editpost.php:107 src/Content/Conversation.php:357 #: mod/editpost.php:107 src/Content/Conversation.php:359
msgid "clear location" msgid "clear location"
msgstr "" msgstr ""
#: mod/editpost.php:108 mod/message.php:204 mod/message.php:361 #: mod/editpost.php:108 mod/message.php:204 mod/message.php:361
#: mod/photos.php:1485 mod/wallmessage.php:142 src/Content/Conversation.php:370 #: mod/photos.php:1485 mod/wallmessage.php:142 src/Content/Conversation.php:372
#: src/Content/Conversation.php:716 src/Module/Item/Compose.php:205 #: src/Content/Conversation.php:718 src/Module/Item/Compose.php:205
#: src/Object/Post.php:538 #: src/Object/Post.php:538
msgid "Please wait" msgid "Please wait"
msgstr "" msgstr ""
#: mod/editpost.php:109 src/Content/Conversation.php:371 #: mod/editpost.php:109 src/Content/Conversation.php:373
msgid "Permission settings" msgid "Permission settings"
msgstr "" msgstr ""
@ -243,16 +243,16 @@ msgstr ""
msgid "CC: email addresses" msgid "CC: email addresses"
msgstr "" msgstr ""
#: mod/editpost.php:118 src/Content/Conversation.php:381 #: mod/editpost.php:118 src/Content/Conversation.php:383
msgid "Public post" msgid "Public post"
msgstr "" msgstr ""
#: mod/editpost.php:121 src/Content/Conversation.php:359 #: mod/editpost.php:121 src/Content/Conversation.php:361
#: src/Module/Item/Compose.php:206 #: src/Module/Item/Compose.php:206
msgid "Set title" msgid "Set title"
msgstr "" msgstr ""
#: mod/editpost.php:123 src/Content/Conversation.php:361 #: mod/editpost.php:123 src/Content/Conversation.php:363
#: src/Module/Item/Compose.php:207 #: src/Module/Item/Compose.php:207
msgid "Categories (comma-separated list)" msgid "Categories (comma-separated list)"
msgstr "" msgstr ""
@ -262,71 +262,71 @@ msgid "Example: bob@example.com, mary@example.com"
msgstr "" msgstr ""
#: mod/editpost.php:129 mod/events.php:515 mod/photos.php:1333 #: mod/editpost.php:129 mod/events.php:515 mod/photos.php:1333
#: mod/photos.php:1389 mod/photos.php:1463 src/Content/Conversation.php:385 #: mod/photos.php:1389 mod/photos.php:1463 src/Content/Conversation.php:387
#: src/Module/Item/Compose.php:200 src/Object/Post.php:1003 #: src/Module/Item/Compose.php:200 src/Object/Post.php:1003
msgid "Preview" msgid "Preview"
msgstr "" msgstr ""
#: mod/editpost.php:131 mod/fbrowser.php:120 mod/fbrowser.php:147 #: mod/editpost.php:131 mod/fbrowser.php:120 mod/fbrowser.php:147
#: mod/follow.php:145 mod/photos.php:1000 mod/photos.php:1101 mod/tagrm.php:36 #: mod/follow.php:145 mod/photos.php:1000 mod/photos.php:1101 mod/tagrm.php:36
#: mod/tagrm.php:128 mod/unfollow.php:98 src/Content/Conversation.php:388 #: mod/tagrm.php:128 mod/unfollow.php:98 src/Content/Conversation.php:390
#: src/Module/Contact/Revoke.php:110 src/Module/RemoteFollow.php:128 #: src/Module/Contact/Revoke.php:110 src/Module/RemoteFollow.php:128
#: src/Module/Security/TwoFactor/SignOut.php:127 #: src/Module/Security/TwoFactor/SignOut.php:127
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
#: mod/editpost.php:135 src/Content/Conversation.php:345 #: mod/editpost.php:135 src/Content/Conversation.php:347
#: src/Module/Item/Compose.php:191 src/Object/Post.php:994 #: src/Module/Item/Compose.php:191 src/Object/Post.php:994
msgid "Bold" msgid "Bold"
msgstr "" msgstr ""
#: mod/editpost.php:136 src/Content/Conversation.php:346 #: mod/editpost.php:136 src/Content/Conversation.php:348
#: src/Module/Item/Compose.php:192 src/Object/Post.php:995 #: src/Module/Item/Compose.php:192 src/Object/Post.php:995
msgid "Italic" msgid "Italic"
msgstr "" msgstr ""
#: mod/editpost.php:137 src/Content/Conversation.php:347 #: mod/editpost.php:137 src/Content/Conversation.php:349
#: src/Module/Item/Compose.php:193 src/Object/Post.php:996 #: src/Module/Item/Compose.php:193 src/Object/Post.php:996
msgid "Underline" msgid "Underline"
msgstr "" msgstr ""
#: mod/editpost.php:138 src/Content/Conversation.php:348 #: mod/editpost.php:138 src/Content/Conversation.php:350
#: src/Module/Item/Compose.php:194 src/Object/Post.php:997 #: src/Module/Item/Compose.php:194 src/Object/Post.php:997
msgid "Quote" msgid "Quote"
msgstr "" msgstr ""
#: mod/editpost.php:139 src/Content/Conversation.php:349 #: mod/editpost.php:139 src/Content/Conversation.php:351
#: src/Module/Item/Compose.php:195 src/Object/Post.php:998 #: src/Module/Item/Compose.php:195 src/Object/Post.php:998
msgid "Code" msgid "Code"
msgstr "" msgstr ""
#: mod/editpost.php:140 src/Content/Conversation.php:351 #: mod/editpost.php:140 src/Content/Conversation.php:353
#: src/Module/Item/Compose.php:197 src/Object/Post.php:1000 #: src/Module/Item/Compose.php:197 src/Object/Post.php:1000
msgid "Link" msgid "Link"
msgstr "" msgstr ""
#: mod/editpost.php:141 src/Content/Conversation.php:352 #: mod/editpost.php:141 src/Content/Conversation.php:354
#: src/Module/Item/Compose.php:198 src/Object/Post.php:1001 #: src/Module/Item/Compose.php:198 src/Object/Post.php:1001
msgid "Link or Media" msgid "Link or Media"
msgstr "" msgstr ""
#: mod/editpost.php:144 src/Content/Conversation.php:395 #: mod/editpost.php:144 src/Content/Conversation.php:397
#: src/Content/Widget/VCard.php:114 src/Model/Profile.php:466 #: src/Content/Widget/VCard.php:114 src/Model/Profile.php:466
#: src/Module/Admin/Logs/View.php:93 #: src/Module/Admin/Logs/View.php:93
msgid "Message" msgid "Message"
msgstr "" msgstr ""
#: mod/editpost.php:145 src/Content/Conversation.php:396 #: mod/editpost.php:145 src/Content/Conversation.php:398
#: src/Module/Settings/TwoFactor/Trusted.php:140 #: src/Module/Settings/TwoFactor/Trusted.php:140
msgid "Browser" msgid "Browser"
msgstr "" msgstr ""
#: mod/editpost.php:146 mod/events.php:520 mod/photos.php:935 #: mod/editpost.php:146 mod/events.php:520 mod/photos.php:935
#: mod/photos.php:1287 src/Content/Conversation.php:372 #: mod/photos.php:1287 src/Content/Conversation.php:374
msgid "Permissions" msgid "Permissions"
msgstr "" msgstr ""
#: mod/editpost.php:148 src/Content/Conversation.php:398 #: mod/editpost.php:148 src/Content/Conversation.php:400
msgid "Open Compose page" msgid "Open Compose page"
msgstr "" msgstr ""
@ -412,7 +412,7 @@ msgstr ""
#: src/Module/Debug/ActivityPubConversion.php:141 #: src/Module/Debug/ActivityPubConversion.php:141
#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 #: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64
#: src/Module/Debug/Probe.php:55 src/Module/Debug/WebFinger.php:52 #: src/Module/Debug/Probe.php:55 src/Module/Debug/WebFinger.php:52
#: src/Module/Delegation.php:147 src/Module/FriendSuggest.php:146 #: src/Module/Delegation.php:148 src/Module/FriendSuggest.php:146
#: src/Module/Install.php:252 src/Module/Install.php:294 #: src/Module/Install.php:252 src/Module/Install.php:294
#: src/Module/Install.php:331 src/Module/Invite.php:179 #: src/Module/Install.php:331 src/Module/Invite.php:179
#: src/Module/Item/Compose.php:190 src/Module/Profile/Profile.php:247 #: src/Module/Item/Compose.php:190 src/Module/Profile/Profile.php:247
@ -426,7 +426,7 @@ msgstr ""
msgid "Basic" msgid "Basic"
msgstr "" msgstr ""
#: mod/events.php:519 src/Module/Admin/Site.php:439 src/Module/Contact.php:478 #: mod/events.php:519 src/Module/Admin/Site.php:437 src/Module/Contact.php:478
#: src/Module/Profile/Profile.php:249 #: src/Module/Profile/Profile.php:249
msgid "Advanced" msgid "Advanced"
msgstr "" msgstr ""
@ -1080,11 +1080,11 @@ msgstr ""
msgid "Comment" msgid "Comment"
msgstr "" msgstr ""
#: mod/photos.php:1420 src/Content/Conversation.php:632 src/Object/Post.php:256 #: mod/photos.php:1420 src/Content/Conversation.php:634 src/Object/Post.php:256
msgid "Select" msgid "Select"
msgstr "" msgstr ""
#: mod/photos.php:1421 mod/settings.php:351 src/Content/Conversation.php:633 #: mod/photos.php:1421 mod/settings.php:351 src/Content/Conversation.php:635
#: src/Module/Admin/Users/Active.php:140 src/Module/Admin/Users/Blocked.php:141 #: src/Module/Admin/Users/Active.php:140 src/Module/Admin/Users/Blocked.php:141
#: src/Module/Admin/Users/Index.php:154 #: src/Module/Admin/Users/Index.php:154
msgid "Delete" msgid "Delete"
@ -1127,7 +1127,7 @@ msgstr ""
#: src/Module/Contact/Posts.php:83 src/Module/Contact/Profile.php:143 #: src/Module/Contact/Posts.php:83 src/Module/Contact/Profile.php:143
#: src/Module/Contact/Profile.php:148 src/Module/Contact/Profile.php:153 #: src/Module/Contact/Profile.php:148 src/Module/Contact/Profile.php:153
#: src/Module/FriendSuggest.php:72 src/Module/FriendSuggest.php:110 #: src/Module/FriendSuggest.php:72 src/Module/FriendSuggest.php:110
#: src/Module/Group.php:100 src/Module/Group.php:109 #: src/Module/Group.php:98 src/Module/Group.php:107
msgid "Contact not found." msgid "Contact not found."
msgstr "" msgstr ""
@ -1206,7 +1206,7 @@ msgstr ""
#: mod/settings.php:206 mod/settings.php:238 mod/settings.php:269 #: mod/settings.php:206 mod/settings.php:238 mod/settings.php:269
#: mod/settings.php:353 src/Module/Admin/Addons/Index.php:69 #: mod/settings.php:353 src/Module/Admin/Addons/Index.php:69
#: src/Module/Admin/Features.php:87 src/Module/Admin/Logs/Settings.php:81 #: src/Module/Admin/Features.php:87 src/Module/Admin/Logs/Settings.php:81
#: src/Module/Admin/Site.php:434 src/Module/Admin/Themes/Index.php:113 #: src/Module/Admin/Site.php:432 src/Module/Admin/Themes/Index.php:113
#: src/Module/Admin/Tos.php:83 src/Module/Settings/Account.php:564 #: src/Module/Admin/Tos.php:83 src/Module/Settings/Account.php:564
#: src/Module/Settings/Delegation.php:170 src/Module/Settings/Display.php:201 #: src/Module/Settings/Delegation.php:170 src/Module/Settings/Display.php:201
msgid "Save Settings" msgid "Save Settings"
@ -1921,258 +1921,258 @@ msgstr ""
msgid "%s (via %s)" msgid "%s (via %s)"
msgstr "" msgstr ""
#: src/Content/Conversation.php:209 #: src/Content/Conversation.php:211
#, php-format #, php-format
msgid "%s likes this." msgid "%s likes this."
msgstr "" msgstr ""
#: src/Content/Conversation.php:212 #: src/Content/Conversation.php:214
#, php-format #, php-format
msgid "%s doesn't like this." msgid "%s doesn't like this."
msgstr "" msgstr ""
#: src/Content/Conversation.php:215 #: src/Content/Conversation.php:217
#, php-format #, php-format
msgid "%s attends." msgid "%s attends."
msgstr "" msgstr ""
#: src/Content/Conversation.php:218 #: src/Content/Conversation.php:220
#, php-format #, php-format
msgid "%s doesn't attend." msgid "%s doesn't attend."
msgstr "" msgstr ""
#: src/Content/Conversation.php:221 #: src/Content/Conversation.php:223
#, php-format #, php-format
msgid "%s attends maybe." msgid "%s attends maybe."
msgstr "" msgstr ""
#: src/Content/Conversation.php:224 src/Content/Conversation.php:262 #: src/Content/Conversation.php:226 src/Content/Conversation.php:264
#: src/Content/Conversation.php:876 #: src/Content/Conversation.php:878
#, php-format #, php-format
msgid "%s reshared this." msgid "%s reshared this."
msgstr "" msgstr ""
#: src/Content/Conversation.php:230 #: src/Content/Conversation.php:232
msgid "and" msgid "and"
msgstr "" msgstr ""
#: src/Content/Conversation.php:233 #: src/Content/Conversation.php:235
#, php-format #, php-format
msgid "and %d other people" msgid "and %d other people"
msgstr "" msgstr ""
#: src/Content/Conversation.php:241 #: src/Content/Conversation.php:243
#, 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 ""
#: src/Content/Conversation.php:242 #: src/Content/Conversation.php:244
#, php-format #, php-format
msgid "%s like this." msgid "%s like this."
msgstr "" msgstr ""
#: src/Content/Conversation.php:245 #: src/Content/Conversation.php:247
#, 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 ""
#: src/Content/Conversation.php:246 #: src/Content/Conversation.php:248
#, php-format #, php-format
msgid "%s don't like this." msgid "%s don't like this."
msgstr "" msgstr ""
#: src/Content/Conversation.php:249 #: src/Content/Conversation.php:251
#, php-format #, php-format
msgid "<span %1$s>%2$d people</span> attend" msgid "<span %1$s>%2$d people</span> attend"
msgstr "" msgstr ""
#: src/Content/Conversation.php:250 #: src/Content/Conversation.php:252
#, php-format #, php-format
msgid "%s attend." msgid "%s attend."
msgstr "" msgstr ""
#: src/Content/Conversation.php:253 #: src/Content/Conversation.php:255
#, 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 ""
#: src/Content/Conversation.php:254 #: src/Content/Conversation.php:256
#, php-format #, php-format
msgid "%s don't attend." msgid "%s don't attend."
msgstr "" msgstr ""
#: src/Content/Conversation.php:257 #: src/Content/Conversation.php:259
#, 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 ""
#: src/Content/Conversation.php:258 #: src/Content/Conversation.php:260
#, php-format #, php-format
msgid "%s attend maybe." msgid "%s attend maybe."
msgstr "" msgstr ""
#: src/Content/Conversation.php:261 #: src/Content/Conversation.php:263
#, 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 ""
#: src/Content/Conversation.php:309 #: src/Content/Conversation.php:311
msgid "Visible to <strong>everybody</strong>" msgid "Visible to <strong>everybody</strong>"
msgstr "" msgstr ""
#: src/Content/Conversation.php:310 src/Module/Item/Compose.php:199 #: src/Content/Conversation.php:312 src/Module/Item/Compose.php:199
#: src/Object/Post.php:1002 #: src/Object/Post.php:1002
msgid "Please enter a image/video/audio/webpage URL:" msgid "Please enter a image/video/audio/webpage URL:"
msgstr "" msgstr ""
#: src/Content/Conversation.php:311 #: src/Content/Conversation.php:313
msgid "Tag term:" msgid "Tag term:"
msgstr "" msgstr ""
#: src/Content/Conversation.php:312 src/Module/Filer/SaveTag.php:74 #: src/Content/Conversation.php:314 src/Module/Filer/SaveTag.php:74
msgid "Save to Folder:" msgid "Save to Folder:"
msgstr "" msgstr ""
#: src/Content/Conversation.php:313 #: src/Content/Conversation.php:315
msgid "Where are you right now?" msgid "Where are you right now?"
msgstr "" msgstr ""
#: src/Content/Conversation.php:314 #: src/Content/Conversation.php:316
msgid "Delete item(s)?" msgid "Delete item(s)?"
msgstr "" msgstr ""
#: src/Content/Conversation.php:326 src/Module/Item/Compose.php:176 #: src/Content/Conversation.php:328 src/Module/Item/Compose.php:176
msgid "Created at" msgid "Created at"
msgstr "" msgstr ""
#: src/Content/Conversation.php:336 #: src/Content/Conversation.php:338
msgid "New Post" msgid "New Post"
msgstr "" msgstr ""
#: src/Content/Conversation.php:339 #: src/Content/Conversation.php:341
msgid "Share" msgid "Share"
msgstr "" msgstr ""
#: src/Content/Conversation.php:350 src/Module/Item/Compose.php:196 #: src/Content/Conversation.php:352 src/Module/Item/Compose.php:196
#: src/Object/Post.php:999 #: src/Object/Post.php:999
msgid "Image" msgid "Image"
msgstr "" msgstr ""
#: src/Content/Conversation.php:353 #: src/Content/Conversation.php:355
msgid "Video" msgid "Video"
msgstr "" msgstr ""
#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:223 #: src/Content/Conversation.php:368 src/Module/Item/Compose.php:223
msgid "Scheduled at" msgid "Scheduled at"
msgstr "" msgstr ""
#: src/Content/Conversation.php:660 src/Object/Post.php:244 #: src/Content/Conversation.php:662 src/Object/Post.php:244
msgid "Pinned item" msgid "Pinned item"
msgstr "" msgstr ""
#: src/Content/Conversation.php:676 src/Object/Post.php:486 #: src/Content/Conversation.php:678 src/Object/Post.php:486
#: src/Object/Post.php:487 #: src/Object/Post.php:487
#, php-format #, php-format
msgid "View %s's profile @ %s" msgid "View %s's profile @ %s"
msgstr "" msgstr ""
#: src/Content/Conversation.php:689 src/Object/Post.php:474 #: src/Content/Conversation.php:691 src/Object/Post.php:474
msgid "Categories:" msgid "Categories:"
msgstr "" msgstr ""
#: src/Content/Conversation.php:690 src/Object/Post.php:475 #: src/Content/Conversation.php:692 src/Object/Post.php:475
msgid "Filed under:" msgid "Filed under:"
msgstr "" msgstr ""
#: src/Content/Conversation.php:698 src/Object/Post.php:500 #: src/Content/Conversation.php:700 src/Object/Post.php:500
#, php-format #, php-format
msgid "%s from %s" msgid "%s from %s"
msgstr "" msgstr ""
#: src/Content/Conversation.php:714 #: src/Content/Conversation.php:716
msgid "View in context" msgid "View in context"
msgstr "" msgstr ""
#: src/Content/Conversation.php:779 #: src/Content/Conversation.php:781
msgid "remove" msgid "remove"
msgstr "" msgstr ""
#: src/Content/Conversation.php:783 #: src/Content/Conversation.php:785
msgid "Delete Selected Items" msgid "Delete Selected Items"
msgstr "" msgstr ""
#: src/Content/Conversation.php:848 src/Content/Conversation.php:851 #: src/Content/Conversation.php:850 src/Content/Conversation.php:853
#: src/Content/Conversation.php:854 src/Content/Conversation.php:857 #: src/Content/Conversation.php:856 src/Content/Conversation.php:859
#, php-format #, php-format
msgid "You had been addressed (%s)." msgid "You had been addressed (%s)."
msgstr "" msgstr ""
#: src/Content/Conversation.php:860 #: src/Content/Conversation.php:862
#, php-format #, php-format
msgid "You are following %s." msgid "You are following %s."
msgstr "" msgstr ""
#: src/Content/Conversation.php:863 #: src/Content/Conversation.php:865
msgid "You subscribed to one or more tags in this post." msgid "You subscribed to one or more tags in this post."
msgstr "" msgstr ""
#: src/Content/Conversation.php:878 #: src/Content/Conversation.php:880
msgid "Reshared" msgid "Reshared"
msgstr "" msgstr ""
#: src/Content/Conversation.php:878 #: src/Content/Conversation.php:880
#, php-format #, php-format
msgid "Reshared by %s <%s>" msgid "Reshared by %s <%s>"
msgstr "" msgstr ""
#: src/Content/Conversation.php:881 #: src/Content/Conversation.php:883
#, php-format #, php-format
msgid "%s is participating in this thread." msgid "%s is participating in this thread."
msgstr "" msgstr ""
#: src/Content/Conversation.php:884 #: src/Content/Conversation.php:886
msgid "Stored for general reasons" msgid "Stored for general reasons"
msgstr "" msgstr ""
#: src/Content/Conversation.php:887 #: src/Content/Conversation.php:889
msgid "Global post" msgid "Global post"
msgstr "" msgstr ""
#: src/Content/Conversation.php:890 #: src/Content/Conversation.php:892
msgid "Sent via an relay server" msgid "Sent via an relay server"
msgstr "" msgstr ""
#: src/Content/Conversation.php:890 #: src/Content/Conversation.php:892
#, php-format #, php-format
msgid "Sent via the relay server %s <%s>" msgid "Sent via the relay server %s <%s>"
msgstr "" msgstr ""
#: src/Content/Conversation.php:893 #: src/Content/Conversation.php:895
msgid "Fetched" msgid "Fetched"
msgstr "" msgstr ""
#: src/Content/Conversation.php:893 #: src/Content/Conversation.php:895
#, php-format #, php-format
msgid "Fetched because of %s <%s>" msgid "Fetched because of %s <%s>"
msgstr "" msgstr ""
#: src/Content/Conversation.php:896 #: src/Content/Conversation.php:898
msgid "Stored because of a child post to complete this thread." msgid "Stored because of a child post to complete this thread."
msgstr "" msgstr ""
#: src/Content/Conversation.php:899 #: src/Content/Conversation.php:901
msgid "Local delivery" msgid "Local delivery"
msgstr "" msgstr ""
#: src/Content/Conversation.php:902 #: src/Content/Conversation.php:904
msgid "Stored because of your activity (like, comment, star, ...)" msgid "Stored because of your activity (like, comment, star, ...)"
msgstr "" msgstr ""
#: src/Content/Conversation.php:905 #: src/Content/Conversation.php:907
msgid "Distributed" msgid "Distributed"
msgstr "" msgstr ""
#: src/Content/Conversation.php:908 #: src/Content/Conversation.php:910
msgid "Pushed to us" msgid "Pushed to us"
msgstr "" msgstr ""
@ -2507,7 +2507,7 @@ msgstr ""
msgid "People directory" msgid "People directory"
msgstr "" msgstr ""
#: src/Content/Nav.php:266 src/Module/BaseAdmin.php:88 #: src/Content/Nav.php:266 src/Module/BaseAdmin.php:86
msgid "Information" msgid "Information"
msgstr "" msgstr ""
@ -2516,7 +2516,7 @@ msgid "Information about this friendica instance"
msgstr "" msgstr ""
#: src/Content/Nav.php:269 src/Module/Admin/Tos.php:76 #: src/Content/Nav.php:269 src/Module/Admin/Tos.php:76
#: src/Module/BaseAdmin.php:99 src/Module/Register.php:177 #: src/Module/BaseAdmin.php:97 src/Module/Register.php:177
#: src/Module/Tos.php:87 #: src/Module/Tos.php:87
msgid "Terms of Service" msgid "Terms of Service"
msgstr "" msgstr ""
@ -2588,7 +2588,7 @@ msgstr ""
msgid "Manage/edit friends and contacts" msgid "Manage/edit friends and contacts"
msgstr "" msgstr ""
#: src/Content/Nav.php:302 src/Module/BaseAdmin.php:129 #: src/Content/Nav.php:302 src/Module/BaseAdmin.php:127
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
@ -2752,7 +2752,7 @@ msgid "Relationships"
msgstr "" msgstr ""
#: src/Content/Widget.php:245 src/Module/Contact.php:310 #: src/Content/Widget.php:245 src/Module/Contact.php:310
#: src/Module/Group.php:294 #: src/Module/Group.php:292
msgid "All Contacts" msgid "All Contacts"
msgstr "" msgstr ""
@ -3765,7 +3765,7 @@ msgstr ""
msgid "Edit group" msgid "Edit group"
msgstr "" msgstr ""
#: src/Model/Group.php:593 src/Module/Group.php:195 #: src/Model/Group.php:593 src/Module/Group.php:193
msgid "Contacts not in any group" msgid "Contacts not in any group"
msgstr "" msgstr ""
@ -3773,8 +3773,8 @@ msgstr ""
msgid "Create a new group" msgid "Create a new group"
msgstr "" msgstr ""
#: src/Model/Group.php:596 src/Module/Group.php:180 src/Module/Group.php:203 #: src/Model/Group.php:596 src/Module/Group.php:178 src/Module/Group.php:201
#: src/Module/Group.php:278 #: src/Module/Group.php:276
msgid "Group Name: " msgid "Group Name: "
msgstr "" msgstr ""
@ -4294,7 +4294,7 @@ msgstr ""
#: src/Module/Admin/Blocklist/Server/Index.php:93 #: src/Module/Admin/Blocklist/Server/Index.php:93
#: src/Module/Admin/Federation.php:202 src/Module/Admin/Item/Delete.php:64 #: src/Module/Admin/Federation.php:202 src/Module/Admin/Item/Delete.php:64
#: src/Module/Admin/Logs/Settings.php:79 src/Module/Admin/Logs/View.php:84 #: src/Module/Admin/Logs/Settings.php:79 src/Module/Admin/Logs/View.php:84
#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:431 #: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:429
#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:234 #: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:234
#: src/Module/Admin/Themes/Details.php:90 src/Module/Admin/Themes/Index.php:111 #: src/Module/Admin/Themes/Details.php:90 src/Module/Admin/Themes/Index.php:111
#: src/Module/Admin/Tos.php:75 src/Module/Admin/Users/Active.php:137 #: src/Module/Admin/Tos.php:75 src/Module/Admin/Users/Active.php:137
@ -4305,7 +4305,7 @@ msgid "Administration"
msgstr "" msgstr ""
#: src/Module/Admin/Addons/Details.php:112 src/Module/Admin/Addons/Index.php:68 #: src/Module/Admin/Addons/Details.php:112 src/Module/Admin/Addons/Index.php:68
#: src/Module/BaseAdmin.php:96 src/Module/BaseSettings.php:85 #: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:85
msgid "Addons" msgid "Addons"
msgstr "" msgstr ""
@ -4885,7 +4885,7 @@ msgid ""
"only reflect the part of the network your node is aware of." "only reflect the part of the network your node is aware of."
msgstr "" msgstr ""
#: src/Module/Admin/Federation.php:203 src/Module/BaseAdmin.php:90 #: src/Module/Admin/Federation.php:203 src/Module/BaseAdmin.php:88
msgid "Federation Statistics" msgid "Federation Statistics"
msgstr "" msgstr ""
@ -4906,7 +4906,7 @@ msgstr[1] ""
msgid "Item marked for deletion." msgid "Item marked for deletion."
msgstr "" msgstr ""
#: src/Module/Admin/Item/Delete.php:65 src/Module/BaseAdmin.php:109 #: src/Module/Admin/Item/Delete.php:65 src/Module/BaseAdmin.php:107
msgid "Delete Item" msgid "Delete Item"
msgstr "" msgstr ""
@ -4935,7 +4935,7 @@ msgstr ""
msgid "The GUID of the item you want to delete." msgid "The GUID of the item you want to delete."
msgstr "" msgstr ""
#: src/Module/Admin/Item/Source.php:53 src/Module/BaseAdmin.php:119 #: src/Module/Admin/Item/Source.php:53 src/Module/BaseAdmin.php:117
msgid "Item Source" msgid "Item Source"
msgstr "" msgstr ""
@ -4993,8 +4993,8 @@ msgstr ""
msgid "PHP log currently disabled." msgid "PHP log currently disabled."
msgstr "" msgstr ""
#: src/Module/Admin/Logs/Settings.php:80 src/Module/BaseAdmin.php:111 #: src/Module/Admin/Logs/Settings.php:80 src/Module/BaseAdmin.php:109
#: src/Module/BaseAdmin.php:112 #: src/Module/BaseAdmin.php:110
msgid "Logs" msgid "Logs"
msgstr "" msgstr ""
@ -5047,7 +5047,7 @@ msgid ""
"is readable." "is readable."
msgstr "" msgstr ""
#: src/Module/Admin/Logs/View.php:85 src/Module/BaseAdmin.php:113 #: src/Module/Admin/Logs/View.php:85 src/Module/BaseAdmin.php:111
msgid "View Logs" msgid "View Logs"
msgstr "" msgstr ""
@ -5153,470 +5153,470 @@ msgstr ""
msgid "Priority" msgid "Priority"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:336 src/Module/Settings/Display.php:138 #: src/Module/Admin/Site.php:334 src/Module/Settings/Display.php:138
msgid "No special theme for mobile devices" msgid "No special theme for mobile devices"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:353 src/Module/Settings/Display.php:148 #: src/Module/Admin/Site.php:351 src/Module/Settings/Display.php:148
#, php-format #, php-format
msgid "%s - (Experimental)" msgid "%s - (Experimental)"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:365 #: src/Module/Admin/Site.php:363
msgid "No community page" msgid "No community page"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:366 #: src/Module/Admin/Site.php:364
msgid "No community page for visitors" msgid "No community page for visitors"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:367 #: src/Module/Admin/Site.php:365
msgid "Public postings from users of this site" msgid "Public postings from users of this site"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:368 #: src/Module/Admin/Site.php:366
msgid "Public postings from the federated network" msgid "Public postings from the federated network"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:369 #: src/Module/Admin/Site.php:367
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:375 #: src/Module/Admin/Site.php:373
msgid "Multi user instance" msgid "Multi user instance"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:402 #: src/Module/Admin/Site.php:400
msgid "Closed" msgid "Closed"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:403 #: src/Module/Admin/Site.php:401
msgid "Requires approval" msgid "Requires approval"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:404 #: src/Module/Admin/Site.php:402
msgid "Open" msgid "Open"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:408 src/Module/Install.php:222 #: src/Module/Admin/Site.php:406 src/Module/Install.php:222
msgid "No SSL policy, links will track page SSL state" msgid "No SSL policy, links will track page SSL state"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:409 src/Module/Install.php:223 #: src/Module/Admin/Site.php:407 src/Module/Install.php:223
msgid "Force all links to use SSL" msgid "Force all links to use SSL"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:410 src/Module/Install.php:224 #: src/Module/Admin/Site.php:408 src/Module/Install.php:224
msgid "Self-signed certificate, use SSL for local links only (discouraged)" msgid "Self-signed certificate, use SSL for local links only (discouraged)"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:414 #: src/Module/Admin/Site.php:412
msgid "Don't check" msgid "Don't check"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:415 #: src/Module/Admin/Site.php:413
msgid "check the stable version" msgid "check the stable version"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:416 #: src/Module/Admin/Site.php:414
msgid "check the development version" msgid "check the development version"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:420 #: src/Module/Admin/Site.php:418
msgid "none" msgid "none"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:421 #: src/Module/Admin/Site.php:419
msgid "Local contacts" msgid "Local contacts"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:422 #: src/Module/Admin/Site.php:420
msgid "Interactors" msgid "Interactors"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:432 src/Module/BaseAdmin.php:93 #: src/Module/Admin/Site.php:430 src/Module/BaseAdmin.php:91
msgid "Site" msgid "Site"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:433 #: src/Module/Admin/Site.php:431
msgid "General Information" msgid "General Information"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:435 #: src/Module/Admin/Site.php:433
msgid "Republish users to directory" msgid "Republish users to directory"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:436 src/Module/Register.php:153 #: src/Module/Admin/Site.php:434 src/Module/Register.php:153
msgid "Registration" msgid "Registration"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:437 #: src/Module/Admin/Site.php:435
msgid "File upload" msgid "File upload"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:438 #: src/Module/Admin/Site.php:436
msgid "Policies" msgid "Policies"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:440 #: src/Module/Admin/Site.php:438
msgid "Auto Discovered Contact Directory" msgid "Auto Discovered Contact Directory"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:441 #: src/Module/Admin/Site.php:439
msgid "Performance" msgid "Performance"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:442 #: src/Module/Admin/Site.php:440
msgid "Worker" msgid "Worker"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:443 #: src/Module/Admin/Site.php:441
msgid "Message Relay" msgid "Message Relay"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:444 #: src/Module/Admin/Site.php:442
msgid "" msgid ""
"Use the command \"console relay\" in the command line to add or remove " "Use the command \"console relay\" in the command line to add or remove "
"relays." "relays."
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:445 #: src/Module/Admin/Site.php:443
msgid "The system is not subscribed to any relays at the moment." msgid "The system is not subscribed to any relays at the moment."
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:446 #: src/Module/Admin/Site.php:444
msgid "The system is currently subscribed to the following relays:" msgid "The system is currently subscribed to the following relays:"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:448 #: src/Module/Admin/Site.php:446
msgid "Relocate Node" msgid "Relocate Node"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:449 #: src/Module/Admin/Site.php:447
msgid "" msgid ""
"Relocating your node enables you to change the DNS domain of this node and " "Relocating your node enables you to change the DNS domain of this node and "
"keep all the existing users and posts. This process takes a while and can " "keep all the existing users and posts. This process takes a while and can "
"only be started from the relocate console command like this:" "only be started from the relocate console command like this:"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:450 #: src/Module/Admin/Site.php:448
msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgid "(Friendica directory)# bin/console relocate https://newdomain.com"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:454 #: src/Module/Admin/Site.php:452
msgid "Site name" msgid "Site name"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:455 #: src/Module/Admin/Site.php:453
msgid "Sender Email" msgid "Sender Email"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:455 #: src/Module/Admin/Site.php:453
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:456 #: src/Module/Admin/Site.php:454
msgid "Name of the system actor" msgid "Name of the system actor"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:456 #: src/Module/Admin/Site.php:454
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:457 #: src/Module/Admin/Site.php:455
msgid "Banner/Logo" msgid "Banner/Logo"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:458 #: src/Module/Admin/Site.php:456
msgid "Email Banner/Logo" msgid "Email Banner/Logo"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:459 #: src/Module/Admin/Site.php:457
msgid "Shortcut icon" msgid "Shortcut icon"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:459 #: src/Module/Admin/Site.php:457
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:460 #: src/Module/Admin/Site.php:458
msgid "Touch icon" msgid "Touch icon"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:460 #: src/Module/Admin/Site.php:458
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:461 #: src/Module/Admin/Site.php:459
msgid "Additional Info" msgid "Additional Info"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:461 #: src/Module/Admin/Site.php:459
#, 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:462 #: src/Module/Admin/Site.php:460
msgid "System language" msgid "System language"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:463 #: src/Module/Admin/Site.php:461
msgid "System theme" msgid "System theme"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:463 #: src/Module/Admin/Site.php:461
#, php-format #, php-format
msgid "" msgid ""
"Default system theme - may be over-ridden by user profiles - <a href=\"%s\" " "Default system theme - may be over-ridden by user profiles - <a href=\"%s\" "
"id=\"cnftheme\">Change default theme settings</a>" "id=\"cnftheme\">Change default theme settings</a>"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:464 #: src/Module/Admin/Site.php:462
msgid "Mobile system theme" msgid "Mobile system theme"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:464 #: src/Module/Admin/Site.php:462
msgid "Theme for mobile devices" msgid "Theme for mobile devices"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:465 src/Module/Install.php:232 #: src/Module/Admin/Site.php:463 src/Module/Install.php:232
msgid "SSL link policy" msgid "SSL link policy"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:465 src/Module/Install.php:234 #: src/Module/Admin/Site.php:463 src/Module/Install.php:234
msgid "Determines whether generated links should be forced to use SSL" msgid "Determines whether generated links should be forced to use SSL"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:466 #: src/Module/Admin/Site.php:464
msgid "Force SSL" msgid "Force SSL"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:466 #: src/Module/Admin/Site.php:464
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:467 #: src/Module/Admin/Site.php:465
msgid "Show help entry from navigation menu" msgid "Show help entry from navigation menu"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:467 #: src/Module/Admin/Site.php:465
msgid "" msgid ""
"Displays the menu entry for the Help pages from the navigation menu. It is " "Displays the menu entry for the Help pages from the navigation menu. It is "
"always accessible by calling /help directly." "always accessible by calling /help directly."
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:468 #: src/Module/Admin/Site.php:466
msgid "Single user instance" msgid "Single user instance"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:468 #: src/Module/Admin/Site.php:466
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:470 #: src/Module/Admin/Site.php:468
msgid "Maximum image size" msgid "Maximum image size"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:470 #: src/Module/Admin/Site.php:468
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:471 #: src/Module/Admin/Site.php:469
msgid "Maximum image length" msgid "Maximum image length"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:471 #: src/Module/Admin/Site.php:469
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:472 #: src/Module/Admin/Site.php:470
msgid "JPEG image quality" msgid "JPEG image quality"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:472 #: src/Module/Admin/Site.php:470
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:474 #: src/Module/Admin/Site.php:472
msgid "Register policy" msgid "Register policy"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:475 #: src/Module/Admin/Site.php:473
msgid "Maximum Daily Registrations" msgid "Maximum Daily Registrations"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:475 #: src/Module/Admin/Site.php:473
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:476 #: src/Module/Admin/Site.php:474
msgid "Register text" msgid "Register text"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:476 #: src/Module/Admin/Site.php:474
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:477 #: src/Module/Admin/Site.php:475
msgid "Forbidden Nicknames" msgid "Forbidden Nicknames"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:477 #: src/Module/Admin/Site.php:475
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:478 #: src/Module/Admin/Site.php:476
msgid "Accounts abandoned after x days" msgid "Accounts abandoned after x days"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:478 #: src/Module/Admin/Site.php:476
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:479 #: src/Module/Admin/Site.php:477
msgid "Allowed friend domains" msgid "Allowed friend domains"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:479 #: src/Module/Admin/Site.php:477
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:480 #: src/Module/Admin/Site.php:478
msgid "Allowed email domains" msgid "Allowed email domains"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:480 #: src/Module/Admin/Site.php:478
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:481 #: src/Module/Admin/Site.php:479
msgid "No OEmbed rich content" msgid "No OEmbed rich content"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:481 #: src/Module/Admin/Site.php:479
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:482 #: src/Module/Admin/Site.php:480
msgid "Trusted third-party domains" msgid "Trusted third-party domains"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:482 #: src/Module/Admin/Site.php:480
msgid "" msgid ""
"Comma separated list of domains from which content is allowed to be embedded " "Comma separated list of domains from which content is allowed to be embedded "
"in posts like with OEmbed. All sub-domains of the listed domains are allowed " "in posts like with OEmbed. All sub-domains of the listed domains are allowed "
"as well." "as well."
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:483 #: src/Module/Admin/Site.php:481
msgid "Block public" msgid "Block public"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:483 #: src/Module/Admin/Site.php:481
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:484 #: src/Module/Admin/Site.php:482
msgid "Force publish" msgid "Force publish"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:484 #: src/Module/Admin/Site.php:482
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:484 #: src/Module/Admin/Site.php:482
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:485 #: src/Module/Admin/Site.php:483
msgid "Global directory URL" msgid "Global directory URL"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:485 #: src/Module/Admin/Site.php:483
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:486 #: src/Module/Admin/Site.php:484
msgid "Private posts by default for new users" msgid "Private posts by default for new users"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:486 #: src/Module/Admin/Site.php:484
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:487 #: src/Module/Admin/Site.php:485
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:487 #: src/Module/Admin/Site.php:485
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:488 #: src/Module/Admin/Site.php:486
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:488 #: src/Module/Admin/Site.php:486
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:489 #: src/Module/Admin/Site.php:487
msgid "Don't embed private images in posts" msgid "Don't embed private images in posts"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:489 #: src/Module/Admin/Site.php:487
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:490 #: src/Module/Admin/Site.php:488
msgid "Explicit Content" msgid "Explicit Content"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:490 #: src/Module/Admin/Site.php:488
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 "
@ -5625,257 +5625,257 @@ msgid ""
"will be shown at the user registration page." "will be shown at the user registration page."
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:491 #: src/Module/Admin/Site.php:489
msgid "Proxify external content" msgid "Proxify external content"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:491 #: src/Module/Admin/Site.php:489
msgid "" msgid ""
"Route external content via the proxy functionality. This is used for example " "Route external content via the proxy functionality. This is used for example "
"for some OEmbed accesses and in some other rare cases." "for some OEmbed accesses and in some other rare cases."
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:492 #: src/Module/Admin/Site.php:490
msgid "Cache contact avatars" msgid "Cache contact avatars"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:492 #: src/Module/Admin/Site.php:490
msgid "" msgid ""
"Locally store the avatar pictures of the contacts. This uses a lot of " "Locally store the avatar pictures of the contacts. This uses a lot of "
"storage space but it increases the performance." "storage space but it increases the performance."
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:493 #: src/Module/Admin/Site.php:491
msgid "Allow Users to set remote_self" msgid "Allow Users to set remote_self"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:493 #: src/Module/Admin/Site.php:491
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:494 #: src/Module/Admin/Site.php:492
msgid "Enable multiple registrations" msgid "Enable multiple registrations"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:494 #: src/Module/Admin/Site.php:492
msgid "Enable users to register additional accounts for use as pages." msgid "Enable users to register additional accounts for use as pages."
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:495 #: src/Module/Admin/Site.php:493
msgid "Enable OpenID" msgid "Enable OpenID"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:495 #: src/Module/Admin/Site.php:493
msgid "Enable OpenID support for registration and logins." msgid "Enable OpenID support for registration and logins."
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:496 #: src/Module/Admin/Site.php:494
msgid "Enable Fullname check" msgid "Enable Fullname check"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:496 #: src/Module/Admin/Site.php:494
msgid "" msgid ""
"Enable check to only allow users to register with a space between the first " "Enable check to only allow users to register with a space between the first "
"name and the last name in their full name." "name and the last name in their full name."
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:497 #: src/Module/Admin/Site.php:495
msgid "Community pages for visitors" msgid "Community pages for visitors"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:497 #: src/Module/Admin/Site.php:495
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:498 #: src/Module/Admin/Site.php:496
msgid "Posts per user on community page" msgid "Posts per user on community page"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:498 #: src/Module/Admin/Site.php:496
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:500 #: src/Module/Admin/Site.php:498
msgid "Enable Mail support" msgid "Enable Mail support"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:500 #: src/Module/Admin/Site.php:498
msgid "" msgid ""
"Enable built-in mail support to poll IMAP folders and to reply via mail." "Enable built-in mail support to poll IMAP folders and to reply via mail."
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:501 #: src/Module/Admin/Site.php:499
msgid "" msgid ""
"Mail support can't be enabled because the PHP IMAP module is not installed." "Mail support can't be enabled because the PHP IMAP module is not installed."
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:502 #: src/Module/Admin/Site.php:500
msgid "Enable OStatus support" msgid "Enable OStatus support"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:502 #: src/Module/Admin/Site.php:500
msgid "" msgid ""
"Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
"communications in OStatus are public." "communications in OStatus are public."
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:504 #: src/Module/Admin/Site.php:502
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:505 #: src/Module/Admin/Site.php:503
msgid "Enable Diaspora support" msgid "Enable Diaspora support"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:505 #: src/Module/Admin/Site.php:503
msgid "" msgid ""
"Enable built-in Diaspora network compatibility for communicating with " "Enable built-in Diaspora network compatibility for communicating with "
"diaspora servers." "diaspora servers."
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:506 #: src/Module/Admin/Site.php:504
msgid "Verify SSL" msgid "Verify SSL"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:506 #: src/Module/Admin/Site.php:504
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:507 #: src/Module/Admin/Site.php:505
msgid "Proxy user" msgid "Proxy user"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:507 #: src/Module/Admin/Site.php:505
msgid "User name for the proxy server." msgid "User name for the proxy server."
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:508 #: src/Module/Admin/Site.php:506
msgid "Proxy URL" msgid "Proxy URL"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:508 #: src/Module/Admin/Site.php:506
msgid "" msgid ""
"If you want to use a proxy server that Friendica should use to connect to " "If you want to use a proxy server that Friendica should use to connect to "
"the network, put the URL of the proxy here." "the network, put the URL of the proxy here."
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:509 #: src/Module/Admin/Site.php:507
msgid "Network timeout" msgid "Network timeout"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:509 #: src/Module/Admin/Site.php:507
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:510 #: src/Module/Admin/Site.php:508
msgid "Maximum Load Average" msgid "Maximum Load Average"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:510 #: src/Module/Admin/Site.php:508
#, 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:511 #: src/Module/Admin/Site.php:509
msgid "Minimal Memory" msgid "Minimal Memory"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:511 #: src/Module/Admin/Site.php:509
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:512 #: src/Module/Admin/Site.php:510
msgid "Periodically optimize tables" msgid "Periodically optimize tables"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:512 #: src/Module/Admin/Site.php:510
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:514 #: src/Module/Admin/Site.php:512
msgid "Discover followers/followings from contacts" msgid "Discover followers/followings from contacts"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:514 #: src/Module/Admin/Site.php:512
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:515 #: src/Module/Admin/Site.php:513
msgid "None - deactivated" msgid "None - deactivated"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:516 #: src/Module/Admin/Site.php:514
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:517 #: src/Module/Admin/Site.php:515
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:519 #: src/Module/Admin/Site.php:517
msgid "Synchronize the contacts with the directory server" msgid "Synchronize the contacts with the directory server"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:519 #: src/Module/Admin/Site.php:517
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:521 #: src/Module/Admin/Site.php:519
msgid "Days between requery" msgid "Days between requery"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:521 #: src/Module/Admin/Site.php:519
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:522 #: src/Module/Admin/Site.php:520
msgid "Discover contacts from other servers" msgid "Discover contacts from other servers"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:522 #: src/Module/Admin/Site.php:520
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:523 #: src/Module/Admin/Site.php:521
msgid "Search the local directory" msgid "Search the local directory"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:523 #: src/Module/Admin/Site.php:521
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:525 #: src/Module/Admin/Site.php:523
msgid "Publish server information" msgid "Publish server information"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:525 #: src/Module/Admin/Site.php:523
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 "
@ -5883,50 +5883,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:527 #: src/Module/Admin/Site.php:525
msgid "Check upstream version" msgid "Check upstream version"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:527 #: src/Module/Admin/Site.php:525
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:528 #: src/Module/Admin/Site.php:526
msgid "Suppress Tags" msgid "Suppress Tags"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:528 #: src/Module/Admin/Site.php:526
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:529 #: src/Module/Admin/Site.php:527
msgid "Clean database" msgid "Clean database"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:529 #: src/Module/Admin/Site.php:527
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:530 #: src/Module/Admin/Site.php:528
msgid "Lifespan of remote items" msgid "Lifespan of remote items"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:530 #: src/Module/Admin/Site.php:528
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:531 #: src/Module/Admin/Site.php:529
msgid "Lifespan of unclaimed items" msgid "Lifespan of unclaimed items"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:531 #: src/Module/Admin/Site.php:529
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. "
@ -5934,144 +5934,144 @@ msgid ""
"items if set to 0." "items if set to 0."
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:532 #: src/Module/Admin/Site.php:530
msgid "Lifespan of raw conversation data" msgid "Lifespan of raw conversation data"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:532 #: src/Module/Admin/Site.php:530
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:533 #: src/Module/Admin/Site.php:531
msgid "Maximum numbers of comments per post" msgid "Maximum numbers of comments per post"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:533 #: src/Module/Admin/Site.php:531
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:534 #: src/Module/Admin/Site.php:532
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:534 #: src/Module/Admin/Site.php:532
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:535 #: src/Module/Admin/Site.php:533
msgid "Temp path" msgid "Temp path"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:535 #: src/Module/Admin/Site.php:533
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:536 #: src/Module/Admin/Site.php:534
msgid "Only search in tags" msgid "Only search in tags"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:536 #: src/Module/Admin/Site.php:534
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:537 #: src/Module/Admin/Site.php:535
msgid "Generate counts per contact group when calculating network count" msgid "Generate counts per contact group when calculating network count"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:537 #: src/Module/Admin/Site.php:535
msgid "" msgid ""
"On systems with users that heavily use contact groups the query can be very " "On systems with users that heavily use contact groups the query can be very "
"expensive." "expensive."
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:539 #: src/Module/Admin/Site.php:537
msgid "Maximum number of parallel workers" msgid "Maximum number of parallel workers"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:539 #: src/Module/Admin/Site.php:537
#, 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:540 #: src/Module/Admin/Site.php:538
msgid "Enable fastlane" msgid "Enable fastlane"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:540 #: src/Module/Admin/Site.php:538
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:542 #: src/Module/Admin/Site.php:540
msgid "Direct relay transfer" msgid "Direct relay transfer"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:542 #: src/Module/Admin/Site.php:540
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:543 #: src/Module/Admin/Site.php:541
msgid "Relay scope" msgid "Relay scope"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:543 #: src/Module/Admin/Site.php:541
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:543 src/Module/Contact/Profile.php:275 #: src/Module/Admin/Site.php:541 src/Module/Contact/Profile.php:275
#: src/Module/Settings/TwoFactor/Index.php:126 #: src/Module/Settings/TwoFactor/Index.php:126
msgid "Disabled" msgid "Disabled"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:543 #: src/Module/Admin/Site.php:541
msgid "all" msgid "all"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:543 #: src/Module/Admin/Site.php:541
msgid "tags" msgid "tags"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:544 #: src/Module/Admin/Site.php:542
msgid "Server tags" msgid "Server tags"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:544 #: src/Module/Admin/Site.php:542
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:545 #: src/Module/Admin/Site.php:543
msgid "Deny Server tags" msgid "Deny Server tags"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:545 #: src/Module/Admin/Site.php:543
msgid "Comma separated list of tags that are rejected." msgid "Comma separated list of tags that are rejected."
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:546 #: src/Module/Admin/Site.php:544
msgid "Allow user tags" msgid "Allow user tags"
msgstr "" msgstr ""
#: src/Module/Admin/Site.php:546 #: src/Module/Admin/Site.php:544
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:549 #: src/Module/Admin/Site.php:547
msgid "Start Relocation" msgid "Start Relocation"
msgstr "" msgstr ""
@ -6097,7 +6097,7 @@ msgstr ""
msgid "Storage Configuration" msgid "Storage Configuration"
msgstr "" msgstr ""
#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:94 #: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:92
msgid "Storage" msgid "Storage"
msgstr "" msgstr ""
@ -6313,7 +6313,7 @@ msgid "Screenshot"
msgstr "" msgstr ""
#: src/Module/Admin/Themes/Details.php:91 src/Module/Admin/Themes/Index.php:112 #: src/Module/Admin/Themes/Details.php:91 src/Module/Admin/Themes/Index.php:112
#: src/Module/BaseAdmin.php:97 #: src/Module/BaseAdmin.php:95
msgid "Themes" msgid "Themes"
msgstr "" msgstr ""
@ -6514,7 +6514,7 @@ msgid "Permanent deletion"
msgstr "" msgstr ""
#: src/Module/Admin/Users/Index.php:151 src/Module/Admin/Users/Index.php:161 #: src/Module/Admin/Users/Index.php:151 src/Module/Admin/Users/Index.php:161
#: src/Module/BaseAdmin.php:95 #: src/Module/BaseAdmin.php:93
msgid "Users" msgid "Users"
msgstr "" msgstr ""
@ -6620,89 +6620,89 @@ msgstr ""
msgid "Item was not found." msgid "Item was not found."
msgstr "" msgstr ""
#: src/Module/BaseAdmin.php:57 src/Module/BaseAdmin.php:61 #: src/Module/BaseAdmin.php:55 src/Module/BaseAdmin.php:59
msgid "Please login to continue." msgid "Please login to continue."
msgstr "" msgstr ""
#: src/Module/BaseAdmin.php:66 #: src/Module/BaseAdmin.php:64
msgid "You don't have access to administration pages." msgid "You don't have access to administration pages."
msgstr "" msgstr ""
#: src/Module/BaseAdmin.php:70 #: src/Module/BaseAdmin.php:68
msgid "" msgid ""
"Submanaged account can't access the administration pages. Please log back in " "Submanaged account can't access the administration pages. Please log back in "
"as the main account." "as the main account."
msgstr "" msgstr ""
#: src/Module/BaseAdmin.php:89 #: src/Module/BaseAdmin.php:87
msgid "Overview" msgid "Overview"
msgstr "" msgstr ""
#: src/Module/BaseAdmin.php:92 #: src/Module/BaseAdmin.php:90
msgid "Configuration" msgid "Configuration"
msgstr "" msgstr ""
#: src/Module/BaseAdmin.php:98 src/Module/BaseSettings.php:63 #: src/Module/BaseAdmin.php:96 src/Module/BaseSettings.php:63
msgid "Additional features" msgid "Additional features"
msgstr "" msgstr ""
#: src/Module/BaseAdmin.php:101 #: src/Module/BaseAdmin.php:99
msgid "Database" msgid "Database"
msgstr "" msgstr ""
#: src/Module/BaseAdmin.php:102 #: src/Module/BaseAdmin.php:100
msgid "DB updates" msgid "DB updates"
msgstr "" msgstr ""
#: src/Module/BaseAdmin.php:103 #: src/Module/BaseAdmin.php:101
msgid "Inspect Deferred Workers" msgid "Inspect Deferred Workers"
msgstr "" msgstr ""
#: src/Module/BaseAdmin.php:104 #: src/Module/BaseAdmin.php:102
msgid "Inspect worker Queue" msgid "Inspect worker Queue"
msgstr "" msgstr ""
#: src/Module/BaseAdmin.php:106 #: src/Module/BaseAdmin.php:104
msgid "Tools" msgid "Tools"
msgstr "" msgstr ""
#: src/Module/BaseAdmin.php:107 #: src/Module/BaseAdmin.php:105
msgid "Contact Blocklist" msgid "Contact Blocklist"
msgstr "" msgstr ""
#: src/Module/BaseAdmin.php:108 #: src/Module/BaseAdmin.php:106
msgid "Server Blocklist" msgid "Server Blocklist"
msgstr "" msgstr ""
#: src/Module/BaseAdmin.php:115 #: src/Module/BaseAdmin.php:113
msgid "Diagnostics" msgid "Diagnostics"
msgstr "" msgstr ""
#: src/Module/BaseAdmin.php:116 #: src/Module/BaseAdmin.php:114
msgid "PHP Info" msgid "PHP Info"
msgstr "" msgstr ""
#: src/Module/BaseAdmin.php:117 #: src/Module/BaseAdmin.php:115
msgid "probe address" msgid "probe address"
msgstr "" msgstr ""
#: src/Module/BaseAdmin.php:118 #: src/Module/BaseAdmin.php:116
msgid "check webfinger" msgid "check webfinger"
msgstr "" msgstr ""
#: src/Module/BaseAdmin.php:120 #: src/Module/BaseAdmin.php:118
msgid "Babel" msgid "Babel"
msgstr "" msgstr ""
#: src/Module/BaseAdmin.php:121 src/Module/Debug/ActivityPubConversion.php:138 #: src/Module/BaseAdmin.php:119 src/Module/Debug/ActivityPubConversion.php:138
msgid "ActivityPub Conversion" msgid "ActivityPub Conversion"
msgstr "" msgstr ""
#: src/Module/BaseAdmin.php:130 #: src/Module/BaseAdmin.php:128
msgid "Addon Features" msgid "Addon Features"
msgstr "" msgstr ""
#: src/Module/BaseAdmin.php:131 #: src/Module/BaseAdmin.php:129
msgid "User registrations waiting for confirmation" msgid "User registrations waiting for confirmation"
msgstr "" msgstr ""
@ -6940,7 +6940,7 @@ msgid "New photo from this URL"
msgstr "" msgstr ""
#: src/Module/Contact/Contacts.php:49 src/Module/Conversation/Network.php:187 #: src/Module/Contact/Contacts.php:49 src/Module/Conversation/Network.php:187
#: src/Module/Group.php:104 #: src/Module/Group.php:102
msgid "Invalid contact." msgid "Invalid contact."
msgstr "" msgstr ""
@ -7231,7 +7231,7 @@ msgstr ""
msgid "Unknown contact." msgid "Unknown contact."
msgstr "" msgstr ""
#: src/Module/Contact/Revoke.php:74 src/Module/Group.php:113 #: src/Module/Contact/Revoke.php:74 src/Module/Group.php:111
msgid "Contact is deleted." msgid "Contact is deleted."
msgstr "" msgstr ""
@ -7256,50 +7256,50 @@ msgstr ""
msgid "Yes" msgid "Yes"
msgstr "" msgstr ""
#: src/Module/Conversation/Community.php:76 #: src/Module/Conversation/Community.php:74
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 nodes users." "not reflect the opinions of this nodes users."
msgstr "" msgstr ""
#: src/Module/Conversation/Community.php:89 #: src/Module/Conversation/Community.php:87
msgid "Local Community" msgid "Local Community"
msgstr "" msgstr ""
#: src/Module/Conversation/Community.php:92 #: src/Module/Conversation/Community.php:90
msgid "Posts from local users on this server" msgid "Posts from local users on this server"
msgstr "" msgstr ""
#: src/Module/Conversation/Community.php:100 #: src/Module/Conversation/Community.php:98
msgid "Global Community" msgid "Global Community"
msgstr "" msgstr ""
#: src/Module/Conversation/Community.php:103 #: src/Module/Conversation/Community.php:101
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:136 #: src/Module/Conversation/Community.php:134
msgid "Own Contacts" msgid "Own Contacts"
msgstr "" msgstr ""
#: src/Module/Conversation/Community.php:140 #: src/Module/Conversation/Community.php:138
msgid "Include" msgid "Include"
msgstr "" msgstr ""
#: src/Module/Conversation/Community.php:141 #: src/Module/Conversation/Community.php:139
msgid "Hide" msgid "Hide"
msgstr "" msgstr ""
#: src/Module/Conversation/Community.php:158 src/Module/Search/Index.php:152 #: src/Module/Conversation/Community.php:156 src/Module/Search/Index.php:152
#: src/Module/Search/Index.php:194 #: src/Module/Search/Index.php:194
msgid "No results." msgid "No results."
msgstr "" msgstr ""
#: src/Module/Conversation/Community.php:214 #: src/Module/Conversation/Community.php:212
msgid "Community option not available." msgid "Community option not available."
msgstr "" msgstr ""
#: src/Module/Conversation/Community.php:230 #: src/Module/Conversation/Community.php:228
msgid "Not available." msgid "Not available."
msgstr "" msgstr ""
@ -7622,26 +7622,26 @@ msgstr ""
msgid "Lookup address:" msgid "Lookup address:"
msgstr "" msgstr ""
#: src/Module/Delegation.php:110 #: src/Module/Delegation.php:111
#, php-format #, php-format
msgid "You are now logged in as %s" msgid "You are now logged in as %s"
msgstr "" msgstr ""
#: src/Module/Delegation.php:142 #: src/Module/Delegation.php:143
msgid "Switch between your accounts" msgid "Switch between your accounts"
msgstr "" msgstr ""
#: src/Module/Delegation.php:143 #: src/Module/Delegation.php:144
msgid "Manage your accounts" msgid "Manage your accounts"
msgstr "" msgstr ""
#: src/Module/Delegation.php:144 #: src/Module/Delegation.php:145
msgid "" msgid ""
"Toggle between different identities or community/group pages which share " "Toggle between different identities or community/group pages which share "
"your account details or which you have been granted \"manage\" permissions" "your account details or which you have been granted \"manage\" permissions"
msgstr "" msgstr ""
#: src/Module/Delegation.php:145 #: src/Module/Delegation.php:146
msgid "Select an identity to manage: " msgid "Select an identity to manage: "
msgstr "" msgstr ""
@ -7737,83 +7737,83 @@ msgid ""
"Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"
msgstr "" msgstr ""
#: src/Module/Group.php:59 #: src/Module/Group.php:57
msgid "Could not create group." msgid "Could not create group."
msgstr "" msgstr ""
#: src/Module/Group.php:70 src/Module/Group.php:216 src/Module/Group.php:240 #: src/Module/Group.php:68 src/Module/Group.php:214 src/Module/Group.php:238
msgid "Group not found." msgid "Group not found."
msgstr "" msgstr ""
#: src/Module/Group.php:76 #: src/Module/Group.php:74
msgid "Group name was not changed." msgid "Group name was not changed."
msgstr "" msgstr ""
#: src/Module/Group.php:94 #: src/Module/Group.php:92
msgid "Unknown group." msgid "Unknown group."
msgstr "" msgstr ""
#: src/Module/Group.php:119 #: src/Module/Group.php:117
msgid "Unable to add the contact to the group." msgid "Unable to add the contact to the group."
msgstr "" msgstr ""
#: src/Module/Group.php:122 #: src/Module/Group.php:120
msgid "Contact successfully added to group." msgid "Contact successfully added to group."
msgstr "" msgstr ""
#: src/Module/Group.php:126 #: src/Module/Group.php:124
msgid "Unable to remove the contact from the group." msgid "Unable to remove the contact from the group."
msgstr "" msgstr ""
#: src/Module/Group.php:129 #: src/Module/Group.php:127
msgid "Contact successfully removed from group." msgid "Contact successfully removed from group."
msgstr "" msgstr ""
#: src/Module/Group.php:133 #: src/Module/Group.php:131
msgid "Bad request." msgid "Bad request."
msgstr "" msgstr ""
#: src/Module/Group.php:172 #: src/Module/Group.php:170
msgid "Save Group" msgid "Save Group"
msgstr "" msgstr ""
#: src/Module/Group.php:173 #: src/Module/Group.php:171
msgid "Filter" msgid "Filter"
msgstr "" msgstr ""
#: src/Module/Group.php:179 #: src/Module/Group.php:177
msgid "Create a group of contacts/friends." msgid "Create a group of contacts/friends."
msgstr "" msgstr ""
#: src/Module/Group.php:221 #: src/Module/Group.php:219
msgid "Unable to remove group." msgid "Unable to remove group."
msgstr "" msgstr ""
#: src/Module/Group.php:272 #: src/Module/Group.php:270
msgid "Delete Group" msgid "Delete Group"
msgstr "" msgstr ""
#: src/Module/Group.php:282 #: src/Module/Group.php:280
msgid "Edit Group Name" msgid "Edit Group Name"
msgstr "" msgstr ""
#: src/Module/Group.php:292 #: src/Module/Group.php:290
msgid "Members" msgid "Members"
msgstr "" msgstr ""
#: src/Module/Group.php:295 #: src/Module/Group.php:293
msgid "Group is empty" msgid "Group is empty"
msgstr "" msgstr ""
#: src/Module/Group.php:308 #: src/Module/Group.php:306
msgid "Remove contact from group" msgid "Remove contact from group"
msgstr "" msgstr ""
#: src/Module/Group.php:329 #: src/Module/Group.php:327
msgid "Click on a contact to add or remove." msgid "Click on a contact to add or remove."
msgstr "" msgstr ""
#: src/Module/Group.php:343 #: src/Module/Group.php:341
msgid "Add contact to group" msgid "Add contact to group"
msgstr "" msgstr ""
@ -8240,11 +8240,11 @@ msgstr ""
msgid "Show unread" msgid "Show unread"
msgstr "" msgstr ""
#: src/Module/Notifications/Ping.php:227 #: src/Module/Notifications/Ping.php:225
msgid "{0} requested registration" msgid "{0} requested registration"
msgstr "" msgstr ""
#: src/Module/Notifications/Ping.php:238 #: src/Module/Notifications/Ping.php:236
#, php-format #, php-format
msgid "{0} and %d others requested registration" msgid "{0} and %d others requested registration"
msgstr "" msgstr ""

View file

@ -20,8 +20,7 @@
<script language="javascript" type="text/javascript"> <script language="javascript" type="text/javascript">
// This js part changes the state of page-flags radio buttons according // This js part changes the state of page-flags radio buttons according
// to the selected account type. For a translation of the different // to the selected account type.
// account-types and page-flags have a look in the define section in boot.php
var accountType = {{$account_type}}; var accountType = {{$account_type}};
$(document).ready(function(){ $(document).ready(function(){