diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2012-07-22 22:54:27 -0500 |
---|---|---|
committer | Unknown Bliss <m@michaelcullum.com> | 2012-09-01 15:05:18 +0100 |
commit | 28ca2d6a5fe8f8f1d8733af70951fa1191336eb6 (patch) | |
tree | e792bdd55a7ba8c3231786f4812a0a8e1f8dda91 /phpBB/language | |
parent | bf6e91b5f3f6d56c1a38cbff0ccf206f13202e50 (diff) | |
download | forums-28ca2d6a5fe8f8f1d8733af70951fa1191336eb6.tar forums-28ca2d6a5fe8f8f1d8733af70951fa1191336eb6.tar.gz forums-28ca2d6a5fe8f8f1d8733af70951fa1191336eb6.tar.bz2 forums-28ca2d6a5fe8f8f1d8733af70951fa1191336eb6.tar.xz forums-28ca2d6a5fe8f8f1d8733af70951fa1191336eb6.zip |
[ticket/10631] Stagger the enable/disable/purge for extensions
PHPBB3-10631
Diffstat (limited to 'phpBB/language')
-rw-r--r-- | phpBB/language/en/acp/extensions.php | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/phpBB/language/en/acp/extensions.php b/phpBB/language/en/acp/extensions.php index 950f3b5332..66f3665757 100644 --- a/phpBB/language/en/acp/extensions.php +++ b/phpBB/language/en/acp/extensions.php @@ -60,10 +60,13 @@ $lang = array_merge($lang, array( 'PURGE_EXPLAIN' => 'Purging an extension clears an extensions data while retaining its files.', 'DELETE_EXPLAIN' => 'Deleting an extension removes all of its files and settings. Log entries will remain, although any language variables added by the extension will not be available.', - 'ENABLE_SUCESS' => 'The extension was enabled successfully', - 'DISABLE_SUCESS' => 'The extension was disabled successfully', - 'PURGE_SUCESS' => 'The extension was purged successfully', - 'DELETE_SUCESS' => 'The extension was deleted successfully', + 'DISABLE_IN_PROGRESS' => 'The extension is currently being disabled, please do not leave this page or refresh until it is completed.', + 'ENABLE_IN_PROGRESS' => 'The extension is currently being installed, please do not leave this page or refresh until it is completed.', + 'PURGE_IN_PROGRESS' => 'The extension is currently being purged, please do not leave this page or refresh until it is completed.', + 'ENABLE_SUCCESS' => 'The extension was enabled successfully', + 'DISABLE_SUCCESS' => 'The extension was disabled successfully', + 'PURGE_SUCCESS' => 'The extension was purged successfully', + 'DELETE_SUCCESS' => 'The extension was deleted successfully', 'ENABLE_FAIL' => 'The extension could not be enabled', 'DISABLE_FAIL' => 'The extension could not be disabled', |