diff options
| author | 2025-12-21 19:26:08 +0100 | |
|---|---|---|
| committer | 2025-12-21 19:26:08 +0100 | |
| commit | 1a3912f25a27c8d78aacbbee98f6056f4ad47f1a (patch) | |
| tree | 90fe6bd955535aed22152fc3a41a51a4958f4d4d /app/i18n/en/admin.php | |
| parent | 672411ca7053345634a63dd3eabed75baf93043f (diff) | |
Improve configuration checks (#8334)
Add a distinction between recommended and required extensions.
Add check for recommended php-intl extension as follow-up of https://github.com/FreshRSS/FreshRSS/pull/8329#issuecomment-3677686581
Improve related checks such as ZIP.
Reduce duplicated translations and tests.
Diffstat (limited to 'app/i18n/en/admin.php')
| -rw-r--r-- | app/i18n/en/admin.php | 86 |
1 files changed, 0 insertions, 86 deletions
diff --git a/app/i18n/en/admin.php b/app/i18n/en/admin.php index 20e8e355a..f905a2030 100644 --- a/app/i18n/en/admin.php +++ b/app/i18n/en/admin.php @@ -23,92 +23,6 @@ return array( 'token_help' => 'Allows access to all RSS outputs of the user as well as refreshing feeds without authentication:', 'type' => 'Authentication method', ), - 'check_install' => array( - 'cache' => array( - 'nok' => 'Check permissions on <em>./data/cache</em> directory. HTTP server must have write permission.', - 'ok' => 'Permissions on the cache directory are good.', - ), - 'categories' => array( - 'nok' => 'Category table is improperly configured.', - 'ok' => 'Category table is okay.', - ), - 'connection' => array( - 'nok' => 'Connection to the database cannot be established.', - 'ok' => 'Connection to the database is okay.', - ), - 'ctype' => array( - 'nok' => 'Cannot find a required library for character type checking (php-ctype).', - 'ok' => 'You have the required library for character type checking (ctype).', - ), - 'curl' => array( - 'nok' => 'Cannot find the cURL library (php-curl package).', - 'ok' => 'You have the cURL library.', - ), - 'data' => array( - 'nok' => 'Check permissions on <em>./data</em> directory. HTTP server must have write permission.', - 'ok' => 'Permissions on the data directory are good.', - ), - 'database' => 'Database installation', - 'dom' => array( - 'nok' => 'Cannot find a required library to browse the DOM (php-xml package).', - 'ok' => 'You have the required library to browse the DOM.', - ), - 'entries' => array( - 'nok' => 'Entry table is improperly configured.', - 'ok' => 'Entry table is okay.', - ), - 'favicons' => array( - 'nok' => 'Check permissions on <em>./data/favicons</em> directory. HTTP server must have write permission.', - 'ok' => 'Permissions on the favicons directory are good.', - ), - 'feeds' => array( - 'nok' => 'Feed table is improperly configured.', - 'ok' => 'Feed table is okay.', - ), - 'fileinfo' => array( - 'nok' => 'Cannot find the PHP fileinfo library (fileinfo package).', - 'ok' => 'You have the fileinfo library.', - ), - 'files' => 'File installation', - 'json' => array( - 'nok' => 'Cannot find JSON (php-json package).', - 'ok' => 'You have the JSON extension.', - ), - 'mbstring' => array( - 'nok' => 'Cannot find the recommended mbstring library for Unicode.', - 'ok' => 'You have the recommended mbstring library for Unicode.', - ), - 'pcre' => array( - 'nok' => 'Cannot find a required library for regular expressions (php-pcre).', - 'ok' => 'You have the required library for regular expressions (PCRE).', - ), - 'pdo' => array( - 'nok' => 'Cannot find PDO or one of the supported drivers (pdo_mysql, pdo_sqlite, pdo_pgsql).', - 'ok' => 'You have PDO and at least one of the supported drivers (pdo_mysql, pdo_sqlite, pdo_pgsql).', - ), - 'php' => array( - '_' => 'PHP installation', - 'nok' => 'Your PHP version is %s but FreshRSS requires at least version %s.', - 'ok' => 'Your PHP version (%s) is compatible with FreshRSS.', - ), - 'tables' => array( - 'nok' => 'There are one or more missing tables in the database.', - 'ok' => 'The appropriate tables exist in the database.', - ), - 'title' => 'Installation check', - 'tokens' => array( - 'nok' => 'Check permissions on <em>./data/tokens</em> directory. HTTP server must have write permission', - 'ok' => 'Permissions on the tokens directory are good.', - ), - 'users' => array( - 'nok' => 'Check permissions on <em>./data/users</em> directory. HTTP server must have write permission', - 'ok' => 'Permissions on the users directory are good.', - ), - 'zip' => array( - 'nok' => 'Cannot find the ZIP extension (php-zip package).', - 'ok' => 'You have the ZIP extension.', - ), - ), 'extensions' => array( 'author' => 'Author', 'community' => 'Available community extensions', |
