diff options
author | Matt Friedman <maf675@gmail.com> | 2016-03-26 12:38:07 -0700 |
---|---|---|
committer | Matt Friedman <maf675@gmail.com> | 2016-03-31 15:07:43 -0700 |
commit | 16f9b4630cfc3c6247894ac82ac6b95577075753 (patch) | |
tree | 275107fb062cbfe8403c3cab736b04c23f9c6fe2 /phpBB/language/en/cli.php | |
parent | 91f1116e046818fb49a19ff59652f684c6f5f736 (diff) | |
download | forums-16f9b4630cfc3c6247894ac82ac6b95577075753.tar forums-16f9b4630cfc3c6247894ac82ac6b95577075753.tar.gz forums-16f9b4630cfc3c6247894ac82ac6b95577075753.tar.bz2 forums-16f9b4630cfc3c6247894ac82ac6b95577075753.tar.xz forums-16f9b4630cfc3c6247894ac82ac6b95577075753.zip |
[ticket/14561] Reclean usernames command
PHPBB3-14561
Diffstat (limited to 'phpBB/language/en/cli.php')
-rw-r--r-- | phpBB/language/en/cli.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/phpBB/language/en/cli.php b/phpBB/language/en/cli.php index d76993e3bf..0048e4569f 100644 --- a/phpBB/language/en/cli.php +++ b/phpBB/language/en/cli.php @@ -95,6 +95,7 @@ $lang = array_merge($lang, array( 'CLI_DESCRIPTION_USER_DELETE' => 'Delete a user account.', 'CLI_DESCRIPTION_USER_DELETE_USERNAME' => 'Username of the user to delete', 'CLI_DESCRIPTION_USER_DELETE_OPTION_POSTS' => 'Delete all posts by the user. Without this option, the user’s posts will be retained.', + 'CLI_DESCRIPTION_USER_RECLEAN' => 'Re-clean usernames.', 'CLI_EXTENSION_DISABLE_FAILURE' => 'Could not disable extension %s', 'CLI_EXTENSION_DISABLE_SUCCESS' => 'Successfully disabled extension %s', @@ -135,6 +136,11 @@ $lang = array_merge($lang, array( 'CLI_USER_ADD_SUCCESS' => 'Successfully added user %s.', 'CLI_USER_DELETE_CONFIRM' => 'Are you sure you want to delete ‘%s’? [y/N]', + 'CLI_USER_RECLEAN_SUCCESS' => [ + 0 => 'Re-cleaning complete. No usernames needed to be cleaned.', + 1 => 'Re-cleaning complete. %d username was cleaned.', + 2 => 'Re-cleaning complete. %d usernames were cleaned.', + ], )); // Additional help for commands. |