diff options
| author | 2021-01-02 11:14:23 -0500 | |
|---|---|---|
| committer | 2021-01-02 17:14:23 +0100 | |
| commit | 08d76967b0664ee668d9b508993b52c44c3bfa78 (patch) | |
| tree | 835aa85ded33b3d428a58c2bb93c07ca9d65f24e /app/i18n/pl/install.php | |
| parent | ce9eb7b14c378526d9488f0eb20e663580e9f429 (diff) | |
Add temp folder check during install (#3312)
Before, the temp path was not check during install. With some configuration,
FRSS was not working because of a non-writable temp directory. It happened
with XAMPP on MacOS X but it might be the case for other platforms.
Now, the temp path is checked during install to make sure it is writable.
See #3310
Diffstat (limited to 'app/i18n/pl/install.php')
| -rw-r--r-- | app/i18n/pl/install.php | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/app/i18n/pl/install.php b/app/i18n/pl/install.php index a9d02efdb..34e7e12df 100644 --- a/app/i18n/pl/install.php +++ b/app/i18n/pl/install.php @@ -33,7 +33,7 @@ return array( '_' => 'Checks', // TODO - Translation 'already_installed' => 'We have detected that FreshRSS is already installed!', // TODO - Translation 'cache' => array( - 'nok' => 'Check permissions on the <em>./data/cache</em> directory. The HTTP server must have write permission.', // TODO - Translation + 'nok' => 'Check permissions on the <em>%s</em> directory. The HTTP server must have write permission.', // TODO - Translation 'ok' => 'Permissions on the cache directory are good.', // TODO - Translation ), 'ctype' => array( @@ -45,7 +45,7 @@ return array( 'ok' => 'You have the cURL library.', // TODO - Translation ), 'data' => array( - 'nok' => 'Check permissions on the <em>./data</em> directory. The HTTP server must have write permission.', // TODO - Translation + 'nok' => 'Check permissions on the <em>%s</em> directory. The HTTP server must have write permission.', // TODO - Translation 'ok' => 'Permissions on the data directory are good.', // TODO - Translation ), 'dom' => array( @@ -53,7 +53,7 @@ return array( 'ok' => 'You have the required library to browse the DOM.', // TODO - Translation ), 'favicons' => array( - 'nok' => 'Check permissions on the <em>./data/favicons</em> directory. The HTTP server must have write permission.', // TODO - Translation + 'nok' => 'Check permissions on the <em>%s</em> directory. The HTTP server must have write permission.', // TODO - Translation 'ok' => 'Permissions on the favicons directory are good.', // TODO - Translation ), 'fileinfo' => array( @@ -88,8 +88,12 @@ return array( 'nok' => 'Your PHP version is %s, but FreshRSS requires at least version %s.', // TODO - Translation 'ok' => 'Your PHP version, %s, is compatible with FreshRSS.', // TODO - Translation ), + 'tmp' => array( + 'nok' => 'Check permissions on the <em>%s</em> directory. The HTTP server must have write permissions.', // TODO - Translation + 'ok' => 'Permissions on the temp directory are good.', // TODO - Translation + ), 'users' => array( - 'nok' => 'Check permissions on the <em>./data/users</em> directory. The HTTP server must have write permissions', // TODO - Translation + 'nok' => 'Check permissions on the <em>%s</em> directory. The HTTP server must have write permissions.', // TODO - Translation 'ok' => 'Permissions on the users directory are good.', // TODO - Translation ), 'xml' => array( |
