diff options
| author | Tristan Darricau <github@nicofuma.fr> | 2016-04-12 11:27:03 +0200 |
|---|---|---|
| committer | Tristan Darricau <github@nicofuma.fr> | 2016-04-12 11:27:03 +0200 |
| commit | 560bee1be41b2c8ef37eebd4d1304e3fc03a383b (patch) | |
| tree | f2581ba525ab04d5e68917bfc34032e02bf21df7 /phpBB/language | |
| parent | 336f5b49a7f392ea6e979ef188ffda3caa6271b3 (diff) | |
| parent | 972255247bce8ea547483e4a22ed75bf4f6c2f42 (diff) | |
| download | forums-560bee1be41b2c8ef37eebd4d1304e3fc03a383b.tar forums-560bee1be41b2c8ef37eebd4d1304e3fc03a383b.tar.gz forums-560bee1be41b2c8ef37eebd4d1304e3fc03a383b.tar.bz2 forums-560bee1be41b2c8ef37eebd4d1304e3fc03a383b.tar.xz forums-560bee1be41b2c8ef37eebd4d1304e3fc03a383b.zip | |
Merge pull request #4284 from CHItA/ticket/14589
[ticket/14589] Add error messages for failable installer requirements
* CHItA/ticket/14589:
[ticket/14589] Fix grammatical errors in language strings
[ticket/14589] Add error messages for failable installer requirements
Diffstat (limited to 'phpBB/language')
| -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..88cbaf1533 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 does not exist', + '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 exist for a better forum user experience.', + 'FILE_NOT_WRITABLE' => 'File is 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 does not exist', + '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 exist for a better forum user experience.', + 'DIRECTORY_NOT_WRITABLE' => 'Directory is 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', |
