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/admin.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/admin.php')
| -rw-r--r-- | app/i18n/kr/admin.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/app/i18n/kr/admin.php b/app/i18n/kr/admin.php index 321860d93..5825a189f 100644 --- a/app/i18n/kr/admin.php +++ b/app/i18n/kr/admin.php @@ -83,9 +83,9 @@ return array( 'ok' => '최소 하나의 지원가능한 드라이버와 PDO가 설치되어 있습니다 (pdo_mysql, pdo_sqlite, pdo_pgsql).', ), 'php' => array( + '_' => 'PHP 설치 요구사항', 'nok' => 'PHP 버전은 %s 이지만, FreshRSS에는 최소 %s의 버전이 필요합니다.', 'ok' => 'PHP 버전은 %s 이고, FreshRSS와 호환가능 합니다.', - '_' => 'PHP 설치 요구사항', ), 'tables' => array( 'nok' => '하나 이상의 테이블을 데이터베이스에서 찾을 수 없습니다.', @@ -116,8 +116,8 @@ return array( 'name' => '이름', 'no_configure_view' => '이 확장 기능은 설정이 없습니다.', 'system' => array( - 'no_rights' => '시스템 확장 기능 (이 확장 기능에 대한 권한이 없습니다)', '_' => '시스템 확장 기능', + 'no_rights' => '시스템 확장 기능 (이 확장 기능에 대한 권한이 없습니다)', ), 'title' => '확장 기능', 'update' => '업데이트 있음', @@ -125,6 +125,7 @@ return array( 'version' => '버전', ), 'stats' => array( + '_' => '통계', 'all_feeds' => '모든 피드', 'category' => '카테고리', 'entry_count' => '글 개수', @@ -154,9 +155,9 @@ return array( 'status_unread' => '읽지 않음', 'title' => '통계', 'top_feed' => '상위 10 개 피드', - '_' => '통계', ), 'system' => array( + '_' => '시스템 설정', 'auto-update-url' => '자동 업데이트 서버 URL', 'cookie-duration' => array( 'help' => '초', @@ -170,21 +171,20 @@ return array( 'help' => '0: 제한 없음', 'number' => '계정 최대 개수', ), - '_' => '시스템 설정', ), 'update' => array( + '_' => '업데이트', 'apply' => '업데이트 적용하기', 'check' => '새 업데이트 확인하기', 'current_version' => '현재 FreshRSS 버전은 %s 입니다.', 'last' => '마지막 확인: %s', 'none' => '적용 가능한 업데이트가 없습니다', 'title' => '업데이트', - '_' => '업데이트', ), 'user' => array( 'admin' => 'Administrator', // TODO - Translation - 'articles_and_size' => '%s 개의 글 (%s)', 'article_count' => 'Articles', // TODO - Translation + 'articles_and_size' => '%s 개의 글 (%s)', 'back_to_manage' => '← Return to user list', // TODO - Translation 'create' => '새 사용자 생성', 'database_size' => 'Database size', // TODO - Translation @@ -202,8 +202,8 @@ return array( 'selected' => '선택된 사용자', 'title' => '사용자 관리', 'update_users' => '사용자 정보 변경', + 'user_list' => '사용자 목록', 'username' => '사용자 이름', 'users' => '전체 사용자', - 'user_list' => '사용자 목록', ), ); |
