diff options
author | Marc Alexander <admin@m-a-styles.de> | 2016-02-10 14:11:18 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2016-02-10 14:11:18 +0100 |
commit | aa6dd6d4ff28f38f9596b7bb3adf19a8a7988b67 (patch) | |
tree | 789326f38c5fff075ba42e5b107594888642fc45 | |
parent | 0210a6298d9dd39ddb15a1e0b8f49f7821cd460f (diff) | |
parent | 6a2d041c3d3dba11e63ab8fa6ce6fe8355922f8b (diff) | |
download | forums-aa6dd6d4ff28f38f9596b7bb3adf19a8a7988b67.tar forums-aa6dd6d4ff28f38f9596b7bb3adf19a8a7988b67.tar.gz forums-aa6dd6d4ff28f38f9596b7bb3adf19a8a7988b67.tar.bz2 forums-aa6dd6d4ff28f38f9596b7bb3adf19a8a7988b67.tar.xz forums-aa6dd6d4ff28f38f9596b7bb3adf19a8a7988b67.zip |
Merge pull request #4172 from Crizz0/ticket/14307
[ticket/14307] Fixes wording in install.php file/dir exist/writeable
-rw-r--r-- | phpBB/language/en/install.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/language/en/install.php b/phpBB/language/en/install.php index 5b761dcb19..e643dd06c1 100644 --- a/phpBB/language/en/install.php +++ b/phpBB/language/en/install.php @@ -91,14 +91,14 @@ $lang = array_merge($lang, array( $lang = array_merge($lang, array( // Filesystem requirements 'FILE_NOT_EXISTS' => 'File not exists', - 'FILE_NOT_EXISTS_EXPLAIN' => 'To be able to install phpBB %1$s file need to exist.', + '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 %1$s file need to be 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 %1$s directory need to exist.', + '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 %1$s directory need to be writable.', + 'DIRECTORY_NOT_WRITABLE_EXPLAIN' => 'To be able to install phpBB the %1$s directory needs to be writable.', // Server requirements 'PHP_VERSION_REQD' => 'PHP version', |