diff options
author | Máté Bartus <mate.bartus@gmail.com> | 2016-04-10 10:30:15 +0200 |
---|---|---|
committer | Máté Bartus <mate.bartus@gmail.com> | 2016-04-10 10:30:15 +0200 |
commit | 9163cc28647e9936fe9c9e390871f9130d2bf40b (patch) | |
tree | 1d42148a5f41e7127738c6a958cfc5fc0c542f3a /phpBB/language/en/install.php | |
parent | 4e8981ee372e16caa1ebf1b36c877e06ed75bf3a (diff) | |
download | forums-9163cc28647e9936fe9c9e390871f9130d2bf40b.tar forums-9163cc28647e9936fe9c9e390871f9130d2bf40b.tar.gz forums-9163cc28647e9936fe9c9e390871f9130d2bf40b.tar.bz2 forums-9163cc28647e9936fe9c9e390871f9130d2bf40b.tar.xz forums-9163cc28647e9936fe9c9e390871f9130d2bf40b.zip |
[ticket/14589] Add error messages for failable installer requirements
PHPBB3-14589
Diffstat (limited to 'phpBB/language/en/install.php')
-rw-r--r-- | phpBB/language/en/install.php | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/phpBB/language/en/install.php b/phpBB/language/en/install.php index 9a727be649..738b8af648 100644 --- a/phpBB/language/en/install.php +++ b/phpBB/language/en/install.php @@ -90,15 +90,19 @@ $lang = array_merge($lang, array( // Requirements translation $lang = array_merge($lang, array( // Filesystem requirements - 'FILE_NOT_EXISTS' => 'File not exists', - 'FILE_NOT_EXISTS_EXPLAIN' => 'To be able to install phpBB the %1$s file needs to exist.', - 'FILE_NOT_WRITABLE' => 'File not writable', - 'FILE_NOT_WRITABLE_EXPLAIN' => 'To be able to install phpBB the %1$s file needs to be writable.', - - 'DIRECTORY_NOT_EXISTS' => 'Directory not exists', - 'DIRECTORY_NOT_EXISTS_EXPLAIN' => 'To be able to install phpBB the %1$s directory needs to exist.', - 'DIRECTORY_NOT_WRITABLE' => 'Directory not writable', - 'DIRECTORY_NOT_WRITABLE_EXPLAIN' => 'To be able to install phpBB the %1$s directory needs to be writable.', + 'FILE_NOT_EXISTS' => 'File not exists', + 'FILE_NOT_EXISTS_EXPLAIN' => 'To be able to install phpBB the %1$s file needs to exist.', + 'FILE_NOT_EXISTS_EXPLAIN_OPTIONAL' => 'It is recommended that the %1$s file exists for a better forum user experience.', + 'FILE_NOT_WRITABLE' => 'File not writable', + 'FILE_NOT_WRITABLE_EXPLAIN' => 'To be able to install phpBB the %1$s file needs to be writable.', + 'FILE_NOT_WRITABLE_EXPLAIN_OPTIONAL' => 'It is recommended that the %1$s file be writable for a better forum user experience.', + + 'DIRECTORY_NOT_EXISTS' => 'Directory not exists', + 'DIRECTORY_NOT_EXISTS_EXPLAIN' => 'To be able to install phpBB the %1$s directory needs to exist.', + 'DIRECTORY_NOT_EXISTS_EXPLAIN_OPTIONAL' => 'It is recommended that the %1$s directory exists for a better forum user experience.', + 'DIRECTORY_NOT_WRITABLE' => 'Directory not writable', + 'DIRECTORY_NOT_WRITABLE_EXPLAIN' => 'To be able to install phpBB the %1$s directory needs to be writable.', + 'DIRECTORY_NOT_WRITABLE_EXPLAIN_OPTIONAL' => 'It is recommended that the %1$s directory be writable for a better forum user experience.', // Server requirements 'PHP_VERSION_REQD' => 'PHP version', |