diff options
| author | 2014-12-28 17:42:46 +0100 | |
|---|---|---|
| committer | 2014-12-28 17:42:46 +0100 | |
| commit | 039a83759d41615aaa593fa62deff4c25fc126a2 (patch) | |
| tree | 8120e3522e833cce8fb8c96ccc185c4d409ded90 /app/i18n/en/install.php | |
| parent | 7a967e68ad1fde4a9e564228e72b1cb87f39a0f8 (diff) | |
Fix install.php to consider new data organization
- Introduce USERS_PATH
- Remove LOG_PATH
- Use join_path in install.php
- Change references to old data files to the new ones
- Update i18n
See https://github.com/FreshRSS/FreshRSS/issues/729
Diffstat (limited to 'app/i18n/en/install.php')
| -rw-r--r-- | app/i18n/en/install.php | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/app/i18n/en/install.php b/app/i18n/en/install.php index ed3210190..e8073e8b6 100644 --- a/app/i18n/en/install.php +++ b/app/i18n/en/install.php @@ -3,6 +3,7 @@ return array( 'action' => array( 'finish' => 'Complete installation', + 'fix_errors_before' => 'Fix errors before skip to the next step.', 'next_step' => 'Go to the next step', ), 'auth' => array( @@ -57,10 +58,6 @@ return array( 'nok' => 'Please check that you are not altering your HTTP REFERER.', 'ok' => 'Your HTTP REFERER is known and corresponds to your server.', ), - 'logs' => array( - 'nok' => 'Check permissions on <em>./data/logs</em> directory. HTTP server must have rights to write into', - 'ok' => 'Permissions on logs directory are good.', - ), 'minz' => array( 'nok' => 'You lack the Minz framework.', 'ok' => 'You have the Minz framework.', @@ -81,6 +78,10 @@ return array( 'nok' => 'Your PHP version is %s but FreshRSS requires at least version %s.', 'ok' => 'Your PHP version is %s, which is compatible with FreshRSS.', ), + 'users' => array( + 'nok' => 'Check permissions on <em>./data/users</em> directory. HTTP server must have rights to write into', + 'ok' => 'Permissions on users directory are good.', + ), ), 'conf' => array( '_' => 'General configuration', |
