Thomas Bruederli
2013-10-10 a01f3b959abd9720ec1b33624cbd31bee4838c2b
commit | author | age
c41a86 1 <?php
TB 2
3 /*
4  +-----------------------------------------------------------------------+
aed581 5  | plugins/password/localization/<lang>.inc                              |
c41a86 6  |                                                                       |
aed581 7  | Localization file of the Roundcube Webmail Password plugin            |
TB 8  | Copyright (C) 2012-2013, The Roundcube Dev Team                       |
9  |                                                                       |
10  | Licensed under the GNU General Public License version 3 or            |
11  | any later version with exceptions for skins & plugins.                |
12  | See the README file for a full license statement.                     |
c41a86 13  |                                                                       |
TB 14  +-----------------------------------------------------------------------+
aed581 15
TB 16  For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/
c41a86 17 */
aed581 18 $labels['changepasswd']  = '암호 변경';
TB 19 $labels['curpasswd']  = '현재 암호:';
20 $labels['newpasswd']  = '새 암호:';
21 $labels['confpasswd']  = '새로운 비밀번호 확인 :';
22 $messages['nopassword'] = '새 암호를 입력하시오.';
23 $messages['nocurpassword'] = '현재 사용중인 암호를 입력하세요.';
24 $messages['passwordincorrect'] = '현재 사용중인 암호가 올바르지 않습니다.';
25 $messages['passwordinconsistency'] = '암호가 일치하지 않습니다. 다시 시도하기 바랍니다.';
26 $messages['crypterror'] = '새로운 암호를 저장할 수 없습니다. 암호화 실패.';
27 $messages['connecterror'] = '새로운 암호를 저장할 수 없습니다. 연결 오류.';
28 $messages['internalerror'] = '새로운 암호를 저장할 수 없습니다.';
29 $messages['passwordshort'] = '암호는 적어도 $length 글자 이상이어야 합니다.';
30 $messages['passwordweak'] = '암호는 적어도 숫자 하나와 특수 문자 하나를 포함하여야 합니다.';
31 $messages['passwordforbidden'] = '암호가 허락되지 않은 문자들을 포함하고 있습니다.';
32 ?>