diff options
author | Oliver Schramm <oliver.schramm97@gmail.com> | 2016-02-13 23:10:40 +0100 |
---|---|---|
committer | Mate Bartus <mate.bartus@gmail.com> | 2016-02-14 16:16:33 +0100 |
commit | 2084404d2a0648d406749d67e44f1ba3ba44d7df (patch) | |
tree | 92b5b52deb179167dc92b699638fb9ed421b6e79 /phpBB/language/en/install.php | |
parent | b9f5c030991b363d639aaf4d1781db6acd845860 (diff) | |
download | forums-2084404d2a0648d406749d67e44f1ba3ba44d7df.tar forums-2084404d2a0648d406749d67e44f1ba3ba44d7df.tar.gz forums-2084404d2a0648d406749d67e44f1ba3ba44d7df.tar.bz2 forums-2084404d2a0648d406749d67e44f1ba3ba44d7df.tar.xz forums-2084404d2a0648d406749d67e44f1ba3ba44d7df.zip |
[ticket/14462] Make timeout error translateable
PHPBB3-14462
Diffstat (limited to 'phpBB/language/en/install.php')
-rw-r--r-- | phpBB/language/en/install.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/phpBB/language/en/install.php b/phpBB/language/en/install.php index 3ce034e590..41eef61c50 100644 --- a/phpBB/language/en/install.php +++ b/phpBB/language/en/install.php @@ -120,7 +120,11 @@ $lang = array_merge($lang, array( // General error messages $lang = array_merge($lang, array( 'INST_ERR_MISSING_DATA' => 'You must fill out all fields in this block.', - 'PHPBB_ALREADY_INSTALLED' => 'phpBB is already installed.' + + 'PHPBB_ALREADY_INSTALLED' => 'phpBB is already installed.', + + 'TIMEOUT_DETECTED_TITLE' => 'The installer detected a timeout', + 'TIMEOUT_DETECTED_MESSAGE' => 'The installer has detected a timeout, you may try to refresh the page, which may lead to data corruption. We suggest that you either increase your timeout settings or try to use the CLI.', )); // Data obtaining translations |