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/ko/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/ko/install.php')
| -rw-r--r-- | app/i18n/ko/install.php | 30 |
1 files changed, 27 insertions, 3 deletions
diff --git a/app/i18n/ko/install.php b/app/i18n/ko/install.php index 3518912e0..c69903bf2 100644 --- a/app/i18n/ko/install.php +++ b/app/i18n/ko/install.php @@ -62,6 +62,11 @@ return array( 'nok' => 'fileinfo 라이브러리를 찾을 수 없습니다 (fileinfo 패키지).', 'ok' => 'fileinfo 라이브러리가 설치되어 있습니다.', ), + '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' => 'JSON 확장 기능을 찾을 수 없습니다 (php-json 패키지).', 'ok' => 'JSON 확장 기능이 설치되어 있습니다.', @@ -74,19 +79,34 @@ return array( 'nok' => '정규표현식을 위한 라이브러리를 찾을 수 없습니다 (php-pcre).', 'ok' => '정규표현식을 위한 라이브러리가 설치되어 있습니다 (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' => '지원가능한 드라이버나 PDO를 찾을 수 없습니다 (pdo_mysql, pdo_sqlite, pdo_pgsql).', - 'ok' => '최소 하나의 지원가능한 드라이버와 PDO가 설치되어 있습니다 (pdo_mysql, pdo_sqlite, pdo_pgsql).', + 'nok' => '지원가능한 드라이버나 PDO를 찾을 수 없습니다 (pdo_sqlite, pdo_pgsql, pdo_mysql).', + 'ok' => '최소 하나의 지원가능한 드라이버와 PDO가 설치되어 있습니다 (pdo_sqlite, pdo_pgsql, pdo_mysql).', ), 'php' => array( + '_' => 'PHP 설치 요구사항', 'nok' => 'PHP 버전은 %s 이지만, FreshRSS에는 최소 %s의 버전이 필요합니다.', - 'ok' => 'PHP 버전은 %s 이고, FreshRSS와 호환 가능합니다.', + 'ok' => 'PHP 버전은 %s 이고, FreshRSS와 호환가능 합니다.', ), 'reload' => '다시 확인', 'tmp' => array( 'nok' => '<em>%s</em> 디렉토리의 권한을 확인하세요. HTTP 서버가 쓰기 권한을 가지고 있어야 합니다.', 'ok' => 'temp 디렉토리의 권한이 올바르게 설정되었습니다.', ), + 'tokens' => array( + 'nok' => '<em>./data/tokens</em> 디렉토리의 권한을 확인하세요. HTTP 서버가 쓰기 권한을 가지고 있어야 합니다', + 'ok' => 'tokens 디렉토리의 권한이 올바르게 설정되어 있습니다', + ), 'unknown_process_username' => '알 수 없음', 'users' => array( 'nok' => '<em>%s</em> 디렉토리의 권한을 확인하세요. HTTP 서버가 쓰기 권한을 가지고 있어야 합니다.', @@ -96,6 +116,10 @@ return array( 'nok' => 'XML 해석을 위한 라이브러리르 찾을 수 없습니다.', 'ok' => 'XML 해석을 위한 라이브러리가 설치되어 있습니다.', ), + 'zip' => array( + 'nok' => 'ZIP 확장 기능을 찾을 수 없습니다 (php-zip 패키지).', + 'ok' => 'ZIP 확장 기능이 설치되어 있습니다.', + ), ), 'conf' => array( '_' => '일반 설정', |
