1<?php
2/**
3 * English language file for passpolicy plugin
4 *
5 * @author Andreas Gohr <andi@splitbrain.org>
6 */
7
8$lang['badpasspolicy'] = 'You have to use a stronger password.';
9$lang['length'] = 'Your password needs to be at least %d characters long.';
10$lang['pools'] = 'Your password needs to use characters from at least %d of the following types: %s.';
11$lang['user1'] = 'Your password may not contain your username.';
12$lang['user2'] = 'Your password may only use %d or less consecutive characters that appear in your username.';
13$lang['nocommon'] = 'Your password may not be one of the 10,000 most commonly used passwords.';
14$lang['noleaked'] = 'Your password may not have been used in any known password leak.';
15$lang['resendpwd'] = 'A confirmation mail was sent to the given user, if the account exists.';
16
17$lang['js']['strength0'] = 'very weak';
18$lang['js']['strength1'] = 'weak';
19$lang['js']['strength2'] = 'decent';
20$lang['js']['strength3'] = 'strong';
21$lang['js']['nopolicy'] = ', policy not met';
22
23//Setup VIM: ex: et ts=4 :
24