diff options
| author | 2020-05-15 17:31:21 +0200 | |
|---|---|---|
| committer | 2020-05-15 17:31:21 +0200 | |
| commit | 8487fa6248d1d5dac81640de9c55c1eab9f324b3 (patch) | |
| tree | f3209fdeb8341870bd4fe765e30a0a395a12c4ea /app/i18n/kr/install.php | |
| parent | 62a42a20630c5dfb4a677a42bbc3dd6c7cd203d2 (diff) | |
Reformat i18n correctly (#2976)
* Ignore i18n gen.dir key
* Add a makefile target to update an i18n key
* Mark some i18n keys to ignore
* Reformat i18n files correctly
* Make i18n keys sort case-sensitive
Calling `make i18n-format` was always inverting 4 lines:
- gen.date.dec with gen.date.Dec
- and gen.date.nov with gen.date.Nov
I don't know why these particular lines and not the others, but it
appeared the sort function was case insensitive due to the
`SORT_FLAG_CASE` flag passed to the `ksort` function. Removing this flag
makes the calls to the formatter idempotent and more reliable.
Unfortunately it moves a lot of lines since the `_` character is
considered differently.
* Check i18n files are correctly formatted on Travis
Diffstat (limited to 'app/i18n/kr/install.php')
| -rw-r--r-- | app/i18n/kr/install.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/app/i18n/kr/install.php b/app/i18n/kr/install.php index 8b966a627..0880baf5f 100644 --- a/app/i18n/kr/install.php +++ b/app/i18n/kr/install.php @@ -17,19 +17,20 @@ return array( 'type' => '인증 방식', ), 'bdd' => array( + '_' => '데이터베이스', 'conf' => array( + '_' => '데이터베이스 설정', 'ko' => '데이터베이스 정보를 확인하세요.', 'ok' => '데이터베이스 설정이 저장되었습니다.', - '_' => '데이터베이스 설정', ), 'host' => '데이터베이스 서버', 'password' => '데이터베이스 암호', 'prefix' => '테이블 접두어', 'type' => '데이터베이스 종류', 'username' => '데이터베이스 사용자 이름', - '_' => '데이터베이스', ), 'check' => array( + '_' => '설치 요구사항 확인', 'already_installed' => 'FreshRSS가 이미 설치되어 있는 것을 감지했습니다!', 'cache' => array( 'nok' => '<em>./data/cache</em> 디렉토리의 권한을 확인하세요. HTTP 서버가 쓰기 권한을 가지고 있어야 합니다', @@ -95,11 +96,10 @@ return array( 'nok' => 'XML 해석을 위한 라이브러리르 찾을 수 없습니다.', 'ok' => 'XML 해석을 위한 라이브러리가 설치되어 있습니다.', ), - '_' => '설치 요구사항 확인', ), 'conf' => array( - 'ok' => '일반 설정이 저장되었습니다.', '_' => '일반 설정', + 'ok' => '일반 설정이 저장되었습니다.', ), 'congratulations' => '축하합니다!', 'default_user' => '기본 사용자 이름<small>(알파벳과 숫자를 포함할 수 있고 최대 16 글자)</small>', @@ -110,9 +110,9 @@ return array( 'confirm_reinstall' => 'FreshRSS을 다시 설치하면 이전 설정이 사라집니다. 계속하시겠습니까?', ), 'language' => array( + '_' => '언어', 'choose' => 'FreshRSS에서 사용할 언어를 고르세요', 'defined' => '언어가 설정되었습니다.', - '_' => '언어', ), 'not_deleted' => '무언가 잘못되었습니다; <em>%s</em> 파일을 직접 삭제해주세요.', 'ok' => '설치 과정이 성공적으로 끝났습니다.', |
