diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2012-08-06 18:00:38 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2012-08-06 18:00:38 +0200 |
commit | c41a86e5cc26dc8ae37ed4b3fddcaa195b1616a4 (patch) | |
tree | 142bec92a18e0452af2967f40741407664c03a67 /plugins/password/localization/ko_KR.inc | |
parent | 565c472918e7f9707cd8d7909ad5dbcc5a921fdf (diff) |
Updated translations from launchpad
Diffstat (limited to 'plugins/password/localization/ko_KR.inc')
-rw-r--r-- | plugins/password/localization/ko_KR.inc | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/plugins/password/localization/ko_KR.inc b/plugins/password/localization/ko_KR.inc new file mode 100644 index 000000000..9bbe4cc79 --- /dev/null +++ b/plugins/password/localization/ko_KR.inc @@ -0,0 +1,31 @@ +<?php + +/* + +-----------------------------------------------------------------------+ + | localization/ko_KR/labels.inc | + | | + | Language file of the Roundcube Webmail client | + | Copyright (C) 2012, The Roundcube Dev Team | + | Licensed under the GNU General Public License | + | | + +-----------------------------------------------------------------------+ + | Author: Kim, Woohyun <woohyun.kim@gmail.com> | + +-----------------------------------------------------------------------+ +*/ + +$labels = array(); +$labels['changepasswd'] = '암호 변경'; +$labels['curpasswd'] = '현재 암호:'; +$labels['newpasswd'] = '새 암호:'; +$labels['confpasswd'] = '새로운 비밀번호 확인 :'; +$labels['nopassword'] = '새 암호를 입력하시오.'; +$labels['nocurpassword'] = '현재 사용중인 암호를 입력하세요.'; +$labels['passwordincorrect'] = '현재 사용중인 암호가 올바르지 않습니다.'; +$labels['passwordinconsistency'] = '암호가 일치하지 않습니다. 다시 시도하기 바랍니다.'; +$labels['crypterror'] = '새로운 암호를 저장할 수 없습니다. 암호화 실패.'; +$labels['connecterror'] = '새로운 암호를 저장할 수 없습니다. 연결 오류.'; +$labels['internalerror'] = '새로운 암호를 저장할 수 없습니다.'; +$labels['passwordshort'] = '암호는 적어도 $length 글자 이상이어야 합니다.'; +$labels['passwordweak'] = '암호는 적어도 숫자 하나와 특수 문자 하나를 포함하여야 합니다.'; +$labels['passwordforbidden'] = '암호가 허락되지 않은 문자들을 포함하고 있습니다.'; + |