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/it/install.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/it/install.php')
| -rw-r--r-- | app/i18n/it/install.php | 32 |
1 files changed, 28 insertions, 4 deletions
diff --git a/app/i18n/it/install.php b/app/i18n/it/install.php index 22b2d6d9a..3b98b0a93 100644 --- a/app/i18n/it/install.php +++ b/app/i18n/it/install.php @@ -62,6 +62,11 @@ return array( 'nok' => 'Manca il supporto per PHP fileinfo (pacchetto fileinfo).', 'ok' => 'Estensione fileinfo presente.', ), + 'files' => 'Installazione files', + 'intl' => array( + 'nok' => 'Cannot find the recommended library php-intl for internationalisation.', // TODO + 'ok' => 'You have the recommended library php-intl for internationalisation.', // TODO + ), 'json' => array( 'nok' => 'Manca la libreria consigliata per effettuare la lettura del JSON.', 'ok' => 'La libreria consigliata per la lettura del JSON è presente.', @@ -74,19 +79,34 @@ return array( 'nok' => 'Manca una libreria richiesta per le regular expressions (php-pcre).', 'ok' => 'Libreria richiesta per le regular expressions presente (PCRE).', ), + 'pdo-mysql' => array( + 'nok' => 'Cannot find the required PDO driver for MySQL/MariaDB.', // TODO + ), + 'pdo-pgsql' => array( + 'nok' => 'Cannot find the required PDO driver for PostgreSQL.', // TODO + ), + 'pdo-sqlite' => array( + 'nok' => 'Cannot find the PDO driver for SQLite.', // TODO + 'ok' => 'You have the PDO driver for SQLite', // TODO + ), 'pdo' => array( - 'nok' => 'Manca PDO o uno degli altri driver supportati (pdo_mysql, pdo_sqlite, pdo_pgsql).', - 'ok' => 'PDO e altri driver supportati (pdo_mysql, pdo_sqlite, pdo_pgsql).', + 'nok' => 'Manca PDO o uno degli altri driver supportati (pdo_sqlite, pdo_pgsql, pdo_mysql).', + 'ok' => 'PDO e altri driver supportati (pdo_sqlite, pdo_pgsql, pdo_mysql).', ), 'php' => array( - 'nok' => 'Versione di PHP %s FreshRSS richiede almeno la versione %s.', - 'ok' => 'Versione di PHP %s, compatibile con FreshRSS.', + '_' => 'Installazione PHP', + 'nok' => 'Versione PHP %s FreshRSS richiede almeno la versione %s.', + 'ok' => 'Versione PHP %s, compatibile con FreshRSS.', ), 'reload' => 'Controlla di nuovo', 'tmp' => array( 'nok' => 'Verifica i permessi sulla cartella <em>%s</em>. Il server HTTP deve avere i permessi per scriverci dentro.', 'ok' => 'I permessi sulla cartella temp sono corretti.', ), + 'tokens' => array( + 'nok' => 'Verifica i permessi sulla cartella <em>./data/tokens</em>. Il server HTTP deve avere i permessi per scriverci dentro', + 'ok' => 'I permessi sulla cartella tokens sono corretti.', + ), 'unknown_process_username' => 'sconosciuto', 'users' => array( 'nok' => 'Verifica i permessi sulla cartella <em>%s</em>. Il server HTTP deve avere i permessi per scriverci dentro.', @@ -96,6 +116,10 @@ return array( 'nok' => 'La libreria richiesta per leggere gli XML non è presente.', 'ok' => 'La libreria richiesta per leggere gli XML è presente.', ), + 'zip' => array( + 'nok' => 'Manca estensione ZIP (pacchetto php-zip).', + 'ok' => 'Estensione ZIP presente.', + ), ), 'conf' => array( '_' => 'Configurazioni generali', |
