]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/Installer.php
rewording the encouragement and regen of the messages.po
[friendica.git] / src / Core / Installer.php
index 355513ac7480960b240bb4e536367f097ee1de7b..041771812526fe028b8e7cda42d7137f7e54ec33 100644 (file)
@@ -587,7 +587,7 @@ class Installer
        /**
         * TLS Check
         *
-        * Tries to determine wheather the connection to the server is secured
+        * Tries to determine whether the connection to the server is secured
         * by TLS or not. If not the user will be warned that it is higly
         * encuraged to use TLS.
         *
@@ -605,13 +605,13 @@ class Installer
                
                if (!$tls) {
                        $help = DI::l10n()->t('The detection of TLS to secure the communication between the browser and the new Friendica server failed.');
+                       $help .= ' ' . DI::l10n()->t('It is highly encouraged to use Friendica only over a secure connection as sensitive information like passwords will be transmitted.');
                        $help .= ' ' . DI::l10n()->t('Please ensure that the connection to the server is secure.');
                        $this->addCheck(DI::l10n()->t('No TLS detected'), $tls, false, $help);
                } else {
                        $this->addCheck(DI::l10n()->t('TLS detected'), $tls, false, '');
                }
 
-
                // TLS is not required
                return true;
        }