1<?php 2/** 3 * english language file for passpolicy plugin 4 * 5 * @author Andreas Gohr <andi@splitbrain.org> 6 */ 7 8$lang['minlen'] = 'Mimimal length for user passwords'; 9$lang['pools'] = 'Character types to use in passwords'; 10$lang['minpools'] = 'Minimal number of different character types that have to be used in passwords. May not be higher than the number of selected types above'; 11$lang['user'] = 'Check if password matches against the user\'s name. 0 to disable. 1 for exact matches. Any other number for the number of consecutive characters that may be contained in both password and username'; 12$lang['nocommon'] = 'Check password against a list of the 10,000 most common passwords.'; 13$lang['noleaked'] = 'Check password against the haveibeenpwned.com passwords API (using k-anonymity) to avoid passwords that have been leaked before.'; 14 15$lang['autotype'] = 'How to generate passwords?'; 16$lang['autobits'] = 'Minimal number of bits of information to generate passwords. The higher, the more secure but harder to remember. Minimum: 24.'; 17 18$lang['supressuserhints'] = 'The reset password mechanism usually tells if the given user account exists or not. This supresses all hints on that.'; 19 20$lang['autotype_o_random'] = 'random password'; 21$lang['autotype_o_pronouncable'] = 'pronouncable password'; 22$lang['autotype_o_phrase'] = 'multi word pass phrase'; 23 24$lang['pools_lower'] = 'lower case letters'; 25$lang['pools_upper'] = 'upper case letters'; 26$lang['pools_numeric'] = 'numbers'; 27$lang['pools_special'] = 'special chars (eg. !, $, #, %)'; 28