]> git.mxchange.org Git - friendica.git/commitdiff
Merge pull request #4727 from tobiasd/20180402-register
authorHypolite Petovan <mrpetovan@gmail.com>
Tue, 3 Apr 2018 14:39:53 +0000 (10:39 -0400)
committerGitHub <noreply@github.com>
Tue, 3 Apr 2018 14:39:53 +0000 (10:39 -0400)
added TOS module

mod/admin.php
mod/friendica.php
mod/register.php
src/BaseModule.php
src/Model/User.php
src/Module/Tos.php [new file with mode: 0644]
util/messages.po
view/templates/admin/tos.tpl [new file with mode: 0644]
view/templates/register.tpl
view/templates/tos.tpl [new file with mode: 0644]

index 4ae5eb70b067b83eed1826b2c5708d187430629a..7dc736ab485a37bfa54c8776ec485971273dcd7c 100644 (file)
@@ -109,6 +109,9 @@ function admin_post(App $a)
                                }
                                $return_path = 'admin/themes/' . $theme;
                                break;
+                       case 'tos':
+                               admin_page_tos_post($a);
+                               break;
                        case 'features':
                                admin_page_features_post($a);
                                break;
@@ -181,7 +184,8 @@ function admin_content(App $a)
                        'users'        => ["admin/users/"       , L10n::t("Users")                , "users"],
                        'addons'       => ["admin/addons/"      , L10n::t("Addons")               , "addons"],
                        'themes'       => ["admin/themes/"      , L10n::t("Themes")               , "themes"],
-                       'features'     => ["admin/features/"    , L10n::t("Additional features")  , "features"] ]],
+                       'features'     => ["admin/features/"    , L10n::t("Additional features")  , "features"],
+                       'tos'          => ["admin/tos/"         , L10n::t("Terms of Service")     , "tos"] ]],
                'database' => [ L10n::t('Database'), [
                        'dbsync'       => ["admin/dbsync/"      , L10n::t('DB updates')           , "dbsync"],
                        'queue'        => ["admin/queue/"       , L10n::t('Inspect Queue')        , "queue"], ]],
@@ -265,6 +269,9 @@ function admin_content(App $a)
                        case 'deleteitem':
                                $o = admin_page_deleteitem($a);
                                break;
+                       case 'tos':
+                               $o = admin_page_tos($a);
+                               break;
                        default:
                                notice(L10n::t("Item not found."));
                }
@@ -281,6 +288,50 @@ function admin_content(App $a)
        }
 }
 
+/**
+ * @brief Subpage to define the display of a Terms of Usage page.
+ *
+ * @param App $a
+ * @return string
+ */
+function admin_page_tos(App $a)
+{
+       $t = get_markup_template('admin/tos.tpl');
+       return replace_macros($t, [
+               '$title' => L10n::t('Administration'),
+               '$page' => L10n::t('Terms of Service'),
+               '$displaytos' => ['displaytos', L10n::t('Display Terms of Service'), Config::get('system', 'tosdisplay'), L10n::t('Enable the Terms of Service page. If this is enabled a link to the terms will be added to the registration form and the general information page.')],
+               '$displayprivstatement' => ['displayprivstatement', L10n::t('Display Privacy Statement'), Config::get('system','tosprivstatement'), L10n::t('Show some informations regarding the needed information to operate the node according e.g. to <a href="%s" target="_blank">EU-GDPR</a>.','https://en.wikipedia.org/wiki/General_Data_Protection_Regulation')],
+               '$tostext' => ['tostext', L10n::t('The Terms of Usage'), Config::get('system', 'tostext'), L10n::t('Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below.')],
+               '$form_security_token' => get_form_security_token("admin_tos"),
+               '$submit' => L10n::t('Save Settings'),
+       ]);
+}
+/**
+ * @brief Process send data from Admin TOS Page
+ *
+ * @param App $a
+ */
+function admin_page_tos_post(App $a)
+{
+       check_form_security_token_redirectOnErr('/admin/tos', 'admin_tos');
+
+       if (!x($_POST, "page_tos")) {
+               return;
+       }
+
+       $displaytos = ((x($_POST, 'displaytos')) ? True : False);
+       $displayprivstatement = ((x($_POST, 'displayprivstatement')) ? True : False);
+       $tostext = ((x($_POST, 'tostext')) ? strip_tags(trim($_POST['tostext'])) : '');
+
+       Config::set('system', 'tosdisplay', $displaytos);
+       Config::set('system', 'tosprivstatement', $displayprivstatement);
+       Config::set('system', 'tostext', $tostext);
+
+       goaway('admin/tos');
+
+       return; // NOTREACHED
+}
 /**
  * @brief Subpage to modify the server wide block list via the admin panel.
  *
@@ -920,7 +971,7 @@ function admin_page_site_post(App $a)
        $daily_registrations    =       ((x($_POST,'max_daily_registrations'))  ? intval(trim($_POST['max_daily_registrations']))       :0);
        $abandon_days           =       ((x($_POST,'abandon_days'))             ? intval(trim($_POST['abandon_days']))          :  0);
 
-       $register_text          =       ((x($_POST,'register_text'))            ? notags(trim($_POST['register_text']))         : '');
+       $register_text          =       ((x($_POST,'register_text'))            ? strip_tags(trim($_POST['register_text']))             : '');
 
        $allowed_sites          =       ((x($_POST,'allowed_sites'))            ? notags(trim($_POST['allowed_sites']))         : '');
        $allowed_email          =       ((x($_POST,'allowed_email'))            ? notags(trim($_POST['allowed_email']))         : '');
@@ -1325,7 +1376,7 @@ function admin_page_site(App $a)
 
                '$register_policy'      => ['register_policy', L10n::t("Register policy"), $a->config['register_policy'], "", $register_choices],
                '$daily_registrations'  => ['max_daily_registrations', L10n::t("Maximum Daily Registrations"), Config::get('system', 'max_daily_registrations'), L10n::t("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 has no effect.")],
-               '$register_text'        => ['register_text', L10n::t("Register text"), $a->config['register_text'], L10n::t("Will be displayed prominently on the registration page.")],
+               '$register_text'        => ['register_text', L10n::t("Register text"), $a->config['register_text'], L10n::t("Will be displayed prominently on the registration page. You can use BBCode here.")],
                '$abandon_days'         => ['abandon_days', L10n::t('Accounts abandoned after x days'), Config::get('system','account_abandon_days'), L10n::t('Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit.')],
                '$allowed_sites'        => ['allowed_sites', L10n::t("Allowed friend domains"), Config::get('system','allowed_sites'), L10n::t("Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains")],
                '$allowed_email'        => ['allowed_email', L10n::t("Allowed email domains"), Config::get('system','allowed_email'), L10n::t("Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains")],
@@ -1547,6 +1598,8 @@ function admin_page_users_post(App $a)
                        If you are new and do not know anybody here, they may help
                        you to make some new and interesting friends.
 
+                       If you ever want to delete your account, you can do so at %1$s/removeme
+
                        Thank you and welcome to %4$s.'));
 
                $preamble = sprintf($preamble, $user['username'], $a->config['sitename']);
index 14363ea4dd033623e6b0dced8bf72140ebd4c12e..43e518359842dee094aad794fc567d2a87954bdc 100644 (file)
@@ -116,6 +116,11 @@ function friendica_content(App $a)
        } else {
                $o .= '<p>' . L10n::t('No installed addons/apps') . '</p>' . PHP_EOL;
        }
+       
+       if (Config::get('system', 'tosdisplay'))
+       {
+               $o .= '<p>'.L10n::t('Read about the <a href="%1$s/tos">Terms of Service</a> of this node.', System::baseurl()).'</p>';
+       }
 
        $blocklist = Config::get('system', 'blocklist');
        if (count($blocklist)) {
index c97433c0400c8e691e07f54bb5345c11764d0a49..9de7a0ca3800a7c4d7cdc8d78882cbcc2ca49514 100644 (file)
@@ -262,7 +262,7 @@ function register_content(App $a)
                '$invite_id'  => $invite_id,
                '$realpeople' => $realpeople,
                '$regtitle'  => L10n::t('Registration'),
-               '$registertext' => x($a->config, 'register_text') ? BBCode::convert($a->config['register_text']) : "",
+               '$registertext' => BBCode::convert(Config::get('config', 'register_text', '')),
                '$fillwith'  => $fillwith,
                '$fillext'   => $fillext,
                '$oidlabel'  => $oidlabel,
@@ -284,6 +284,9 @@ function register_content(App $a)
                '$sitename'  => $a->get_hostname(),
                '$importh'   => L10n::t('Import'),
                '$importt'   => L10n::t('Import your profile to this friendica instance'),
+               '$showtoslink' => Config::get('system', 'tosdisplay'),
+               '$tostext'   => L10n::t('Terms of Service'),
+               '$baseurl'   => System::baseurl(),
                '$form_security_token' => get_form_security_token("register")
        ]);
        return $o;
index aad4e6fb01dd8df56c91fdf068415937f8f23984..d0019ccd1c5451bbdbbc203253ee8c9c5caaac76 100644 (file)
@@ -6,6 +6,9 @@ namespace Friendica;
  * All modules in Friendica should extend BaseModule, although not all modules
  * need to extend all the methods described here
  *
+ * The filename of the module in src/Module needs to match the class name
+ * exactly to make the module available.
+ *
  * @author Hypolite Petovan mrpetovan@gmail.com
  */
 abstract class BaseModule extends BaseObject
index 1df7e5ef4e4ffb5426b1405b722aa9509127d664..d971d968b093bacdfb34942a880ce89c908be45c 100644 (file)
@@ -614,11 +614,12 @@ class User
                '));
                $body = deindent(L10n::t('
                        The login details are as follows:
-                               Site Location:  %3$s
-                               Login Name:     %1$s
-                               Password:       %5$s
 
-                       You may change your password from your account Settings page after logging
+                       Site Location:  %1$s
+                       Login Name:             %2$s
+                       Password:               %3$s
+
+                       You may change your password from your account "Settings" page after logging
                        in.
 
                        Please take a few moments to review the other account settings on that page.
@@ -627,7 +628,7 @@ class User
                        ' . "\x28" . 'on the "Profiles" page' . "\x29" . ' so that other people can easily find you.
 
                        We recommend setting your full name, adding a profile photo,
-                       adding some profile keywords ' . "\x28" . 'very useful in making new friends' . "\x29" . ' - and
+                       adding some profile "keywords" ' . "\x28" . 'very useful in making new friends' . "\x29" . ' - and
                        perhaps what country you live in; if you do not wish to be more specific
                        than that.
 
@@ -635,8 +636,9 @@ class User
                        If you are new and do not know anybody here, they may help
                        you to make some new and interesting friends.
 
+                       If you ever want to delete your account, you can do so at %1$s/removeme
 
-                       Thank you and welcome to %2$s.'));
+                       Thank you and welcome to %4$s.'));
 
                $preamble = sprintf($preamble, $username, $sitename);
                $body = sprintf($body, $email, $sitename, $siteurl, $username, $password);
diff --git a/src/Module/Tos.php b/src/Module/Tos.php
new file mode 100644 (file)
index 0000000..a5ace51
--- /dev/null
@@ -0,0 +1,59 @@
+<?php
+/**
+ * @file mod/tos.php
+ *
+ * This module displays the Terms of Service for a node, if the admin
+ * wants them to be displayed.
+ */
+
+namespace Friendica\Module;
+
+use Friendica\BaseModule;
+use Friendica\Core\Config;
+use Friendica\Core\L10n;
+use Friendica\Core\System;
+use Friendica\Content\Text\BBCode;
+
+class Tos extends BaseModule
+{
+       /**
+        * @brief initialize the TOS module.
+        *
+        * If this is a single user instance, we expect the user to know their
+        * dealings with their own node so a TOS is not necessary.
+        *
+        **/
+       public static function init()
+       {
+               if (strlen(Config::get('system','singleuser'))) {
+                       goaway(System::baseUrl()."/profile/" . Config::get('system','singleuser'));
+               }
+       }
+       /**
+        * @brief generate the content of the /tos page
+        *
+        * The content of the /tos page is generated from two parts.
+        * (1) a free form part the admin of the node can set in the admin panel
+        * (2) an optional privacy statement that gives some transparency about
+        *     what information are needed by the software to provide the service.
+        *     This privacy statement has fixed text, so it can be translated easily.
+        *
+        * @return string
+        **/
+       public static function content() {
+               $tpl = get_markup_template('tos.tpl');
+               if (Config::get('system', 'tosdisplay'))
+               {
+               return replace_macros($tpl, [
+                       '$title' => L10n::t("Terms of Service"),
+                       '$tostext' => BBCode::convert(Config::get('system', 'tostext')),
+                       '$displayprivstatement' => Config::get('system', 'tosprivstatement'),
+                       '$privstatementtitle' => L10n::t("Privacy Statement"),
+                       '$privoperate' => L10n::t('At the time of registration, and for providing communications between the user account and their contacts, the user has to provide a display name (pen name), an username (nickname) and a working email address. The names will be accessible on the profile page of the account by any visitor of the page, even if other profile details are not displayed. The email address will only be used to send the user notifications about interactions, but wont be visibly displayed. The listing of an account in the node\'s user directory or the global user directory is optional and can be controlled in the user settings, it is not necessary for communication.'),
+                       '$privdelete' => L10n::t('At any point in time a logged in user can export their account data from the <a href="%1$s/settings/uexport">account settings</a>. If the user wants to delete their account they can do so at <a href="%1$s/removeme">%1$s/removeme</a>. The deletion of the account will be permanent.', System::baseurl())
+               ]);
+               } else {
+                       return;
+               }
+       }
+}
index 0d60cd833d896a850069e422e361a476565d4067..40829b0078be1aee3add267fa3abe621930b9ec4 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-03-28 08:41+0200\n"
+"POT-Creation-Date: 2018-04-03 06:50+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -36,6 +36,11 @@ msgid ""
 "form has been opened for too long (>3 hours) before submitting it."
 msgstr ""
 
+#: include/dba.php:57
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr ""
+
 #: include/api.php:1199
 #, php-format
 msgid "Daily posting limit of %d post reached. The post was rejected."
@@ -133,11 +138,11 @@ msgstr ""
 msgid "%1$s marked %2$s's %3$s as favorite"
 msgstr ""
 
-#: include/conversation.php:605 mod/photos.php:1501 mod/profiles.php:354
+#: include/conversation.php:605 mod/photos.php:1501 mod/profiles.php:355
 msgid "Likes"
 msgstr ""
 
-#: include/conversation.php:605 mod/photos.php:1501 mod/profiles.php:358
+#: include/conversation.php:605 mod/photos.php:1501 mod/profiles.php:359
 msgid "Dislikes"
 msgstr ""
 
@@ -160,8 +165,8 @@ msgstr ""
 msgid "Select"
 msgstr ""
 
-#: include/conversation.php:745 mod/photos.php:1570 mod/admin.php:1731
-#: mod/contacts.php:830 mod/contacts.php:1035 mod/settings.php:738
+#: include/conversation.php:745 mod/photos.php:1570 mod/contacts.php:830
+#: mod/contacts.php:1035 mod/settings.php:738 mod/admin.php:1798
 #: src/Object/Post.php:179
 msgid "Delete"
 msgstr ""
@@ -212,7 +217,7 @@ msgstr ""
 
 #: include/conversation.php:1061 include/conversation.php:1077
 #: mod/allfriends.php:73 mod/suggest.php:82 mod/match.php:89
-#: mod/directory.php:160 mod/dirfind.php:217 src/Model/Contact.php:580
+#: mod/dirfind.php:217 mod/directory.php:159 src/Model/Contact.php:580
 #: src/Model/Contact.php:593 src/Model/Contact.php:641
 msgid "View Profile"
 msgstr ""
@@ -453,8 +458,8 @@ msgstr ""
 #: mod/fbrowser.php:134 mod/suggest.php:41 mod/dfrn_request.php:663
 #: mod/tagrm.php:19 mod/tagrm.php:99 mod/editpost.php:149 mod/message.php:141
 #: mod/photos.php:248 mod/photos.php:324 mod/videos.php:147
-#: mod/contacts.php:475 mod/follow.php:161 mod/settings.php:676
-#: mod/settings.php:702 mod/unfollow.php:117
+#: mod/contacts.php:475 mod/unfollow.php:117 mod/settings.php:676
+#: mod/settings.php:702 mod/follow.php:161
 msgid "Cancel"
 msgstr ""
 
@@ -506,11 +511,6 @@ msgid_plural "Undecided"
 msgstr[0] ""
 msgstr[1] ""
 
-#: include/dba.php:57
-#, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr ""
-
 #: include/enotify.php:31
 msgid "Friendica Notification"
 msgstr ""
@@ -802,9 +802,9 @@ msgstr ""
 msgid "Please visit %s to approve or reject the request."
 msgstr ""
 
-#: include/items.php:342 mod/notice.php:22 mod/viewsrc.php:21 mod/admin.php:269
-#: mod/admin.php:1787 mod/admin.php:2035 mod/display.php:72 mod/display.php:252
-#: mod/display.php:354
+#: include/items.php:342 mod/notice.php:22 mod/viewsrc.php:21
+#: mod/display.php:72 mod/display.php:252 mod/display.php:354 mod/admin.php:276
+#: mod/admin.php:1854 mod/admin.php:2102
 msgid "Item not found."
 msgstr ""
 
@@ -813,13 +813,13 @@ msgid "Do you really want to delete this item?"
 msgstr ""
 
 #: include/items.php:384 mod/api.php:110 mod/suggest.php:38
-#: mod/dfrn_request.php:653 mod/register.php:237 mod/message.php:138
-#: mod/contacts.php:472 mod/follow.php:150 mod/profiles.php:635
-#: mod/profiles.php:638 mod/profiles.php:660 mod/settings.php:1103
-#: mod/settings.php:1109 mod/settings.php:1116 mod/settings.php:1120
-#: mod/settings.php:1124 mod/settings.php:1128 mod/settings.php:1132
-#: mod/settings.php:1136 mod/settings.php:1156 mod/settings.php:1157
-#: mod/settings.php:1158 mod/settings.php:1159 mod/settings.php:1160
+#: mod/dfrn_request.php:653 mod/message.php:138 mod/contacts.php:472
+#: mod/settings.php:1103 mod/settings.php:1109 mod/settings.php:1116
+#: mod/settings.php:1120 mod/settings.php:1124 mod/settings.php:1128
+#: mod/settings.php:1132 mod/settings.php:1136 mod/settings.php:1156
+#: mod/settings.php:1157 mod/settings.php:1158 mod/settings.php:1159
+#: mod/settings.php:1160 mod/follow.php:150 mod/profiles.php:636
+#: mod/profiles.php:639 mod/profiles.php:661 mod/register.php:237
 msgid "Yes"
 msgstr ""
 
@@ -827,21 +827,21 @@ msgstr ""
 #: mod/attach.php:38 mod/common.php:26 mod/crepair.php:98 mod/nogroup.php:28
 #: mod/repair_ostatus.php:13 mod/suggest.php:60 mod/uimport.php:28
 #: mod/notifications.php:73 mod/dfrn_confirm.php:68 mod/invite.php:20
-#: mod/invite.php:106 mod/manage.php:131 mod/wall_attach.php:74
-#: mod/wall_attach.php:77 mod/poke.php:150 mod/regmod.php:108
-#: mod/viewcontacts.php:57 mod/wall_upload.php:103 mod/wall_upload.php:106
+#: mod/invite.php:106 mod/wall_attach.php:74 mod/wall_attach.php:77
+#: mod/manage.php:131 mod/regmod.php:108 mod/viewcontacts.php:57
 #: mod/wallmessage.php:16 mod/wallmessage.php:40 mod/wallmessage.php:79
-#: mod/wallmessage.php:103 mod/register.php:53 mod/editpost.php:18
-#: mod/fsuggest.php:80 mod/group.php:26 mod/message.php:59 mod/message.php:104
+#: mod/wallmessage.php:103 mod/poke.php:150 mod/wall_upload.php:103
+#: mod/wall_upload.php:106 mod/editpost.php:18 mod/fsuggest.php:80
+#: mod/group.php:26 mod/item.php:160 mod/message.php:59 mod/message.php:104
 #: mod/network.php:32 mod/notes.php:30 mod/photos.php:174 mod/photos.php:1051
-#: mod/cal.php:304 mod/contacts.php:386 mod/delegate.php:25 mod/delegate.php:43
-#: mod/delegate.php:54 mod/dirfind.php:25 mod/events.php:194 mod/follow.php:17
-#: mod/follow.php:54 mod/follow.php:118 mod/item.php:160
-#: mod/ostatus_subscribe.php:16 mod/profile_photo.php:30
-#: mod/profile_photo.php:176 mod/profile_photo.php:187
-#: mod/profile_photo.php:200 mod/profiles.php:181 mod/profiles.php:605
-#: mod/settings.php:43 mod/settings.php:142 mod/settings.php:665
-#: mod/unfollow.php:15 mod/unfollow.php:57 mod/unfollow.php:90 index.php:416
+#: mod/contacts.php:386 mod/delegate.php:25 mod/delegate.php:43
+#: mod/delegate.php:54 mod/dirfind.php:25 mod/ostatus_subscribe.php:16
+#: mod/unfollow.php:15 mod/unfollow.php:57 mod/unfollow.php:90 mod/cal.php:304
+#: mod/events.php:194 mod/profile_photo.php:30 mod/profile_photo.php:176
+#: mod/profile_photo.php:187 mod/profile_photo.php:200 mod/settings.php:43
+#: mod/settings.php:142 mod/settings.php:665 mod/follow.php:17
+#: mod/follow.php:54 mod/follow.php:118 mod/profiles.php:182
+#: mod/profiles.php:606 mod/register.php:53 index.php:416
 msgid "Permission denied."
 msgstr ""
 
@@ -849,9 +849,9 @@ msgstr ""
 msgid "Archives"
 msgstr ""
 
-#: include/items.php:477 view/theme/vier/theme.php:259
-#: src/Content/ForumManager.php:130 src/Content/Widget.php:312
-#: src/Object/Post.php:424 src/App.php:518
+#: include/items.php:477 src/Content/ForumManager.php:130
+#: src/Content/Widget.php:312 src/Object/Post.php:424 src/App.php:512
+#: view/theme/vier/theme.php:259
 msgid "show more"
 msgstr ""
 
@@ -928,13 +928,14 @@ msgid "Tags"
 msgstr ""
 
 #: include/text.php:1027 mod/viewcontacts.php:131 mod/contacts.php:814
-#: mod/contacts.php:875 view/theme/frio/theme.php:270 src/Content/Nav.php:147
-#: src/Content/Nav.php:212 src/Model/Profile.php:957 src/Model/Profile.php:960
+#: mod/contacts.php:875 src/Content/Nav.php:147 src/Content/Nav.php:212
+#: src/Model/Profile.php:957 src/Model/Profile.php:960
+#: view/theme/frio/theme.php:270
 msgid "Contacts"
 msgstr ""
 
-#: include/text.php:1030 view/theme/vier/theme.php:254
-#: src/Content/ForumManager.php:125 src/Content/Nav.php:151
+#: include/text.php:1030 src/Content/ForumManager.php:125
+#: src/Content/Nav.php:151 view/theme/vier/theme.php:254
 msgid "Forums"
 msgstr ""
 
@@ -1200,13 +1201,13 @@ msgid ""
 "and/or create new posts for you?"
 msgstr ""
 
-#: mod/api.php:111 mod/dfrn_request.php:653 mod/register.php:238
-#: mod/follow.php:150 mod/profiles.php:635 mod/profiles.php:639
-#: mod/profiles.php:660 mod/settings.php:1103 mod/settings.php:1109
-#: mod/settings.php:1116 mod/settings.php:1120 mod/settings.php:1124
-#: mod/settings.php:1128 mod/settings.php:1132 mod/settings.php:1136
-#: mod/settings.php:1156 mod/settings.php:1157 mod/settings.php:1158
-#: mod/settings.php:1159 mod/settings.php:1160
+#: mod/api.php:111 mod/dfrn_request.php:653 mod/settings.php:1103
+#: mod/settings.php:1109 mod/settings.php:1116 mod/settings.php:1120
+#: mod/settings.php:1124 mod/settings.php:1128 mod/settings.php:1132
+#: mod/settings.php:1136 mod/settings.php:1156 mod/settings.php:1157
+#: mod/settings.php:1158 mod/settings.php:1159 mod/settings.php:1160
+#: mod/follow.php:150 mod/profiles.php:636 mod/profiles.php:640
+#: mod/profiles.php:661 mod/register.php:238
 msgid "No"
 msgstr ""
 
@@ -1299,10 +1300,10 @@ msgstr ""
 #: mod/message.php:265 mod/message.php:432 mod/photos.php:1080
 #: mod/photos.php:1160 mod/photos.php:1445 mod/photos.php:1491
 #: mod/photos.php:1530 mod/photos.php:1603 mod/contacts.php:610
-#: mod/events.php:530 mod/install.php:251 mod/install.php:290
-#: mod/profiles.php:671 view/theme/duepuntozero/config.php:71
-#: view/theme/frio/config.php:113 view/theme/quattro/config.php:73
-#: view/theme/vier/config.php:119 src/Object/Post.php:790
+#: mod/install.php:251 mod/install.php:290 mod/events.php:530
+#: mod/profiles.php:672 src/Object/Post.php:790
+#: view/theme/duepuntozero/config.php:71 view/theme/frio/config.php:113
+#: view/theme/quattro/config.php:73 view/theme/vier/config.php:119
 msgid "Submit"
 msgstr ""
 
@@ -1320,9 +1321,9 @@ msgid ""
 "entries from this contact."
 msgstr ""
 
-#: mod/crepair.php:158 mod/admin.php:439 mod/admin.php:1714 mod/admin.php:1726
-#: mod/admin.php:1739 mod/admin.php:1755 mod/settings.php:677
-#: mod/settings.php:703
+#: mod/crepair.php:158 mod/settings.php:677 mod/settings.php:703
+#: mod/admin.php:490 mod/admin.php:1781 mod/admin.php:1793 mod/admin.php:1806
+#: mod/admin.php:1822
 msgid "Name"
 msgstr ""
 
@@ -1358,8 +1359,8 @@ msgstr ""
 msgid "New photo from this URL"
 msgstr ""
 
-#: mod/fbrowser.php:34 view/theme/frio/theme.php:261 src/Content/Nav.php:102
-#: src/Model/Profile.php:904
+#: mod/fbrowser.php:34 src/Content/Nav.php:102 src/Model/Profile.php:904
+#: view/theme/frio/theme.php:261
 msgid "Photos"
 msgstr ""
 
@@ -1391,7 +1392,7 @@ msgstr ""
 msgid "Help:"
 msgstr ""
 
-#: mod/help.php:54 view/theme/vier/theme.php:298 src/Content/Nav.php:134
+#: mod/help.php:54 src/Content/Nav.php:134 view/theme/vier/theme.php:298
 msgid "Help"
 msgstr ""
 
@@ -1447,8 +1448,8 @@ msgid ""
 "join."
 msgstr ""
 
-#: mod/newmember.php:19 mod/admin.php:1839 mod/admin.php:2108
-#: mod/settings.php:124 view/theme/frio/theme.php:269 src/Content/Nav.php:206
+#: mod/newmember.php:19 mod/settings.php:124 mod/admin.php:1906
+#: mod/admin.php:2175 src/Content/Nav.php:206 view/theme/frio/theme.php:269
 msgid "Settings"
 msgstr ""
 
@@ -1472,13 +1473,13 @@ msgid ""
 msgstr ""
 
 #: mod/newmember.php:24 mod/profperm.php:113 mod/contacts.php:671
-#: mod/contacts.php:863 view/theme/frio/theme.php:260 src/Content/Nav.php:101
-#: src/Model/Profile.php:730 src/Model/Profile.php:863
-#: src/Model/Profile.php:896
+#: mod/contacts.php:863 src/Content/Nav.php:101 src/Model/Profile.php:730
+#: src/Model/Profile.php:863 src/Model/Profile.php:896
+#: view/theme/frio/theme.php:260
 msgid "Profile"
 msgstr ""
 
-#: mod/newmember.php:26 mod/profile_photo.php:249 mod/profiles.php:690
+#: mod/newmember.php:26 mod/profile_photo.php:249 mod/profiles.php:691
 msgid "Upload Profile Photo"
 msgstr ""
 
@@ -1649,15 +1650,10 @@ msgstr ""
 msgid "Ignore/Hide"
 msgstr ""
 
-#: mod/suggest.php:114 view/theme/vier/theme.php:203 src/Content/Widget.php:64
+#: mod/suggest.php:114 src/Content/Widget.php:64 view/theme/vier/theme.php:203
 msgid "Friend Suggestions"
 msgstr ""
 
-#: mod/update_community.php:27 mod/update_display.php:27
-#: mod/update_notes.php:40 mod/update_profile.php:39 mod/update_network.php:33
-msgid "[Embedded content - reload page to view]"
-msgstr ""
-
 #: mod/uimport.php:55 mod/register.php:191
 msgid ""
 "This site has exceeded the number of allowed daily account registrations. "
@@ -1699,60 +1695,16 @@ msgid ""
 "select \"Export account\""
 msgstr ""
 
+#: mod/update_community.php:27 mod/update_display.php:27
+#: mod/update_notes.php:40 mod/update_profile.php:39 mod/update_network.php:33
+msgid "[Embedded content - reload page to view]"
+msgstr ""
+
 #: mod/dfrn_poll.php:123 mod/dfrn_poll.php:543
 #, php-format
 msgid "%1$s welcomes %2$s"
 msgstr ""
 
-#: mod/friendica.php:77
-msgid "This is Friendica, version"
-msgstr ""
-
-#: mod/friendica.php:78
-msgid "running at web location"
-msgstr ""
-
-#: mod/friendica.php:82
-msgid ""
-"Please visit <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more "
-"about the Friendica project."
-msgstr ""
-
-#: mod/friendica.php:86
-msgid "Bug reports and issues: please visit"
-msgstr ""
-
-#: mod/friendica.php:86
-msgid "the bugtracker at github"
-msgstr ""
-
-#: mod/friendica.php:89
-msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
-"dot com"
-msgstr ""
-
-#: mod/friendica.php:103
-msgid "Installed addons/apps:"
-msgstr ""
-
-#: mod/friendica.php:117
-msgid "No installed addons/apps"
-msgstr ""
-
-#: mod/friendica.php:122
-msgid "On this server the following remote servers are blocked."
-msgstr ""
-
-#: mod/friendica.php:123 mod/dfrn_request.php:351 mod/admin.php:302
-#: mod/admin.php:320 src/Model/Contact.php:1228
-msgid "Blocked domain"
-msgstr ""
-
-#: mod/friendica.php:123 mod/admin.php:303 mod/admin.php:321
-msgid "Reason for the block"
-msgstr ""
-
 #: mod/match.php:48
 msgid "No keywords to match. Please add keywords to your default profile."
 msgstr ""
@@ -1831,7 +1783,7 @@ msgstr ""
 msgid "if applicable"
 msgstr ""
 
-#: mod/notifications.php:179 mod/notifications.php:264 mod/admin.php:1729
+#: mod/notifications.php:179 mod/notifications.php:264 mod/admin.php:1796
 msgid "Approve"
 msgstr ""
 
@@ -1884,13 +1836,13 @@ msgstr ""
 msgid "Subscriber"
 msgstr ""
 
-#: mod/notifications.php:247 mod/contacts.php:660 mod/directory.php:149
-#: mod/events.php:518 src/Model/Profile.php:417 src/Model/Event.php:60
+#: mod/notifications.php:247 mod/contacts.php:660 mod/events.php:518
+#: mod/directory.php:148 src/Model/Profile.php:417 src/Model/Event.php:60
 #: src/Model/Event.php:85 src/Model/Event.php:421 src/Model/Event.php:900
 msgid "Location:"
 msgstr ""
 
-#: mod/notifications.php:249 mod/contacts.php:664 mod/directory.php:155
+#: mod/notifications.php:249 mod/contacts.php:664 mod/directory.php:154
 #: src/Model/Profile.php:423 src/Model/Profile.php:806
 msgid "About:"
 msgstr ""
@@ -1900,13 +1852,13 @@ msgstr ""
 msgid "Tags:"
 msgstr ""
 
-#: mod/notifications.php:253 mod/directory.php:152 src/Model/Profile.php:420
+#: mod/notifications.php:253 mod/directory.php:151 src/Model/Profile.php:420
 #: src/Model/Profile.php:745
 msgid "Gender:"
 msgstr ""
 
-#: mod/notifications.php:258 mod/admin.php:439 mod/admin.php:449
-#: mod/contacts.php:656 mod/follow.php:166 mod/unfollow.php:122
+#: mod/notifications.php:258 mod/contacts.php:656 mod/unfollow.php:122
+#: mod/follow.php:166 mod/admin.php:490 mod/admin.php:500
 msgid "Profile URL"
 msgstr ""
 
@@ -1944,8 +1896,8 @@ msgstr ""
 msgid "Login failed."
 msgstr ""
 
-#: mod/dfrn_confirm.php:74 mod/profiles.php:38 mod/profiles.php:148
-#: mod/profiles.php:195 mod/profiles.php:617
+#: mod/dfrn_confirm.php:74 mod/profiles.php:39 mod/profiles.php:149
+#: mod/profiles.php:196 mod/profiles.php:618
 msgid "Profile not found."
 msgstr ""
 
@@ -2137,20 +2089,6 @@ msgid ""
 "important, please visit http://friendi.ca"
 msgstr ""
 
-#: mod/manage.php:180
-msgid "Manage Identities and/or Pages"
-msgstr ""
-
-#: mod/manage.php:181
-msgid ""
-"Toggle between different identities or community/group pages which share "
-"your account details or which you have been granted \"manage\" permissions"
-msgstr ""
-
-#: mod/manage.php:182
-msgid "Select an identity to manage: "
-msgstr ""
-
 #: mod/wall_attach.php:24 mod/wall_attach.php:32 mod/wall_attach.php:83
 #: mod/wall_upload.php:38 mod/wall_upload.php:54 mod/wall_upload.php:112
 #: mod/wall_upload.php:155 mod/wall_upload.php:158
@@ -2174,6 +2112,20 @@ msgstr ""
 msgid "File upload failed."
 msgstr ""
 
+#: mod/manage.php:180
+msgid "Manage Identities and/or Pages"
+msgstr ""
+
+#: mod/manage.php:181
+msgid ""
+"Toggle between different identities or community/group pages which share "
+"your account details or which you have been granted \"manage\" permissions"
+msgstr ""
+
+#: mod/manage.php:182
+msgid "Select an identity to manage: "
+msgstr ""
+
 #: mod/dfrn_request.php:94
 msgid "This introduction has already been accepted."
 msgstr ""
@@ -2243,6 +2195,11 @@ msgstr ""
 msgid "Disallowed profile URL."
 msgstr ""
 
+#: mod/dfrn_request.php:351 mod/friendica.php:128 mod/admin.php:353
+#: mod/admin.php:371 src/Model/Contact.php:1228
+msgid "Blocked domain"
+msgstr ""
+
 #: mod/dfrn_request.php:419 mod/contacts.php:230
 msgid "Failed to update contact record."
 msgstr ""
@@ -2285,10 +2242,10 @@ msgstr ""
 msgid "Please confirm your introduction/connection request to %s."
 msgstr ""
 
-#: mod/dfrn_request.php:607 mod/probe.php:13 mod/search.php:98
-#: mod/search.php:104 mod/viewcontacts.php:45 mod/webfinger.php:16
+#: mod/dfrn_request.php:607 mod/probe.php:13 mod/viewcontacts.php:45
+#: mod/webfinger.php:16 mod/search.php:98 mod/search.php:104
 #: mod/community.php:27 mod/photos.php:932 mod/videos.php:199
-#: mod/directory.php:42 mod/display.php:203
+#: mod/display.php:203 mod/directory.php:42
 msgid "Public access denied."
 msgstr ""
 
@@ -2347,18 +2304,14 @@ msgid ""
 "bar."
 msgstr ""
 
-#: mod/dfrn_request.php:660 mod/follow.php:157 mod/unfollow.php:113
+#: mod/dfrn_request.php:660 mod/unfollow.php:113 mod/follow.php:157
 msgid "Your Identity Address:"
 msgstr ""
 
-#: mod/dfrn_request.php:662 mod/follow.php:62 mod/unfollow.php:65
+#: mod/dfrn_request.php:662 mod/unfollow.php:65 mod/follow.php:62
 msgid "Submit Request"
 msgstr ""
 
-#: mod/filer.php:34
-msgid "- select -"
-msgstr ""
-
 #: mod/localtime.php:19 src/Model/Event.php:36 src/Model/Event.php:814
 msgid "l F d, Y \\@ g:i A"
 msgstr ""
@@ -2526,42 +2479,6 @@ msgstr ""
 msgid "Your password has been changed at %s"
 msgstr ""
 
-#: mod/notify.php:77
-msgid "No more system notifications."
-msgstr ""
-
-#: mod/ping.php:292
-msgid "{0} wants to be your friend"
-msgstr ""
-
-#: mod/ping.php:307
-msgid "{0} sent you a message"
-msgstr ""
-
-#: mod/ping.php:322
-msgid "{0} requested registration"
-msgstr ""
-
-#: mod/poke.php:192
-msgid "Poke/Prod"
-msgstr ""
-
-#: mod/poke.php:193
-msgid "poke, prod or do other things to somebody"
-msgstr ""
-
-#: mod/poke.php:194
-msgid "Recipient"
-msgstr ""
-
-#: mod/poke.php:195
-msgid "Choose what you wish to do to recipient"
-msgstr ""
-
-#: mod/poke.php:198
-msgid "Make this post private"
-msgstr ""
-
 #: mod/probe.php:14 mod/webfinger.php:17
 msgid "Only logged in users are permitted to perform a probing."
 msgstr ""
@@ -2617,59 +2534,60 @@ msgstr ""
 msgid "Please enter your password for verification:"
 msgstr ""
 
-#: mod/search.php:37 mod/network.php:194
-msgid "Remove term"
+#: mod/viewcontacts.php:87
+msgid "No contacts."
 msgstr ""
 
-#: mod/search.php:46 mod/network.php:201 src/Content/Feature.php:100
-msgid "Saved Searches"
+#: mod/viewsrc.php:12
+msgid "Access denied."
 msgstr ""
 
-#: mod/search.php:105
-msgid "Only logged in users are permitted to perform a search."
+#: mod/wallmessage.php:49 mod/wallmessage.php:112
+#, php-format
+msgid "Number of daily wall messages for %s exceeded. Message failed."
 msgstr ""
 
-#: mod/search.php:129
-msgid "Too Many Requests"
+#: mod/wallmessage.php:57 mod/message.php:73
+msgid "No recipient selected."
 msgstr ""
 
-#: mod/search.php:130
-msgid "Only one search per minute is permitted for not logged in users."
+#: mod/wallmessage.php:60
+msgid "Unable to check your home location."
 msgstr ""
 
-#: mod/search.php:228 mod/community.php:136
-msgid "No results."
+#: mod/wallmessage.php:63 mod/message.php:80
+msgid "Message could not be sent."
 msgstr ""
 
-#: mod/search.php:234
-#, php-format
-msgid "Items tagged with: %s"
+#: mod/wallmessage.php:66 mod/message.php:83
+msgid "Message collection failure."
 msgstr ""
 
-#: mod/search.php:236 mod/contacts.php:819
-#, php-format
-msgid "Results for: %s"
+#: mod/wallmessage.php:69 mod/message.php:86
+msgid "Message sent."
 msgstr ""
 
-#: mod/subthread.php:113
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
+#: mod/wallmessage.php:86 mod/wallmessage.php:95
+msgid "No recipient."
 msgstr ""
 
-#: mod/tagrm.php:47
-msgid "Tag removed"
+#: mod/wallmessage.php:132 mod/message.php:250
+msgid "Send Private Message"
 msgstr ""
 
-#: mod/tagrm.php:85
-msgid "Remove Item Tag"
+#: mod/wallmessage.php:133
+#, php-format
+msgid ""
+"If you wish for %s to respond, please check that the privacy settings on "
+"your site allow private mail from unknown senders."
 msgstr ""
 
-#: mod/tagrm.php:87
-msgid "Select a tag to remove: "
+#: mod/wallmessage.php:134 mod/message.php:251 mod/message.php:421
+msgid "To:"
 msgstr ""
 
-#: mod/tagrm.php:98 mod/delegate.php:177
-msgid "Remove"
+#: mod/wallmessage.php:135 mod/message.php:255 mod/message.php:423
+msgid "Subject:"
 msgstr ""
 
 #: mod/uexport.php:44
@@ -2697,184 +2615,118 @@ msgstr ""
 msgid "Export personal data"
 msgstr ""
 
-#: mod/viewcontacts.php:87
-msgid "No contacts."
+#: mod/filer.php:34
+msgid "- select -"
 msgstr ""
 
-#: mod/viewsrc.php:12
-msgid "Access denied."
+#: mod/notify.php:77
+msgid "No more system notifications."
 msgstr ""
 
-#: mod/wall_upload.php:186 mod/photos.php:763 mod/photos.php:766
-#: mod/photos.php:795 mod/profile_photo.php:153
-#, php-format
-msgid "Image exceeds size limit of %s"
+#: mod/ping.php:292
+msgid "{0} wants to be your friend"
 msgstr ""
 
-#: mod/wall_upload.php:200 mod/photos.php:818 mod/profile_photo.php:162
-msgid "Unable to process image."
+#: mod/ping.php:307
+msgid "{0} sent you a message"
 msgstr ""
 
-#: mod/wall_upload.php:231 mod/item.php:471 src/Object/Image.php:953
-#: src/Object/Image.php:969 src/Object/Image.php:977 src/Object/Image.php:1002
-msgid "Wall Photos"
+#: mod/ping.php:322
+msgid "{0} requested registration"
 msgstr ""
 
-#: mod/wall_upload.php:239 mod/photos.php:847 mod/profile_photo.php:307
-msgid "Image upload failed."
+#: mod/poke.php:192
+msgid "Poke/Prod"
 msgstr ""
 
-#: mod/wallmessage.php:49 mod/wallmessage.php:112
-#, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
+#: mod/poke.php:193
+msgid "poke, prod or do other things to somebody"
 msgstr ""
 
-#: mod/wallmessage.php:57 mod/message.php:73
-msgid "No recipient selected."
+#: mod/poke.php:194
+msgid "Recipient"
 msgstr ""
 
-#: mod/wallmessage.php:60
-msgid "Unable to check your home location."
+#: mod/poke.php:195
+msgid "Choose what you wish to do to recipient"
 msgstr ""
 
-#: mod/wallmessage.php:63 mod/message.php:80
-msgid "Message could not be sent."
+#: mod/poke.php:198
+msgid "Make this post private"
 msgstr ""
 
-#: mod/wallmessage.php:66 mod/message.php:83
-msgid "Message collection failure."
+#: mod/subthread.php:113
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
 msgstr ""
 
-#: mod/wallmessage.php:69 mod/message.php:86
-msgid "Message sent."
-msgstr ""
-
-#: mod/wallmessage.php:86 mod/wallmessage.php:95
-msgid "No recipient."
-msgstr ""
-
-#: mod/wallmessage.php:132 mod/message.php:250
-msgid "Send Private Message"
-msgstr ""
-
-#: mod/wallmessage.php:133
-#, php-format
-msgid ""
-"If you wish for %s to respond, please check that the privacy settings on "
-"your site allow private mail from unknown senders."
+#: mod/tagrm.php:47
+msgid "Tag removed"
 msgstr ""
 
-#: mod/wallmessage.php:134 mod/message.php:251 mod/message.php:421
-msgid "To:"
+#: mod/tagrm.php:85
+msgid "Remove Item Tag"
 msgstr ""
 
-#: mod/wallmessage.php:135 mod/message.php:255 mod/message.php:423
-msgid "Subject:"
+#: mod/tagrm.php:87
+msgid "Select a tag to remove: "
 msgstr ""
 
-#: mod/register.php:99
-msgid ""
-"Registration successful. Please check your email for further instructions."
+#: mod/tagrm.php:98 mod/delegate.php:177
+msgid "Remove"
 msgstr ""
 
-#: mod/register.php:103
+#: mod/wall_upload.php:186 mod/photos.php:763 mod/photos.php:766
+#: mod/photos.php:795 mod/profile_photo.php:153
 #, php-format
-msgid ""
-"Failed to send email message. Here your accout details:<br> login: %s<br> "
-"password: %s<br><br>You can change your password after login."
-msgstr ""
-
-#: mod/register.php:110
-msgid "Registration successful."
-msgstr ""
-
-#: mod/register.php:115
-msgid "Your registration can not be processed."
-msgstr ""
-
-#: mod/register.php:162
-msgid "Your registration is pending approval by the site owner."
-msgstr ""
-
-#: mod/register.php:220
-msgid ""
-"You may (optionally) fill in this form via OpenID by supplying your OpenID "
-"and clicking 'Register'."
-msgstr ""
-
-#: mod/register.php:221
-msgid ""
-"If you are not familiar with OpenID, please leave that field blank and fill "
-"in the rest of the items."
-msgstr ""
-
-#: mod/register.php:222
-msgid "Your OpenID (optional): "
-msgstr ""
-
-#: mod/register.php:234
-msgid "Include your profile in member directory?"
-msgstr ""
-
-#: mod/register.php:259
-msgid "Note for the admin"
+msgid "Image exceeds size limit of %s"
 msgstr ""
 
-#: mod/register.php:259
-msgid "Leave a message for the admin, why you want to join this node"
+#: mod/wall_upload.php:200 mod/photos.php:818 mod/profile_photo.php:162
+msgid "Unable to process image."
 msgstr ""
 
-#: mod/register.php:260
-msgid "Membership on this site is by invitation only."
+#: mod/wall_upload.php:231 mod/item.php:471 src/Object/Image.php:953
+#: src/Object/Image.php:969 src/Object/Image.php:977 src/Object/Image.php:1002
+msgid "Wall Photos"
 msgstr ""
 
-#: mod/register.php:261
-msgid "Your invitation code: "
+#: mod/wall_upload.php:239 mod/photos.php:847 mod/profile_photo.php:307
+msgid "Image upload failed."
 msgstr ""
 
-#: mod/register.php:264 mod/admin.php:1283
-msgid "Registration"
+#: mod/search.php:37 mod/network.php:194
+msgid "Remove term"
 msgstr ""
 
-#: mod/register.php:270
-msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
+#: mod/search.php:46 mod/network.php:201 src/Content/Feature.php:100
+msgid "Saved Searches"
 msgstr ""
 
-#: mod/register.php:271
-msgid ""
-"Your Email Address: (Initial information will be send there, so this has to "
-"be an existing address.)"
+#: mod/search.php:105
+msgid "Only logged in users are permitted to perform a search."
 msgstr ""
 
-#: mod/register.php:273 mod/settings.php:1199
-msgid "New Password:"
+#: mod/search.php:129
+msgid "Too Many Requests"
 msgstr ""
 
-#: mod/register.php:273
-msgid "Leave empty for an auto generated password."
+#: mod/search.php:130
+msgid "Only one search per minute is permitted for not logged in users."
 msgstr ""
 
-#: mod/register.php:274 mod/settings.php:1200
-msgid "Confirm:"
+#: mod/search.php:228 mod/community.php:136
+msgid "No results."
 msgstr ""
 
-#: mod/register.php:275
+#: mod/search.php:234
 #, php-format
-msgid ""
-"Choose a profile nickname. This must begin with a text character. Your "
-"profile address on this site will then be '<strong>nickname@%s</strong>'."
-msgstr ""
-
-#: mod/register.php:276
-msgid "Choose a nickname: "
-msgstr ""
-
-#: mod/register.php:279 src/Content/Nav.php:128 src/Module/Login.php:283
-msgid "Register"
+msgid "Items tagged with: %s"
 msgstr ""
 
-#: mod/register.php:286
-msgid "Import your profile to this friendica instance"
+#: mod/search.php:236 mod/contacts.php:819
+#, php-format
+msgid "Results for: %s"
 msgstr ""
 
 #: mod/bookmarklet.php:23 src/Content/Nav.php:114 src/Module/Login.php:312
@@ -2931,6 +2783,14 @@ msgstr ""
 msgid "Example: bob@example.com, mary@example.com"
 msgstr ""
 
+#: mod/feedtest.php:20
+msgid "You must be logged in to use this module"
+msgstr ""
+
+#: mod/feedtest.php:48
+msgid "Source URL"
+msgstr ""
+
 #: mod/fsuggest.php:72
 msgid "Friend suggestion sent."
 msgstr ""
@@ -3012,6 +2872,36 @@ msgstr ""
 msgid "Add Contact"
 msgstr ""
 
+#: mod/item.php:114
+msgid "Unable to locate original post."
+msgstr ""
+
+#: mod/item.php:274
+msgid "Empty post discarded."
+msgstr ""
+
+#: mod/item.php:799
+#, php-format
+msgid ""
+"This message was sent to you by %s, a member of the Friendica social network."
+msgstr ""
+
+#: mod/item.php:801
+#, php-format
+msgid "You may visit them online at %s"
+msgstr ""
+
+#: mod/item.php:802
+msgid ""
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
+msgstr ""
+
+#: mod/item.php:806
+#, php-format
+msgid "%s posted an update."
+msgstr ""
+
 #: mod/message.php:30 src/Content/Nav.php:198
 msgid "New Message"
 msgstr ""
@@ -3020,7 +2910,7 @@ msgstr ""
 msgid "Unable to locate contact information."
 msgstr ""
 
-#: mod/message.php:112 view/theme/frio/theme.php:268 src/Content/Nav.php:195
+#: mod/message.php:112 src/Content/Nav.php:195 view/theme/frio/theme.php:268
 msgid "Messages"
 msgstr ""
 
@@ -3140,7 +3030,7 @@ msgstr ""
 msgid "Sort by Post Date"
 msgstr ""
 
-#: mod/network.php:940 mod/profiles.php:686
+#: mod/network.php:940 mod/profiles.php:687
 #: src/Core/NotificationsManager.php:185
 msgid "Personal"
 msgstr ""
@@ -3177,6 +3067,10 @@ msgstr ""
 msgid "Personal Notes"
 msgstr ""
 
+#: mod/oexchange.php:30
+msgid "Post successful."
+msgstr ""
+
 #: mod/photos.php:108 src/Model/Profile.php:907
 msgid "Photo Albums"
 msgstr ""
@@ -3406,7 +3300,7 @@ msgstr ""
 msgid "%s's timeline"
 msgstr ""
 
-#: mod/profile.php:173 mod/cal.php:142 mod/display.php:313
+#: mod/profile.php:173 mod/display.php:313 mod/cal.php:142
 msgid "Access to this profile has been restricted."
 msgstr ""
 
@@ -3434,4313 +3328,4227 @@ msgstr ""
 msgid "Upload New Videos"
 msgstr ""
 
-#: mod/admin.php:106
-msgid "Theme settings updated."
-msgstr ""
-
-#: mod/admin.php:176 src/Content/Nav.php:174
-msgid "Information"
-msgstr ""
+#: mod/contacts.php:157
+#, php-format
+msgid "%d contact edited."
+msgid_plural "%d contacts edited."
+msgstr[0] ""
+msgstr[1] ""
 
-#: mod/admin.php:177
-msgid "Overview"
+#: mod/contacts.php:184 mod/contacts.php:400
+msgid "Could not access contact record."
 msgstr ""
 
-#: mod/admin.php:178 mod/admin.php:654
-msgid "Federation Statistics"
+#: mod/contacts.php:194
+msgid "Could not locate selected profile."
 msgstr ""
 
-#: mod/admin.php:179
-msgid "Configuration"
+#: mod/contacts.php:228
+msgid "Contact updated."
 msgstr ""
 
-#: mod/admin.php:180 mod/admin.php:1280
-msgid "Site"
+#: mod/contacts.php:421
+msgid "Contact has been blocked"
 msgstr ""
 
-#: mod/admin.php:181 mod/admin.php:1208 mod/admin.php:1721 mod/admin.php:1737
-msgid "Users"
+#: mod/contacts.php:421
+msgid "Contact has been unblocked"
 msgstr ""
 
-#: mod/admin.php:182 mod/admin.php:1837 mod/admin.php:1897 mod/settings.php:87
-msgid "Addons"
+#: mod/contacts.php:432
+msgid "Contact has been ignored"
 msgstr ""
 
-#: mod/admin.php:183 mod/admin.php:2106 mod/admin.php:2150
-msgid "Themes"
+#: mod/contacts.php:432
+msgid "Contact has been unignored"
 msgstr ""
 
-#: mod/admin.php:184 mod/settings.php:65
-msgid "Additional features"
+#: mod/contacts.php:443
+msgid "Contact has been archived"
 msgstr ""
 
-#: mod/admin.php:185
-msgid "Database"
+#: mod/contacts.php:443
+msgid "Contact has been unarchived"
 msgstr ""
 
-#: mod/admin.php:186
-msgid "DB updates"
+#: mod/contacts.php:467
+msgid "Drop contact"
 msgstr ""
 
-#: mod/admin.php:187 mod/admin.php:689
-msgid "Inspect Queue"
+#: mod/contacts.php:470 mod/contacts.php:823
+msgid "Do you really want to delete this contact?"
 msgstr ""
 
-#: mod/admin.php:188
-msgid "Tools"
+#: mod/contacts.php:488
+msgid "Contact has been removed."
 msgstr ""
 
-#: mod/admin.php:189
-msgid "Contact Blocklist"
+#: mod/contacts.php:519
+#, php-format
+msgid "You are mutual friends with %s"
 msgstr ""
 
-#: mod/admin.php:190 mod/admin.php:311
-msgid "Server Blocklist"
+#: mod/contacts.php:523
+#, php-format
+msgid "You are sharing with %s"
 msgstr ""
 
-#: mod/admin.php:191 mod/admin.php:470
-msgid "Delete Item"
+#: mod/contacts.php:527
+#, php-format
+msgid "%s is sharing with you"
 msgstr ""
 
-#: mod/admin.php:192 mod/admin.php:193 mod/admin.php:2224
-msgid "Logs"
+#: mod/contacts.php:547
+msgid "Private communications are not available for this contact."
 msgstr ""
 
-#: mod/admin.php:194 mod/admin.php:2291
-msgid "View Logs"
+#: mod/contacts.php:549
+msgid "Never"
 msgstr ""
 
-#: mod/admin.php:196
-msgid "Diagnostics"
+#: mod/contacts.php:552
+msgid "(Update was successful)"
 msgstr ""
 
-#: mod/admin.php:197
-msgid "PHP Info"
+#: mod/contacts.php:552
+msgid "(Update was not successful)"
 msgstr ""
 
-#: mod/admin.php:198
-msgid "probe address"
+#: mod/contacts.php:554 mod/contacts.php:992
+msgid "Suggest friends"
 msgstr ""
 
-#: mod/admin.php:199
-msgid "check webfinger"
+#: mod/contacts.php:558
+#, php-format
+msgid "Network type: %s"
 msgstr ""
 
-#: mod/admin.php:218 src/Content/Nav.php:217
-msgid "Admin"
+#: mod/contacts.php:563
+msgid "Communications lost with this contact!"
 msgstr ""
 
-#: mod/admin.php:219
-msgid "Addon Features"
+#: mod/contacts.php:569
+msgid "Fetch further information for feeds"
 msgstr ""
 
-#: mod/admin.php:220
-msgid "User registrations waiting for confirmation"
+#: mod/contacts.php:571
+msgid ""
+"Fetch information like preview pictures, title and teaser from the feed "
+"item. You can activate this if the feed doesn't contain much text. Keywords "
+"are taken from the meta header in the feed item and are posted as hash tags."
 msgstr ""
 
-#: mod/admin.php:302
-msgid "The blocked domain"
+#: mod/contacts.php:572 mod/admin.php:1272 mod/admin.php:1435
+#: mod/admin.php:1445
+msgid "Disabled"
 msgstr ""
 
-#: mod/admin.php:303 mod/admin.php:316
-msgid "The reason why you blocked this domain."
+#: mod/contacts.php:573
+msgid "Fetch information"
 msgstr ""
 
-#: mod/admin.php:304
-msgid "Delete domain"
+#: mod/contacts.php:574
+msgid "Fetch keywords"
 msgstr ""
 
-#: mod/admin.php:304
-msgid "Check to delete this entry from the blocklist"
+#: mod/contacts.php:575
+msgid "Fetch information and keywords"
 msgstr ""
 
-#: mod/admin.php:310 mod/admin.php:427 mod/admin.php:469 mod/admin.php:653
-#: mod/admin.php:688 mod/admin.php:784 mod/admin.php:1279 mod/admin.php:1720
-#: mod/admin.php:1836 mod/admin.php:1896 mod/admin.php:2105 mod/admin.php:2149
-#: mod/admin.php:2223 mod/admin.php:2290
-msgid "Administration"
+#: mod/contacts.php:599 mod/unfollow.php:100
+msgid "Disconnect/Unfollow"
 msgstr ""
 
-#: mod/admin.php:312
-msgid ""
-"This page can be used to define a black list of servers from the federated "
-"network that are not allowed to interact with your node. For all entered "
-"domains you should also give a reason why you have blocked the remote server."
+#: mod/contacts.php:608
+msgid "Contact"
 msgstr ""
 
-#: mod/admin.php:313
-msgid ""
-"The list of blocked servers will be made publically available on the /"
-"friendica page so that your users and people investigating communication "
-"problems can find the reason easily."
+#: mod/contacts.php:611
+msgid "Profile Visibility"
 msgstr ""
 
-#: mod/admin.php:314
-msgid "Add new entry to block list"
+#: mod/contacts.php:612
+#, php-format
+msgid ""
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
 msgstr ""
 
-#: mod/admin.php:315
-msgid "Server Domain"
+#: mod/contacts.php:613
+msgid "Contact Information / Notes"
 msgstr ""
 
-#: mod/admin.php:315
-msgid ""
-"The domain of the new server to add to the block list. Do not include the "
-"protocol."
+#: mod/contacts.php:614
+msgid "Their personal note"
 msgstr ""
 
-#: mod/admin.php:316
-msgid "Block reason"
+#: mod/contacts.php:616
+msgid "Edit contact notes"
 msgstr ""
 
-#: mod/admin.php:317
-msgid "Add Entry"
+#: mod/contacts.php:620
+msgid "Block/Unblock contact"
 msgstr ""
 
-#: mod/admin.php:318
-msgid "Save changes to the blocklist"
+#: mod/contacts.php:621
+msgid "Ignore contact"
 msgstr ""
 
-#: mod/admin.php:319
-msgid "Current Entries in the Blocklist"
+#: mod/contacts.php:622
+msgid "Repair URL settings"
 msgstr ""
 
-#: mod/admin.php:322
-msgid "Delete entry from blocklist"
+#: mod/contacts.php:623
+msgid "View conversations"
 msgstr ""
 
-#: mod/admin.php:325
-msgid "Delete entry from blocklist?"
+#: mod/contacts.php:628
+msgid "Last update:"
 msgstr ""
 
-#: mod/admin.php:351
-msgid "Server added to blocklist."
+#: mod/contacts.php:630
+msgid "Update public posts"
 msgstr ""
 
-#: mod/admin.php:367
-msgid "Site blocklist updated."
+#: mod/contacts.php:632 mod/contacts.php:1002
+msgid "Update now"
 msgstr ""
 
-#: mod/admin.php:390 src/Core/Console/GlobalCommunityBlock.php:72
-msgid "The contact has been blocked from the node"
+#: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011
+#: mod/admin.php:485 mod/admin.php:1800
+msgid "Unblock"
 msgstr ""
 
-#: mod/admin.php:392 src/Core/Console/GlobalCommunityBlock.php:69
-#, php-format
-msgid "Could not find any contact entry for this URL (%s)"
+#: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011
+#: mod/admin.php:484 mod/admin.php:1799
+msgid "Block"
 msgstr ""
 
-#: mod/admin.php:399
-#, php-format
-msgid "%s contact unblocked"
-msgid_plural "%s contacts unblocked"
-msgstr[0] ""
-msgstr[1] ""
-
-#: mod/admin.php:428
-msgid "Remote Contact Blocklist"
+#: mod/contacts.php:638 mod/contacts.php:828 mod/contacts.php:1019
+msgid "Unignore"
 msgstr ""
 
-#: mod/admin.php:429
-msgid ""
-"This page allows you to prevent any message from a remote contact to reach "
-"your node."
+#: mod/contacts.php:642
+msgid "Currently blocked"
 msgstr ""
 
-#: mod/admin.php:430
-msgid "Block Remote Contact"
+#: mod/contacts.php:643
+msgid "Currently ignored"
 msgstr ""
 
-#: mod/admin.php:431 mod/admin.php:1723
-msgid "select all"
+#: mod/contacts.php:644
+msgid "Currently archived"
 msgstr ""
 
-#: mod/admin.php:432
-msgid "select none"
+#: mod/contacts.php:645
+msgid "Awaiting connection acknowledge"
 msgstr ""
 
-#: mod/admin.php:433 mod/admin.php:1732 mod/contacts.php:637
-#: mod/contacts.php:827 mod/contacts.php:1011
-msgid "Block"
+#: mod/contacts.php:646
+msgid ""
+"Replies/likes to your public posts <strong>may</strong> still be visible"
 msgstr ""
 
-#: mod/admin.php:434 mod/admin.php:1733 mod/contacts.php:637
-#: mod/contacts.php:827 mod/contacts.php:1011
-msgid "Unblock"
+#: mod/contacts.php:647
+msgid "Notification for new posts"
 msgstr ""
 
-#: mod/admin.php:435
-msgid "No remote contact is blocked from this node."
+#: mod/contacts.php:647
+msgid "Send a notification of every new post of this contact"
 msgstr ""
 
-#: mod/admin.php:437
-msgid "Blocked Remote Contacts"
+#: mod/contacts.php:650
+msgid "Blacklisted keywords"
 msgstr ""
 
-#: mod/admin.php:438
-msgid "Block New Remote Contact"
+#: mod/contacts.php:650
+msgid ""
+"Comma separated list of keywords that should not be converted to hashtags, "
+"when \"Fetch information and keywords\" is selected"
 msgstr ""
 
-#: mod/admin.php:439
-msgid "Photo"
+#: mod/contacts.php:662 src/Model/Profile.php:424
+msgid "XMPP:"
 msgstr ""
 
-#: mod/admin.php:439 mod/profiles.php:393
-msgid "Address"
+#: mod/contacts.php:667
+msgid "Actions"
 msgstr ""
 
-#: mod/admin.php:447
-#, php-format
-msgid "%s total blocked contact"
-msgid_plural "%s total blocked contacts"
-msgstr[0] ""
-msgstr[1] ""
-
-#: mod/admin.php:449
-msgid "URL of the remote contact to block."
+#: mod/contacts.php:669 mod/contacts.php:855 src/Content/Nav.php:100
+#: src/Model/Profile.php:888 view/theme/frio/theme.php:259
+msgid "Status"
 msgstr ""
 
-#: mod/admin.php:471
-msgid "Delete this Item"
+#: mod/contacts.php:670
+msgid "Contact Settings"
 msgstr ""
 
-#: mod/admin.php:472
-msgid ""
-"On this page you can delete an item from your node. If the item is a top "
-"level posting, the entire thread will be deleted."
+#: mod/contacts.php:711
+msgid "Suggestions"
 msgstr ""
 
-#: mod/admin.php:473
-msgid ""
-"You need to know the GUID of the item. You can find it e.g. by looking at "
-"the display URL. The last part of http://example.com/display/123456 is the "
-"GUID, here 123456."
+#: mod/contacts.php:714
+msgid "Suggest potential friends"
 msgstr ""
 
-#: mod/admin.php:474
-msgid "GUID"
+#: mod/contacts.php:722
+msgid "Show all contacts"
 msgstr ""
 
-#: mod/admin.php:474
-msgid "The GUID of the item you want to delete."
+#: mod/contacts.php:727
+msgid "Unblocked"
 msgstr ""
 
-#: mod/admin.php:513
-msgid "Item marked for deletion."
+#: mod/contacts.php:730
+msgid "Only show unblocked contacts"
 msgstr ""
 
-#: mod/admin.php:584
-msgid "unknown"
+#: mod/contacts.php:735
+msgid "Blocked"
 msgstr ""
 
-#: mod/admin.php:647
-msgid ""
-"This page offers you some numbers to the known part of the federated social "
-"network your Friendica node is part of. These numbers are not complete but "
-"only reflect the part of the network your node is aware of."
+#: mod/contacts.php:738
+msgid "Only show blocked contacts"
 msgstr ""
 
-#: mod/admin.php:648
-msgid ""
-"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
-"will improve the data displayed here."
+#: mod/contacts.php:743
+msgid "Ignored"
 msgstr ""
 
-#: mod/admin.php:660
-#, php-format
-msgid ""
-"Currently this node is aware of %d nodes with %d registered users from the "
-"following platforms:"
+#: mod/contacts.php:746
+msgid "Only show ignored contacts"
 msgstr ""
 
-#: mod/admin.php:691
-msgid "ID"
+#: mod/contacts.php:751
+msgid "Archived"
 msgstr ""
 
-#: mod/admin.php:692
-msgid "Recipient Name"
+#: mod/contacts.php:754
+msgid "Only show archived contacts"
 msgstr ""
 
-#: mod/admin.php:693
-msgid "Recipient Profile"
+#: mod/contacts.php:759
+msgid "Hidden"
 msgstr ""
 
-#: mod/admin.php:694 view/theme/frio/theme.php:266
-#: src/Core/NotificationsManager.php:178 src/Content/Nav.php:178
-msgid "Network"
+#: mod/contacts.php:762
+msgid "Only show hidden contacts"
 msgstr ""
 
-#: mod/admin.php:695
-msgid "Created"
+#: mod/contacts.php:818
+msgid "Search your contacts"
 msgstr ""
 
-#: mod/admin.php:696
-msgid "Last Tried"
+#: mod/contacts.php:820 mod/directory.php:209 src/Content/Widget.php:63
+msgid "Find"
 msgstr ""
 
-#: mod/admin.php:697
-msgid ""
-"This page lists the content of the queue for outgoing postings. These are "
-"postings the initial delivery failed for. They will be resend later and "
-"eventually deleted if the delivery fails permanently."
+#: mod/contacts.php:826 mod/settings.php:171 mod/settings.php:701
+msgid "Update"
 msgstr ""
 
-#: mod/admin.php:721
-#, php-format
-msgid ""
-"Your DB still runs with MyISAM tables. You should change the engine type to "
-"InnoDB. As Friendica will use InnoDB only features in the future, you should "
-"change this! See <a href=\"%s\">here</a> for a guide that may be helpful "
-"converting the table engines. You may also use the command <tt>php bin/"
-"console.php dbstructure toinnodb</tt> of your Friendica installation for an "
-"automatic conversion.<br />"
+#: mod/contacts.php:829 mod/contacts.php:1027
+msgid "Archive"
 msgstr ""
 
-#: mod/admin.php:728
-#, php-format
-msgid ""
-"There is a new version of Friendica available for download. Your current "
-"version is %1$s, upstream version is %2$s"
+#: mod/contacts.php:829 mod/contacts.php:1027
+msgid "Unarchive"
 msgstr ""
 
-#: mod/admin.php:738
-msgid ""
-"The database update failed. Please run \"php bin/console.php dbstructure "
-"update\" from the command line and have a look at the errors that might "
-"appear."
+#: mod/contacts.php:832
+msgid "Batch Actions"
 msgstr ""
 
-#: mod/admin.php:744
-msgid "The worker was never executed. Please check your database structure!"
+#: mod/contacts.php:858 mod/unfollow.php:132 mod/follow.php:186
+#: src/Model/Profile.php:891
+msgid "Status Messages and Posts"
 msgstr ""
 
-#: mod/admin.php:747
-#, php-format
-msgid ""
-"The last worker execution was on %s UTC. This is older than one hour. Please "
-"check your crontab settings."
+#: mod/contacts.php:866 src/Model/Profile.php:899
+msgid "Profile Details"
 msgstr ""
 
-#: mod/admin.php:752 mod/admin.php:1672
-msgid "Normal Account"
+#: mod/contacts.php:878
+msgid "View all contacts"
 msgstr ""
 
-#: mod/admin.php:753 mod/admin.php:1673
-msgid "Automatic Follower Account"
+#: mod/contacts.php:889
+msgid "View all common friends"
 msgstr ""
 
-#: mod/admin.php:754 mod/admin.php:1674
-msgid "Public Forum Account"
+#: mod/contacts.php:895 mod/events.php:532 mod/admin.php:1351
+#: src/Model/Profile.php:865
+msgid "Advanced"
 msgstr ""
 
-#: mod/admin.php:755 mod/admin.php:1675
-msgid "Automatic Friend Account"
+#: mod/contacts.php:898
+msgid "Advanced Contact Settings"
 msgstr ""
 
-#: mod/admin.php:756
-msgid "Blog Account"
+#: mod/contacts.php:930
+msgid "Mutual Friendship"
 msgstr ""
 
-#: mod/admin.php:757
-msgid "Private Forum Account"
+#: mod/contacts.php:934
+msgid "is a fan of yours"
 msgstr ""
 
-#: mod/admin.php:779
-msgid "Message queues"
+#: mod/contacts.php:938
+msgid "you are a fan of"
 msgstr ""
 
-#: mod/admin.php:785
-msgid "Summary"
+#: mod/contacts.php:1013
+msgid "Toggle Blocked status"
 msgstr ""
 
-#: mod/admin.php:787
-msgid "Registered users"
+#: mod/contacts.php:1021
+msgid "Toggle Ignored status"
 msgstr ""
 
-#: mod/admin.php:789
-msgid "Pending registrations"
+#: mod/contacts.php:1029
+msgid "Toggle Archive status"
 msgstr ""
 
-#: mod/admin.php:790
-msgid "Version"
+#: mod/contacts.php:1037
+msgid "Delete contact"
 msgstr ""
 
-#: mod/admin.php:795
-msgid "Active addons"
+#: mod/delegate.php:37
+msgid "Parent user not found."
 msgstr ""
 
-#: mod/admin.php:826
-msgid "Can not parse base url. Must have at least <scheme>://<domain>"
+#: mod/delegate.php:144
+msgid "No parent user"
 msgstr ""
 
-#: mod/admin.php:1144
-msgid "Site settings updated."
+#: mod/delegate.php:159
+msgid "Parent Password:"
 msgstr ""
 
-#: mod/admin.php:1171 mod/settings.php:903
-msgid "No special theme for mobile devices"
+#: mod/delegate.php:159
+msgid ""
+"Please enter the password of the parent account to legitimize your request."
 msgstr ""
 
-#: mod/admin.php:1200
-msgid "No community page"
+#: mod/delegate.php:164
+msgid "Parent User"
 msgstr ""
 
-#: mod/admin.php:1201
-msgid "Public postings from users of this site"
+#: mod/delegate.php:167
+msgid ""
+"Parent users have total control about this account, including the account "
+"settings. Please double check whom you give this access."
 msgstr ""
 
-#: mod/admin.php:1202
-msgid "Public postings from the federated network"
+#: mod/delegate.php:168 mod/settings.php:675 mod/settings.php:784
+#: mod/settings.php:870 mod/settings.php:959 mod/settings.php:1192
+#: mod/admin.php:307 mod/admin.php:1346 mod/admin.php:1965 mod/admin.php:2218
+#: mod/admin.php:2292 mod/admin.php:2439
+msgid "Save Settings"
 msgstr ""
 
-#: mod/admin.php:1203
-msgid "Public postings from local users and the federated network"
+#: mod/delegate.php:169 src/Content/Nav.php:204
+msgid "Delegate Page Management"
 msgstr ""
 
-#: mod/admin.php:1207 mod/admin.php:1370 mod/admin.php:1380
-#: mod/contacts.php:572
-msgid "Disabled"
+#: mod/delegate.php:170
+msgid "Delegates"
 msgstr ""
 
-#: mod/admin.php:1209
-msgid "Users, Global Contacts"
+#: mod/delegate.php:172
+msgid ""
+"Delegates are able to manage all aspects of this account/page except for "
+"basic account settings. Please do not delegate your personal account to "
+"anybody that you do not trust completely."
 msgstr ""
 
-#: mod/admin.php:1210
-msgid "Users, Global Contacts/fallback"
+#: mod/delegate.php:173
+msgid "Existing Page Delegates"
 msgstr ""
 
-#: mod/admin.php:1214
-msgid "One month"
+#: mod/delegate.php:175
+msgid "Potential Delegates"
 msgstr ""
 
-#: mod/admin.php:1215
-msgid "Three months"
+#: mod/delegate.php:178
+msgid "Add"
 msgstr ""
 
-#: mod/admin.php:1216
-msgid "Half a year"
+#: mod/delegate.php:179
+msgid "No entries."
 msgstr ""
 
-#: mod/admin.php:1217
-msgid "One year"
+#: mod/dirfind.php:49
+#, php-format
+msgid "People Search - %s"
 msgstr ""
 
-#: mod/admin.php:1222
-msgid "Multi user instance"
+#: mod/dirfind.php:60
+#, php-format
+msgid "Forum Search - %s"
 msgstr ""
 
-#: mod/admin.php:1245
-msgid "Closed"
+#: mod/install.php:114
+msgid "Friendica Communications Server - Setup"
 msgstr ""
 
-#: mod/admin.php:1246
-msgid "Requires approval"
+#: mod/install.php:120
+msgid "Could not connect to database."
 msgstr ""
 
-#: mod/admin.php:1247
-msgid "Open"
+#: mod/install.php:124
+msgid "Could not create table."
 msgstr ""
 
-#: mod/admin.php:1251
-msgid "No SSL policy, links will track page SSL state"
+#: mod/install.php:130
+msgid "Your Friendica site database has been installed."
 msgstr ""
 
-#: mod/admin.php:1252
-msgid "Force all links to use SSL"
+#: mod/install.php:135
+msgid ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
 msgstr ""
 
-#: mod/admin.php:1253
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+#: mod/install.php:136 mod/install.php:208 mod/install.php:558
+msgid "Please see the file \"INSTALL.txt\"."
 msgstr ""
 
-#: mod/admin.php:1257
-msgid "Don't check"
+#: mod/install.php:148
+msgid "Database already in use."
 msgstr ""
 
-#: mod/admin.php:1258
-msgid "check the stable version"
+#: mod/install.php:205
+msgid "System check"
 msgstr ""
 
-#: mod/admin.php:1259
-msgid "check the development version"
+#: mod/install.php:209 mod/cal.php:277 mod/events.php:395
+msgid "Next"
 msgstr ""
 
-#: mod/admin.php:1281 mod/admin.php:1898 mod/admin.php:2151 mod/admin.php:2225
-#: mod/admin.php:2372 mod/delegate.php:168 mod/settings.php:675
-#: mod/settings.php:784 mod/settings.php:870 mod/settings.php:959
-#: mod/settings.php:1192
-msgid "Save Settings"
+#: mod/install.php:210
+msgid "Check again"
 msgstr ""
 
-#: mod/admin.php:1282
-msgid "Republish users to directory"
+#: mod/install.php:230
+msgid "Database connection"
 msgstr ""
 
-#: mod/admin.php:1284
-msgid "File upload"
+#: mod/install.php:231
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
 msgstr ""
 
-#: mod/admin.php:1285
-msgid "Policies"
+#: mod/install.php:232
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
 msgstr ""
 
-#: mod/admin.php:1286 mod/contacts.php:895 mod/events.php:532
-#: src/Model/Profile.php:865
-msgid "Advanced"
+#: mod/install.php:233
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
 msgstr ""
 
-#: mod/admin.php:1287
-msgid "Auto Discovered Contact Directory"
+#: mod/install.php:237
+msgid "Database Server Name"
 msgstr ""
 
-#: mod/admin.php:1288
-msgid "Performance"
+#: mod/install.php:238
+msgid "Database Login Name"
 msgstr ""
 
-#: mod/admin.php:1289
-msgid "Worker"
+#: mod/install.php:239
+msgid "Database Login Password"
 msgstr ""
 
-#: mod/admin.php:1290
-msgid "Message Relay"
+#: mod/install.php:239
+msgid "For security reasons the password must not be empty"
+msgstr ""
+
+#: mod/install.php:240
+msgid "Database Name"
+msgstr ""
+
+#: mod/install.php:241 mod/install.php:281
+msgid "Site administrator email address"
 msgstr ""
 
-#: mod/admin.php:1291
+#: mod/install.php:241 mod/install.php:281
 msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
+"Your account email address must match this in order to use the web admin "
+"panel."
 msgstr ""
 
-#: mod/admin.php:1294
-msgid "Site name"
+#: mod/install.php:245 mod/install.php:284
+msgid "Please select a default timezone for your website"
 msgstr ""
 
-#: mod/admin.php:1295
-msgid "Host name"
+#: mod/install.php:271
+msgid "Site settings"
 msgstr ""
 
-#: mod/admin.php:1296
-msgid "Sender Email"
+#: mod/install.php:285
+msgid "System Language:"
 msgstr ""
 
-#: mod/admin.php:1296
+#: mod/install.php:285
 msgid ""
-"The email address your server shall use to send notification emails from."
+"Set the default language for your Friendica installation interface and to "
+"send emails."
 msgstr ""
 
-#: mod/admin.php:1297
-msgid "Banner/Logo"
+#: mod/install.php:325
+msgid "Could not find a command line version of PHP in the web server PATH."
 msgstr ""
 
-#: mod/admin.php:1298
-msgid "Shortcut icon"
+#: mod/install.php:326
+msgid ""
+"If you don't have a command line version of PHP installed on your server, "
+"you will not be able to run the background processing. See <a href='https://"
+"github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-"
+"worker'>'Setup the worker'</a>"
 msgstr ""
 
-#: mod/admin.php:1298
-msgid "Link to an icon that will be used for browsers."
+#: mod/install.php:330
+msgid "PHP executable path"
 msgstr ""
 
-#: mod/admin.php:1299
-msgid "Touch icon"
+#: mod/install.php:330
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
 msgstr ""
 
-#: mod/admin.php:1299
-msgid "Link to an icon that will be used for tablets and mobiles."
+#: mod/install.php:335
+msgid "Command line PHP"
 msgstr ""
 
-#: mod/admin.php:1300
-msgid "Additional Info"
+#: mod/install.php:344
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
 msgstr ""
 
-#: mod/admin.php:1300
-#, php-format
-msgid ""
-"For public servers: you can add additional information here that will be "
-"listed at %s/servers."
+#: mod/install.php:345
+msgid "Found PHP version: "
 msgstr ""
 
-#: mod/admin.php:1301
-msgid "System language"
+#: mod/install.php:347
+msgid "PHP cli binary"
 msgstr ""
 
-#: mod/admin.php:1302
-msgid "System theme"
+#: mod/install.php:358
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
 msgstr ""
 
-#: mod/admin.php:1302
-msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
+#: mod/install.php:359
+msgid "This is required for message delivery to work."
 msgstr ""
 
-#: mod/admin.php:1303
-msgid "Mobile system theme"
+#: mod/install.php:361
+msgid "PHP register_argc_argv"
 msgstr ""
 
-#: mod/admin.php:1303
-msgid "Theme for mobile devices"
+#: mod/install.php:384
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
 msgstr ""
 
-#: mod/admin.php:1304
-msgid "SSL link policy"
+#: mod/install.php:385
+msgid ""
+"If running under Windows, please see \"http://www.php.net/manual/en/openssl."
+"installation.php\"."
 msgstr ""
 
-#: mod/admin.php:1304
-msgid "Determines whether generated links should be forced to use SSL"
+#: mod/install.php:387
+msgid "Generate encryption keys"
 msgstr ""
 
-#: mod/admin.php:1305
-msgid "Force SSL"
+#: mod/install.php:394
+msgid "libCurl PHP module"
 msgstr ""
 
-#: mod/admin.php:1305
-msgid ""
-"Force all Non-SSL requests to SSL - Attention: on some systems it could lead "
-"to endless loops."
+#: mod/install.php:395
+msgid "GD graphics PHP module"
 msgstr ""
 
-#: mod/admin.php:1306
-msgid "Hide help entry from navigation menu"
+#: mod/install.php:396
+msgid "OpenSSL PHP module"
 msgstr ""
 
-#: mod/admin.php:1306
-msgid ""
-"Hides the menu entry for the Help pages from the navigation menu. You can "
-"still access it calling /help directly."
+#: mod/install.php:397
+msgid "PDO or MySQLi PHP module"
 msgstr ""
 
-#: mod/admin.php:1307
-msgid "Single user instance"
+#: mod/install.php:398
+msgid "mb_string PHP module"
 msgstr ""
 
-#: mod/admin.php:1307
-msgid "Make this instance multi-user or single-user for the named user"
+#: mod/install.php:399
+msgid "XML PHP module"
 msgstr ""
 
-#: mod/admin.php:1308
-msgid "Maximum image size"
+#: mod/install.php:400
+msgid "iconv PHP module"
 msgstr ""
 
-#: mod/admin.php:1308
-msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
+#: mod/install.php:401
+msgid "POSIX PHP module"
 msgstr ""
 
-#: mod/admin.php:1309
-msgid "Maximum image length"
+#: mod/install.php:405 mod/install.php:407
+msgid "Apache mod_rewrite module"
 msgstr ""
 
-#: mod/admin.php:1309
+#: mod/install.php:405
 msgid ""
-"Maximum length in pixels of the longest side of uploaded images. Default is "
-"-1, which means no limits."
+"Error: Apache webserver mod-rewrite module is required but not installed."
 msgstr ""
 
-#: mod/admin.php:1310
-msgid "JPEG image quality"
+#: mod/install.php:413
+msgid "Error: libCURL PHP module required but not installed."
 msgstr ""
 
-#: mod/admin.php:1310
+#: mod/install.php:417
 msgid ""
-"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
-"100, which is full quality."
+"Error: GD graphics PHP module with JPEG support required but not installed."
 msgstr ""
 
-#: mod/admin.php:1312
-msgid "Register policy"
+#: mod/install.php:421
+msgid "Error: openssl PHP module required but not installed."
 msgstr ""
 
-#: mod/admin.php:1313
-msgid "Maximum Daily Registrations"
+#: mod/install.php:425
+msgid "Error: PDO or MySQLi PHP module required but not installed."
 msgstr ""
 
-#: mod/admin.php:1313
-msgid ""
-"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 "
-"has no effect."
+#: mod/install.php:429
+msgid "Error: The MySQL driver for PDO is not installed."
 msgstr ""
 
-#: mod/admin.php:1314
-msgid "Register text"
+#: mod/install.php:433
+msgid "Error: mb_string PHP module required but not installed."
 msgstr ""
 
-#: mod/admin.php:1314
-msgid "Will be displayed prominently on the registration page."
+#: mod/install.php:437
+msgid "Error: iconv PHP module required but not installed."
 msgstr ""
 
-#: mod/admin.php:1315
-msgid "Accounts abandoned after x days"
+#: mod/install.php:441
+msgid "Error: POSIX PHP module required but not installed."
 msgstr ""
 
-#: mod/admin.php:1315
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
+#: mod/install.php:451
+msgid "Error, XML PHP module required but not installed."
 msgstr ""
 
-#: mod/admin.php:1316
-msgid "Allowed friend domains"
+#: mod/install.php:463
+msgid ""
+"The web installer needs to be able to create a file called \".htconfig.php\" "
+"in the top folder of your web server and it is unable to do so."
 msgstr ""
 
-#: mod/admin.php:1316
+#: mod/install.php:464
 msgid ""
-"Comma separated list of domains which are allowed to establish friendships "
-"with this site. Wildcards are accepted. Empty to allow any domains"
+"This is most often a permission setting, as the web server may not be able "
+"to write files in your folder - even if you can."
 msgstr ""
 
-#: mod/admin.php:1317
-msgid "Allowed email domains"
+#: mod/install.php:465
+msgid ""
+"At the end of this procedure, we will give you a text to save in a file "
+"named .htconfig.php in your Friendica top folder."
 msgstr ""
 
-#: mod/admin.php:1317
+#: mod/install.php:466
 msgid ""
-"Comma separated list of domains which are allowed in email addresses for "
-"registrations to this site. Wildcards are accepted. Empty to allow any "
-"domains"
+"You can alternatively skip this procedure and perform a manual installation. "
+"Please see the file \"INSTALL.txt\" for instructions."
 msgstr ""
 
-#: mod/admin.php:1318
-msgid "No OEmbed rich content"
+#: mod/install.php:469
+msgid ".htconfig.php is writable"
 msgstr ""
 
-#: mod/admin.php:1318
+#: mod/install.php:479
 msgid ""
-"Don't show the rich content (e.g. embedded PDF), except from the domains "
-"listed below."
-msgstr ""
-
-#: mod/admin.php:1319
-msgid "Allowed OEmbed domains"
+"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
 msgstr ""
 
-#: mod/admin.php:1319
+#: mod/install.php:480
 msgid ""
-"Comma separated list of domains which oembed content is allowed to be "
-"displayed. Wildcards are accepted."
+"In order to store these compiled templates, the web server needs to have "
+"write access to the directory view/smarty3/ under the Friendica top level "
+"folder."
 msgstr ""
 
-#: mod/admin.php:1320
-msgid "Block public"
+#: mod/install.php:481
+msgid ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has "
+"write access to this folder."
 msgstr ""
 
-#: mod/admin.php:1320
+#: mod/install.php:482
 msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
+"Note: as a security measure, you should give the web server write access to "
+"view/smarty3/ only--not the template files (.tpl) that it contains."
 msgstr ""
 
-#: mod/admin.php:1321
-msgid "Force publish"
+#: mod/install.php:485
+msgid "view/smarty3 is writable"
 msgstr ""
 
-#: mod/admin.php:1321
+#: mod/install.php:501
 msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
-msgstr ""
-
-#: mod/admin.php:1322
-msgid "Global directory URL"
+"Url rewrite in .htaccess is not working. Check your server configuration."
 msgstr ""
 
-#: mod/admin.php:1322
-msgid ""
-"URL to the global directory. If this is not set, the global directory is "
-"completely unavailable to the application."
+#: mod/install.php:503
+msgid "Url rewrite is working"
 msgstr ""
 
-#: mod/admin.php:1323
-msgid "Private posts by default for new users"
+#: mod/install.php:522
+msgid "ImageMagick PHP extension is not installed"
 msgstr ""
 
-#: mod/admin.php:1323
-msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
+#: mod/install.php:524
+msgid "ImageMagick PHP extension is installed"
 msgstr ""
 
-#: mod/admin.php:1324
-msgid "Don't include post content in email notifications"
+#: mod/install.php:526
+msgid "ImageMagick supports GIF"
 msgstr ""
 
-#: mod/admin.php:1324
+#: mod/install.php:533
 msgid ""
-"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."
+"The database configuration file \".htconfig.php\" could not be written. "
+"Please use the enclosed text to create a configuration file in your web "
+"server root."
 msgstr ""
 
-#: mod/admin.php:1325
-msgid "Disallow public access to addons listed in the apps menu."
+#: mod/install.php:556
+msgid "<h1>What next</h1>"
 msgstr ""
 
-#: mod/admin.php:1325
+#: mod/install.php:557
 msgid ""
-"Checking this box will restrict addons listed in the apps menu to members "
-"only."
-msgstr ""
-
-#: mod/admin.php:1326
-msgid "Don't embed private images in posts"
+"IMPORTANT: You will need to [manually] setup a scheduled task for the worker."
 msgstr ""
 
-#: mod/admin.php:1326
+#: mod/install.php:560
+#, php-format
 msgid ""
-"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 "
-"photos will have to authenticate and load each image, which may take a while."
+"Go to your new Friendica node <a href=\"%s/register\">registration page</a> "
+"and register as new user. Remember to use the same email you have entered as "
+"administrator email. This will allow you to enter the site admin panel."
 msgstr ""
 
-#: mod/admin.php:1327
-msgid "Allow Users to set remote_self"
+#: mod/ostatus_subscribe.php:21
+msgid "Subscribing to OStatus contacts"
 msgstr ""
 
-#: mod/admin.php:1327
-msgid ""
-"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 "
-"causes mirroring every posting of that contact in the users stream."
+#: mod/ostatus_subscribe.php:33
+msgid "No contact provided."
 msgstr ""
 
-#: mod/admin.php:1328
-msgid "Block multiple registrations"
+#: mod/ostatus_subscribe.php:40
+msgid "Couldn't fetch information for contact."
 msgstr ""
 
-#: mod/admin.php:1328
-msgid "Disallow users to register additional accounts for use as pages."
+#: mod/ostatus_subscribe.php:50
+msgid "Couldn't fetch friends for contact."
 msgstr ""
 
-#: mod/admin.php:1329
-msgid "OpenID support"
+#: mod/ostatus_subscribe.php:78
+msgid "success"
 msgstr ""
 
-#: mod/admin.php:1329
-msgid "OpenID support for registration and logins."
+#: mod/ostatus_subscribe.php:80
+msgid "failed"
 msgstr ""
 
-#: mod/admin.php:1330
-msgid "Fullname check"
+#: mod/ostatus_subscribe.php:83 src/Object/Post.php:279
+msgid "ignored"
 msgstr ""
 
-#: mod/admin.php:1330
-msgid ""
-"Force users to register with a space between firstname and lastname in Full "
-"name, as an antispam measure"
+#: mod/unfollow.php:34
+msgid "Contact wasn't found or can't be unfollowed."
 msgstr ""
 
-#: mod/admin.php:1331
-msgid "Community pages for visitors"
+#: mod/unfollow.php:47
+msgid "Contact unfollowed"
 msgstr ""
 
-#: mod/admin.php:1331
-msgid ""
-"Which community pages should be available for visitors. Local users always "
-"see both pages."
+#: mod/unfollow.php:73
+msgid "You aren't a friend of this contact."
 msgstr ""
 
-#: mod/admin.php:1332
-msgid "Posts per user on community page"
+#: mod/unfollow.php:79
+msgid "Unfollowing is currently not supported by your network."
 msgstr ""
 
-#: mod/admin.php:1332
-msgid ""
-"The maximum number of posts per user on the community page. (Not valid for "
-"'Global Community')"
+#: mod/cal.php:274 mod/events.php:391 src/Content/Nav.php:104
+#: src/Content/Nav.php:169 src/Model/Profile.php:924 src/Model/Profile.php:935
+#: view/theme/frio/theme.php:263 view/theme/frio/theme.php:267
+msgid "Events"
 msgstr ""
 
-#: mod/admin.php:1333
-msgid "Enable OStatus support"
+#: mod/cal.php:275 mod/events.php:392
+msgid "View"
 msgstr ""
 
-#: mod/admin.php:1333
-msgid ""
-"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
-"communications in OStatus are public, so privacy warnings will be "
-"occasionally displayed."
+#: mod/cal.php:276 mod/events.php:394
+msgid "Previous"
 msgstr ""
 
-#: mod/admin.php:1334
-msgid "Only import OStatus threads from our contacts"
+#: mod/cal.php:280 mod/events.php:400 src/Model/Event.php:412
+msgid "today"
 msgstr ""
 
-#: mod/admin.php:1334
-msgid ""
-"Normally we import every content from our OStatus contacts. With this option "
-"we only store threads that are started by a contact that is known on our "
-"system."
+#: mod/cal.php:281 mod/events.php:401 src/Util/Temporal.php:304
+#: src/Model/Event.php:413
+msgid "month"
 msgstr ""
 
-#: mod/admin.php:1335
-msgid "OStatus support can only be enabled if threading is enabled."
+#: mod/cal.php:282 mod/events.php:402 src/Util/Temporal.php:305
+#: src/Model/Event.php:414
+msgid "week"
 msgstr ""
 
-#: mod/admin.php:1337
-msgid ""
-"Diaspora support can't be enabled because Friendica was installed into a sub "
-"directory."
+#: mod/cal.php:283 mod/events.php:403 src/Util/Temporal.php:306
+#: src/Model/Event.php:415
+msgid "day"
 msgstr ""
 
-#: mod/admin.php:1338
-msgid "Enable Diaspora support"
+#: mod/cal.php:284 mod/events.php:404
+msgid "list"
 msgstr ""
 
-#: mod/admin.php:1338
-msgid "Provide built-in Diaspora network compatibility."
+#: mod/cal.php:297 src/Core/Console/NewPassword.php:74 src/Model/User.php:204
+msgid "User not found"
 msgstr ""
 
-#: mod/admin.php:1339
-msgid "Only allow Friendica contacts"
+#: mod/cal.php:313
+msgid "This calendar format is not supported"
 msgstr ""
 
-#: mod/admin.php:1339
-msgid ""
-"All contacts must use Friendica protocols. All other built-in communication "
-"protocols disabled."
+#: mod/cal.php:315
+msgid "No exportable data found"
 msgstr ""
 
-#: mod/admin.php:1340
-msgid "Verify SSL"
+#: mod/cal.php:332
+msgid "calendar"
 msgstr ""
 
-#: mod/admin.php:1340
-msgid ""
-"If you wish, you can turn on strict certificate checking. This will mean you "
-"cannot connect (at all) to self-signed SSL sites."
+#: mod/events.php:105 mod/events.php:107
+msgid "Event can not end before it has started."
 msgstr ""
 
-#: mod/admin.php:1341
-msgid "Proxy user"
+#: mod/events.php:114 mod/events.php:116
+msgid "Event title and start time are required."
 msgstr ""
 
-#: mod/admin.php:1342
-msgid "Proxy URL"
+#: mod/events.php:393
+msgid "Create New Event"
 msgstr ""
 
-#: mod/admin.php:1343
-msgid "Network timeout"
+#: mod/events.php:506
+msgid "Event details"
 msgstr ""
 
-#: mod/admin.php:1343
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+#: mod/events.php:507
+msgid "Starting date and Title are required."
 msgstr ""
 
-#: mod/admin.php:1344
-msgid "Maximum Load Average"
+#: mod/events.php:508 mod/events.php:509
+msgid "Event Starts:"
 msgstr ""
 
-#: mod/admin.php:1344
-msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
+#: mod/events.php:508 mod/events.php:520 mod/profiles.php:700
+msgid "Required"
 msgstr ""
 
-#: mod/admin.php:1345
-msgid "Maximum Load Average (Frontend)"
+#: mod/events.php:510 mod/events.php:526
+msgid "Finish date/time is not known or not relevant"
 msgstr ""
 
-#: mod/admin.php:1345
-msgid "Maximum system load before the frontend quits service - default 50."
-msgstr ""
-
-#: mod/admin.php:1346
-msgid "Minimal Memory"
-msgstr ""
-
-#: mod/admin.php:1346
-msgid ""
-"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
-"default 0 (deactivated)."
-msgstr ""
-
-#: mod/admin.php:1347
-msgid "Maximum table size for optimization"
-msgstr ""
-
-#: mod/admin.php:1347
-msgid ""
-"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
-"Enter -1 to disable it."
-msgstr ""
-
-#: mod/admin.php:1348
-msgid "Minimum level of fragmentation"
-msgstr ""
-
-#: mod/admin.php:1348
-msgid ""
-"Minimum fragmenation level to start the automatic optimization - default "
-"value is 30%."
-msgstr ""
-
-#: mod/admin.php:1350
-msgid "Periodical check of global contacts"
-msgstr ""
-
-#: mod/admin.php:1350
-msgid ""
-"If enabled, the global contacts are checked periodically for missing or "
-"outdated data and the vitality of the contacts and servers."
-msgstr ""
-
-#: mod/admin.php:1351
-msgid "Days between requery"
-msgstr ""
-
-#: mod/admin.php:1351
-msgid "Number of days after which a server is requeried for his contacts."
-msgstr ""
-
-#: mod/admin.php:1352
-msgid "Discover contacts from other servers"
-msgstr ""
-
-#: mod/admin.php:1352
-msgid ""
-"Periodically query other servers for contacts. You can choose between "
-"'users': the users on the remote system, 'Global Contacts': active contacts "
-"that are known on the system. The fallback is meant for Redmatrix servers "
-"and older friendica servers, where global contacts weren't available. The "
-"fallback increases the server load, so the recommened setting is 'Users, "
-"Global Contacts'."
-msgstr ""
-
-#: mod/admin.php:1353
-msgid "Timeframe for fetching global contacts"
-msgstr ""
-
-#: mod/admin.php:1353
-msgid ""
-"When the discovery is activated, this value defines the timeframe for the "
-"activity of the global contacts that are fetched from other servers."
-msgstr ""
-
-#: mod/admin.php:1354
-msgid "Search the local directory"
-msgstr ""
-
-#: mod/admin.php:1354
-msgid ""
-"Search the local directory instead of the global directory. When searching "
-"locally, every search will be executed on the global directory in the "
-"background. This improves the search results when the search is repeated."
-msgstr ""
-
-#: mod/admin.php:1356
-msgid "Publish server information"
-msgstr ""
-
-#: mod/admin.php:1356
-msgid ""
-"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 "
-"profiles, number of posts and the activated protocols and connectors. See <a "
-"href='http://the-federation.info/'>the-federation.info</a> for details."
-msgstr ""
-
-#: mod/admin.php:1358
-msgid "Check upstream version"
-msgstr ""
-
-#: mod/admin.php:1358
-msgid ""
-"Enables checking for new Friendica versions at github. If there is a new "
-"version, you will be informed in the admin panel overview."
+#: mod/events.php:512 mod/events.php:513
+msgid "Event Finishes:"
 msgstr ""
 
-#: mod/admin.php:1359
-msgid "Suppress Tags"
+#: mod/events.php:514 mod/events.php:527
+msgid "Adjust for viewer timezone"
 msgstr ""
 
-#: mod/admin.php:1359
-msgid "Suppress showing a list of hashtags at the end of the posting."
+#: mod/events.php:516
+msgid "Description:"
 msgstr ""
 
-#: mod/admin.php:1360
-msgid "Path to item cache"
+#: mod/events.php:520 mod/events.php:522
+msgid "Title:"
 msgstr ""
 
-#: mod/admin.php:1360
-msgid "The item caches buffers generated bbcode and external images."
+#: mod/events.php:523 mod/events.php:524
+msgid "Share this event"
 msgstr ""
 
-#: mod/admin.php:1361
-msgid "Cache duration in seconds"
+#: mod/events.php:531 src/Model/Profile.php:864
+msgid "Basic"
 msgstr ""
 
-#: mod/admin.php:1361
-msgid ""
-"How long should the cache files be hold? Default value is 86400 seconds (One "
-"day). To disable the item cache, set the value to -1."
+#: mod/events.php:552
+msgid "Failed to remove event"
 msgstr ""
 
-#: mod/admin.php:1362
-msgid "Maximum numbers of comments per post"
+#: mod/events.php:554
+msgid "Event removed"
 msgstr ""
 
-#: mod/admin.php:1362
-msgid "How much comments should be shown for each post? Default value is 100."
+#: mod/profile_photo.php:55
+msgid "Image uploaded but image cropping failed."
 msgstr ""
 
-#: mod/admin.php:1363
-msgid "Temp path"
+#: mod/profile_photo.php:88 mod/profile_photo.php:96 mod/profile_photo.php:104
+#: mod/profile_photo.php:315
+#, php-format
+msgid "Image size reduction [%s] failed."
 msgstr ""
 
-#: mod/admin.php:1363
+#: mod/profile_photo.php:125
 msgid ""
-"If you have a restricted system where the webserver can't access the system "
-"temp path, enter another path here."
-msgstr ""
-
-#: mod/admin.php:1364
-msgid "Base path to installation"
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
 msgstr ""
 
-#: mod/admin.php:1364
-msgid ""
-"If the system cannot detect the correct path to your installation, enter the "
-"correct path here. This setting should only be set if you are using a "
-"restricted system and symbolic links to your webroot."
+#: mod/profile_photo.php:134
+msgid "Unable to process image"
 msgstr ""
 
-#: mod/admin.php:1365
-msgid "Disable picture proxy"
+#: mod/profile_photo.php:247
+msgid "Upload File:"
 msgstr ""
 
-#: mod/admin.php:1365
-msgid ""
-"The picture proxy increases performance and privacy. It shouldn't be used on "
-"systems with very low bandwith."
+#: mod/profile_photo.php:248
+msgid "Select a profile:"
 msgstr ""
 
-#: mod/admin.php:1366
-msgid "Only search in tags"
+#: mod/profile_photo.php:253
+msgid "or"
 msgstr ""
 
-#: mod/admin.php:1366
-msgid "On large systems the text search can slow down the system extremely."
+#: mod/profile_photo.php:253
+msgid "skip this step"
 msgstr ""
 
-#: mod/admin.php:1368
-msgid "New base url"
+#: mod/profile_photo.php:253
+msgid "select a photo from your photo albums"
 msgstr ""
 
-#: mod/admin.php:1368
-msgid ""
-"Change base url for this server. Sends relocate message to all Friendica and "
-"Diaspora* contacts of all users."
+#: mod/profile_photo.php:266
+msgid "Crop Image"
 msgstr ""
 
-#: mod/admin.php:1370
-msgid "RINO Encryption"
+#: mod/profile_photo.php:267
+msgid "Please adjust the image cropping for optimum viewing."
 msgstr ""
 
-#: mod/admin.php:1370
-msgid "Encryption layer between nodes."
+#: mod/profile_photo.php:269
+msgid "Done Editing"
 msgstr ""
 
-#: mod/admin.php:1370
-msgid "Enabled"
+#: mod/profile_photo.php:305
+msgid "Image uploaded successfully."
 msgstr ""
 
-#: mod/admin.php:1372
-msgid "Maximum number of parallel workers"
+#: mod/settings.php:56 mod/admin.php:1781
+msgid "Account"
 msgstr ""
 
-#: mod/admin.php:1372
-msgid ""
-"On shared hosters set this to 2. On larger systems, values of 10 are great. "
-"Default value is 4."
+#: mod/settings.php:65 mod/admin.php:187
+msgid "Additional features"
 msgstr ""
 
-#: mod/admin.php:1373
-msgid "Don't use 'proc_open' with the worker"
+#: mod/settings.php:73
+msgid "Display"
 msgstr ""
 
-#: mod/admin.php:1373
-msgid ""
-"Enable this if your system doesn't allow the use of 'proc_open'. This can "
-"happen on shared hosters. If this is enabled you should increase the "
-"frequency of worker calls in your crontab."
+#: mod/settings.php:80 mod/settings.php:841
+msgid "Social Networks"
 msgstr ""
 
-#: mod/admin.php:1374
-msgid "Enable fastlane"
+#: mod/settings.php:87 mod/admin.php:185 mod/admin.php:1904 mod/admin.php:1964
+msgid "Addons"
 msgstr ""
 
-#: mod/admin.php:1374
-msgid ""
-"When enabed, the fastlane mechanism starts an additional worker if processes "
-"with higher priority are blocked by processes of lower priority."
+#: mod/settings.php:94 src/Content/Nav.php:204
+msgid "Delegations"
 msgstr ""
 
-#: mod/admin.php:1375
-msgid "Enable frontend worker"
+#: mod/settings.php:101
+msgid "Connected apps"
 msgstr ""
 
-#: mod/admin.php:1375
-#, php-format
-msgid ""
-"When enabled the Worker process is triggered when backend access is "
-"performed \\x28e.g. messages being delivered\\x29. On smaller sites you "
-"might want to call %s/worker on a regular basis via an external cron job. "
-"You should only enable this option if you cannot utilize cron/scheduled jobs "
-"on your server."
+#: mod/settings.php:115
+msgid "Remove account"
 msgstr ""
 
-#: mod/admin.php:1377
-msgid "Subscribe to relay"
+#: mod/settings.php:169
+msgid "Missing some important data!"
 msgstr ""
 
-#: mod/admin.php:1377
-msgid ""
-"Enables the receiving of public posts from the relay. They will be included "
-"in the search, subscribed tags and on the global community page."
+#: mod/settings.php:279
+msgid "Failed to connect with email account using the settings provided."
 msgstr ""
 
-#: mod/admin.php:1378
-msgid "Relay server"
+#: mod/settings.php:284
+msgid "Email settings updated."
 msgstr ""
 
-#: mod/admin.php:1378
-msgid ""
-"Address of the relay server where public posts should be send to. For "
-"example https://relay.diasp.org"
+#: mod/settings.php:300
+msgid "Features updated"
 msgstr ""
 
-#: mod/admin.php:1379
-msgid "Direct relay transfer"
+#: mod/settings.php:372
+msgid "Relocate message has been send to your contacts"
 msgstr ""
 
-#: mod/admin.php:1379
-msgid ""
-"Enables the direct transfer to other servers without using the relay servers"
+#: mod/settings.php:384 src/Model/User.php:325
+msgid "Passwords do not match. Password unchanged."
 msgstr ""
 
-#: mod/admin.php:1380
-msgid "Relay scope"
+#: mod/settings.php:389
+msgid "Empty passwords are not allowed. Password unchanged."
 msgstr ""
 
-#: mod/admin.php:1380
+#: mod/settings.php:394 src/Core/Console/NewPassword.php:78
 msgid ""
-"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."
-msgstr ""
-
-#: mod/admin.php:1380
-msgid "all"
-msgstr ""
-
-#: mod/admin.php:1380
-msgid "tags"
-msgstr ""
-
-#: mod/admin.php:1381
-msgid "Server tags"
-msgstr ""
-
-#: mod/admin.php:1381
-msgid "Comma separated list of tags for the 'tags' subscription."
+"The new password has been exposed in a public data dump, please choose "
+"another."
 msgstr ""
 
-#: mod/admin.php:1382
-msgid "Allow user tags"
+#: mod/settings.php:400
+msgid "Wrong password."
 msgstr ""
 
-#: mod/admin.php:1382
-msgid ""
-"If enabled, the tags from the saved searches will used for the 'tags' "
-"subscription in addition to the 'relay_server_tags'."
+#: mod/settings.php:407 src/Core/Console/NewPassword.php:85
+msgid "Password changed."
 msgstr ""
 
-#: mod/admin.php:1410
-msgid "Update has been marked successful"
+#: mod/settings.php:409 src/Core/Console/NewPassword.php:82
+msgid "Password update failed. Please try again."
 msgstr ""
 
-#: mod/admin.php:1417
-#, php-format
-msgid "Database structure update %s was successfully applied."
+#: mod/settings.php:496
+msgid " Please use a shorter name."
 msgstr ""
 
-#: mod/admin.php:1420
-#, php-format
-msgid "Executing of database structure update %s failed with error: %s"
+#: mod/settings.php:499
+msgid " Name too short."
 msgstr ""
 
-#: mod/admin.php:1433
-#, php-format
-msgid "Executing %s failed with error: %s"
+#: mod/settings.php:507
+msgid "Wrong Password"
 msgstr ""
 
-#: mod/admin.php:1435
-#, php-format
-msgid "Update %s was successfully applied."
+#: mod/settings.php:512
+msgid "Invalid email."
 msgstr ""
 
-#: mod/admin.php:1438
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
+#: mod/settings.php:519
+msgid "Cannot change to that email."
 msgstr ""
 
-#: mod/admin.php:1441
-#, php-format
-msgid "There was no additional update function %s that needed to be called."
+#: mod/settings.php:572
+msgid "Private forum has no privacy permissions. Using default privacy group."
 msgstr ""
 
-#: mod/admin.php:1461
-msgid "No failed updates."
+#: mod/settings.php:575
+msgid "Private forum has no privacy permissions and no default privacy group."
 msgstr ""
 
-#: mod/admin.php:1462
-msgid "Check database structure"
+#: mod/settings.php:615
+msgid "Settings updated."
 msgstr ""
 
-#: mod/admin.php:1467
-msgid "Failed Updates"
+#: mod/settings.php:674 mod/settings.php:700 mod/settings.php:736
+msgid "Add application"
 msgstr ""
 
-#: mod/admin.php:1468
-msgid ""
-"This does not include updates prior to 1139, which did not return a status."
+#: mod/settings.php:678 mod/settings.php:704
+msgid "Consumer Key"
 msgstr ""
 
-#: mod/admin.php:1469
-msgid "Mark success (if update was manually applied)"
+#: mod/settings.php:679 mod/settings.php:705
+msgid "Consumer Secret"
 msgstr ""
 
-#: mod/admin.php:1470
-msgid "Attempt to execute this update step automatically"
+#: mod/settings.php:680 mod/settings.php:706
+msgid "Redirect"
 msgstr ""
 
-#: mod/admin.php:1509
-#, php-format
-msgid ""
-"\n"
-"\t\t\tDear %1$s,\n"
-"\t\t\t\tthe administrator of %2$s has set up an account for you."
+#: mod/settings.php:681 mod/settings.php:707
+msgid "Icon url"
 msgstr ""
 
-#: mod/admin.php:1512
-#, php-format
-msgid ""
-"\n"
-"\t\t\tThe login details are as follows:\n"
-"\n"
-"\t\t\tSite Location:\t%1$s\n"
-"\t\t\tLogin Name:\t\t%2$s\n"
-"\t\t\tPassword:\t\t%3$s\n"
-"\n"
-"\t\t\tYou may change your password from your account \"Settings\" page after "
-"logging\n"
-"\t\t\tin.\n"
-"\n"
-"\t\t\tPlease take a few moments to review the other account settings on that "
-"page.\n"
-"\n"
-"\t\t\tYou may also wish to add some basic information to your default "
-"profile\n"
-"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
-"\n"
-"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
-"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - "
-"and\n"
-"\t\t\tperhaps what country you live in; if you do not wish to be more "
-"specific\n"
-"\t\t\tthan that.\n"
-"\n"
-"\t\t\tWe fully respect your right to privacy, and none of these items are "
-"necessary.\n"
-"\t\t\tIf you are new and do not know anybody here, they may help\n"
-"\t\t\tyou to make some new and interesting friends.\n"
-"\n"
-"\t\t\tThank you and welcome to %4$s."
+#: mod/settings.php:692
+msgid "You can't edit this application."
 msgstr ""
 
-#: mod/admin.php:1544 src/Model/User.php:647
-#, php-format
-msgid "Registration details for %s"
+#: mod/settings.php:735
+msgid "Connected Apps"
 msgstr ""
 
-#: mod/admin.php:1554
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] ""
-msgstr[1] ""
-
-#: mod/admin.php:1560
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] ""
-msgstr[1] ""
-
-#: mod/admin.php:1607
-#, php-format
-msgid "User '%s' deleted"
+#: mod/settings.php:737 src/Object/Post.php:155 src/Object/Post.php:157
+msgid "Edit"
 msgstr ""
 
-#: mod/admin.php:1615
-#, php-format
-msgid "User '%s' unblocked"
+#: mod/settings.php:739
+msgid "Client key starts with"
 msgstr ""
 
-#: mod/admin.php:1615
-#, php-format
-msgid "User '%s' blocked"
+#: mod/settings.php:740
+msgid "No name"
 msgstr ""
 
-#: mod/admin.php:1714 mod/admin.php:1726 mod/admin.php:1739 mod/admin.php:1757
-#: src/Content/ContactSelector.php:82
-msgid "Email"
+#: mod/settings.php:741
+msgid "Remove authorization"
 msgstr ""
 
-#: mod/admin.php:1714 mod/admin.php:1739
-msgid "Register date"
+#: mod/settings.php:752
+msgid "No Addon settings configured"
 msgstr ""
 
-#: mod/admin.php:1714 mod/admin.php:1739
-msgid "Last login"
+#: mod/settings.php:761
+msgid "Addon Settings"
 msgstr ""
 
-#: mod/admin.php:1714 mod/admin.php:1739
-msgid "Last item"
+#: mod/settings.php:775 mod/admin.php:2428 mod/admin.php:2429
+msgid "Off"
 msgstr ""
 
-#: mod/admin.php:1714 mod/settings.php:56
-msgid "Account"
+#: mod/settings.php:775 mod/admin.php:2428 mod/admin.php:2429
+msgid "On"
 msgstr ""
 
-#: mod/admin.php:1722
-msgid "Add User"
+#: mod/settings.php:782
+msgid "Additional Features"
 msgstr ""
 
-#: mod/admin.php:1724
-msgid "User registrations waiting for confirm"
+#: mod/settings.php:804 src/Content/ContactSelector.php:83
+msgid "Diaspora"
 msgstr ""
 
-#: mod/admin.php:1725
-msgid "User waiting for permanent deletion"
+#: mod/settings.php:804 mod/settings.php:805
+msgid "enabled"
 msgstr ""
 
-#: mod/admin.php:1726
-msgid "Request date"
+#: mod/settings.php:804 mod/settings.php:805
+msgid "disabled"
 msgstr ""
 
-#: mod/admin.php:1727
-msgid "No registrations."
+#: mod/settings.php:804 mod/settings.php:805
+#, php-format
+msgid "Built-in support for %s connectivity is %s"
 msgstr ""
 
-#: mod/admin.php:1728
-msgid "Note from the user"
+#: mod/settings.php:805
+msgid "GNU Social (OStatus)"
 msgstr ""
 
-#: mod/admin.php:1730
-msgid "Deny"
+#: mod/settings.php:836
+msgid "Email access is disabled on this site."
 msgstr ""
 
-#: mod/admin.php:1734
-msgid "Site admin"
+#: mod/settings.php:846
+msgid "General Social Media Settings"
 msgstr ""
 
-#: mod/admin.php:1735
-msgid "Account expired"
+#: mod/settings.php:847
+msgid "Disable intelligent shortening"
 msgstr ""
 
-#: mod/admin.php:1738
-msgid "New User"
+#: mod/settings.php:847
+msgid ""
+"Normally the system tries to find the best link to add to shortened posts. "
+"If this option is enabled then every shortened post will always point to the "
+"original friendica post."
 msgstr ""
 
-#: mod/admin.php:1739
-msgid "Deleted since"
+#: mod/settings.php:848
+msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
 msgstr ""
 
-#: mod/admin.php:1744
+#: mod/settings.php:848
 msgid ""
-"Selected users will be deleted!\\n\\nEverything these users had posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
+"If you receive a message from an unknown OStatus user, this option decides "
+"what to do. If it is checked, a new contact will be created for every "
+"unknown user."
 msgstr ""
 
-#: mod/admin.php:1745
-msgid ""
-"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
-"site will be permanently deleted!\\n\\nAre you sure?"
+#: mod/settings.php:849
+msgid "Default group for OStatus contacts"
 msgstr ""
 
-#: mod/admin.php:1755
-msgid "Name of the new user."
+#: mod/settings.php:850
+msgid "Your legacy GNU Social account"
 msgstr ""
 
-#: mod/admin.php:1756
-msgid "Nickname"
+#: mod/settings.php:850
+msgid ""
+"If you enter your old GNU Social/Statusnet account name here (in the format "
+"user@domain.tld), your contacts will be added automatically. The field will "
+"be emptied when done."
 msgstr ""
 
-#: mod/admin.php:1756
-msgid "Nickname of the new user."
+#: mod/settings.php:853
+msgid "Repair OStatus subscriptions"
 msgstr ""
 
-#: mod/admin.php:1757
-msgid "Email address of the new user."
+#: mod/settings.php:857
+msgid "Email/Mailbox Setup"
 msgstr ""
 
-#: mod/admin.php:1799
-#, php-format
-msgid "Addon %s disabled."
+#: mod/settings.php:858
+msgid ""
+"If you wish to communicate with email contacts using this service "
+"(optional), please specify how to connect to your mailbox."
 msgstr ""
 
-#: mod/admin.php:1803
-#, php-format
-msgid "Addon %s enabled."
+#: mod/settings.php:859
+msgid "Last successful email check:"
 msgstr ""
 
-#: mod/admin.php:1813 mod/admin.php:2062
-msgid "Disable"
+#: mod/settings.php:861
+msgid "IMAP server name:"
 msgstr ""
 
-#: mod/admin.php:1816 mod/admin.php:2065
-msgid "Enable"
+#: mod/settings.php:862
+msgid "IMAP port:"
 msgstr ""
 
-#: mod/admin.php:1838 mod/admin.php:2107
-msgid "Toggle"
+#: mod/settings.php:863
+msgid "Security:"
 msgstr ""
 
-#: mod/admin.php:1846 mod/admin.php:2116
-msgid "Author: "
+#: mod/settings.php:863 mod/settings.php:868
+msgid "None"
 msgstr ""
 
-#: mod/admin.php:1847 mod/admin.php:2117
-msgid "Maintainer: "
+#: mod/settings.php:864
+msgid "Email login name:"
 msgstr ""
 
-#: mod/admin.php:1899
-msgid "Reload active addons"
+#: mod/settings.php:865
+msgid "Email password:"
 msgstr ""
 
-#: mod/admin.php:1904
-#, php-format
-msgid ""
-"There are currently no addons available on your node. You can find the "
-"official addon repository at %1$s and might find other interesting addons in "
-"the open addon registry at %2$s"
+#: mod/settings.php:866
+msgid "Reply-to address:"
 msgstr ""
 
-#: mod/admin.php:2024
-msgid "No themes found."
+#: mod/settings.php:867
+msgid "Send public posts to all email contacts:"
 msgstr ""
 
-#: mod/admin.php:2098
-msgid "Screenshot"
+#: mod/settings.php:868
+msgid "Action after import:"
 msgstr ""
 
-#: mod/admin.php:2152
-msgid "Reload active themes"
+#: mod/settings.php:868 src/Content/Nav.php:191
+msgid "Mark as seen"
 msgstr ""
 
-#: mod/admin.php:2157
-#, php-format
-msgid "No themes found on the system. They should be placed in %1$s"
+#: mod/settings.php:868
+msgid "Move to folder"
 msgstr ""
 
-#: mod/admin.php:2158
-msgid "[Experimental]"
+#: mod/settings.php:869
+msgid "Move to folder:"
 msgstr ""
 
-#: mod/admin.php:2159
-msgid "[Unsupported]"
+#: mod/settings.php:903 mod/admin.php:1236
+msgid "No special theme for mobile devices"
 msgstr ""
 
-#: mod/admin.php:2183
-msgid "Log settings updated."
+#: mod/settings.php:912
+#, php-format
+msgid "%s - (Unsupported)"
 msgstr ""
 
-#: mod/admin.php:2215
-msgid "PHP log currently enabled."
+#: mod/settings.php:914
+#, php-format
+msgid "%s - (Experimental)"
 msgstr ""
 
-#: mod/admin.php:2217
-msgid "PHP log currently disabled."
+#: mod/settings.php:957
+msgid "Display Settings"
 msgstr ""
 
-#: mod/admin.php:2226
-msgid "Clear"
+#: mod/settings.php:963 mod/settings.php:987
+msgid "Display Theme:"
 msgstr ""
 
-#: mod/admin.php:2230
-msgid "Enable Debugging"
+#: mod/settings.php:964
+msgid "Mobile Theme:"
 msgstr ""
 
-#: mod/admin.php:2231
-msgid "Log file"
+#: mod/settings.php:965
+msgid "Suppress warning of insecure networks"
 msgstr ""
 
-#: mod/admin.php:2231
+#: mod/settings.php:965
 msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
+"Should the system suppress the warning that the current group contains "
+"members of networks that can't receive non public postings."
 msgstr ""
 
-#: mod/admin.php:2232
-msgid "Log level"
+#: mod/settings.php:966
+msgid "Update browser every xx seconds"
 msgstr ""
 
-#: mod/admin.php:2234
-msgid "PHP logging"
+#: mod/settings.php:966
+msgid "Minimum of 10 seconds. Enter -1 to disable it."
 msgstr ""
 
-#: mod/admin.php:2235
-msgid ""
-"To enable logging of PHP errors and warnings you can add the following to "
-"the .htconfig.php file of your installation. The filename set in the "
-"'error_log' line is relative to the friendica top-level directory and must "
-"be writeable by the web server. The option '1' for 'log_errors' and "
-"'display_errors' is to enable these options, set to '0' to disable them."
+#: mod/settings.php:967
+msgid "Number of items to display per page:"
 msgstr ""
 
-#: mod/admin.php:2266
-#, php-format
-msgid ""
-"Error trying to open <strong>%1$s</strong> log file.\\r\\n<br/>Check to see "
-"if file %1$s exist and is readable."
+#: mod/settings.php:967 mod/settings.php:968
+msgid "Maximum of 100 items"
 msgstr ""
 
-#: mod/admin.php:2270
-#, php-format
-msgid ""
-"Couldn't open <strong>%1$s</strong> log file.\\r\\n<br/>Check to see if file "
-"%1$s is readable."
+#: mod/settings.php:968
+msgid "Number of items to display per page when viewed from mobile device:"
 msgstr ""
 
-#: mod/admin.php:2361 mod/admin.php:2362 mod/settings.php:775
-msgid "Off"
+#: mod/settings.php:969
+msgid "Don't show emoticons"
 msgstr ""
 
-#: mod/admin.php:2361 mod/admin.php:2362 mod/settings.php:775
-msgid "On"
+#: mod/settings.php:970
+msgid "Calendar"
 msgstr ""
 
-#: mod/admin.php:2362
-#, php-format
-msgid "Lock feature %s"
+#: mod/settings.php:971
+msgid "Beginning of week:"
 msgstr ""
 
-#: mod/admin.php:2370
-msgid "Manage Additional Features"
+#: mod/settings.php:972
+msgid "Don't show notices"
 msgstr ""
 
-#: mod/babel.php:22
-msgid "Source input"
+#: mod/settings.php:973
+msgid "Infinite scroll"
 msgstr ""
 
-#: mod/babel.php:28
-msgid "BBCode::convert (raw HTML("
+#: mod/settings.php:974
+msgid "Automatic updates only at the top of the network page"
 msgstr ""
 
-#: mod/babel.php:33
-msgid "BBCode::convert"
+#: mod/settings.php:974
+msgid ""
+"When disabled, the network page is updated all the time, which could be "
+"confusing while reading."
 msgstr ""
 
-#: mod/babel.php:39
-msgid "BBCode::convert => HTML::toBBCode"
+#: mod/settings.php:975
+msgid "Bandwith Saver Mode"
 msgstr ""
 
-#: mod/babel.php:45
-msgid "BBCode::toMarkdown"
+#: mod/settings.php:975
+msgid ""
+"When enabled, embedded content is not displayed on automatic updates, they "
+"only show on page reload."
 msgstr ""
 
-#: mod/babel.php:51
-msgid "BBCode::toMarkdown => Markdown::convert"
+#: mod/settings.php:976
+msgid "Smart Threading"
 msgstr ""
 
-#: mod/babel.php:57
-msgid "BBCode::toMarkdown => Markdown::toBBCode"
+#: mod/settings.php:976
+msgid ""
+"When enabled, suppress extraneous thread indentation while keeping it where "
+"it matters. Only works if threading is available and enabled."
 msgstr ""
 
-#: mod/babel.php:63
-msgid "BBCode::toMarkdown =>  Markdown::convert => HTML::toBBCode"
+#: mod/settings.php:978
+msgid "General Theme Settings"
 msgstr ""
 
-#: mod/babel.php:70
-msgid "Source input \\x28Diaspora format\\x29"
+#: mod/settings.php:979
+msgid "Custom Theme Settings"
 msgstr ""
 
-#: mod/babel.php:76
-msgid "Markdown::toBBCode"
+#: mod/settings.php:980
+msgid "Content Settings"
 msgstr ""
 
-#: mod/babel.php:83
-msgid "Raw HTML input"
+#: mod/settings.php:981 view/theme/duepuntozero/config.php:73
+#: view/theme/frio/config.php:115 view/theme/quattro/config.php:75
+#: view/theme/vier/config.php:121
+msgid "Theme settings"
 msgstr ""
 
-#: mod/babel.php:88
-msgid "HTML Input"
+#: mod/settings.php:1000
+msgid "Unable to find your profile. Please contact your admin."
 msgstr ""
 
-#: mod/babel.php:94
-msgid "HTML::toBBCode"
+#: mod/settings.php:1042
+msgid "Account Types"
 msgstr ""
 
-#: mod/babel.php:100
-msgid "HTML::toPlaintext"
+#: mod/settings.php:1043
+msgid "Personal Page Subtypes"
 msgstr ""
 
-#: mod/babel.php:108
-msgid "Source text"
+#: mod/settings.php:1044
+msgid "Community Forum Subtypes"
 msgstr ""
 
-#: mod/babel.php:109
-msgid "BBCode"
+#: mod/settings.php:1051
+msgid "Personal Page"
 msgstr ""
 
-#: mod/babel.php:110
-msgid "Markdown"
+#: mod/settings.php:1052
+msgid "Account for a personal profile."
 msgstr ""
 
-#: mod/babel.php:111
-msgid "HTML"
+#: mod/settings.php:1055
+msgid "Organisation Page"
 msgstr ""
 
-#: mod/cal.php:274 mod/events.php:391 view/theme/frio/theme.php:263
-#: view/theme/frio/theme.php:267 src/Content/Nav.php:104
-#: src/Content/Nav.php:169 src/Model/Profile.php:924 src/Model/Profile.php:935
-msgid "Events"
+#: mod/settings.php:1056
+msgid ""
+"Account for an organisation that automatically approves contact requests as "
+"\"Followers\"."
 msgstr ""
 
-#: mod/cal.php:275 mod/events.php:392
-msgid "View"
+#: mod/settings.php:1059
+msgid "News Page"
 msgstr ""
 
-#: mod/cal.php:276 mod/events.php:394
-msgid "Previous"
+#: mod/settings.php:1060
+msgid ""
+"Account for a news reflector that automatically approves contact requests as "
+"\"Followers\"."
 msgstr ""
 
-#: mod/cal.php:277 mod/events.php:395 mod/install.php:209
-msgid "Next"
+#: mod/settings.php:1063
+msgid "Community Forum"
 msgstr ""
 
-#: mod/cal.php:280 mod/events.php:400 src/Model/Event.php:412
-msgid "today"
+#: mod/settings.php:1064
+msgid "Account for community discussions."
 msgstr ""
 
-#: mod/cal.php:281 mod/events.php:401 src/Util/Temporal.php:304
-#: src/Model/Event.php:413
-msgid "month"
+#: mod/settings.php:1067
+msgid "Normal Account Page"
 msgstr ""
 
-#: mod/cal.php:282 mod/events.php:402 src/Util/Temporal.php:305
-#: src/Model/Event.php:414
-msgid "week"
+#: mod/settings.php:1068
+msgid ""
+"Account for a regular personal profile that requires manual approval of "
+"\"Friends\" and \"Followers\"."
 msgstr ""
 
-#: mod/cal.php:283 mod/events.php:403 src/Util/Temporal.php:306
-#: src/Model/Event.php:415
-msgid "day"
+#: mod/settings.php:1071
+msgid "Soapbox Page"
 msgstr ""
 
-#: mod/cal.php:284 mod/events.php:404
-msgid "list"
+#: mod/settings.php:1072
+msgid ""
+"Account for a public profile that automatically approves contact requests as "
+"\"Followers\"."
 msgstr ""
 
-#: mod/cal.php:297 src/Model/User.php:204
-msgid "User not found"
+#: mod/settings.php:1075
+msgid "Public Forum"
 msgstr ""
 
-#: mod/cal.php:313
-msgid "This calendar format is not supported"
+#: mod/settings.php:1076
+msgid "Automatically approves all contact requests."
 msgstr ""
 
-#: mod/cal.php:315
-msgid "No exportable data found"
+#: mod/settings.php:1079
+msgid "Automatic Friend Page"
 msgstr ""
 
-#: mod/cal.php:332
-msgid "calendar"
+#: mod/settings.php:1080
+msgid ""
+"Account for a popular profile that automatically approves contact requests "
+"as \"Friends\"."
 msgstr ""
 
-#: mod/contacts.php:157
-#, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited."
-msgstr[0] ""
-msgstr[1] ""
+#: mod/settings.php:1083
+msgid "Private Forum [Experimental]"
+msgstr ""
 
-#: mod/contacts.php:184 mod/contacts.php:400
-msgid "Could not access contact record."
+#: mod/settings.php:1084
+msgid "Requires manual approval of contact requests."
 msgstr ""
 
-#: mod/contacts.php:194
-msgid "Could not locate selected profile."
+#: mod/settings.php:1095
+msgid "OpenID:"
 msgstr ""
 
-#: mod/contacts.php:228
-msgid "Contact updated."
+#: mod/settings.php:1095
+msgid "(Optional) Allow this OpenID to login to this account."
 msgstr ""
 
-#: mod/contacts.php:421
-msgid "Contact has been blocked"
+#: mod/settings.php:1103
+msgid "Publish your default profile in your local site directory?"
 msgstr ""
 
-#: mod/contacts.php:421
-msgid "Contact has been unblocked"
+#: mod/settings.php:1103
+#, php-format
+msgid ""
+"Your profile will be published in the global friendica directories (e.g. <a "
+"href=\"%s\">%s</a>). Your profile will be visible in public."
 msgstr ""
 
-#: mod/contacts.php:432
-msgid "Contact has been ignored"
+#: mod/settings.php:1109
+msgid "Publish your default profile in the global social directory?"
 msgstr ""
 
-#: mod/contacts.php:432
-msgid "Contact has been unignored"
+#: mod/settings.php:1109
+#, php-format
+msgid ""
+"Your profile will be published in this node's <a href=\"%s\">local "
+"directory</a>. Your profile details may be publicly visible depending on the "
+"system settings."
 msgstr ""
 
-#: mod/contacts.php:443
-msgid "Contact has been archived"
+#: mod/settings.php:1116
+msgid "Hide your contact/friend list from viewers of your default profile?"
 msgstr ""
 
-#: mod/contacts.php:443
-msgid "Contact has been unarchived"
+#: mod/settings.php:1116
+msgid ""
+"Your contact list won't be shown in your default profile page. You can "
+"decide to show your contact list separately for each additional profile you "
+"create"
 msgstr ""
 
-#: mod/contacts.php:467
-msgid "Drop contact"
+#: mod/settings.php:1120
+msgid "Hide your profile details from anonymous viewers?"
 msgstr ""
 
-#: mod/contacts.php:470 mod/contacts.php:823
-msgid "Do you really want to delete this contact?"
+#: mod/settings.php:1120
+msgid ""
+"Anonymous visitors will only see your profile picture, your display name and "
+"the nickname you are using on your profile page. Disables posting public "
+"messages to Diaspora and other networks."
 msgstr ""
 
-#: mod/contacts.php:488
-msgid "Contact has been removed."
+#: mod/settings.php:1124
+msgid "Allow friends to post to your profile page?"
 msgstr ""
 
-#: mod/contacts.php:519
-#, php-format
-msgid "You are mutual friends with %s"
+#: mod/settings.php:1124
+msgid ""
+"Your contacts may write posts on your profile wall. These posts will be "
+"distributed to your contacts"
 msgstr ""
 
-#: mod/contacts.php:523
-#, php-format
-msgid "You are sharing with %s"
+#: mod/settings.php:1128
+msgid "Allow friends to tag your posts?"
 msgstr ""
 
-#: mod/contacts.php:527
-#, php-format
-msgid "%s is sharing with you"
+#: mod/settings.php:1128
+msgid "Your contacts can add additional tags to your posts."
 msgstr ""
 
-#: mod/contacts.php:547
-msgid "Private communications are not available for this contact."
+#: mod/settings.php:1132
+msgid "Allow us to suggest you as a potential friend to new members?"
 msgstr ""
 
-#: mod/contacts.php:549
-msgid "Never"
+#: mod/settings.php:1132
+msgid "If you like, Friendica may suggest new members to add you as a contact."
 msgstr ""
 
-#: mod/contacts.php:552
-msgid "(Update was successful)"
+#: mod/settings.php:1136
+msgid "Permit unknown people to send you private mail?"
 msgstr ""
 
-#: mod/contacts.php:552
-msgid "(Update was not successful)"
+#: mod/settings.php:1136
+msgid ""
+"Friendica network users may send you private messages even if they are not "
+"in your contact list."
 msgstr ""
 
-#: mod/contacts.php:554 mod/contacts.php:992
-msgid "Suggest friends"
+#: mod/settings.php:1140
+msgid "Profile is <strong>not published</strong>."
 msgstr ""
 
-#: mod/contacts.php:558
+#: mod/settings.php:1146
 #, php-format
-msgid "Network type: %s"
+msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
 msgstr ""
 
-#: mod/contacts.php:563
-msgid "Communications lost with this contact!"
+#: mod/settings.php:1153
+msgid "Automatically expire posts after this many days:"
 msgstr ""
 
-#: mod/contacts.php:569
-msgid "Fetch further information for feeds"
+#: mod/settings.php:1153
+msgid "If empty, posts will not expire. Expired posts will be deleted"
 msgstr ""
 
-#: mod/contacts.php:571
-msgid ""
-"Fetch information like preview pictures, title and teaser from the feed "
-"item. You can activate this if the feed doesn't contain much text. Keywords "
-"are taken from the meta header in the feed item and are posted as hash tags."
+#: mod/settings.php:1154
+msgid "Advanced expiration settings"
 msgstr ""
 
-#: mod/contacts.php:573
-msgid "Fetch information"
+#: mod/settings.php:1155
+msgid "Advanced Expiration"
 msgstr ""
 
-#: mod/contacts.php:574
-msgid "Fetch keywords"
+#: mod/settings.php:1156
+msgid "Expire posts:"
 msgstr ""
 
-#: mod/contacts.php:575
-msgid "Fetch information and keywords"
+#: mod/settings.php:1157
+msgid "Expire personal notes:"
 msgstr ""
 
-#: mod/contacts.php:599 mod/unfollow.php:100
-msgid "Disconnect/Unfollow"
+#: mod/settings.php:1158
+msgid "Expire starred posts:"
 msgstr ""
 
-#: mod/contacts.php:608
-msgid "Contact"
+#: mod/settings.php:1159
+msgid "Expire photos:"
 msgstr ""
 
-#: mod/contacts.php:611
-msgid "Profile Visibility"
+#: mod/settings.php:1160
+msgid "Only expire posts by others:"
 msgstr ""
 
-#: mod/contacts.php:612
-#, php-format
-msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
+#: mod/settings.php:1190
+msgid "Account Settings"
 msgstr ""
 
-#: mod/contacts.php:613
-msgid "Contact Information / Notes"
+#: mod/settings.php:1198
+msgid "Password Settings"
 msgstr ""
 
-#: mod/contacts.php:614
-msgid "Their personal note"
+#: mod/settings.php:1199 mod/register.php:273
+msgid "New Password:"
 msgstr ""
 
-#: mod/contacts.php:616
-msgid "Edit contact notes"
+#: mod/settings.php:1200 mod/register.php:274
+msgid "Confirm:"
 msgstr ""
 
-#: mod/contacts.php:620
-msgid "Block/Unblock contact"
+#: mod/settings.php:1200
+msgid "Leave password fields blank unless changing"
 msgstr ""
 
-#: mod/contacts.php:621
-msgid "Ignore contact"
+#: mod/settings.php:1201
+msgid "Current Password:"
 msgstr ""
 
-#: mod/contacts.php:622
-msgid "Repair URL settings"
+#: mod/settings.php:1201 mod/settings.php:1202
+msgid "Your current password to confirm the changes"
 msgstr ""
 
-#: mod/contacts.php:623
-msgid "View conversations"
+#: mod/settings.php:1202
+msgid "Password:"
 msgstr ""
 
-#: mod/contacts.php:628
-msgid "Last update:"
+#: mod/settings.php:1206
+msgid "Basic Settings"
 msgstr ""
 
-#: mod/contacts.php:630
-msgid "Update public posts"
+#: mod/settings.php:1207 src/Model/Profile.php:738
+msgid "Full Name:"
 msgstr ""
 
-#: mod/contacts.php:632 mod/contacts.php:1002
-msgid "Update now"
+#: mod/settings.php:1208
+msgid "Email Address:"
 msgstr ""
 
-#: mod/contacts.php:638 mod/contacts.php:828 mod/contacts.php:1019
-msgid "Unignore"
+#: mod/settings.php:1209
+msgid "Your Timezone:"
 msgstr ""
 
-#: mod/contacts.php:642
-msgid "Currently blocked"
+#: mod/settings.php:1210
+msgid "Your Language:"
 msgstr ""
 
-#: mod/contacts.php:643
-msgid "Currently ignored"
+#: mod/settings.php:1210
+msgid ""
+"Set the language we use to show you friendica interface and to send you "
+"emails"
 msgstr ""
 
-#: mod/contacts.php:644
-msgid "Currently archived"
+#: mod/settings.php:1211
+msgid "Default Post Location:"
 msgstr ""
 
-#: mod/contacts.php:645
-msgid "Awaiting connection acknowledge"
+#: mod/settings.php:1212
+msgid "Use Browser Location:"
 msgstr ""
 
-#: mod/contacts.php:646
-msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
+#: mod/settings.php:1215
+msgid "Security and Privacy Settings"
 msgstr ""
 
-#: mod/contacts.php:647
-msgid "Notification for new posts"
+#: mod/settings.php:1217
+msgid "Maximum Friend Requests/Day:"
 msgstr ""
 
-#: mod/contacts.php:647
-msgid "Send a notification of every new post of this contact"
+#: mod/settings.php:1217 mod/settings.php:1246
+msgid "(to prevent spam abuse)"
 msgstr ""
 
-#: mod/contacts.php:650
-msgid "Blacklisted keywords"
+#: mod/settings.php:1218
+msgid "Default Post Permissions"
 msgstr ""
 
-#: mod/contacts.php:650
-msgid ""
-"Comma separated list of keywords that should not be converted to hashtags, "
-"when \"Fetch information and keywords\" is selected"
+#: mod/settings.php:1219
+msgid "(click to open/close)"
 msgstr ""
 
-#: mod/contacts.php:662 src/Model/Profile.php:424
-msgid "XMPP:"
+#: mod/settings.php:1229
+msgid "Default Private Post"
 msgstr ""
 
-#: mod/contacts.php:667
-msgid "Actions"
+#: mod/settings.php:1230
+msgid "Default Public Post"
 msgstr ""
 
-#: mod/contacts.php:669 mod/contacts.php:855 view/theme/frio/theme.php:259
-#: src/Content/Nav.php:100 src/Model/Profile.php:888
-msgid "Status"
+#: mod/settings.php:1234
+msgid "Default Permissions for New Posts"
 msgstr ""
 
-#: mod/contacts.php:670
-msgid "Contact Settings"
+#: mod/settings.php:1246
+msgid "Maximum private messages per day from unknown people:"
 msgstr ""
 
-#: mod/contacts.php:711
-msgid "Suggestions"
+#: mod/settings.php:1249
+msgid "Notification Settings"
 msgstr ""
 
-#: mod/contacts.php:714
-msgid "Suggest potential friends"
+#: mod/settings.php:1250
+msgid "By default post a status message when:"
 msgstr ""
 
-#: mod/contacts.php:722
-msgid "Show all contacts"
+#: mod/settings.php:1251
+msgid "accepting a friend request"
 msgstr ""
 
-#: mod/contacts.php:727
-msgid "Unblocked"
+#: mod/settings.php:1252
+msgid "joining a forum/community"
 msgstr ""
 
-#: mod/contacts.php:730
-msgid "Only show unblocked contacts"
+#: mod/settings.php:1253
+msgid "making an <em>interesting</em> profile change"
 msgstr ""
 
-#: mod/contacts.php:735
-msgid "Blocked"
+#: mod/settings.php:1254
+msgid "Send a notification email when:"
 msgstr ""
 
-#: mod/contacts.php:738
-msgid "Only show blocked contacts"
+#: mod/settings.php:1255
+msgid "You receive an introduction"
 msgstr ""
 
-#: mod/contacts.php:743
-msgid "Ignored"
+#: mod/settings.php:1256
+msgid "Your introductions are confirmed"
 msgstr ""
 
-#: mod/contacts.php:746
-msgid "Only show ignored contacts"
+#: mod/settings.php:1257
+msgid "Someone writes on your profile wall"
 msgstr ""
 
-#: mod/contacts.php:751
-msgid "Archived"
+#: mod/settings.php:1258
+msgid "Someone writes a followup comment"
 msgstr ""
 
-#: mod/contacts.php:754
-msgid "Only show archived contacts"
+#: mod/settings.php:1259
+msgid "You receive a private message"
 msgstr ""
 
-#: mod/contacts.php:759
-msgid "Hidden"
+#: mod/settings.php:1260
+msgid "You receive a friend suggestion"
 msgstr ""
 
-#: mod/contacts.php:762
-msgid "Only show hidden contacts"
+#: mod/settings.php:1261
+msgid "You are tagged in a post"
 msgstr ""
 
-#: mod/contacts.php:818
-msgid "Search your contacts"
+#: mod/settings.php:1262
+msgid "You are poked/prodded/etc. in a post"
 msgstr ""
 
-#: mod/contacts.php:820 mod/directory.php:210 src/Content/Widget.php:63
-msgid "Find"
+#: mod/settings.php:1264
+msgid "Activate desktop notifications"
 msgstr ""
 
-#: mod/contacts.php:826 mod/settings.php:171 mod/settings.php:701
-msgid "Update"
+#: mod/settings.php:1264
+msgid "Show desktop popup on new notifications"
 msgstr ""
 
-#: mod/contacts.php:829 mod/contacts.php:1027
-msgid "Archive"
+#: mod/settings.php:1266
+msgid "Text-only notification emails"
 msgstr ""
 
-#: mod/contacts.php:829 mod/contacts.php:1027
-msgid "Unarchive"
+#: mod/settings.php:1268
+msgid "Send text only notification emails, without the html part"
 msgstr ""
 
-#: mod/contacts.php:832
-msgid "Batch Actions"
+#: mod/settings.php:1270
+msgid "Show detailled notifications"
 msgstr ""
 
-#: mod/contacts.php:858 mod/follow.php:183 mod/unfollow.php:132
-#: src/Model/Profile.php:891
-msgid "Status Messages and Posts"
+#: mod/settings.php:1272
+msgid ""
+"Per default, notifications are condensed to a single notification per item. "
+"When enabled every notification is displayed."
 msgstr ""
 
-#: mod/contacts.php:866 src/Model/Profile.php:899
-msgid "Profile Details"
+#: mod/settings.php:1274
+msgid "Advanced Account/Page Type Settings"
 msgstr ""
 
-#: mod/contacts.php:878
-msgid "View all contacts"
+#: mod/settings.php:1275
+msgid "Change the behaviour of this account for special situations"
 msgstr ""
 
-#: mod/contacts.php:889
-msgid "View all common friends"
+#: mod/settings.php:1278
+msgid "Relocate"
 msgstr ""
 
-#: mod/contacts.php:898
-msgid "Advanced Contact Settings"
+#: mod/settings.php:1279
+msgid ""
+"If you have moved this profile from another server, and some of your "
+"contacts don't receive your updates, try pushing this button."
 msgstr ""
 
-#: mod/contacts.php:930
-msgid "Mutual Friendship"
+#: mod/settings.php:1280
+msgid "Resend relocate message to contacts"
 msgstr ""
 
-#: mod/contacts.php:934
-msgid "is a fan of yours"
+#: mod/directory.php:152 src/Model/Profile.php:421 src/Model/Profile.php:769
+msgid "Status:"
 msgstr ""
 
-#: mod/contacts.php:938
-msgid "you are a fan of"
+#: mod/directory.php:153 src/Model/Profile.php:422 src/Model/Profile.php:786
+msgid "Homepage:"
 msgstr ""
 
-#: mod/contacts.php:1013
-msgid "Toggle Blocked status"
+#: mod/directory.php:202 view/theme/vier/theme.php:201
+msgid "Global Directory"
 msgstr ""
 
-#: mod/contacts.php:1021
-msgid "Toggle Ignored status"
+#: mod/directory.php:204
+msgid "Find on this site"
 msgstr ""
 
-#: mod/contacts.php:1029
-msgid "Toggle Archive status"
+#: mod/directory.php:206
+msgid "Results for:"
 msgstr ""
 
-#: mod/contacts.php:1037
-msgid "Delete contact"
+#: mod/directory.php:208
+msgid "Site Directory"
 msgstr ""
 
-#: mod/delegate.php:37
-msgid "Parent user not found."
+#: mod/directory.php:213
+msgid "No entries (some entries may be hidden)."
 msgstr ""
 
-#: mod/delegate.php:144
-msgid "No parent user"
+#: mod/babel.php:22
+msgid "Source input"
 msgstr ""
 
-#: mod/delegate.php:159
-msgid "Parent Password:"
+#: mod/babel.php:28
+msgid "BBCode::convert (raw HTML)"
 msgstr ""
 
-#: mod/delegate.php:159
-msgid ""
-"Please enter the password of the parent account to legitimize your request."
+#: mod/babel.php:33
+msgid "BBCode::convert"
 msgstr ""
 
-#: mod/delegate.php:164
-msgid "Parent User"
+#: mod/babel.php:39
+msgid "BBCode::convert => HTML::toBBCode"
 msgstr ""
 
-#: mod/delegate.php:167
-msgid ""
-"Parent users have total control about this account, including the account "
-"settings. Please double check whom you give this access."
+#: mod/babel.php:45
+msgid "BBCode::toMarkdown"
 msgstr ""
 
-#: mod/delegate.php:169 src/Content/Nav.php:204
-msgid "Delegate Page Management"
+#: mod/babel.php:51
+msgid "BBCode::toMarkdown => Markdown::convert"
 msgstr ""
 
-#: mod/delegate.php:170
-msgid "Delegates"
+#: mod/babel.php:57
+msgid "BBCode::toMarkdown => Markdown::toBBCode"
 msgstr ""
 
-#: mod/delegate.php:172
-msgid ""
-"Delegates are able to manage all aspects of this account/page except for "
-"basic account settings. Please do not delegate your personal account to "
-"anybody that you do not trust completely."
+#: mod/babel.php:63
+msgid "BBCode::toMarkdown =>  Markdown::convert => HTML::toBBCode"
 msgstr ""
 
-#: mod/delegate.php:173
-msgid "Existing Page Delegates"
+#: mod/babel.php:70
+msgid "Source input \\x28Diaspora format\\x29"
 msgstr ""
 
-#: mod/delegate.php:175
-msgid "Potential Delegates"
+#: mod/babel.php:76
+msgid "Markdown::toBBCode"
 msgstr ""
 
-#: mod/delegate.php:178
-msgid "Add"
+#: mod/babel.php:83
+msgid "Raw HTML input"
 msgstr ""
 
-#: mod/delegate.php:179
-msgid "No entries."
+#: mod/babel.php:88
+msgid "HTML Input"
 msgstr ""
 
-#: mod/directory.php:153 src/Model/Profile.php:421 src/Model/Profile.php:769
-msgid "Status:"
+#: mod/babel.php:94
+msgid "HTML::toBBCode"
 msgstr ""
 
-#: mod/directory.php:154 src/Model/Profile.php:422 src/Model/Profile.php:786
-msgid "Homepage:"
+#: mod/babel.php:100
+msgid "HTML::toPlaintext"
 msgstr ""
 
-#: mod/directory.php:203 view/theme/vier/theme.php:201
-msgid "Global Directory"
+#: mod/babel.php:108
+msgid "Source text"
 msgstr ""
 
-#: mod/directory.php:205
-msgid "Find on this site"
+#: mod/babel.php:109
+msgid "BBCode"
 msgstr ""
 
-#: mod/directory.php:207
-msgid "Results for:"
+#: mod/babel.php:110
+msgid "Markdown"
 msgstr ""
 
-#: mod/directory.php:209
-msgid "Site Directory"
+#: mod/babel.php:111
+msgid "HTML"
 msgstr ""
 
-#: mod/directory.php:214
-msgid "No entries (some entries may be hidden)."
+#: mod/follow.php:45
+msgid "The contact could not be added."
 msgstr ""
 
-#: mod/dirfind.php:49
-#, php-format
-msgid "People Search - %s"
+#: mod/follow.php:73
+msgid "You already added this contact."
 msgstr ""
 
-#: mod/dirfind.php:60
-#, php-format
-msgid "Forum Search - %s"
+#: mod/follow.php:83
+msgid "Diaspora support isn't enabled. Contact can't be added."
 msgstr ""
 
-#: mod/events.php:105 mod/events.php:107
-msgid "Event can not end before it has started."
+#: mod/follow.php:90
+msgid "OStatus support is disabled. Contact can't be added."
 msgstr ""
 
-#: mod/events.php:114 mod/events.php:116
-msgid "Event title and start time are required."
+#: mod/follow.php:97
+msgid "The network type couldn't be detected. Contact can't be added."
 msgstr ""
 
-#: mod/events.php:393
-msgid "Create New Event"
+#: mod/profiles.php:58
+msgid "Profile deleted."
 msgstr ""
 
-#: mod/events.php:506
-msgid "Event details"
+#: mod/profiles.php:74 mod/profiles.php:110
+msgid "Profile-"
 msgstr ""
 
-#: mod/events.php:507
-msgid "Starting date and Title are required."
+#: mod/profiles.php:93 mod/profiles.php:132
+msgid "New profile created."
 msgstr ""
 
-#: mod/events.php:508 mod/events.php:509
-msgid "Event Starts:"
+#: mod/profiles.php:116
+msgid "Profile unavailable to clone."
 msgstr ""
 
-#: mod/events.php:508 mod/events.php:520 mod/profiles.php:699
-msgid "Required"
+#: mod/profiles.php:206
+msgid "Profile Name is required."
 msgstr ""
 
-#: mod/events.php:510 mod/events.php:526
-msgid "Finish date/time is not known or not relevant"
+#: mod/profiles.php:347
+msgid "Marital Status"
 msgstr ""
 
-#: mod/events.php:512 mod/events.php:513
-msgid "Event Finishes:"
+#: mod/profiles.php:351
+msgid "Romantic Partner"
 msgstr ""
 
-#: mod/events.php:514 mod/events.php:527
-msgid "Adjust for viewer timezone"
+#: mod/profiles.php:363
+msgid "Work/Employment"
 msgstr ""
 
-#: mod/events.php:516
-msgid "Description:"
+#: mod/profiles.php:366
+msgid "Religion"
 msgstr ""
 
-#: mod/events.php:520 mod/events.php:522
-msgid "Title:"
+#: mod/profiles.php:370
+msgid "Political Views"
 msgstr ""
 
-#: mod/events.php:523 mod/events.php:524
-msgid "Share this event"
+#: mod/profiles.php:374
+msgid "Gender"
 msgstr ""
 
-#: mod/events.php:531 src/Model/Profile.php:864
-msgid "Basic"
+#: mod/profiles.php:378
+msgid "Sexual Preference"
 msgstr ""
 
-#: mod/events.php:552
-msgid "Failed to remove event"
+#: mod/profiles.php:382
+msgid "XMPP"
 msgstr ""
 
-#: mod/events.php:554
-msgid "Event removed"
+#: mod/profiles.php:386
+msgid "Homepage"
 msgstr ""
 
-#: mod/feedtest.php:20
-msgid "You must be logged in to use this module"
+#: mod/profiles.php:390 mod/profiles.php:686
+msgid "Interests"
 msgstr ""
 
-#: mod/feedtest.php:48
-msgid "Source URL"
+#: mod/profiles.php:394 mod/admin.php:490
+msgid "Address"
 msgstr ""
 
-#: mod/follow.php:45
-msgid "The contact could not be added."
+#: mod/profiles.php:401 mod/profiles.php:682
+msgid "Location"
 msgstr ""
 
-#: mod/follow.php:73
-msgid "You already added this contact."
+#: mod/profiles.php:486
+msgid "Profile updated."
 msgstr ""
 
-#: mod/follow.php:83
-msgid "Diaspora support isn't enabled. Contact can't be added."
+#: mod/profiles.php:564
+msgid " and "
 msgstr ""
 
-#: mod/follow.php:90
-msgid "OStatus support is disabled. Contact can't be added."
+#: mod/profiles.php:573
+msgid "public profile"
 msgstr ""
 
-#: mod/follow.php:97
-msgid "The network type couldn't be detected. Contact can't be added."
+#: mod/profiles.php:576
+#, php-format
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
 msgstr ""
 
-#: mod/install.php:114
-msgid "Friendica Communications Server - Setup"
+#: mod/profiles.php:577
+#, php-format
+msgid " - Visit %1$s's %2$s"
 msgstr ""
 
-#: mod/install.php:120
-msgid "Could not connect to database."
+#: mod/profiles.php:579
+#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
 msgstr ""
 
-#: mod/install.php:124
-msgid "Could not create table."
+#: mod/profiles.php:633
+msgid "Hide contacts and friends:"
 msgstr ""
 
-#: mod/install.php:130
-msgid "Your Friendica site database has been installed."
+#: mod/profiles.php:638
+msgid "Hide your contact/friend list from viewers of this profile?"
 msgstr ""
 
-#: mod/install.php:135
-msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
+#: mod/profiles.php:658
+msgid "Show more profile fields:"
 msgstr ""
 
-#: mod/install.php:136 mod/install.php:208 mod/install.php:558
-msgid "Please see the file \"INSTALL.txt\"."
+#: mod/profiles.php:670
+msgid "Profile Actions"
 msgstr ""
 
-#: mod/install.php:148
-msgid "Database already in use."
+#: mod/profiles.php:671
+msgid "Edit Profile Details"
 msgstr ""
 
-#: mod/install.php:205
-msgid "System check"
+#: mod/profiles.php:673
+msgid "Change Profile Photo"
 msgstr ""
 
-#: mod/install.php:210
-msgid "Check again"
+#: mod/profiles.php:674
+msgid "View this profile"
 msgstr ""
 
-#: mod/install.php:230
-msgid "Database connection"
+#: mod/profiles.php:675 mod/profiles.php:770 src/Model/Profile.php:393
+msgid "Edit visibility"
 msgstr ""
 
-#: mod/install.php:231
-msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
+#: mod/profiles.php:676
+msgid "Create a new profile using these settings"
 msgstr ""
 
-#: mod/install.php:232
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
+#: mod/profiles.php:677
+msgid "Clone this profile"
 msgstr ""
 
-#: mod/install.php:233
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
+#: mod/profiles.php:678
+msgid "Delete this profile"
 msgstr ""
 
-#: mod/install.php:237
-msgid "Database Server Name"
+#: mod/profiles.php:680
+msgid "Basic information"
 msgstr ""
 
-#: mod/install.php:238
-msgid "Database Login Name"
+#: mod/profiles.php:681
+msgid "Profile picture"
 msgstr ""
 
-#: mod/install.php:239
-msgid "Database Login Password"
+#: mod/profiles.php:683
+msgid "Preferences"
 msgstr ""
 
-#: mod/install.php:239
-msgid "For security reasons the password must not be empty"
+#: mod/profiles.php:684
+msgid "Status information"
 msgstr ""
 
-#: mod/install.php:240
-msgid "Database Name"
+#: mod/profiles.php:685
+msgid "Additional information"
 msgstr ""
 
-#: mod/install.php:241 mod/install.php:281
-msgid "Site administrator email address"
+#: mod/profiles.php:688
+msgid "Relation"
 msgstr ""
 
-#: mod/install.php:241 mod/install.php:281
-msgid ""
-"Your account email address must match this in order to use the web admin "
-"panel."
+#: mod/profiles.php:689 src/Util/Temporal.php:81 src/Util/Temporal.php:83
+msgid "Miscellaneous"
 msgstr ""
 
-#: mod/install.php:245 mod/install.php:284
-msgid "Please select a default timezone for your website"
+#: mod/profiles.php:692
+msgid "Your Gender:"
 msgstr ""
 
-#: mod/install.php:271
-msgid "Site settings"
+#: mod/profiles.php:693
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
 msgstr ""
 
-#: mod/install.php:285
-msgid "System Language:"
+#: mod/profiles.php:694 src/Model/Profile.php:782
+msgid "Sexual Preference:"
 msgstr ""
 
-#: mod/install.php:285
-msgid ""
-"Set the default language for your Friendica installation interface and to "
-"send emails."
+#: mod/profiles.php:695
+msgid "Example: fishing photography software"
 msgstr ""
 
-#: mod/install.php:325
-msgid "Could not find a command line version of PHP in the web server PATH."
+#: mod/profiles.php:700
+msgid "Profile Name:"
 msgstr ""
 
-#: mod/install.php:326
+#: mod/profiles.php:702
 msgid ""
-"If you don't have a command line version of PHP installed on your server, "
-"you will not be able to run the background processing. See <a href='https://"
-"github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-"
-"worker'>'Setup the worker'</a>"
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
 msgstr ""
 
-#: mod/install.php:330
-msgid "PHP executable path"
+#: mod/profiles.php:703
+msgid "Your Full Name:"
 msgstr ""
 
-#: mod/install.php:330
-msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
+#: mod/profiles.php:704
+msgid "Title/Description:"
 msgstr ""
 
-#: mod/install.php:335
-msgid "Command line PHP"
+#: mod/profiles.php:707
+msgid "Street Address:"
 msgstr ""
 
-#: mod/install.php:344
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+#: mod/profiles.php:708
+msgid "Locality/City:"
 msgstr ""
 
-#: mod/install.php:345
-msgid "Found PHP version: "
+#: mod/profiles.php:709
+msgid "Region/State:"
 msgstr ""
 
-#: mod/install.php:347
-msgid "PHP cli binary"
+#: mod/profiles.php:710
+msgid "Postal/Zip Code:"
 msgstr ""
 
-#: mod/install.php:358
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
+#: mod/profiles.php:711
+msgid "Country:"
 msgstr ""
 
-#: mod/install.php:359
-msgid "This is required for message delivery to work."
+#: mod/profiles.php:712 src/Util/Temporal.php:149
+msgid "Age: "
 msgstr ""
 
-#: mod/install.php:361
-msgid "PHP register_argc_argv"
+#: mod/profiles.php:715
+msgid "Who: (if applicable)"
 msgstr ""
 
-#: mod/install.php:384
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
+#: mod/profiles.php:715
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
 msgstr ""
 
-#: mod/install.php:385
-msgid ""
-"If running under Windows, please see \"http://www.php.net/manual/en/openssl."
-"installation.php\"."
+#: mod/profiles.php:716
+msgid "Since [date]:"
 msgstr ""
 
-#: mod/install.php:387
-msgid "Generate encryption keys"
+#: mod/profiles.php:718
+msgid "Tell us about yourself..."
 msgstr ""
 
-#: mod/install.php:394
-msgid "libCurl PHP module"
+#: mod/profiles.php:719
+msgid "XMPP (Jabber) address:"
 msgstr ""
 
-#: mod/install.php:395
-msgid "GD graphics PHP module"
+#: mod/profiles.php:719
+msgid ""
+"The XMPP address will be propagated to your contacts so that they can follow "
+"you."
 msgstr ""
 
-#: mod/install.php:396
-msgid "OpenSSL PHP module"
+#: mod/profiles.php:720
+msgid "Homepage URL:"
 msgstr ""
 
-#: mod/install.php:397
-msgid "PDO or MySQLi PHP module"
+#: mod/profiles.php:721 src/Model/Profile.php:790
+msgid "Hometown:"
 msgstr ""
 
-#: mod/install.php:398
-msgid "mb_string PHP module"
+#: mod/profiles.php:722 src/Model/Profile.php:798
+msgid "Political Views:"
 msgstr ""
 
-#: mod/install.php:399
-msgid "XML PHP module"
+#: mod/profiles.php:723
+msgid "Religious Views:"
 msgstr ""
 
-#: mod/install.php:400
-msgid "iconv PHP module"
+#: mod/profiles.php:724
+msgid "Public Keywords:"
 msgstr ""
 
-#: mod/install.php:401
-msgid "POSIX PHP module"
+#: mod/profiles.php:724
+msgid "(Used for suggesting potential friends, can be seen by others)"
 msgstr ""
 
-#: mod/install.php:405 mod/install.php:407
-msgid "Apache mod_rewrite module"
+#: mod/profiles.php:725
+msgid "Private Keywords:"
 msgstr ""
 
-#: mod/install.php:405
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
+#: mod/profiles.php:725
+msgid "(Used for searching profiles, never shown to others)"
 msgstr ""
 
-#: mod/install.php:413
-msgid "Error: libCURL PHP module required but not installed."
+#: mod/profiles.php:726 src/Model/Profile.php:814
+msgid "Likes:"
 msgstr ""
 
-#: mod/install.php:417
-msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
+#: mod/profiles.php:727 src/Model/Profile.php:818
+msgid "Dislikes:"
 msgstr ""
 
-#: mod/install.php:421
-msgid "Error: openssl PHP module required but not installed."
+#: mod/profiles.php:728
+msgid "Musical interests"
 msgstr ""
 
-#: mod/install.php:425
-msgid "Error: PDO or MySQLi PHP module required but not installed."
+#: mod/profiles.php:729
+msgid "Books, literature"
 msgstr ""
 
-#: mod/install.php:429
-msgid "Error: The MySQL driver for PDO is not installed."
+#: mod/profiles.php:730
+msgid "Television"
 msgstr ""
 
-#: mod/install.php:433
-msgid "Error: mb_string PHP module required but not installed."
+#: mod/profiles.php:731
+msgid "Film/dance/culture/entertainment"
 msgstr ""
 
-#: mod/install.php:437
-msgid "Error: iconv PHP module required but not installed."
+#: mod/profiles.php:732
+msgid "Hobbies/Interests"
 msgstr ""
 
-#: mod/install.php:441
-msgid "Error: POSIX PHP module required but not installed."
+#: mod/profiles.php:733
+msgid "Love/romance"
 msgstr ""
 
-#: mod/install.php:451
-msgid "Error, XML PHP module required but not installed."
+#: mod/profiles.php:734
+msgid "Work/employment"
 msgstr ""
 
-#: mod/install.php:463
-msgid ""
-"The web installer needs to be able to create a file called \".htconfig.php\" "
-"in the top folder of your web server and it is unable to do so."
+#: mod/profiles.php:735
+msgid "School/education"
 msgstr ""
 
-#: mod/install.php:464
-msgid ""
-"This is most often a permission setting, as the web server may not be able "
-"to write files in your folder - even if you can."
+#: mod/profiles.php:736
+msgid "Contact information and Social Networks"
 msgstr ""
 
-#: mod/install.php:465
-msgid ""
-"At the end of this procedure, we will give you a text to save in a file "
-"named .htconfig.php in your Friendica top folder."
+#: mod/profiles.php:767 src/Model/Profile.php:389
+msgid "Profile Image"
 msgstr ""
 
-#: mod/install.php:466
-msgid ""
-"You can alternatively skip this procedure and perform a manual installation. "
-"Please see the file \"INSTALL.txt\" for instructions."
+#: mod/profiles.php:769 src/Model/Profile.php:392
+msgid "visible to everybody"
 msgstr ""
 
-#: mod/install.php:469
-msgid ".htconfig.php is writable"
+#: mod/profiles.php:776
+msgid "Edit/Manage Profiles"
 msgstr ""
 
-#: mod/install.php:479
-msgid ""
-"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
-"compiles templates to PHP to speed up rendering."
+#: mod/profiles.php:777 src/Model/Profile.php:379 src/Model/Profile.php:401
+msgid "Change profile photo"
 msgstr ""
 
-#: mod/install.php:480
-msgid ""
-"In order to store these compiled templates, the web server needs to have "
-"write access to the directory view/smarty3/ under the Friendica top level "
-"folder."
+#: mod/profiles.php:778 src/Model/Profile.php:380
+msgid "Create New Profile"
 msgstr ""
 
-#: mod/install.php:481
+#: mod/register.php:99
 msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has "
-"write access to this folder."
+"Registration successful. Please check your email for further instructions."
 msgstr ""
 
-#: mod/install.php:482
+#: mod/register.php:103
+#, php-format
 msgid ""
-"Note: as a security measure, you should give the web server write access to "
-"view/smarty3/ only--not the template files (.tpl) that it contains."
+"Failed to send email message. Here your accout details:<br> login: %s<br> "
+"password: %s<br><br>You can change your password after login."
 msgstr ""
 
-#: mod/install.php:485
-msgid "view/smarty3 is writable"
+#: mod/register.php:110
+msgid "Registration successful."
 msgstr ""
 
-#: mod/install.php:501
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
+#: mod/register.php:115
+msgid "Your registration can not be processed."
 msgstr ""
 
-#: mod/install.php:503
-msgid "Url rewrite is working"
+#: mod/register.php:162
+msgid "Your registration is pending approval by the site owner."
 msgstr ""
 
-#: mod/install.php:522
-msgid "ImageMagick PHP extension is not installed"
+#: mod/register.php:220
+msgid ""
+"You may (optionally) fill in this form via OpenID by supplying your OpenID "
+"and clicking 'Register'."
 msgstr ""
 
-#: mod/install.php:524
-msgid "ImageMagick PHP extension is installed"
+#: mod/register.php:221
+msgid ""
+"If you are not familiar with OpenID, please leave that field blank and fill "
+"in the rest of the items."
 msgstr ""
 
-#: mod/install.php:526
-msgid "ImageMagick supports GIF"
+#: mod/register.php:222
+msgid "Your OpenID (optional): "
 msgstr ""
 
-#: mod/install.php:533
-msgid ""
-"The database configuration file \".htconfig.php\" could not be written. "
-"Please use the enclosed text to create a configuration file in your web "
-"server root."
+#: mod/register.php:234
+msgid "Include your profile in member directory?"
 msgstr ""
 
-#: mod/install.php:556
-msgid "<h1>What next</h1>"
+#: mod/register.php:259
+msgid "Note for the admin"
 msgstr ""
 
-#: mod/install.php:557
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the worker."
+#: mod/register.php:259
+msgid "Leave a message for the admin, why you want to join this node"
 msgstr ""
 
-#: mod/install.php:560
-#, php-format
-msgid ""
-"Go to your new Friendica node <a href=\"%s/register\">registration page</a> "
-"and register as new user. Remember to use the same email you have entered as "
-"administrator email. This will allow you to enter the site admin panel."
+#: mod/register.php:260
+msgid "Membership on this site is by invitation only."
 msgstr ""
 
-#: mod/item.php:114
-msgid "Unable to locate original post."
+#: mod/register.php:261
+msgid "Your invitation code: "
 msgstr ""
 
-#: mod/item.php:274
-msgid "Empty post discarded."
+#: mod/register.php:264 mod/admin.php:1348
+msgid "Registration"
 msgstr ""
 
-#: mod/item.php:799
-#, php-format
+#: mod/register.php:270
+msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
+msgstr ""
+
+#: mod/register.php:271
 msgid ""
-"This message was sent to you by %s, a member of the Friendica social network."
+"Your Email Address: (Initial information will be send there, so this has to "
+"be an existing address.)"
 msgstr ""
 
-#: mod/item.php:801
-#, php-format
-msgid "You may visit them online at %s"
+#: mod/register.php:273
+msgid "Leave empty for an auto generated password."
 msgstr ""
 
-#: mod/item.php:802
+#: mod/register.php:275
+#, php-format
 msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
+"Choose a profile nickname. This must begin with a text character. Your "
+"profile address on this site will then be '<strong>nickname@%s</strong>'."
 msgstr ""
 
-#: mod/item.php:806
-#, php-format
-msgid "%s posted an update."
+#: mod/register.php:276
+msgid "Choose a nickname: "
 msgstr ""
 
-#: mod/oexchange.php:30
-msgid "Post successful."
+#: mod/register.php:279 src/Content/Nav.php:128 src/Module/Login.php:283
+msgid "Register"
 msgstr ""
 
-#: mod/ostatus_subscribe.php:21
-msgid "Subscribing to OStatus contacts"
+#: mod/register.php:286
+msgid "Import your profile to this friendica instance"
 msgstr ""
 
-#: mod/ostatus_subscribe.php:33
-msgid "No contact provided."
+#: mod/register.php:288 mod/admin.php:188 mod/admin.php:302 mod/tos.php:48
+msgid "Terms of Service"
 msgstr ""
 
-#: mod/ostatus_subscribe.php:40
-msgid "Couldn't fetch information for contact."
+#: mod/friendica.php:77
+msgid "This is Friendica, version"
 msgstr ""
 
-#: mod/ostatus_subscribe.php:50
-msgid "Couldn't fetch friends for contact."
+#: mod/friendica.php:78
+msgid "running at web location"
 msgstr ""
 
-#: mod/ostatus_subscribe.php:78
-msgid "success"
+#: mod/friendica.php:82
+msgid ""
+"Please visit <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more "
+"about the Friendica project."
 msgstr ""
 
-#: mod/ostatus_subscribe.php:80
-msgid "failed"
+#: mod/friendica.php:86
+msgid "Bug reports and issues: please visit"
 msgstr ""
 
-#: mod/ostatus_subscribe.php:83 src/Object/Post.php:279
-msgid "ignored"
+#: mod/friendica.php:86
+msgid "the bugtracker at github"
 msgstr ""
 
-#: mod/profile_photo.php:55
-msgid "Image uploaded but image cropping failed."
+#: mod/friendica.php:89
+msgid ""
+"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
+"dot com"
 msgstr ""
 
-#: mod/profile_photo.php:88 mod/profile_photo.php:96 mod/profile_photo.php:104
-#: mod/profile_photo.php:315
-#, php-format
-msgid "Image size reduction [%s] failed."
+#: mod/friendica.php:103
+msgid "Installed addons/apps:"
 msgstr ""
 
-#: mod/profile_photo.php:125
-msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
+#: mod/friendica.php:117
+msgid "No installed addons/apps"
 msgstr ""
 
-#: mod/profile_photo.php:134
-msgid "Unable to process image"
+#: mod/friendica.php:122
+#, php-format
+msgid "Read about the <a href=\"%1$s/tos\">Terms of Service</a> of this node."
 msgstr ""
 
-#: mod/profile_photo.php:247
-msgid "Upload File:"
+#: mod/friendica.php:127
+msgid "On this server the following remote servers are blocked."
 msgstr ""
 
-#: mod/profile_photo.php:248
-msgid "Select a profile:"
+#: mod/friendica.php:128 mod/admin.php:354 mod/admin.php:372
+msgid "Reason for the block"
 msgstr ""
 
-#: mod/profile_photo.php:253
-msgid "or"
+#: mod/admin.php:106
+msgid "Theme settings updated."
 msgstr ""
 
-#: mod/profile_photo.php:253
-msgid "skip this step"
+#: mod/admin.php:179 src/Content/Nav.php:174
+msgid "Information"
 msgstr ""
 
-#: mod/profile_photo.php:253
-msgid "select a photo from your photo albums"
+#: mod/admin.php:180
+msgid "Overview"
 msgstr ""
 
-#: mod/profile_photo.php:266
-msgid "Crop Image"
+#: mod/admin.php:181 mod/admin.php:718
+msgid "Federation Statistics"
 msgstr ""
 
-#: mod/profile_photo.php:267
-msgid "Please adjust the image cropping for optimum viewing."
+#: mod/admin.php:182
+msgid "Configuration"
 msgstr ""
 
-#: mod/profile_photo.php:269
-msgid "Done Editing"
+#: mod/admin.php:183 mod/admin.php:1345
+msgid "Site"
 msgstr ""
 
-#: mod/profile_photo.php:305
-msgid "Image uploaded successfully."
+#: mod/admin.php:184 mod/admin.php:1273 mod/admin.php:1788 mod/admin.php:1804
+msgid "Users"
 msgstr ""
 
-#: mod/profiles.php:57
-msgid "Profile deleted."
+#: mod/admin.php:186 mod/admin.php:2173 mod/admin.php:2217
+msgid "Themes"
 msgstr ""
 
-#: mod/profiles.php:73 mod/profiles.php:109
-msgid "Profile-"
+#: mod/admin.php:189
+msgid "Database"
 msgstr ""
 
-#: mod/profiles.php:92 mod/profiles.php:131
-msgid "New profile created."
+#: mod/admin.php:190
+msgid "DB updates"
 msgstr ""
 
-#: mod/profiles.php:115
-msgid "Profile unavailable to clone."
+#: mod/admin.php:191 mod/admin.php:753
+msgid "Inspect Queue"
 msgstr ""
 
-#: mod/profiles.php:205
-msgid "Profile Name is required."
+#: mod/admin.php:192
+msgid "Tools"
 msgstr ""
 
-#: mod/profiles.php:346
-msgid "Marital Status"
+#: mod/admin.php:193
+msgid "Contact Blocklist"
 msgstr ""
 
-#: mod/profiles.php:350
-msgid "Romantic Partner"
+#: mod/admin.php:194 mod/admin.php:362
+msgid "Server Blocklist"
 msgstr ""
 
-#: mod/profiles.php:362
-msgid "Work/Employment"
+#: mod/admin.php:195 mod/admin.php:521
+msgid "Delete Item"
 msgstr ""
 
-#: mod/profiles.php:365
-msgid "Religion"
+#: mod/admin.php:196 mod/admin.php:197 mod/admin.php:2291
+msgid "Logs"
 msgstr ""
 
-#: mod/profiles.php:369
-msgid "Political Views"
+#: mod/admin.php:198 mod/admin.php:2358
+msgid "View Logs"
 msgstr ""
 
-#: mod/profiles.php:373
-msgid "Gender"
+#: mod/admin.php:200
+msgid "Diagnostics"
 msgstr ""
 
-#: mod/profiles.php:377
-msgid "Sexual Preference"
+#: mod/admin.php:201
+msgid "PHP Info"
 msgstr ""
 
-#: mod/profiles.php:381
-msgid "XMPP"
+#: mod/admin.php:202
+msgid "probe address"
 msgstr ""
 
-#: mod/profiles.php:385
-msgid "Homepage"
+#: mod/admin.php:203
+msgid "check webfinger"
 msgstr ""
 
-#: mod/profiles.php:389 mod/profiles.php:685
-msgid "Interests"
+#: mod/admin.php:222 src/Content/Nav.php:217
+msgid "Admin"
 msgstr ""
 
-#: mod/profiles.php:400 mod/profiles.php:681
-msgid "Location"
+#: mod/admin.php:223
+msgid "Addon Features"
 msgstr ""
 
-#: mod/profiles.php:485
-msgid "Profile updated."
+#: mod/admin.php:224
+msgid "User registrations waiting for confirmation"
 msgstr ""
 
-#: mod/profiles.php:563
-msgid " and "
+#: mod/admin.php:301 mod/admin.php:361 mod/admin.php:478 mod/admin.php:520
+#: mod/admin.php:717 mod/admin.php:752 mod/admin.php:848 mod/admin.php:1344
+#: mod/admin.php:1787 mod/admin.php:1903 mod/admin.php:1963 mod/admin.php:2172
+#: mod/admin.php:2216 mod/admin.php:2290 mod/admin.php:2357
+msgid "Administration"
 msgstr ""
 
-#: mod/profiles.php:572
-msgid "public profile"
+#: mod/admin.php:303
+msgid "Display Terms of Service"
 msgstr ""
 
-#: mod/profiles.php:575
-#, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+#: mod/admin.php:303
+msgid ""
+"Enable the Terms of Service page. If this is enabled a link to the terms "
+"will be added to the registration form and the general information page."
 msgstr ""
 
-#: mod/profiles.php:576
-#, php-format
-msgid " - Visit %1$s's %2$s"
+#: mod/admin.php:304
+msgid "Display Privacy Statement"
 msgstr ""
 
-#: mod/profiles.php:578
+#: mod/admin.php:304
 #, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
+msgid ""
+"Show some informations regarding the needed information to operate the node "
+"according e.g. to <a href=\"%s\" target=\"_blank\">EU-GDPR</a>."
 msgstr ""
 
-#: mod/profiles.php:632
-msgid "Hide contacts and friends:"
+#: mod/admin.php:305
+msgid "The Terms of Usage"
 msgstr ""
 
-#: mod/profiles.php:637
-msgid "Hide your contact/friend list from viewers of this profile?"
+#: mod/admin.php:305
+msgid ""
+"Enter the Terms of Service for your node here. You can use BBCode. Headers "
+"of sections should be [h2] and below."
 msgstr ""
 
-#: mod/profiles.php:657
-msgid "Show more profile fields:"
+#: mod/admin.php:353
+msgid "The blocked domain"
 msgstr ""
 
-#: mod/profiles.php:669
-msgid "Profile Actions"
+#: mod/admin.php:354 mod/admin.php:367
+msgid "The reason why you blocked this domain."
 msgstr ""
 
-#: mod/profiles.php:670
-msgid "Edit Profile Details"
+#: mod/admin.php:355
+msgid "Delete domain"
 msgstr ""
 
-#: mod/profiles.php:672
-msgid "Change Profile Photo"
+#: mod/admin.php:355
+msgid "Check to delete this entry from the blocklist"
 msgstr ""
 
-#: mod/profiles.php:673
-msgid "View this profile"
+#: mod/admin.php:363
+msgid ""
+"This page can be used to define a black list of servers from the federated "
+"network that are not allowed to interact with your node. For all entered "
+"domains you should also give a reason why you have blocked the remote server."
 msgstr ""
 
-#: mod/profiles.php:674 mod/profiles.php:769 src/Model/Profile.php:393
-msgid "Edit visibility"
+#: mod/admin.php:364
+msgid ""
+"The list of blocked servers will be made publically available on the /"
+"friendica page so that your users and people investigating communication "
+"problems can find the reason easily."
 msgstr ""
 
-#: mod/profiles.php:675
-msgid "Create a new profile using these settings"
+#: mod/admin.php:365
+msgid "Add new entry to block list"
 msgstr ""
 
-#: mod/profiles.php:676
-msgid "Clone this profile"
+#: mod/admin.php:366
+msgid "Server Domain"
 msgstr ""
 
-#: mod/profiles.php:677
-msgid "Delete this profile"
+#: mod/admin.php:366
+msgid ""
+"The domain of the new server to add to the block list. Do not include the "
+"protocol."
 msgstr ""
 
-#: mod/profiles.php:679
-msgid "Basic information"
+#: mod/admin.php:367
+msgid "Block reason"
 msgstr ""
 
-#: mod/profiles.php:680
-msgid "Profile picture"
+#: mod/admin.php:368
+msgid "Add Entry"
 msgstr ""
 
-#: mod/profiles.php:682
-msgid "Preferences"
+#: mod/admin.php:369
+msgid "Save changes to the blocklist"
 msgstr ""
 
-#: mod/profiles.php:683
-msgid "Status information"
+#: mod/admin.php:370
+msgid "Current Entries in the Blocklist"
 msgstr ""
 
-#: mod/profiles.php:684
-msgid "Additional information"
+#: mod/admin.php:373
+msgid "Delete entry from blocklist"
 msgstr ""
 
-#: mod/profiles.php:687
-msgid "Relation"
+#: mod/admin.php:376
+msgid "Delete entry from blocklist?"
 msgstr ""
 
-#: mod/profiles.php:688 src/Util/Temporal.php:81 src/Util/Temporal.php:83
-msgid "Miscellaneous"
+#: mod/admin.php:402
+msgid "Server added to blocklist."
 msgstr ""
 
-#: mod/profiles.php:691
-msgid "Your Gender:"
+#: mod/admin.php:418
+msgid "Site blocklist updated."
 msgstr ""
 
-#: mod/profiles.php:692
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+#: mod/admin.php:441 src/Core/Console/GlobalCommunityBlock.php:72
+msgid "The contact has been blocked from the node"
 msgstr ""
 
-#: mod/profiles.php:693 src/Model/Profile.php:782
-msgid "Sexual Preference:"
+#: mod/admin.php:443 src/Core/Console/GlobalCommunityBlock.php:69
+#, php-format
+msgid "Could not find any contact entry for this URL (%s)"
 msgstr ""
 
-#: mod/profiles.php:694
-msgid "Example: fishing photography software"
-msgstr ""
+#: mod/admin.php:450
+#, php-format
+msgid "%s contact unblocked"
+msgid_plural "%s contacts unblocked"
+msgstr[0] ""
+msgstr[1] ""
 
-#: mod/profiles.php:699
-msgid "Profile Name:"
+#: mod/admin.php:479
+msgid "Remote Contact Blocklist"
 msgstr ""
 
-#: mod/profiles.php:701
+#: mod/admin.php:480
 msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"be visible to anybody using the internet."
-msgstr ""
-
-#: mod/profiles.php:702
-msgid "Your Full Name:"
+"This page allows you to prevent any message from a remote contact to reach "
+"your node."
 msgstr ""
 
-#: mod/profiles.php:703
-msgid "Title/Description:"
+#: mod/admin.php:481
+msgid "Block Remote Contact"
 msgstr ""
 
-#: mod/profiles.php:706
-msgid "Street Address:"
+#: mod/admin.php:482 mod/admin.php:1790
+msgid "select all"
 msgstr ""
 
-#: mod/profiles.php:707
-msgid "Locality/City:"
+#: mod/admin.php:483
+msgid "select none"
 msgstr ""
 
-#: mod/profiles.php:708
-msgid "Region/State:"
+#: mod/admin.php:486
+msgid "No remote contact is blocked from this node."
 msgstr ""
 
-#: mod/profiles.php:709
-msgid "Postal/Zip Code:"
+#: mod/admin.php:488
+msgid "Blocked Remote Contacts"
 msgstr ""
 
-#: mod/profiles.php:710
-msgid "Country:"
+#: mod/admin.php:489
+msgid "Block New Remote Contact"
 msgstr ""
 
-#: mod/profiles.php:711 src/Util/Temporal.php:149
-msgid "Age: "
+#: mod/admin.php:490
+msgid "Photo"
 msgstr ""
 
-#: mod/profiles.php:714
-msgid "Who: (if applicable)"
+#: mod/admin.php:498
+#, php-format
+msgid "%s total blocked contact"
+msgid_plural "%s total blocked contacts"
+msgstr[0] ""
+msgstr[1] ""
+
+#: mod/admin.php:500
+msgid "URL of the remote contact to block."
 msgstr ""
 
-#: mod/profiles.php:714
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+#: mod/admin.php:522
+msgid "Delete this Item"
 msgstr ""
 
-#: mod/profiles.php:715
-msgid "Since [date]:"
+#: mod/admin.php:523
+msgid ""
+"On this page you can delete an item from your node. If the item is a top "
+"level posting, the entire thread will be deleted."
 msgstr ""
 
-#: mod/profiles.php:717
-msgid "Tell us about yourself..."
+#: mod/admin.php:524
+msgid ""
+"You need to know the GUID of the item. You can find it e.g. by looking at "
+"the display URL. The last part of http://example.com/display/123456 is the "
+"GUID, here 123456."
 msgstr ""
 
-#: mod/profiles.php:718
-msgid "XMPP (Jabber) address:"
+#: mod/admin.php:525
+msgid "GUID"
 msgstr ""
 
-#: mod/profiles.php:718
-msgid ""
-"The XMPP address will be propagated to your contacts so that they can follow "
-"you."
+#: mod/admin.php:525
+msgid "The GUID of the item you want to delete."
 msgstr ""
 
-#: mod/profiles.php:719
-msgid "Homepage URL:"
+#: mod/admin.php:564
+msgid "Item marked for deletion."
 msgstr ""
 
-#: mod/profiles.php:720 src/Model/Profile.php:790
-msgid "Hometown:"
+#: mod/admin.php:635
+msgid "unknown"
 msgstr ""
 
-#: mod/profiles.php:721 src/Model/Profile.php:798
-msgid "Political Views:"
+#: mod/admin.php:711
+msgid ""
+"This page offers you some numbers to the known part of the federated social "
+"network your Friendica node is part of. These numbers are not complete but "
+"only reflect the part of the network your node is aware of."
 msgstr ""
 
-#: mod/profiles.php:722
-msgid "Religious Views:"
+#: mod/admin.php:712
+msgid ""
+"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
+"will improve the data displayed here."
 msgstr ""
 
-#: mod/profiles.php:723
-msgid "Public Keywords:"
+#: mod/admin.php:724
+#, php-format
+msgid ""
+"Currently this node is aware of %d nodes with %d registered users from the "
+"following platforms:"
 msgstr ""
 
-#: mod/profiles.php:723
-msgid "(Used for suggesting potential friends, can be seen by others)"
+#: mod/admin.php:755
+msgid "ID"
 msgstr ""
 
-#: mod/profiles.php:724
-msgid "Private Keywords:"
+#: mod/admin.php:756
+msgid "Recipient Name"
 msgstr ""
 
-#: mod/profiles.php:724
-msgid "(Used for searching profiles, never shown to others)"
+#: mod/admin.php:757
+msgid "Recipient Profile"
 msgstr ""
 
-#: mod/profiles.php:725 src/Model/Profile.php:814
-msgid "Likes:"
+#: mod/admin.php:758 src/Core/NotificationsManager.php:178
+#: src/Content/Nav.php:178 view/theme/frio/theme.php:266
+msgid "Network"
 msgstr ""
 
-#: mod/profiles.php:726 src/Model/Profile.php:818
-msgid "Dislikes:"
+#: mod/admin.php:759
+msgid "Created"
 msgstr ""
 
-#: mod/profiles.php:727
-msgid "Musical interests"
+#: mod/admin.php:760
+msgid "Last Tried"
 msgstr ""
 
-#: mod/profiles.php:728
-msgid "Books, literature"
+#: mod/admin.php:761
+msgid ""
+"This page lists the content of the queue for outgoing postings. These are "
+"postings the initial delivery failed for. They will be resend later and "
+"eventually deleted if the delivery fails permanently."
 msgstr ""
 
-#: mod/profiles.php:729
-msgid "Television"
+#: mod/admin.php:785
+#, php-format
+msgid ""
+"Your DB still runs with MyISAM tables. You should change the engine type to "
+"InnoDB. As Friendica will use InnoDB only features in the future, you should "
+"change this! See <a href=\"%s\">here</a> for a guide that may be helpful "
+"converting the table engines. You may also use the command <tt>php bin/"
+"console.php dbstructure toinnodb</tt> of your Friendica installation for an "
+"automatic conversion.<br />"
 msgstr ""
 
-#: mod/profiles.php:730
-msgid "Film/dance/culture/entertainment"
+#: mod/admin.php:792
+#, php-format
+msgid ""
+"There is a new version of Friendica available for download. Your current "
+"version is %1$s, upstream version is %2$s"
 msgstr ""
 
-#: mod/profiles.php:731
-msgid "Hobbies/Interests"
+#: mod/admin.php:802
+msgid ""
+"The database update failed. Please run \"php bin/console.php dbstructure "
+"update\" from the command line and have a look at the errors that might "
+"appear."
 msgstr ""
 
-#: mod/profiles.php:732
-msgid "Love/romance"
+#: mod/admin.php:808
+msgid "The worker was never executed. Please check your database structure!"
 msgstr ""
 
-#: mod/profiles.php:733
-msgid "Work/employment"
+#: mod/admin.php:811
+#, php-format
+msgid ""
+"The last worker execution was on %s UTC. This is older than one hour. Please "
+"check your crontab settings."
 msgstr ""
 
-#: mod/profiles.php:734
-msgid "School/education"
+#: mod/admin.php:816 mod/admin.php:1739
+msgid "Normal Account"
 msgstr ""
 
-#: mod/profiles.php:735
-msgid "Contact information and Social Networks"
+#: mod/admin.php:817 mod/admin.php:1740
+msgid "Automatic Follower Account"
 msgstr ""
 
-#: mod/profiles.php:766 src/Model/Profile.php:389
-msgid "Profile Image"
+#: mod/admin.php:818 mod/admin.php:1741
+msgid "Public Forum Account"
 msgstr ""
 
-#: mod/profiles.php:768 src/Model/Profile.php:392
-msgid "visible to everybody"
+#: mod/admin.php:819 mod/admin.php:1742
+msgid "Automatic Friend Account"
 msgstr ""
 
-#: mod/profiles.php:775
-msgid "Edit/Manage Profiles"
+#: mod/admin.php:820
+msgid "Blog Account"
 msgstr ""
 
-#: mod/profiles.php:776 src/Model/Profile.php:379 src/Model/Profile.php:401
-msgid "Change profile photo"
+#: mod/admin.php:821
+msgid "Private Forum Account"
 msgstr ""
 
-#: mod/profiles.php:777 src/Model/Profile.php:380
-msgid "Create New Profile"
+#: mod/admin.php:843
+msgid "Message queues"
 msgstr ""
 
-#: mod/settings.php:73
-msgid "Display"
+#: mod/admin.php:849
+msgid "Summary"
 msgstr ""
 
-#: mod/settings.php:80 mod/settings.php:841
-msgid "Social Networks"
+#: mod/admin.php:851
+msgid "Registered users"
 msgstr ""
 
-#: mod/settings.php:94 src/Content/Nav.php:204
-msgid "Delegations"
+#: mod/admin.php:853
+msgid "Pending registrations"
 msgstr ""
 
-#: mod/settings.php:101
-msgid "Connected apps"
+#: mod/admin.php:854
+msgid "Version"
 msgstr ""
 
-#: mod/settings.php:115
-msgid "Remove account"
+#: mod/admin.php:859
+msgid "Active addons"
 msgstr ""
 
-#: mod/settings.php:169
-msgid "Missing some important data!"
+#: mod/admin.php:890
+msgid "Can not parse base url. Must have at least <scheme>://<domain>"
 msgstr ""
 
-#: mod/settings.php:279
-msgid "Failed to connect with email account using the settings provided."
+#: mod/admin.php:1209
+msgid "Site settings updated."
 msgstr ""
 
-#: mod/settings.php:284
-msgid "Email settings updated."
+#: mod/admin.php:1265
+msgid "No community page"
 msgstr ""
 
-#: mod/settings.php:300
-msgid "Features updated"
+#: mod/admin.php:1266
+msgid "Public postings from users of this site"
 msgstr ""
 
-#: mod/settings.php:372
-msgid "Relocate message has been send to your contacts"
+#: mod/admin.php:1267
+msgid "Public postings from the federated network"
 msgstr ""
 
-#: mod/settings.php:384 src/Model/User.php:325
-msgid "Passwords do not match. Password unchanged."
+#: mod/admin.php:1268
+msgid "Public postings from local users and the federated network"
 msgstr ""
 
-#: mod/settings.php:389
-msgid "Empty passwords are not allowed. Password unchanged."
+#: mod/admin.php:1274
+msgid "Users, Global Contacts"
 msgstr ""
 
-#: mod/settings.php:394
-msgid ""
-"The new password has been exposed in a public data dump, please choose "
-"another."
+#: mod/admin.php:1275
+msgid "Users, Global Contacts/fallback"
 msgstr ""
 
-#: mod/settings.php:400
-msgid "Wrong password."
+#: mod/admin.php:1279
+msgid "One month"
 msgstr ""
 
-#: mod/settings.php:407
-msgid "Password changed."
+#: mod/admin.php:1280
+msgid "Three months"
 msgstr ""
 
-#: mod/settings.php:409
-msgid "Password update failed. Please try again."
+#: mod/admin.php:1281
+msgid "Half a year"
 msgstr ""
 
-#: mod/settings.php:496
-msgid " Please use a shorter name."
+#: mod/admin.php:1282
+msgid "One year"
 msgstr ""
 
-#: mod/settings.php:499
-msgid " Name too short."
+#: mod/admin.php:1287
+msgid "Multi user instance"
 msgstr ""
 
-#: mod/settings.php:507
-msgid "Wrong Password"
+#: mod/admin.php:1310
+msgid "Closed"
 msgstr ""
 
-#: mod/settings.php:512
-msgid "Invalid email."
+#: mod/admin.php:1311
+msgid "Requires approval"
 msgstr ""
 
-#: mod/settings.php:519
-msgid "Cannot change to that email."
+#: mod/admin.php:1312
+msgid "Open"
 msgstr ""
 
-#: mod/settings.php:572
-msgid "Private forum has no privacy permissions. Using default privacy group."
+#: mod/admin.php:1316
+msgid "No SSL policy, links will track page SSL state"
 msgstr ""
 
-#: mod/settings.php:575
-msgid "Private forum has no privacy permissions and no default privacy group."
+#: mod/admin.php:1317
+msgid "Force all links to use SSL"
 msgstr ""
 
-#: mod/settings.php:615
-msgid "Settings updated."
+#: mod/admin.php:1318
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
 msgstr ""
 
-#: mod/settings.php:674 mod/settings.php:700 mod/settings.php:736
-msgid "Add application"
+#: mod/admin.php:1322
+msgid "Don't check"
 msgstr ""
 
-#: mod/settings.php:678 mod/settings.php:704
-msgid "Consumer Key"
+#: mod/admin.php:1323
+msgid "check the stable version"
 msgstr ""
 
-#: mod/settings.php:679 mod/settings.php:705
-msgid "Consumer Secret"
+#: mod/admin.php:1324
+msgid "check the development version"
 msgstr ""
 
-#: mod/settings.php:680 mod/settings.php:706
-msgid "Redirect"
+#: mod/admin.php:1347
+msgid "Republish users to directory"
 msgstr ""
 
-#: mod/settings.php:681 mod/settings.php:707
-msgid "Icon url"
+#: mod/admin.php:1349
+msgid "File upload"
 msgstr ""
 
-#: mod/settings.php:692
-msgid "You can't edit this application."
+#: mod/admin.php:1350
+msgid "Policies"
 msgstr ""
 
-#: mod/settings.php:735
-msgid "Connected Apps"
+#: mod/admin.php:1352
+msgid "Auto Discovered Contact Directory"
 msgstr ""
 
-#: mod/settings.php:737 src/Object/Post.php:155 src/Object/Post.php:157
-msgid "Edit"
+#: mod/admin.php:1353
+msgid "Performance"
 msgstr ""
 
-#: mod/settings.php:739
-msgid "Client key starts with"
+#: mod/admin.php:1354
+msgid "Worker"
 msgstr ""
 
-#: mod/settings.php:740
-msgid "No name"
+#: mod/admin.php:1355
+msgid "Message Relay"
 msgstr ""
 
-#: mod/settings.php:741
-msgid "Remove authorization"
+#: mod/admin.php:1356
+msgid ""
+"Relocate - WARNING: advanced function. Could make this server unreachable."
 msgstr ""
 
-#: mod/settings.php:752
-msgid "No Addon settings configured"
+#: mod/admin.php:1359
+msgid "Site name"
 msgstr ""
 
-#: mod/settings.php:761
-msgid "Addon Settings"
+#: mod/admin.php:1360
+msgid "Host name"
 msgstr ""
 
-#: mod/settings.php:782
-msgid "Additional Features"
+#: mod/admin.php:1361
+msgid "Sender Email"
 msgstr ""
 
-#: mod/settings.php:804 src/Content/ContactSelector.php:83
-msgid "Diaspora"
+#: mod/admin.php:1361
+msgid ""
+"The email address your server shall use to send notification emails from."
 msgstr ""
 
-#: mod/settings.php:804 mod/settings.php:805
-msgid "enabled"
+#: mod/admin.php:1362
+msgid "Banner/Logo"
 msgstr ""
 
-#: mod/settings.php:804 mod/settings.php:805
-msgid "disabled"
+#: mod/admin.php:1363
+msgid "Shortcut icon"
 msgstr ""
 
-#: mod/settings.php:804 mod/settings.php:805
-#, php-format
-msgid "Built-in support for %s connectivity is %s"
+#: mod/admin.php:1363
+msgid "Link to an icon that will be used for browsers."
 msgstr ""
 
-#: mod/settings.php:805
-msgid "GNU Social (OStatus)"
+#: mod/admin.php:1364
+msgid "Touch icon"
 msgstr ""
 
-#: mod/settings.php:836
-msgid "Email access is disabled on this site."
+#: mod/admin.php:1364
+msgid "Link to an icon that will be used for tablets and mobiles."
 msgstr ""
 
-#: mod/settings.php:846
-msgid "General Social Media Settings"
+#: mod/admin.php:1365
+msgid "Additional Info"
 msgstr ""
 
-#: mod/settings.php:847
-msgid "Disable intelligent shortening"
+#: mod/admin.php:1365
+#, php-format
+msgid ""
+"For public servers: you can add additional information here that will be "
+"listed at %s/servers."
 msgstr ""
 
-#: mod/settings.php:847
-msgid ""
-"Normally the system tries to find the best link to add to shortened posts. "
-"If this option is enabled then every shortened post will always point to the "
-"original friendica post."
+#: mod/admin.php:1366
+msgid "System language"
 msgstr ""
 
-#: mod/settings.php:848
-msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
+#: mod/admin.php:1367
+msgid "System theme"
 msgstr ""
 
-#: mod/settings.php:848
+#: mod/admin.php:1367
 msgid ""
-"If you receive a message from an unknown OStatus user, this option decides "
-"what to do. If it is checked, a new contact will be created for every "
-"unknown user."
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
 msgstr ""
 
-#: mod/settings.php:849
-msgid "Default group for OStatus contacts"
+#: mod/admin.php:1368
+msgid "Mobile system theme"
 msgstr ""
 
-#: mod/settings.php:850
-msgid "Your legacy GNU Social account"
+#: mod/admin.php:1368
+msgid "Theme for mobile devices"
 msgstr ""
 
-#: mod/settings.php:850
-msgid ""
-"If you enter your old GNU Social/Statusnet account name here (in the format "
-"user@domain.tld), your contacts will be added automatically. The field will "
-"be emptied when done."
+#: mod/admin.php:1369
+msgid "SSL link policy"
 msgstr ""
 
-#: mod/settings.php:853
-msgid "Repair OStatus subscriptions"
+#: mod/admin.php:1369
+msgid "Determines whether generated links should be forced to use SSL"
 msgstr ""
 
-#: mod/settings.php:857
-msgid "Email/Mailbox Setup"
+#: mod/admin.php:1370
+msgid "Force SSL"
 msgstr ""
 
-#: mod/settings.php:858
+#: mod/admin.php:1370
 msgid ""
-"If you wish to communicate with email contacts using this service "
-"(optional), please specify how to connect to your mailbox."
-msgstr ""
-
-#: mod/settings.php:859
-msgid "Last successful email check:"
+"Force all Non-SSL requests to SSL - Attention: on some systems it could lead "
+"to endless loops."
 msgstr ""
 
-#: mod/settings.php:861
-msgid "IMAP server name:"
+#: mod/admin.php:1371
+msgid "Hide help entry from navigation menu"
 msgstr ""
 
-#: mod/settings.php:862
-msgid "IMAP port:"
+#: mod/admin.php:1371
+msgid ""
+"Hides the menu entry for the Help pages from the navigation menu. You can "
+"still access it calling /help directly."
 msgstr ""
 
-#: mod/settings.php:863
-msgid "Security:"
+#: mod/admin.php:1372
+msgid "Single user instance"
 msgstr ""
 
-#: mod/settings.php:863 mod/settings.php:868
-msgid "None"
+#: mod/admin.php:1372
+msgid "Make this instance multi-user or single-user for the named user"
 msgstr ""
 
-#: mod/settings.php:864
-msgid "Email login name:"
+#: mod/admin.php:1373
+msgid "Maximum image size"
 msgstr ""
 
-#: mod/settings.php:865
-msgid "Email password:"
+#: mod/admin.php:1373
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
 msgstr ""
 
-#: mod/settings.php:866
-msgid "Reply-to address:"
+#: mod/admin.php:1374
+msgid "Maximum image length"
 msgstr ""
 
-#: mod/settings.php:867
-msgid "Send public posts to all email contacts:"
+#: mod/admin.php:1374
+msgid ""
+"Maximum length in pixels of the longest side of uploaded images. Default is "
+"-1, which means no limits."
 msgstr ""
 
-#: mod/settings.php:868
-msgid "Action after import:"
+#: mod/admin.php:1375
+msgid "JPEG image quality"
 msgstr ""
 
-#: mod/settings.php:868 src/Content/Nav.php:191
-msgid "Mark as seen"
+#: mod/admin.php:1375
+msgid ""
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
 msgstr ""
 
-#: mod/settings.php:868
-msgid "Move to folder"
+#: mod/admin.php:1377
+msgid "Register policy"
 msgstr ""
 
-#: mod/settings.php:869
-msgid "Move to folder:"
+#: mod/admin.php:1378
+msgid "Maximum Daily Registrations"
 msgstr ""
 
-#: mod/settings.php:912
-#, php-format
-msgid "%s - (Unsupported)"
+#: mod/admin.php:1378
+msgid ""
+"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 "
+"has no effect."
 msgstr ""
 
-#: mod/settings.php:914
-#, php-format
-msgid "%s - (Experimental)"
+#: mod/admin.php:1379
+msgid "Register text"
 msgstr ""
 
-#: mod/settings.php:957
-msgid "Display Settings"
+#: mod/admin.php:1379
+msgid ""
+"Will be displayed prominently on the registration page. You can use BBCode "
+"here."
 msgstr ""
 
-#: mod/settings.php:963 mod/settings.php:987
-msgid "Display Theme:"
+#: mod/admin.php:1380
+msgid "Accounts abandoned after x days"
 msgstr ""
 
-#: mod/settings.php:964
-msgid "Mobile Theme:"
+#: mod/admin.php:1380
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
 msgstr ""
 
-#: mod/settings.php:965
-msgid "Suppress warning of insecure networks"
+#: mod/admin.php:1381
+msgid "Allowed friend domains"
 msgstr ""
 
-#: mod/settings.php:965
+#: mod/admin.php:1381
 msgid ""
-"Should the system suppress the warning that the current group contains "
-"members of networks that can't receive non public postings."
+"Comma separated list of domains which are allowed to establish friendships "
+"with this site. Wildcards are accepted. Empty to allow any domains"
 msgstr ""
 
-#: mod/settings.php:966
-msgid "Update browser every xx seconds"
+#: mod/admin.php:1382
+msgid "Allowed email domains"
 msgstr ""
 
-#: mod/settings.php:966
-msgid "Minimum of 10 seconds. Enter -1 to disable it."
+#: mod/admin.php:1382
+msgid ""
+"Comma separated list of domains which are allowed in email addresses for "
+"registrations to this site. Wildcards are accepted. Empty to allow any "
+"domains"
 msgstr ""
 
-#: mod/settings.php:967
-msgid "Number of items to display per page:"
+#: mod/admin.php:1383
+msgid "No OEmbed rich content"
 msgstr ""
 
-#: mod/settings.php:967 mod/settings.php:968
-msgid "Maximum of 100 items"
+#: mod/admin.php:1383
+msgid ""
+"Don't show the rich content (e.g. embedded PDF), except from the domains "
+"listed below."
 msgstr ""
 
-#: mod/settings.php:968
-msgid "Number of items to display per page when viewed from mobile device:"
+#: mod/admin.php:1384
+msgid "Allowed OEmbed domains"
 msgstr ""
 
-#: mod/settings.php:969
-msgid "Don't show emoticons"
+#: mod/admin.php:1384
+msgid ""
+"Comma separated list of domains which oembed content is allowed to be "
+"displayed. Wildcards are accepted."
 msgstr ""
 
-#: mod/settings.php:970
-msgid "Calendar"
+#: mod/admin.php:1385
+msgid "Block public"
 msgstr ""
 
-#: mod/settings.php:971
-msgid "Beginning of week:"
+#: mod/admin.php:1385
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
 msgstr ""
 
-#: mod/settings.php:972
-msgid "Don't show notices"
+#: mod/admin.php:1386
+msgid "Force publish"
 msgstr ""
 
-#: mod/settings.php:973
-msgid "Infinite scroll"
+#: mod/admin.php:1386
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
 msgstr ""
 
-#: mod/settings.php:974
-msgid "Automatic updates only at the top of the network page"
+#: mod/admin.php:1387
+msgid "Global directory URL"
 msgstr ""
 
-#: mod/settings.php:974
+#: mod/admin.php:1387
 msgid ""
-"When disabled, the network page is updated all the time, which could be "
-"confusing while reading."
+"URL to the global directory. If this is not set, the global directory is "
+"completely unavailable to the application."
 msgstr ""
 
-#: mod/settings.php:975
-msgid "Bandwith Saver Mode"
+#: mod/admin.php:1388
+msgid "Private posts by default for new users"
 msgstr ""
 
-#: mod/settings.php:975
+#: mod/admin.php:1388
 msgid ""
-"When enabled, embedded content is not displayed on automatic updates, they "
-"only show on page reload."
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
 msgstr ""
 
-#: mod/settings.php:976
-msgid "Smart Threading"
+#: mod/admin.php:1389
+msgid "Don't include post content in email notifications"
 msgstr ""
 
-#: mod/settings.php:976
+#: mod/admin.php:1389
 msgid ""
-"When enabled, suppress extraneous thread indentation while keeping it where "
-"it matters. Only works if threading is available and enabled."
+"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."
 msgstr ""
 
-#: mod/settings.php:978
-msgid "General Theme Settings"
+#: mod/admin.php:1390
+msgid "Disallow public access to addons listed in the apps menu."
 msgstr ""
 
-#: mod/settings.php:979
-msgid "Custom Theme Settings"
+#: mod/admin.php:1390
+msgid ""
+"Checking this box will restrict addons listed in the apps menu to members "
+"only."
 msgstr ""
 
-#: mod/settings.php:980
-msgid "Content Settings"
+#: mod/admin.php:1391
+msgid "Don't embed private images in posts"
 msgstr ""
 
-#: mod/settings.php:981 view/theme/duepuntozero/config.php:73
-#: view/theme/frio/config.php:115 view/theme/quattro/config.php:75
-#: view/theme/vier/config.php:121
-msgid "Theme settings"
+#: mod/admin.php:1391
+msgid ""
+"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 "
+"photos will have to authenticate and load each image, which may take a while."
 msgstr ""
 
-#: mod/settings.php:1000
-msgid "Unable to find your profile. Please contact your admin."
+#: mod/admin.php:1392
+msgid "Allow Users to set remote_self"
 msgstr ""
 
-#: mod/settings.php:1042
-msgid "Account Types"
+#: mod/admin.php:1392
+msgid ""
+"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 "
+"causes mirroring every posting of that contact in the users stream."
 msgstr ""
 
-#: mod/settings.php:1043
-msgid "Personal Page Subtypes"
+#: mod/admin.php:1393
+msgid "Block multiple registrations"
 msgstr ""
 
-#: mod/settings.php:1044
-msgid "Community Forum Subtypes"
+#: mod/admin.php:1393
+msgid "Disallow users to register additional accounts for use as pages."
 msgstr ""
 
-#: mod/settings.php:1051
-msgid "Personal Page"
+#: mod/admin.php:1394
+msgid "OpenID support"
 msgstr ""
 
-#: mod/settings.php:1052
-msgid "Account for a personal profile."
+#: mod/admin.php:1394
+msgid "OpenID support for registration and logins."
 msgstr ""
 
-#: mod/settings.php:1055
-msgid "Organisation Page"
+#: mod/admin.php:1395
+msgid "Fullname check"
 msgstr ""
 
-#: mod/settings.php:1056
+#: mod/admin.php:1395
 msgid ""
-"Account for an organisation that automatically approves contact requests as "
-"\"Followers\"."
+"Force users to register with a space between firstname and lastname in Full "
+"name, as an antispam measure"
 msgstr ""
 
-#: mod/settings.php:1059
-msgid "News Page"
+#: mod/admin.php:1396
+msgid "Community pages for visitors"
 msgstr ""
 
-#: mod/settings.php:1060
+#: mod/admin.php:1396
 msgid ""
-"Account for a news reflector that automatically approves contact requests as "
-"\"Followers\"."
+"Which community pages should be available for visitors. Local users always "
+"see both pages."
 msgstr ""
 
-#: mod/settings.php:1063
-msgid "Community Forum"
+#: mod/admin.php:1397
+msgid "Posts per user on community page"
 msgstr ""
 
-#: mod/settings.php:1064
-msgid "Account for community discussions."
+#: mod/admin.php:1397
+msgid ""
+"The maximum number of posts per user on the community page. (Not valid for "
+"'Global Community')"
 msgstr ""
 
-#: mod/settings.php:1067
-msgid "Normal Account Page"
+#: mod/admin.php:1398
+msgid "Enable OStatus support"
 msgstr ""
 
-#: mod/settings.php:1068
+#: mod/admin.php:1398
 msgid ""
-"Account for a regular personal profile that requires manual approval of "
-"\"Friends\" and \"Followers\"."
+"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
+"communications in OStatus are public, so privacy warnings will be "
+"occasionally displayed."
 msgstr ""
 
-#: mod/settings.php:1071
-msgid "Soapbox Page"
+#: mod/admin.php:1399
+msgid "Only import OStatus threads from our contacts"
 msgstr ""
 
-#: mod/settings.php:1072
+#: mod/admin.php:1399
 msgid ""
-"Account for a public profile that automatically approves contact requests as "
-"\"Followers\"."
+"Normally we import every content from our OStatus contacts. With this option "
+"we only store threads that are started by a contact that is known on our "
+"system."
 msgstr ""
 
-#: mod/settings.php:1075
-msgid "Public Forum"
+#: mod/admin.php:1400
+msgid "OStatus support can only be enabled if threading is enabled."
 msgstr ""
 
-#: mod/settings.php:1076
-msgid "Automatically approves all contact requests."
+#: mod/admin.php:1402
+msgid ""
+"Diaspora support can't be enabled because Friendica was installed into a sub "
+"directory."
 msgstr ""
 
-#: mod/settings.php:1079
-msgid "Automatic Friend Page"
+#: mod/admin.php:1403
+msgid "Enable Diaspora support"
 msgstr ""
 
-#: mod/settings.php:1080
-msgid ""
-"Account for a popular profile that automatically approves contact requests "
-"as \"Friends\"."
+#: mod/admin.php:1403
+msgid "Provide built-in Diaspora network compatibility."
 msgstr ""
 
-#: mod/settings.php:1083
-msgid "Private Forum [Experimental]"
+#: mod/admin.php:1404
+msgid "Only allow Friendica contacts"
 msgstr ""
 
-#: mod/settings.php:1084
-msgid "Requires manual approval of contact requests."
+#: mod/admin.php:1404
+msgid ""
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
 msgstr ""
 
-#: mod/settings.php:1095
-msgid "OpenID:"
+#: mod/admin.php:1405
+msgid "Verify SSL"
 msgstr ""
 
-#: mod/settings.php:1095
-msgid "(Optional) Allow this OpenID to login to this account."
+#: mod/admin.php:1405
+msgid ""
+"If you wish, you can turn on strict certificate checking. This will mean you "
+"cannot connect (at all) to self-signed SSL sites."
 msgstr ""
 
-#: mod/settings.php:1103
-msgid "Publish your default profile in your local site directory?"
+#: mod/admin.php:1406
+msgid "Proxy user"
 msgstr ""
 
-#: mod/settings.php:1103
-#, php-format
-msgid ""
-"Your profile will be published in the global friendica directories (e.g. <a "
-"href=\"%s\">%s</a>). Your profile will be visible in public."
+#: mod/admin.php:1407
+msgid "Proxy URL"
 msgstr ""
 
-#: mod/settings.php:1109
-msgid "Publish your default profile in the global social directory?"
+#: mod/admin.php:1408
+msgid "Network timeout"
 msgstr ""
 
-#: mod/settings.php:1109
-#, php-format
-msgid ""
-"Your profile will be published in this node's <a href=\"%s\">local "
-"directory</a>. Your profile details may be publicly visible depending on the "
-"system settings."
+#: mod/admin.php:1408
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
 msgstr ""
 
-#: mod/settings.php:1116
-msgid "Hide your contact/friend list from viewers of your default profile?"
+#: mod/admin.php:1409
+msgid "Maximum Load Average"
 msgstr ""
 
-#: mod/settings.php:1116
+#: mod/admin.php:1409
 msgid ""
-"Your contact list won't be shown in your default profile page. You can "
-"decide to show your contact list separately for each additional profile you "
-"create"
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
 msgstr ""
 
-#: mod/settings.php:1120
-msgid "Hide your profile details from anonymous viewers?"
+#: mod/admin.php:1410
+msgid "Maximum Load Average (Frontend)"
 msgstr ""
 
-#: mod/settings.php:1120
-msgid ""
-"Anonymous visitors will only see your profile picture, your display name and "
-"the nickname you are using on your profile page. Disables posting public "
-"messages to Diaspora and other networks."
+#: mod/admin.php:1410
+msgid "Maximum system load before the frontend quits service - default 50."
 msgstr ""
 
-#: mod/settings.php:1124
-msgid "Allow friends to post to your profile page?"
+#: mod/admin.php:1411
+msgid "Minimal Memory"
 msgstr ""
 
-#: mod/settings.php:1124
+#: mod/admin.php:1411
 msgid ""
-"Your contacts may write posts on your profile wall. These posts will be "
-"distributed to your contacts"
+"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
+"default 0 (deactivated)."
 msgstr ""
 
-#: mod/settings.php:1128
-msgid "Allow friends to tag your posts?"
+#: mod/admin.php:1412
+msgid "Maximum table size for optimization"
 msgstr ""
 
-#: mod/settings.php:1128
-msgid "Your contacts can add additional tags to your posts."
+#: mod/admin.php:1412
+msgid ""
+"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
+"Enter -1 to disable it."
 msgstr ""
 
-#: mod/settings.php:1132
-msgid "Allow us to suggest you as a potential friend to new members?"
+#: mod/admin.php:1413
+msgid "Minimum level of fragmentation"
 msgstr ""
 
-#: mod/settings.php:1132
-msgid "If you like, Friendica may suggest new members to add you as a contact."
+#: mod/admin.php:1413
+msgid ""
+"Minimum fragmenation level to start the automatic optimization - default "
+"value is 30%."
 msgstr ""
 
-#: mod/settings.php:1136
-msgid "Permit unknown people to send you private mail?"
+#: mod/admin.php:1415
+msgid "Periodical check of global contacts"
 msgstr ""
 
-#: mod/settings.php:1136
+#: mod/admin.php:1415
 msgid ""
-"Friendica network users may send you private messages even if they are not "
-"in your contact list."
+"If enabled, the global contacts are checked periodically for missing or "
+"outdated data and the vitality of the contacts and servers."
 msgstr ""
 
-#: mod/settings.php:1140
-msgid "Profile is <strong>not published</strong>."
+#: mod/admin.php:1416
+msgid "Days between requery"
 msgstr ""
 
-#: mod/settings.php:1146
-#, php-format
-msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
+#: mod/admin.php:1416
+msgid "Number of days after which a server is requeried for his contacts."
 msgstr ""
 
-#: mod/settings.php:1153
-msgid "Automatically expire posts after this many days:"
+#: mod/admin.php:1417
+msgid "Discover contacts from other servers"
 msgstr ""
 
-#: mod/settings.php:1153
-msgid "If empty, posts will not expire. Expired posts will be deleted"
+#: mod/admin.php:1417
+msgid ""
+"Periodically query other servers for contacts. You can choose between "
+"'users': the users on the remote system, 'Global Contacts': active contacts "
+"that are known on the system. The fallback is meant for Redmatrix servers "
+"and older friendica servers, where global contacts weren't available. The "
+"fallback increases the server load, so the recommened setting is 'Users, "
+"Global Contacts'."
 msgstr ""
 
-#: mod/settings.php:1154
-msgid "Advanced expiration settings"
+#: mod/admin.php:1418
+msgid "Timeframe for fetching global contacts"
 msgstr ""
 
-#: mod/settings.php:1155
-msgid "Advanced Expiration"
+#: mod/admin.php:1418
+msgid ""
+"When the discovery is activated, this value defines the timeframe for the "
+"activity of the global contacts that are fetched from other servers."
 msgstr ""
 
-#: mod/settings.php:1156
-msgid "Expire posts:"
+#: mod/admin.php:1419
+msgid "Search the local directory"
 msgstr ""
 
-#: mod/settings.php:1157
-msgid "Expire personal notes:"
+#: mod/admin.php:1419
+msgid ""
+"Search the local directory instead of the global directory. When searching "
+"locally, every search will be executed on the global directory in the "
+"background. This improves the search results when the search is repeated."
 msgstr ""
 
-#: mod/settings.php:1158
-msgid "Expire starred posts:"
+#: mod/admin.php:1421
+msgid "Publish server information"
 msgstr ""
 
-#: mod/settings.php:1159
-msgid "Expire photos:"
+#: mod/admin.php:1421
+msgid ""
+"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 "
+"profiles, number of posts and the activated protocols and connectors. See <a "
+"href='http://the-federation.info/'>the-federation.info</a> for details."
 msgstr ""
 
-#: mod/settings.php:1160
-msgid "Only expire posts by others:"
+#: mod/admin.php:1423
+msgid "Check upstream version"
 msgstr ""
 
-#: mod/settings.php:1190
-msgid "Account Settings"
+#: mod/admin.php:1423
+msgid ""
+"Enables checking for new Friendica versions at github. If there is a new "
+"version, you will be informed in the admin panel overview."
 msgstr ""
 
-#: mod/settings.php:1198
-msgid "Password Settings"
+#: mod/admin.php:1424
+msgid "Suppress Tags"
 msgstr ""
 
-#: mod/settings.php:1200
-msgid "Leave password fields blank unless changing"
+#: mod/admin.php:1424
+msgid "Suppress showing a list of hashtags at the end of the posting."
 msgstr ""
 
-#: mod/settings.php:1201
-msgid "Current Password:"
+#: mod/admin.php:1425
+msgid "Path to item cache"
 msgstr ""
 
-#: mod/settings.php:1201 mod/settings.php:1202
-msgid "Your current password to confirm the changes"
+#: mod/admin.php:1425
+msgid "The item caches buffers generated bbcode and external images."
 msgstr ""
 
-#: mod/settings.php:1202
-msgid "Password:"
+#: mod/admin.php:1426
+msgid "Cache duration in seconds"
 msgstr ""
 
-#: mod/settings.php:1206
-msgid "Basic Settings"
+#: mod/admin.php:1426
+msgid ""
+"How long should the cache files be hold? Default value is 86400 seconds (One "
+"day). To disable the item cache, set the value to -1."
 msgstr ""
 
-#: mod/settings.php:1207 src/Model/Profile.php:738
-msgid "Full Name:"
+#: mod/admin.php:1427
+msgid "Maximum numbers of comments per post"
 msgstr ""
 
-#: mod/settings.php:1208
-msgid "Email Address:"
+#: mod/admin.php:1427
+msgid "How much comments should be shown for each post? Default value is 100."
 msgstr ""
 
-#: mod/settings.php:1209
-msgid "Your Timezone:"
+#: mod/admin.php:1428
+msgid "Temp path"
+msgstr ""
+
+#: mod/admin.php:1428
+msgid ""
+"If you have a restricted system where the webserver can't access the system "
+"temp path, enter another path here."
 msgstr ""
 
-#: mod/settings.php:1210
-msgid "Your Language:"
+#: mod/admin.php:1429
+msgid "Base path to installation"
 msgstr ""
 
-#: mod/settings.php:1210
+#: mod/admin.php:1429
 msgid ""
-"Set the language we use to show you friendica interface and to send you "
-"emails"
+"If the system cannot detect the correct path to your installation, enter the "
+"correct path here. This setting should only be set if you are using a "
+"restricted system and symbolic links to your webroot."
 msgstr ""
 
-#: mod/settings.php:1211
-msgid "Default Post Location:"
+#: mod/admin.php:1430
+msgid "Disable picture proxy"
 msgstr ""
 
-#: mod/settings.php:1212
-msgid "Use Browser Location:"
+#: mod/admin.php:1430
+msgid ""
+"The picture proxy increases performance and privacy. It shouldn't be used on "
+"systems with very low bandwith."
 msgstr ""
 
-#: mod/settings.php:1215
-msgid "Security and Privacy Settings"
+#: mod/admin.php:1431
+msgid "Only search in tags"
 msgstr ""
 
-#: mod/settings.php:1217
-msgid "Maximum Friend Requests/Day:"
+#: mod/admin.php:1431
+msgid "On large systems the text search can slow down the system extremely."
 msgstr ""
 
-#: mod/settings.php:1217 mod/settings.php:1246
-msgid "(to prevent spam abuse)"
+#: mod/admin.php:1433
+msgid "New base url"
 msgstr ""
 
-#: mod/settings.php:1218
-msgid "Default Post Permissions"
+#: mod/admin.php:1433
+msgid ""
+"Change base url for this server. Sends relocate message to all Friendica and "
+"Diaspora* contacts of all users."
 msgstr ""
 
-#: mod/settings.php:1219
-msgid "(click to open/close)"
+#: mod/admin.php:1435
+msgid "RINO Encryption"
 msgstr ""
 
-#: mod/settings.php:1229
-msgid "Default Private Post"
+#: mod/admin.php:1435
+msgid "Encryption layer between nodes."
 msgstr ""
 
-#: mod/settings.php:1230
-msgid "Default Public Post"
+#: mod/admin.php:1435
+msgid "Enabled"
 msgstr ""
 
-#: mod/settings.php:1234
-msgid "Default Permissions for New Posts"
+#: mod/admin.php:1437
+msgid "Maximum number of parallel workers"
 msgstr ""
 
-#: mod/settings.php:1246
-msgid "Maximum private messages per day from unknown people:"
+#: mod/admin.php:1437
+msgid ""
+"On shared hosters set this to 2. On larger systems, values of 10 are great. "
+"Default value is 4."
 msgstr ""
 
-#: mod/settings.php:1249
-msgid "Notification Settings"
+#: mod/admin.php:1438
+msgid "Don't use 'proc_open' with the worker"
 msgstr ""
 
-#: mod/settings.php:1250
-msgid "By default post a status message when:"
+#: mod/admin.php:1438
+msgid ""
+"Enable this if your system doesn't allow the use of 'proc_open'. This can "
+"happen on shared hosters. If this is enabled you should increase the "
+"frequency of worker calls in your crontab."
 msgstr ""
 
-#: mod/settings.php:1251
-msgid "accepting a friend request"
+#: mod/admin.php:1439
+msgid "Enable fastlane"
 msgstr ""
 
-#: mod/settings.php:1252
-msgid "joining a forum/community"
+#: mod/admin.php:1439
+msgid ""
+"When enabed, the fastlane mechanism starts an additional worker if processes "
+"with higher priority are blocked by processes of lower priority."
 msgstr ""
 
-#: mod/settings.php:1253
-msgid "making an <em>interesting</em> profile change"
+#: mod/admin.php:1440
+msgid "Enable frontend worker"
 msgstr ""
 
-#: mod/settings.php:1254
-msgid "Send a notification email when:"
+#: mod/admin.php:1440
+#, php-format
+msgid ""
+"When enabled the Worker process is triggered when backend access is "
+"performed \\x28e.g. messages being delivered\\x29. On smaller sites you "
+"might want to call %s/worker on a regular basis via an external cron job. "
+"You should only enable this option if you cannot utilize cron/scheduled jobs "
+"on your server."
 msgstr ""
 
-#: mod/settings.php:1255
-msgid "You receive an introduction"
+#: mod/admin.php:1442
+msgid "Subscribe to relay"
 msgstr ""
 
-#: mod/settings.php:1256
-msgid "Your introductions are confirmed"
+#: mod/admin.php:1442
+msgid ""
+"Enables the receiving of public posts from the relay. They will be included "
+"in the search, subscribed tags and on the global community page."
 msgstr ""
 
-#: mod/settings.php:1257
-msgid "Someone writes on your profile wall"
+#: mod/admin.php:1443
+msgid "Relay server"
 msgstr ""
 
-#: mod/settings.php:1258
-msgid "Someone writes a followup comment"
+#: mod/admin.php:1443
+msgid ""
+"Address of the relay server where public posts should be send to. For "
+"example https://relay.diasp.org"
 msgstr ""
 
-#: mod/settings.php:1259
-msgid "You receive a private message"
+#: mod/admin.php:1444
+msgid "Direct relay transfer"
 msgstr ""
 
-#: mod/settings.php:1260
-msgid "You receive a friend suggestion"
+#: mod/admin.php:1444
+msgid ""
+"Enables the direct transfer to other servers without using the relay servers"
 msgstr ""
 
-#: mod/settings.php:1261
-msgid "You are tagged in a post"
+#: mod/admin.php:1445
+msgid "Relay scope"
 msgstr ""
 
-#: mod/settings.php:1262
-msgid "You are poked/prodded/etc. in a post"
+#: mod/admin.php:1445
+msgid ""
+"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."
 msgstr ""
 
-#: mod/settings.php:1264
-msgid "Activate desktop notifications"
+#: mod/admin.php:1445
+msgid "all"
 msgstr ""
 
-#: mod/settings.php:1264
-msgid "Show desktop popup on new notifications"
+#: mod/admin.php:1445
+msgid "tags"
 msgstr ""
 
-#: mod/settings.php:1266
-msgid "Text-only notification emails"
+#: mod/admin.php:1446
+msgid "Server tags"
 msgstr ""
 
-#: mod/settings.php:1268
-msgid "Send text only notification emails, without the html part"
+#: mod/admin.php:1446
+msgid "Comma separated list of tags for the 'tags' subscription."
 msgstr ""
 
-#: mod/settings.php:1270
-msgid "Show detailled notifications"
+#: mod/admin.php:1447
+msgid "Allow user tags"
 msgstr ""
 
-#: mod/settings.php:1272
+#: mod/admin.php:1447
 msgid ""
-"Per default, notifications are condensed to a single notification per item. "
-"When enabled every notification is displayed."
+"If enabled, the tags from the saved searches will used for the 'tags' "
+"subscription in addition to the 'relay_server_tags'."
 msgstr ""
 
-#: mod/settings.php:1274
-msgid "Advanced Account/Page Type Settings"
+#: mod/admin.php:1475
+msgid "Update has been marked successful"
 msgstr ""
 
-#: mod/settings.php:1275
-msgid "Change the behaviour of this account for special situations"
+#: mod/admin.php:1482
+#, php-format
+msgid "Database structure update %s was successfully applied."
 msgstr ""
 
-#: mod/settings.php:1278
-msgid "Relocate"
+#: mod/admin.php:1485
+#, php-format
+msgid "Executing of database structure update %s failed with error: %s"
 msgstr ""
 
-#: mod/settings.php:1279
-msgid ""
-"If you have moved this profile from another server, and some of your "
-"contacts don't receive your updates, try pushing this button."
+#: mod/admin.php:1498
+#, php-format
+msgid "Executing %s failed with error: %s"
 msgstr ""
 
-#: mod/settings.php:1280
-msgid "Resend relocate message to contacts"
+#: mod/admin.php:1500
+#, php-format
+msgid "Update %s was successfully applied."
 msgstr ""
 
-#: mod/unfollow.php:34
-msgid "Contact wasn't found or can't be unfollowed."
+#: mod/admin.php:1503
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
 msgstr ""
 
-#: mod/unfollow.php:47
-msgid "Contact unfollowed"
+#: mod/admin.php:1506
+#, php-format
+msgid "There was no additional update function %s that needed to be called."
 msgstr ""
 
-#: mod/unfollow.php:73
-msgid "You aren't a friend of this contact."
+#: mod/admin.php:1526
+msgid "No failed updates."
 msgstr ""
 
-#: mod/unfollow.php:79
-msgid "Unfollowing is currently not supported by your network."
+#: mod/admin.php:1527
+msgid "Check database structure"
 msgstr ""
 
-#: view/theme/duepuntozero/config.php:54 src/Model/User.php:488
-msgid "default"
+#: mod/admin.php:1532
+msgid "Failed Updates"
 msgstr ""
 
-#: view/theme/duepuntozero/config.php:55
-msgid "greenzero"
+#: mod/admin.php:1533
+msgid ""
+"This does not include updates prior to 1139, which did not return a status."
 msgstr ""
 
-#: view/theme/duepuntozero/config.php:56
-msgid "purplezero"
+#: mod/admin.php:1534
+msgid "Mark success (if update was manually applied)"
 msgstr ""
 
-#: view/theme/duepuntozero/config.php:57
-msgid "easterbunny"
+#: mod/admin.php:1535
+msgid "Attempt to execute this update step automatically"
 msgstr ""
 
-#: view/theme/duepuntozero/config.php:58
-msgid "darkzero"
+#: mod/admin.php:1574
+#, php-format
+msgid ""
+"\n"
+"\t\t\tDear %1$s,\n"
+"\t\t\t\tthe administrator of %2$s has set up an account for you."
 msgstr ""
 
-#: view/theme/duepuntozero/config.php:59
-msgid "comix"
+#: mod/admin.php:1577 src/Model/User.php:615
+#, php-format
+msgid ""
+"\n"
+"\t\t\tThe login details are as follows:\n"
+"\n"
+"\t\t\tSite Location:\t%1$s\n"
+"\t\t\tLogin Name:\t\t%2$s\n"
+"\t\t\tPassword:\t\t%3$s\n"
+"\n"
+"\t\t\tYou may change your password from your account \"Settings\" page after "
+"logging\n"
+"\t\t\tin.\n"
+"\n"
+"\t\t\tPlease take a few moments to review the other account settings on that "
+"page.\n"
+"\n"
+"\t\t\tYou may also wish to add some basic information to your default "
+"profile\n"
+"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
+"\n"
+"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
+"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - "
+"and\n"
+"\t\t\tperhaps what country you live in; if you do not wish to be more "
+"specific\n"
+"\t\t\tthan that.\n"
+"\n"
+"\t\t\tWe fully respect your right to privacy, and none of these items are "
+"necessary.\n"
+"\t\t\tIf you are new and do not know anybody here, they may help\n"
+"\t\t\tyou to make some new and interesting friends.\n"
+"\n"
+"\t\t\tIf you ever want to delete your account, you can do so at %1$s/"
+"removeme\n"
+"\n"
+"\t\t\tThank you and welcome to %4$s."
 msgstr ""
 
-#: view/theme/duepuntozero/config.php:60
-msgid "slackr"
+#: mod/admin.php:1611 src/Model/User.php:649
+#, php-format
+msgid "Registration details for %s"
 msgstr ""
 
-#: view/theme/duepuntozero/config.php:74
-msgid "Variations"
-msgstr ""
+#: mod/admin.php:1621
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] ""
+msgstr[1] ""
 
-#: view/theme/frio/php/Image.php:25
-msgid "Repeat the image"
-msgstr ""
+#: mod/admin.php:1627
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] ""
+msgstr[1] ""
 
-#: view/theme/frio/php/Image.php:25
-msgid "Will repeat your image to fill the background."
+#: mod/admin.php:1674
+#, php-format
+msgid "User '%s' deleted"
 msgstr ""
 
-#: view/theme/frio/php/Image.php:27
-msgid "Stretch"
+#: mod/admin.php:1682
+#, php-format
+msgid "User '%s' unblocked"
 msgstr ""
 
-#: view/theme/frio/php/Image.php:27
-msgid "Will stretch to width/height of the image."
+#: mod/admin.php:1682
+#, php-format
+msgid "User '%s' blocked"
 msgstr ""
 
-#: view/theme/frio/php/Image.php:29
-msgid "Resize fill and-clip"
+#: mod/admin.php:1781 mod/admin.php:1793 mod/admin.php:1806 mod/admin.php:1824
+#: src/Content/ContactSelector.php:82
+msgid "Email"
 msgstr ""
 
-#: view/theme/frio/php/Image.php:29
-msgid "Resize to fill and retain aspect ratio."
+#: mod/admin.php:1781 mod/admin.php:1806
+msgid "Register date"
 msgstr ""
 
-#: view/theme/frio/php/Image.php:31
-msgid "Resize best fit"
+#: mod/admin.php:1781 mod/admin.php:1806
+msgid "Last login"
 msgstr ""
 
-#: view/theme/frio/php/Image.php:31
-msgid "Resize to best fit and retain aspect ratio."
+#: mod/admin.php:1781 mod/admin.php:1806
+msgid "Last item"
 msgstr ""
 
-#: view/theme/frio/config.php:97
-msgid "Default"
+#: mod/admin.php:1789
+msgid "Add User"
 msgstr ""
 
-#: view/theme/frio/config.php:109
-msgid "Note"
+#: mod/admin.php:1791
+msgid "User registrations waiting for confirm"
 msgstr ""
 
-#: view/theme/frio/config.php:109
-msgid "Check image permissions if all users are allowed to visit the image"
+#: mod/admin.php:1792
+msgid "User waiting for permanent deletion"
 msgstr ""
 
-#: view/theme/frio/config.php:116
-msgid "Select scheme"
+#: mod/admin.php:1793
+msgid "Request date"
 msgstr ""
 
-#: view/theme/frio/config.php:117
-msgid "Navigation bar background color"
+#: mod/admin.php:1794
+msgid "No registrations."
 msgstr ""
 
-#: view/theme/frio/config.php:118
-msgid "Navigation bar icon color "
+#: mod/admin.php:1795
+msgid "Note from the user"
 msgstr ""
 
-#: view/theme/frio/config.php:119
-msgid "Link color"
+#: mod/admin.php:1797
+msgid "Deny"
 msgstr ""
 
-#: view/theme/frio/config.php:120
-msgid "Set the background color"
+#: mod/admin.php:1801
+msgid "Site admin"
 msgstr ""
 
-#: view/theme/frio/config.php:121
-msgid "Content background opacity"
+#: mod/admin.php:1802
+msgid "Account expired"
 msgstr ""
 
-#: view/theme/frio/config.php:122
-msgid "Set the background image"
+#: mod/admin.php:1805
+msgid "New User"
 msgstr ""
 
-#: view/theme/frio/config.php:127
-msgid "Login page background image"
+#: mod/admin.php:1806
+msgid "Deleted since"
 msgstr ""
 
-#: view/theme/frio/config.php:130
-msgid "Login page background color"
+#: mod/admin.php:1811
+msgid ""
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
 msgstr ""
 
-#: view/theme/frio/config.php:130
-msgid "Leave background image and color empty for theme defaults"
+#: mod/admin.php:1812
+msgid ""
+"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
+"site will be permanently deleted!\\n\\nAre you sure?"
 msgstr ""
 
-#: view/theme/frio/theme.php:238
-msgid "Guest"
+#: mod/admin.php:1822
+msgid "Name of the new user."
 msgstr ""
 
-#: view/theme/frio/theme.php:243
-msgid "Visitor"
+#: mod/admin.php:1823
+msgid "Nickname"
 msgstr ""
 
-#: view/theme/frio/theme.php:256 src/Content/Nav.php:97
-#: src/Module/Login.php:311
-msgid "Logout"
+#: mod/admin.php:1823
+msgid "Nickname of the new user."
 msgstr ""
 
-#: view/theme/frio/theme.php:256 src/Content/Nav.php:97
-msgid "End this session"
+#: mod/admin.php:1824
+msgid "Email address of the new user."
 msgstr ""
 
-#: view/theme/frio/theme.php:259 src/Content/Nav.php:100
-#: src/Content/Nav.php:181
-msgid "Your posts and conversations"
+#: mod/admin.php:1866
+#, php-format
+msgid "Addon %s disabled."
 msgstr ""
 
-#: view/theme/frio/theme.php:260 src/Content/Nav.php:101
-msgid "Your profile page"
+#: mod/admin.php:1870
+#, php-format
+msgid "Addon %s enabled."
 msgstr ""
 
-#: view/theme/frio/theme.php:261 src/Content/Nav.php:102
-msgid "Your photos"
+#: mod/admin.php:1880 mod/admin.php:2129
+msgid "Disable"
 msgstr ""
 
-#: view/theme/frio/theme.php:262 src/Content/Nav.php:103
-#: src/Model/Profile.php:912 src/Model/Profile.php:915
-msgid "Videos"
+#: mod/admin.php:1883 mod/admin.php:2132
+msgid "Enable"
 msgstr ""
 
-#: view/theme/frio/theme.php:262 src/Content/Nav.php:103
-msgid "Your videos"
+#: mod/admin.php:1905 mod/admin.php:2174
+msgid "Toggle"
 msgstr ""
 
-#: view/theme/frio/theme.php:263 src/Content/Nav.php:104
-msgid "Your events"
+#: mod/admin.php:1913 mod/admin.php:2183
+msgid "Author: "
 msgstr ""
 
-#: view/theme/frio/theme.php:266 src/Content/Nav.php:178
-msgid "Conversations from your friends"
+#: mod/admin.php:1914 mod/admin.php:2184
+msgid "Maintainer: "
 msgstr ""
 
-#: view/theme/frio/theme.php:267 src/Content/Nav.php:169
-#: src/Model/Profile.php:927 src/Model/Profile.php:938
-msgid "Events and Calendar"
+#: mod/admin.php:1966
+msgid "Reload active addons"
 msgstr ""
 
-#: view/theme/frio/theme.php:268 src/Content/Nav.php:195
-msgid "Private mail"
+#: mod/admin.php:1971
+#, php-format
+msgid ""
+"There are currently no addons available on your node. You can find the "
+"official addon repository at %1$s and might find other interesting addons in "
+"the open addon registry at %2$s"
 msgstr ""
 
-#: view/theme/frio/theme.php:269 src/Content/Nav.php:206
-msgid "Account settings"
+#: mod/admin.php:2091
+msgid "No themes found."
 msgstr ""
 
-#: view/theme/frio/theme.php:270 src/Content/Nav.php:212
-msgid "Manage/edit friends and contacts"
+#: mod/admin.php:2165
+msgid "Screenshot"
 msgstr ""
 
-#: view/theme/quattro/config.php:76
-msgid "Alignment"
+#: mod/admin.php:2219
+msgid "Reload active themes"
 msgstr ""
 
-#: view/theme/quattro/config.php:76
-msgid "Left"
+#: mod/admin.php:2224
+#, php-format
+msgid "No themes found on the system. They should be placed in %1$s"
 msgstr ""
 
-#: view/theme/quattro/config.php:76
-msgid "Center"
+#: mod/admin.php:2225
+msgid "[Experimental]"
 msgstr ""
 
-#: view/theme/quattro/config.php:77
-msgid "Color scheme"
+#: mod/admin.php:2226
+msgid "[Unsupported]"
 msgstr ""
 
-#: view/theme/quattro/config.php:78
-msgid "Posts font size"
+#: mod/admin.php:2250
+msgid "Log settings updated."
 msgstr ""
 
-#: view/theme/quattro/config.php:79
-msgid "Textareas font size"
+#: mod/admin.php:2282
+msgid "PHP log currently enabled."
 msgstr ""
 
-#: view/theme/vier/config.php:75
-msgid "Comma separated list of helper forums"
+#: mod/admin.php:2284
+msgid "PHP log currently disabled."
 msgstr ""
 
-#: view/theme/vier/config.php:115 src/Core/ACL.php:309
-msgid "don't show"
+#: mod/admin.php:2293
+msgid "Clear"
 msgstr ""
 
-#: view/theme/vier/config.php:115 src/Core/ACL.php:308
-msgid "show"
+#: mod/admin.php:2297
+msgid "Enable Debugging"
 msgstr ""
 
-#: view/theme/vier/config.php:122
-msgid "Set style"
+#: mod/admin.php:2298
+msgid "Log file"
 msgstr ""
 
-#: view/theme/vier/config.php:123
-msgid "Community Pages"
+#: mod/admin.php:2298
+msgid ""
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
 msgstr ""
 
-#: view/theme/vier/config.php:124 view/theme/vier/theme.php:150
-msgid "Community Profiles"
+#: mod/admin.php:2299
+msgid "Log level"
 msgstr ""
 
-#: view/theme/vier/config.php:125
-msgid "Help or @NewHere ?"
+#: mod/admin.php:2301
+msgid "PHP logging"
 msgstr ""
 
-#: view/theme/vier/config.php:126 view/theme/vier/theme.php:389
-msgid "Connect Services"
+#: mod/admin.php:2302
+msgid ""
+"To enable logging of PHP errors and warnings you can add the following to "
+"the .htconfig.php file of your installation. The filename set in the "
+"'error_log' line is relative to the friendica top-level directory and must "
+"be writeable by the web server. The option '1' for 'log_errors' and "
+"'display_errors' is to enable these options, set to '0' to disable them."
 msgstr ""
 
-#: view/theme/vier/config.php:127 view/theme/vier/theme.php:199
-msgid "Find Friends"
+#: mod/admin.php:2333
+#, php-format
+msgid ""
+"Error trying to open <strong>%1$s</strong> log file.\\r\\n<br/>Check to see "
+"if file %1$s exist and is readable."
 msgstr ""
 
-#: view/theme/vier/config.php:128 view/theme/vier/theme.php:181
-msgid "Last users"
+#: mod/admin.php:2337
+#, php-format
+msgid ""
+"Couldn't open <strong>%1$s</strong> log file.\\r\\n<br/>Check to see if file "
+"%1$s is readable."
 msgstr ""
 
-#: view/theme/vier/theme.php:200
-msgid "Local Directory"
+#: mod/admin.php:2429
+#, php-format
+msgid "Lock feature %s"
 msgstr ""
 
-#: view/theme/vier/theme.php:202 src/Content/Widget.php:65
-msgid "Similar Interests"
+#: mod/admin.php:2437
+msgid "Manage Additional Features"
 msgstr ""
 
-#: view/theme/vier/theme.php:204 src/Content/Widget.php:67
-msgid "Invite Friends"
+#: mod/tos.php:51
+msgid "Privacy Statement"
 msgstr ""
 
-#: view/theme/vier/theme.php:256 src/Content/ForumManager.php:127
-msgid "External link to forum"
+#: mod/tos.php:52
+msgid ""
+"At the time of registration, and for providing communications between the "
+"user account and their contacts, the user has to provide a display name (pen "
+"name), an username (nickname) and a working email address. The names will be "
+"accessible on the profile page of the account by any visitor of the page, "
+"even if other profile details are not displayed. The email address will only "
+"be used to send the user notifications about interactions, but wont be "
+"visibly displayed. The listing of an account in the node's user directory or "
+"the global user directory is optional and can be controlled in the user "
+"settings, it is not necessary for communication."
 msgstr ""
 
-#: view/theme/vier/theme.php:292
-msgid "Quick Start"
+#: mod/tos.php:53
+#, php-format
+msgid ""
+"At any point in time a logged in user can export their account data from the "
+"<a href=\"%1$s/settings/uexport\">account settings</a>. If the user wants to "
+"delete their account they can do so at <a href=\"%1$s/removeme\">%1$s/"
+"removeme</a>. The deletion of the account will be permanent."
 msgstr ""
 
 #: src/Core/UserImport.php:104
@@ -7775,27 +7583,6 @@ msgstr[1] ""
 msgid "Done. You can now login with your username and password"
 msgstr ""
 
-#: src/Core/ACL.php:295
-msgid "Post to Email"
-msgstr ""
-
-#: src/Core/ACL.php:301
-msgid "Hide your profile details from unknown viewers?"
-msgstr ""
-
-#: src/Core/ACL.php:300
-#, php-format
-msgid "Connectors disabled, since \"%s\" is enabled."
-msgstr ""
-
-#: src/Core/ACL.php:307
-msgid "Visible to everybody"
-msgstr ""
-
-#: src/Core/ACL.php:319
-msgid "Close"
-msgstr ""
-
 #: src/Core/NotificationsManager.php:171
 msgid "System"
 msgstr ""
@@ -7861,6 +7648,35 @@ msgstr ""
 msgid "New Follower"
 msgstr ""
 
+#: src/Core/ACL.php:295
+msgid "Post to Email"
+msgstr ""
+
+#: src/Core/ACL.php:301
+msgid "Hide your profile details from unknown viewers?"
+msgstr ""
+
+#: src/Core/ACL.php:300
+#, php-format
+msgid "Connectors disabled, since \"%s\" is enabled."
+msgstr ""
+
+#: src/Core/ACL.php:307
+msgid "Visible to everybody"
+msgstr ""
+
+#: src/Core/ACL.php:308 view/theme/vier/config.php:115
+msgid "show"
+msgstr ""
+
+#: src/Core/ACL.php:309 view/theme/vier/config.php:115
+msgid "don't show"
+msgstr ""
+
+#: src/Core/ACL.php:319
+msgid "Close"
+msgstr ""
+
 #: src/Util/Temporal.php:147 src/Model/Profile.php:758
 msgid "Birthday:"
 msgstr ""
@@ -7930,8 +7746,8 @@ msgstr ""
 msgid "view full size"
 msgstr ""
 
-#: src/Content/Text/BBCode.php:978 src/Content/Text/BBCode.php:1735
-#: src/Content/Text/BBCode.php:1736
+#: src/Content/Text/BBCode.php:978 src/Content/Text/BBCode.php:1739
+#: src/Content/Text/BBCode.php:1740
 msgid "Image/photo"
 msgstr ""
 
@@ -7940,19 +7756,19 @@ msgstr ""
 msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
 msgstr ""
 
-#: src/Content/Text/BBCode.php:1670 src/Content/Text/BBCode.php:1692
+#: src/Content/Text/BBCode.php:1674 src/Content/Text/BBCode.php:1696
 msgid "$1 wrote:"
 msgstr ""
 
-#: src/Content/Text/BBCode.php:1744 src/Content/Text/BBCode.php:1745
+#: src/Content/Text/BBCode.php:1748 src/Content/Text/BBCode.php:1749
 msgid "Encrypted content"
 msgstr ""
 
-#: src/Content/Text/BBCode.php:1862
+#: src/Content/Text/BBCode.php:1866
 msgid "Invalid source protocol"
 msgstr ""
 
-#: src/Content/Text/BBCode.php:1873
+#: src/Content/Text/BBCode.php:1877
 msgid "Invalid link protocol"
 msgstr ""
 
@@ -8244,32 +8060,71 @@ msgstr ""
 msgid "Imaginarily divorced"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Widowed"
+#: src/Content/ContactSelector.php:169
+msgid "Widowed"
+msgstr ""
+
+#: src/Content/ContactSelector.php:169
+msgid "Uncertain"
+msgstr ""
+
+#: src/Content/ContactSelector.php:169
+msgid "It's complicated"
+msgstr ""
+
+#: src/Content/ContactSelector.php:169
+msgid "Don't care"
+msgstr ""
+
+#: src/Content/ContactSelector.php:169
+msgid "Ask me"
+msgstr ""
+
+#: src/Content/ForumManager.php:127 view/theme/vier/theme.php:256
+msgid "External link to forum"
+msgstr ""
+
+#: src/Content/Nav.php:53
+msgid "Nothing new here"
+msgstr ""
+
+#: src/Content/Nav.php:57
+msgid "Clear notifications"
+msgstr ""
+
+#: src/Content/Nav.php:97 src/Module/Login.php:311
+#: view/theme/frio/theme.php:256
+msgid "Logout"
+msgstr ""
+
+#: src/Content/Nav.php:97 view/theme/frio/theme.php:256
+msgid "End this session"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Uncertain"
+#: src/Content/Nav.php:100 src/Content/Nav.php:181
+#: view/theme/frio/theme.php:259
+msgid "Your posts and conversations"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "It's complicated"
+#: src/Content/Nav.php:101 view/theme/frio/theme.php:260
+msgid "Your profile page"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Don't care"
+#: src/Content/Nav.php:102 view/theme/frio/theme.php:261
+msgid "Your photos"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Ask me"
+#: src/Content/Nav.php:103 src/Model/Profile.php:912 src/Model/Profile.php:915
+#: view/theme/frio/theme.php:262
+msgid "Videos"
 msgstr ""
 
-#: src/Content/Nav.php:53
-msgid "Nothing new here"
+#: src/Content/Nav.php:103 view/theme/frio/theme.php:262
+msgid "Your videos"
 msgstr ""
 
-#: src/Content/Nav.php:57
-msgid "Clear notifications"
+#: src/Content/Nav.php:104 view/theme/frio/theme.php:263
+msgid "Your events"
 msgstr ""
 
 #: src/Content/Nav.php:105
@@ -8316,6 +8171,11 @@ msgstr ""
 msgid "Conversations on this and other servers"
 msgstr ""
 
+#: src/Content/Nav.php:169 src/Model/Profile.php:927 src/Model/Profile.php:938
+#: view/theme/frio/theme.php:267
+msgid "Events and Calendar"
+msgstr ""
+
 #: src/Content/Nav.php:172
 msgid "Directory"
 msgstr ""
@@ -8328,6 +8188,10 @@ msgstr ""
 msgid "Information about this friendica instance"
 msgstr ""
 
+#: src/Content/Nav.php:178 view/theme/frio/theme.php:266
+msgid "Conversations from your friends"
+msgstr ""
+
 #: src/Content/Nav.php:179
 msgid "Network Reset"
 msgstr ""
@@ -8348,6 +8212,10 @@ msgstr ""
 msgid "Mark all system notifications seen"
 msgstr ""
 
+#: src/Content/Nav.php:195 view/theme/frio/theme.php:268
+msgid "Private mail"
+msgstr ""
+
 #: src/Content/Nav.php:196
 msgid "Inbox"
 msgstr ""
@@ -8364,6 +8232,10 @@ msgstr ""
 msgid "Manage other pages"
 msgstr ""
 
+#: src/Content/Nav.php:206 view/theme/frio/theme.php:269
+msgid "Account settings"
+msgstr ""
+
 #: src/Content/Nav.php:209 src/Model/Profile.php:372
 msgid "Profiles"
 msgstr ""
@@ -8372,6 +8244,10 @@ msgstr ""
 msgid "Manage/Edit Profiles"
 msgstr ""
 
+#: src/Content/Nav.php:212 view/theme/frio/theme.php:270
+msgid "Manage/edit friends and contacts"
+msgstr ""
+
 #: src/Content/Nav.php:217
 msgid "Site setup and configuration"
 msgstr ""
@@ -8384,6 +8260,26 @@ msgstr ""
 msgid "Site map"
 msgstr ""
 
+#: src/Content/OEmbed.php:253
+msgid "Embedding disabled"
+msgstr ""
+
+#: src/Content/OEmbed.php:373
+msgid "Embedded content"
+msgstr ""
+
+#: src/Content/Widget/CalendarExport.php:61
+msgid "Export"
+msgstr ""
+
+#: src/Content/Widget/CalendarExport.php:62
+msgid "Export calendar as ical"
+msgstr ""
+
+#: src/Content/Widget/CalendarExport.php:63
+msgid "Export calendar as csv"
+msgstr ""
+
 #: src/Content/Feature.php:79
 msgid "General Features"
 msgstr ""
@@ -8595,26 +8491,6 @@ msgstr ""
 msgid "Display membership date in profile"
 msgstr ""
 
-#: src/Content/OEmbed.php:253
-msgid "Embedding disabled"
-msgstr ""
-
-#: src/Content/OEmbed.php:373
-msgid "Embedded content"
-msgstr ""
-
-#: src/Content/Widget/CalendarExport.php:61
-msgid "Export"
-msgstr ""
-
-#: src/Content/Widget/CalendarExport.php:62
-msgid "Export calendar as ical"
-msgstr ""
-
-#: src/Content/Widget/CalendarExport.php:63
-msgid "Export calendar as csv"
-msgstr ""
-
 #: src/Content/Widget.php:33
 msgid "Add New Contact"
 msgstr ""
@@ -8646,10 +8522,18 @@ msgstr ""
 msgid "Examples: Robert Morgenstein, Fishing"
 msgstr ""
 
+#: src/Content/Widget.php:65 view/theme/vier/theme.php:202
+msgid "Similar Interests"
+msgstr ""
+
 #: src/Content/Widget.php:66
 msgid "Random Profile"
 msgstr ""
 
+#: src/Content/Widget.php:67 view/theme/vier/theme.php:204
+msgid "Invite Friends"
+msgstr ""
+
 #: src/Content/Widget.php:68
 msgid "View Global Directory"
 msgstr ""
@@ -8843,6 +8727,56 @@ msgstr ""
 msgid "Only You Can See This"
 msgstr ""
 
+#: src/Model/Item.php:1676
+#, php-format
+msgid "%1$s is attending %2$s's %3$s"
+msgstr ""
+
+#: src/Model/Item.php:1681
+#, php-format
+msgid "%1$s is not attending %2$s's %3$s"
+msgstr ""
+
+#: src/Model/Item.php:1686
+#, php-format
+msgid "%1$s may attend %2$s's %3$s"
+msgstr ""
+
+#: src/Model/Group.php:44
+msgid ""
+"A deleted group with this name was revived. Existing item permissions "
+"<strong>may</strong> apply to this group and any future members. If this is "
+"not what you intended, please create another group with a different name."
+msgstr ""
+
+#: src/Model/Group.php:328
+msgid "Default privacy group for new contacts"
+msgstr ""
+
+#: src/Model/Group.php:361
+msgid "Everybody"
+msgstr ""
+
+#: src/Model/Group.php:381
+msgid "edit"
+msgstr ""
+
+#: src/Model/Group.php:405
+msgid "Edit group"
+msgstr ""
+
+#: src/Model/Group.php:406
+msgid "Contacts not in any group"
+msgstr ""
+
+#: src/Model/Group.php:407
+msgid "Create a new group"
+msgstr ""
+
+#: src/Model/Group.php:409
+msgid "Edit groups"
+msgstr ""
+
 #: src/Model/Contact.php:645
 msgid "Drop Contact"
 msgstr ""
@@ -8984,56 +8918,6 @@ msgstr ""
 msgid "Hide map"
 msgstr ""
 
-#: src/Model/Group.php:44
-msgid ""
-"A deleted group with this name was revived. Existing item permissions "
-"<strong>may</strong> apply to this group and any future members. If this is "
-"not what you intended, please create another group with a different name."
-msgstr ""
-
-#: src/Model/Group.php:328
-msgid "Default privacy group for new contacts"
-msgstr ""
-
-#: src/Model/Group.php:361
-msgid "Everybody"
-msgstr ""
-
-#: src/Model/Group.php:381
-msgid "edit"
-msgstr ""
-
-#: src/Model/Group.php:405
-msgid "Edit group"
-msgstr ""
-
-#: src/Model/Group.php:406
-msgid "Contacts not in any group"
-msgstr ""
-
-#: src/Model/Group.php:407
-msgid "Create a new group"
-msgstr ""
-
-#: src/Model/Group.php:409
-msgid "Edit groups"
-msgstr ""
-
-#: src/Model/Item.php:1676
-#, php-format
-msgid "%1$s is attending %2$s's %3$s"
-msgstr ""
-
-#: src/Model/Item.php:1681
-#, php-format
-msgid "%1$s is not attending %2$s's %3$s"
-msgstr ""
-
-#: src/Model/Item.php:1686
-#, php-format
-msgid "%1$s may attend %2$s's %3$s"
-msgstr ""
-
 #: src/Model/User.php:144
 msgid "Login failed"
 msgstr ""
@@ -9108,6 +8992,10 @@ msgstr ""
 msgid "An error occurred during registration. Please try again."
 msgstr ""
 
+#: src/Model/User.php:488 view/theme/duepuntozero/config.php:54
+msgid "default"
+msgstr ""
+
 #: src/Model/User.php:493
 msgid "An error occurred creating your default profile. Please try again."
 msgstr ""
@@ -9145,115 +9033,39 @@ msgid ""
 "\t\t"
 msgstr ""
 
-#: src/Model/User.php:615
-#, php-format
-msgid ""
-"\n"
-"\t\t\tThe login details are as follows:\n"
-"\t\t\t\tSite Location:\t%3$s\n"
-"\t\t\t\tLogin Name:\t%1$s\n"
-"\t\t\t\tPassword:\t%5$s\n"
-"\n"
-"\t\t\tYou may change your password from your account Settings page after "
-"logging\n"
-"\t\t\tin.\n"
-"\n"
-"\t\t\tPlease take a few moments to review the other account settings on that "
-"page.\n"
-"\n"
-"\t\t\tYou may also wish to add some basic information to your default "
-"profile\n"
-"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
-"\n"
-"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
-"\t\t\tadding some profile keywords (very useful in making new friends) - "
-"and\n"
-"\t\t\tperhaps what country you live in; if you do not wish to be more "
-"specific\n"
-"\t\t\tthan that.\n"
-"\n"
-"\t\t\tWe fully respect your right to privacy, and none of these items are "
-"necessary.\n"
-"\t\t\tIf you are new and do not know anybody here, they may help\n"
-"\t\t\tyou to make some new and interesting friends.\n"
-"\n"
-"\n"
-"\t\t\tThank you and welcome to %2$s."
-msgstr ""
-
 #: src/Protocol/DFRN.php:1396
 #, php-format
 msgid "%s\\'s birthday"
 msgstr ""
 
-#: src/Protocol/Diaspora.php:2647
-msgid "Sharing notification from Diaspora network"
-msgstr ""
-
-#: src/Protocol/Diaspora.php:3732
-msgid "Attachments:"
-msgstr ""
-
 #: src/Protocol/OStatus.php:1799
 #, php-format
-msgid "%s is now following %s."
-msgstr ""
-
-#: src/Protocol/OStatus.php:1800
-msgid "following"
-msgstr ""
-
-#: src/Protocol/OStatus.php:1803
-#, php-format
-msgid "%s stopped following %s."
-msgstr ""
-
-#: src/Protocol/OStatus.php:1804
-msgid "stopped following"
-msgstr ""
-
-#: src/Worker/Delivery.php:390
-msgid "(no subject)"
-msgstr ""
-
-#: src/Module/Login.php:282
-msgid "Create a New Account"
-msgstr ""
-
-#: src/Module/Login.php:315
-msgid "Password: "
-msgstr ""
-
-#: src/Module/Login.php:316
-msgid "Remember me"
-msgstr ""
-
-#: src/Module/Login.php:319
-msgid "Or login using OpenID: "
+msgid "%s is now following %s."
 msgstr ""
 
-#: src/Module/Login.php:325
-msgid "Forgot your password?"
+#: src/Protocol/OStatus.php:1800
+msgid "following"
 msgstr ""
 
-#: src/Module/Login.php:328
-msgid "Website Terms of Service"
+#: src/Protocol/OStatus.php:1803
+#, php-format
+msgid "%s stopped following %s."
 msgstr ""
 
-#: src/Module/Login.php:329
-msgid "terms of service"
+#: src/Protocol/OStatus.php:1804
+msgid "stopped following"
 msgstr ""
 
-#: src/Module/Login.php:331
-msgid "Website Privacy Policy"
+#: src/Protocol/Diaspora.php:2647
+msgid "Sharing notification from Diaspora network"
 msgstr ""
 
-#: src/Module/Login.php:332
-msgid "privacy policy"
+#: src/Protocol/Diaspora.php:3732
+msgid "Attachments:"
 msgstr ""
 
-#: src/Module/Logout.php:28
-msgid "Logged out."
+#: src/Worker/Delivery.php:390
+msgid "(no subject)"
 msgstr ""
 
 #: src/Object/Post.php:128
@@ -9379,19 +9191,243 @@ msgstr ""
 msgid "Video"
 msgstr ""
 
-#: src/App.php:517
+#: src/Module/Login.php:282
+msgid "Create a New Account"
+msgstr ""
+
+#: src/Module/Login.php:315
+msgid "Password: "
+msgstr ""
+
+#: src/Module/Login.php:316
+msgid "Remember me"
+msgstr ""
+
+#: src/Module/Login.php:319
+msgid "Or login using OpenID: "
+msgstr ""
+
+#: src/Module/Login.php:325
+msgid "Forgot your password?"
+msgstr ""
+
+#: src/Module/Login.php:328
+msgid "Website Terms of Service"
+msgstr ""
+
+#: src/Module/Login.php:329
+msgid "terms of service"
+msgstr ""
+
+#: src/Module/Login.php:331
+msgid "Website Privacy Policy"
+msgstr ""
+
+#: src/Module/Login.php:332
+msgid "privacy policy"
+msgstr ""
+
+#: src/Module/Logout.php:28
+msgid "Logged out."
+msgstr ""
+
+#: src/App.php:511
 msgid "Delete this item?"
 msgstr ""
 
-#: src/App.php:519
+#: src/App.php:513
 msgid "show fewer"
 msgstr ""
 
-#: boot.php:791
-#, php-format
-msgid "Update %s failed. See error logs."
+#: view/theme/duepuntozero/config.php:55
+msgid "greenzero"
+msgstr ""
+
+#: view/theme/duepuntozero/config.php:56
+msgid "purplezero"
+msgstr ""
+
+#: view/theme/duepuntozero/config.php:57
+msgid "easterbunny"
+msgstr ""
+
+#: view/theme/duepuntozero/config.php:58
+msgid "darkzero"
+msgstr ""
+
+#: view/theme/duepuntozero/config.php:59
+msgid "comix"
+msgstr ""
+
+#: view/theme/duepuntozero/config.php:60
+msgid "slackr"
+msgstr ""
+
+#: view/theme/duepuntozero/config.php:74
+msgid "Variations"
+msgstr ""
+
+#: view/theme/frio/php/Image.php:25
+msgid "Repeat the image"
+msgstr ""
+
+#: view/theme/frio/php/Image.php:25
+msgid "Will repeat your image to fill the background."
+msgstr ""
+
+#: view/theme/frio/php/Image.php:27
+msgid "Stretch"
+msgstr ""
+
+#: view/theme/frio/php/Image.php:27
+msgid "Will stretch to width/height of the image."
+msgstr ""
+
+#: view/theme/frio/php/Image.php:29
+msgid "Resize fill and-clip"
+msgstr ""
+
+#: view/theme/frio/php/Image.php:29
+msgid "Resize to fill and retain aspect ratio."
+msgstr ""
+
+#: view/theme/frio/php/Image.php:31
+msgid "Resize best fit"
+msgstr ""
+
+#: view/theme/frio/php/Image.php:31
+msgid "Resize to best fit and retain aspect ratio."
+msgstr ""
+
+#: view/theme/frio/config.php:97
+msgid "Default"
+msgstr ""
+
+#: view/theme/frio/config.php:109
+msgid "Note"
+msgstr ""
+
+#: view/theme/frio/config.php:109
+msgid "Check image permissions if all users are allowed to visit the image"
+msgstr ""
+
+#: view/theme/frio/config.php:116
+msgid "Select scheme"
+msgstr ""
+
+#: view/theme/frio/config.php:117
+msgid "Navigation bar background color"
+msgstr ""
+
+#: view/theme/frio/config.php:118
+msgid "Navigation bar icon color "
+msgstr ""
+
+#: view/theme/frio/config.php:119
+msgid "Link color"
+msgstr ""
+
+#: view/theme/frio/config.php:120
+msgid "Set the background color"
+msgstr ""
+
+#: view/theme/frio/config.php:121
+msgid "Content background opacity"
+msgstr ""
+
+#: view/theme/frio/config.php:122
+msgid "Set the background image"
+msgstr ""
+
+#: view/theme/frio/config.php:127
+msgid "Login page background image"
+msgstr ""
+
+#: view/theme/frio/config.php:130
+msgid "Login page background color"
+msgstr ""
+
+#: view/theme/frio/config.php:130
+msgid "Leave background image and color empty for theme defaults"
+msgstr ""
+
+#: view/theme/frio/theme.php:238
+msgid "Guest"
+msgstr ""
+
+#: view/theme/frio/theme.php:243
+msgid "Visitor"
+msgstr ""
+
+#: view/theme/quattro/config.php:76
+msgid "Alignment"
+msgstr ""
+
+#: view/theme/quattro/config.php:76
+msgid "Left"
+msgstr ""
+
+#: view/theme/quattro/config.php:76
+msgid "Center"
+msgstr ""
+
+#: view/theme/quattro/config.php:77
+msgid "Color scheme"
+msgstr ""
+
+#: view/theme/quattro/config.php:78
+msgid "Posts font size"
+msgstr ""
+
+#: view/theme/quattro/config.php:79
+msgid "Textareas font size"
+msgstr ""
+
+#: view/theme/vier/config.php:75
+msgid "Comma separated list of helper forums"
+msgstr ""
+
+#: view/theme/vier/config.php:122
+msgid "Set style"
+msgstr ""
+
+#: view/theme/vier/config.php:123
+msgid "Community Pages"
+msgstr ""
+
+#: view/theme/vier/config.php:124 view/theme/vier/theme.php:150
+msgid "Community Profiles"
+msgstr ""
+
+#: view/theme/vier/config.php:125
+msgid "Help or @NewHere ?"
+msgstr ""
+
+#: view/theme/vier/config.php:126 view/theme/vier/theme.php:389
+msgid "Connect Services"
+msgstr ""
+
+#: view/theme/vier/config.php:127 view/theme/vier/theme.php:199
+msgid "Find Friends"
+msgstr ""
+
+#: view/theme/vier/config.php:128 view/theme/vier/theme.php:181
+msgid "Last users"
+msgstr ""
+
+#: view/theme/vier/theme.php:200
+msgid "Local Directory"
+msgstr ""
+
+#: view/theme/vier/theme.php:292
+msgid "Quick Start"
 msgstr ""
 
 #: index.php:444
 msgid "toggle mobile"
 msgstr ""
+
+#: boot.php:791
+#, php-format
+msgid "Update %s failed. See error logs."
+msgstr ""
diff --git a/view/templates/admin/tos.tpl b/view/templates/admin/tos.tpl
new file mode 100644 (file)
index 0000000..14fe68d
--- /dev/null
@@ -0,0 +1,12 @@
+<div id="adminpage">
+       <h1>{{$title}} - {{$page}}</h1>
+  <p>{{$intro}}</p>
+       <form action="{{$baseurl}}/admin/tos" method="post">
+               <input type='hidden' name='form_security_token' value='{{$form_security_token}}'>
+               {{include file="field_checkbox.tpl" field=$displaytos}}
+               {{include file="field_checkbox.tpl" field=$displayprivstatement}}
+               {{include file="field_textarea.tpl" field=$tostext}}
+               <div class="submit"><input type="submit" name="page_tos" value="{{$submit|escape:'html'}}" /></div>
+       </form>
+</div>
+
index 55c08627419c0286775733fd5c8dd3f5ee0e83d8..eddc55132551d8ad79838511073f4c40796976bf 100644 (file)
 
        {{$publish}}
 
+       {{if $showtoslink}}
+       <p><a href="{{$baseurl}}/tos">{{$tostext}}</a></p>
+       {{/if}}
+
        <div id="register-submit-wrapper">
                <input type="submit" name="submit" id="register-submit-button" value="{{$regbutt|escape:'html'}}" />
        </div>
diff --git a/view/templates/tos.tpl b/view/templates/tos.tpl
new file mode 100644 (file)
index 0000000..0f3d3c2
--- /dev/null
@@ -0,0 +1,10 @@
+<h1>{{$title}}</h1>
+
+{{$tostext}}
+
+{{if $displayprivstatement}}
+<h2>{{$privstatementtitle}}</h2>
+<p>{{$privoperate}}</p>
+<p>{{$privdelete}}</p>
+{{/if}}
+