From 08d76967b0664ee668d9b508993b52c44c3bfa78 Mon Sep 17 00:00:00 2001 From: Alexis Degrugillier Date: Sat, 2 Jan 2021 11:14:23 -0500 Subject: 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 --- app/i18n/kr/install.php | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'app/i18n/kr') diff --git a/app/i18n/kr/install.php b/app/i18n/kr/install.php index 0880baf5f..64d76000d 100644 --- a/app/i18n/kr/install.php +++ b/app/i18n/kr/install.php @@ -33,7 +33,7 @@ return array( '_' => '설치 요구사항 확인', 'already_installed' => 'FreshRSS가 이미 설치되어 있는 것을 감지했습니다!', 'cache' => array( - 'nok' => './data/cache 디렉토리의 권한을 확인하세요. HTTP 서버가 쓰기 권한을 가지고 있어야 합니다', + 'nok' => '%s 디렉토리의 권한을 확인하세요. HTTP 서버가 쓰기 권한을 가지고 있어야 합니다', 'ok' => 'cache 디렉토리의 권한이 올바르게 설정되었습니다.', ), 'ctype' => array( @@ -45,7 +45,7 @@ return array( 'ok' => 'cURL 라이브러리가 설치되어 있습니다.', ), 'data' => array( - 'nok' => './data 디렉토리의 권한을 확인하세요. HTTP 서버가 쓰기 권한을 가지고 있어야 합니다', + 'nok' => '%s 디렉토리의 권한을 확인하세요. HTTP 서버가 쓰기 권한을 가지고 있어야 합니다', 'ok' => 'data 디렉토리의 권한이 올바르게 설정되었습니다.', ), 'dom' => array( @@ -53,7 +53,7 @@ return array( 'ok' => 'DOM을 다룰 수 있는 라이브러리가 설치되어 있습니다.', ), 'favicons' => array( - 'nok' => './data/favicons 디렉토리의 권한을 확인하세요. HTTP 서버가 쓰기 권한을 가지고 있어야 합니다', + 'nok' => '%s 디렉토리의 권한을 확인하세요. HTTP 서버가 쓰기 권한을 가지고 있어야 합니다', 'ok' => 'favicons 디렉토리의 권한이 올바르게 설정되어 있습니다.', ), 'fileinfo' => array( @@ -88,8 +88,12 @@ return array( 'nok' => 'PHP 버전은 %s 이지만, FreshRSS에는 최소 %s의 버전이 필요합니다.', 'ok' => 'PHP 버전은 %s 이고, FreshRSS와 호환가능 합니다.', ), + 'tmp' => array( + 'nok' => '%s 디렉토리의 권한을 확인하세요. HTTP 서버가 쓰기 권한을 가지고 있어야 합니다.', + 'ok' => 'Permissions on the temp directory are good.', // TODO - Translation + ), 'users' => array( - 'nok' => './data/users 디렉토리의 권한을 확인하세요. HTTP 서버가 쓰기 권한을 가지고 있어야 합니다', + 'nok' => '%s 디렉토리의 권한을 확인하세요. HTTP 서버가 쓰기 권한을 가지고 있어야 합니다.', 'ok' => 'users 디렉토리의 권한이 올바르게 설정되어 있습니다.', ), 'xml' => array( -- cgit v1.2.3