diff options
| author | 2015-01-26 10:46:29 +0100 | |
|---|---|---|
| committer | 2015-01-26 10:47:09 +0100 | |
| commit | ec75139939780810f43f4e85fbf37de2409fe584 (patch) | |
| tree | b0dc7cdf27dad376c6fdfb8f271c6334742bc8d0 /app | |
| parent | 65fb4ac1fdc41f91c190b5fa82ed2f9ce2817fe5 (diff) | |
Give indication on password format
Fix https://github.com/FreshRSS/FreshRSS/issues/769
Diffstat (limited to 'app')
| -rw-r--r-- | app/i18n/de/install.php | 1 | ||||
| -rw-r--r-- | app/i18n/en/install.php | 1 | ||||
| -rw-r--r-- | app/i18n/fr/install.php | 1 | ||||
| -rw-r--r-- | app/install.php | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/app/i18n/de/install.php b/app/i18n/de/install.php index 1e324251a..e9267bbbd 100644 --- a/app/i18n/de/install.php +++ b/app/i18n/de/install.php @@ -12,6 +12,7 @@ return array( 'http' => 'HTTP (HTTPS für erfahrene Benutzer)', 'none' => 'Keine (gefährlich)', 'password_form' => 'Passwort<br /><small>(für die Anmeldemethode per Webformular)</small>', + 'password_format' => 'mindestens 7 Zeichen', 'persona' => 'Mozilla Persona (modern, benötigt JavaScript)', 'type' => 'Authentifizierungsmethode', ), diff --git a/app/i18n/en/install.php b/app/i18n/en/install.php index e8073e8b6..2bc6bd38f 100644 --- a/app/i18n/en/install.php +++ b/app/i18n/en/install.php @@ -12,6 +12,7 @@ return array( 'http' => 'HTTP (for advanced users with HTTPS)', 'none' => 'None (dangerous)', 'password_form' => 'Password<br /><small>(for the Web-form login method)</small>', + 'password_format' => 'At least 7 characters', 'persona' => 'Mozilla Persona (modern, requires JavaScript)', 'type' => 'Authentication method', ), diff --git a/app/i18n/fr/install.php b/app/i18n/fr/install.php index d1b78ffb6..1aa4854ef 100644 --- a/app/i18n/fr/install.php +++ b/app/i18n/fr/install.php @@ -12,6 +12,7 @@ return array( 'http' => 'HTTP (pour utilisateurs avancés avec HTTPS)', 'none' => 'Aucune (dangereux)', 'password_form' => 'Mot de passe<br /><small>(pour connexion par formulaire)</small>', + 'password_format' => 'Minimum 7 caractères', 'persona' => 'Mozilla Persona (moderne, requiert JavaScript)', 'type' => 'Méthode d’authentification', ), diff --git a/app/install.php b/app/install.php index eb2f764f9..177173fdb 100644 --- a/app/install.php +++ b/app/install.php @@ -598,6 +598,7 @@ function printStep2() { <input type="password" id="passwordPlain" name="passwordPlain" pattern=".{7,}" autocomplete="off" <?php echo $auth_type === 'form' ? ' required="required"' : ''; ?> /> <a class="btn toggle-password" data-toggle="passwordPlain"><?php echo FreshRSS_Themes::icon('key'); ?></a> </div> + <?php echo _i('help'); ?> <?php echo _t('install.auth.password_format'); ?> <noscript><b><?php echo _t('gen.js.should_be_activated'); ?></b></noscript> </div> </div> |
