diff options
author | CHItA <mate.bartus@gmail.com> | 2015-06-05 17:43:30 +0200 |
---|---|---|
committer | Mate Bartus <mate.bartus@gmail.com> | 2015-07-08 01:28:01 +0200 |
commit | 1b81bf5b2370c045a6369705d2a11a2b35fe2281 (patch) | |
tree | e1b2f4205fa3029734fb8fb909df067eae56cfed /phpBB/language | |
parent | 0dc6029bfed10fac1a09a4fd8de7d1b31407693a (diff) | |
download | forums-1b81bf5b2370c045a6369705d2a11a2b35fe2281.tar forums-1b81bf5b2370c045a6369705d2a11a2b35fe2281.tar.gz forums-1b81bf5b2370c045a6369705d2a11a2b35fe2281.tar.bz2 forums-1b81bf5b2370c045a6369705d2a11a2b35fe2281.tar.xz forums-1b81bf5b2370c045a6369705d2a11a2b35fe2281.zip |
[ticket/13740] Add better progress handling, also add log messages
PHPBB3-13740
Diffstat (limited to 'phpBB/language')
-rw-r--r-- | phpBB/language/en/install.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/phpBB/language/en/install.php b/phpBB/language/en/install.php index e3c4b859f0..92251a4992 100644 --- a/phpBB/language/en/install.php +++ b/phpBB/language/en/install.php @@ -249,3 +249,18 @@ $lang = array_merge($lang, array( // Installer general progress messages 'INSTALLER_FINISHED' => 'The installer has finished successfully', )); + +// Installer's general messages +$lang = array_merge($lang, array( + 'MODULE_NOT_FOUND' => 'Module not found', + 'MODULE_NOT_FOUND_DESCRIPTION' => 'No module is found under the service definition “%s” is not defined.', + + 'TASK_NOT_FOUND' => 'Task not found', + 'TASK_NOT_FOUND_DESCRIPTION' => 'No task is found under the service definition “%s” is not defined.', + + 'SKIP_MODULE' => 'Skip “%s” module', + 'SKIP_TASK' => 'Skip “%s” task', + + 'TASK_SERVICE_INSTALLER_MISSING' => 'All installer task services should start with “installer”', + 'TASK_CLASS_NOT_FOUND' => 'Installer task service definition is invalid. Service name “%1$s” given, the expected class namespace is “%2$s” for that. For more information please see the documentation of task_interface.', +)); |