1<?php 2/** 3 * Korean language file 4 * 5 * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) 6 * @author Kwangseob Kim<mrkwangseob@gmail.com> 7 */ 8 9// settings must be present and set appropriately for the language 10$lang['encoding'] = 'utf-8'; 11$lang['direction'] = 'ltr'; 12 13// for admin plugins, the menu prompt to be displayed in the admin menu 14// if set here, the plugin doesn't need to override the getMenuText() method 15$lang['menu'] = 'Moderate Discussions'; 16 17$lang['discussion'] = '의견'; 18$lang['comment'] = '댓글'; 19$lang['comments'] = '댓글들'; 20$lang['nocomments'] = '댓글들'; 21$lang['url'] = '홈페이지'; 22$lang['address'] = '주소'; 23$lang['date'] = '날짜'; 24$lang['entercomment'] = '내용을 입력하세요'; 25$lang['wikisyntax'] = '( 도쿠위키 문법 사용 가능 )'; 26$lang['older'] = '다음 댓글'; 27$lang['newer'] = '이전 댓글'; 28$lang['btn_reply'] = '댓글'; 29$lang['btn_hide'] = '숨기기'; 30$lang['btn_show'] = '보이기'; 31$lang['btn_change'] = '수정하기'; 32$lang['statuschanged'] = '댓글이 수정되었습니다.'; 33$lang['wordblock'] = '스팸으로 간주되는 단어가 포함되었습니다.'; 34$lang['moderation'] = '댓글이 등록되었습니다. 관리자의 승인을 기다리고 있습니다.'; 35$lang['mail_newcomment'] = '새 댓글'; 36$lang['subscribe'] = '새 댓글 알림'; 37$lang['noguests'] = '로그인 하신후에 댓글을 남길 수 있습니다.'; 38 39$lang['status'] = '상태'; 40$lang['off'] = 'off'; 41$lang['open'] = '펼치기'; 42$lang['closed'] = '닫기'; 43 44$lang['reply'] = '댓글'; 45$lang['replies'] = '댓글들'; 46$lang['newthread'] = '새 쓰레드'; 47$lang['threads'] = '쓰레드'; 48 49//Setup VIM: ex: et ts=2 enc=utf-8 : 50