1*54f7220eSAndreas Gohr<?php 2*54f7220eSAndreas Gohr/** 3*54f7220eSAndreas Gohr * korean language file 4*54f7220eSAndreas Gohr * 5*54f7220eSAndreas Gohr * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) 6*54f7220eSAndreas Gohr * @author Christopher Smith <chris@jalakai.co.uk> 7*54f7220eSAndreas Gohr * @author jk Lee <bootmeta@gmail.com> 8*54f7220eSAndreas Gohr */ 9*54f7220eSAndreas Gohr 10*54f7220eSAndreas Gohr// for admin plugins, the menu prompt to be displayed in the admin menu 11*54f7220eSAndreas Gohr// if set here, the plugin doesn't need to override the getMenuText() method 12*54f7220eSAndreas Gohr$lang['menu'] = '환경 설정'; 13*54f7220eSAndreas Gohr 14*54f7220eSAndreas Gohr$lang['error'] = '잘못된 값때문에 설정들을 변경할 수 없습니다. 수정한 값들을 검사하고 확인을 누르기 바랍니다. 15*54f7220eSAndreas Gohr <br />잘못된 값(들)은 붉은 선으로 둘러싸여 있습니다.'; 16*54f7220eSAndreas Gohr$lang['updated'] = '설정이 성공적으로 변경되었습니다.'; 17*54f7220eSAndreas Gohr$lang['nochoice'] = '(다른 선택이 불가능합니다.)'; 18*54f7220eSAndreas Gohr$lang['locked'] = '환경 설정 파일을 수정할 수 없습니다. 의도된 행동이 아니라면,<br /> 파일이름과 권한이 맞는지 확인하기 바랍니다. '; 19*54f7220eSAndreas Gohr 20*54f7220eSAndreas Gohr/* --- Config Setting Headers --- */ 21*54f7220eSAndreas Gohr$lang['_configuration_manager'] = '환경 설정 관리자'; //same as heading in intro.txt 22*54f7220eSAndreas Gohr$lang['_header_dokuwiki'] = 'DokuWiki 설정'; 23*54f7220eSAndreas Gohr$lang['_header_plugin'] = 'Plugin 설정'; 24*54f7220eSAndreas Gohr$lang['_header_template'] = 'Template 설정'; 25*54f7220eSAndreas Gohr$lang['_header_undefined'] = '정의되지 않은 설정'; 26*54f7220eSAndreas Gohr 27*54f7220eSAndreas Gohr/* --- Config Setting Groups --- */ 28*54f7220eSAndreas Gohr$lang['_basic'] = '기본 설정'; 29*54f7220eSAndreas Gohr$lang['_display'] = '화면 표시 설정'; 30*54f7220eSAndreas Gohr$lang['_authentication'] = '인증 설정'; 31*54f7220eSAndreas Gohr$lang['_anti_spam'] = '안티-스팸 설정'; 32*54f7220eSAndreas Gohr$lang['_editing'] = '편집 설정'; 33*54f7220eSAndreas Gohr$lang['_links'] = '링크 설정'; 34*54f7220eSAndreas Gohr$lang['_media'] = '미디어 설정'; 35*54f7220eSAndreas Gohr$lang['_advanced'] = '진보된 설정'; 36*54f7220eSAndreas Gohr$lang['_network'] = '네트워크 설정'; 37*54f7220eSAndreas Gohr// The settings group name for plugins and templates can be set with 38*54f7220eSAndreas Gohr// plugin_settings_name and template_settings_name respectively. If one 39*54f7220eSAndreas Gohr// of these lang properties is not set, the group name will be generated 40*54f7220eSAndreas Gohr// from the plugin or template name and the localized suffix. 41*54f7220eSAndreas Gohr$lang['_plugin_sufix'] = 'Plugin 설정'; 42*54f7220eSAndreas Gohr$lang['_template_sufix'] = 'Template 설정'; 43*54f7220eSAndreas Gohr 44*54f7220eSAndreas Gohr/* --- Undefined Setting Messages --- */ 45*54f7220eSAndreas Gohr$lang['_msg_setting_undefined'] = '설정되지 않은 메타데이타.'; 46*54f7220eSAndreas Gohr$lang['_msg_setting_no_class'] = '설정되지 않은 클래스.'; 47*54f7220eSAndreas Gohr$lang['_msg_setting_no_default'] = '기본값 없음.'; 48*54f7220eSAndreas Gohr 49*54f7220eSAndreas Gohr/* -------------------- Config Options --------------------------- */ 50*54f7220eSAndreas Gohr 51*54f7220eSAndreas Gohr$lang['fmode'] = '파일 생성 모드'; 52*54f7220eSAndreas Gohr$lang['dmode'] = '디렉토리 생성 모드'; 53*54f7220eSAndreas Gohr$lang['lang'] = '언어'; 54*54f7220eSAndreas Gohr$lang['basedir'] = '기본 디렉토리'; 55*54f7220eSAndreas Gohr$lang['baseurl'] = '기본 URL'; 56*54f7220eSAndreas Gohr$lang['savedir'] = '데이타 저장 디렉토리'; 57*54f7220eSAndreas Gohr$lang['start'] = '시작 페이지 이름'; 58*54f7220eSAndreas Gohr$lang['title'] = '위키 제목'; 59*54f7220eSAndreas Gohr$lang['template'] = '템플릿'; 60*54f7220eSAndreas Gohr$lang['fullpath'] = '페이지 하단에 전체 경로 보여주기'; 61*54f7220eSAndreas Gohr$lang['recent'] = '최근에 바뀐 것'; 62*54f7220eSAndreas Gohr$lang['breadcrumbs'] = '위치 추적 수'; 63*54f7220eSAndreas Gohr$lang['youarehere'] = '계층형 위치 추적'; 64*54f7220eSAndreas Gohr$lang['typography'] = '기호 대체'; 65*54f7220eSAndreas Gohr$lang['htmlok'] = 'HTML 내장 허용'; 66*54f7220eSAndreas Gohr$lang['phpok'] = 'PHP 내장 허용'; 67*54f7220eSAndreas Gohr$lang['dformat'] = '날짜 포맷 (PHP <a href="http://www.php.net/date">date</a> 기능) 참조'; 68*54f7220eSAndreas Gohr$lang['signature'] = '서명'; 69*54f7220eSAndreas Gohr$lang['toptoclevel'] = '목차 최상위 항목'; 70*54f7220eSAndreas Gohr$lang['maxtoclevel'] = '목차 최대 단계'; 71*54f7220eSAndreas Gohr$lang['maxseclevel'] = '섹션 최대 편집 단계'; 72*54f7220eSAndreas Gohr$lang['camelcase'] = '링크에 CamelCase 사용'; 73*54f7220eSAndreas Gohr$lang['deaccent'] = '악센트 없는 페이지 이름'; 74*54f7220eSAndreas Gohr$lang['useheading'] = '페이지 이름으로 첫 헤드라인 사용'; 75*54f7220eSAndreas Gohr$lang['refcheck'] = '미디어 참조 검사'; 76*54f7220eSAndreas Gohr$lang['refshow'] = '보여줄 미디어 참조 수'; 77*54f7220eSAndreas Gohr$lang['allowdebug'] = '디버그 허용 <b>필요하지 않으면 금지!</b>'; 78*54f7220eSAndreas Gohr 79*54f7220eSAndreas Gohr$lang['usewordblock']= '금지단어를 사용해 스팸 막기'; 80*54f7220eSAndreas Gohr$lang['indexdelay'] = '색인 연기 시간(초)'; 81*54f7220eSAndreas Gohr$lang['relnofollow'] = '외부 링크에 rel="nofollow" 사용'; 82*54f7220eSAndreas Gohr$lang['mailguard'] = '이메일 주소를 알아볼 수 없게'; 83*54f7220eSAndreas Gohr 84*54f7220eSAndreas Gohr/* Authentication Options */ 85*54f7220eSAndreas Gohr$lang['useacl'] = '접근 제어 목록(ACL) 사용'; 86*54f7220eSAndreas Gohr$lang['autopasswd'] = '자동으로 만들어진 패스워드'; 87*54f7220eSAndreas Gohr$lang['authtype'] = '인증 백-엔드'; 88*54f7220eSAndreas Gohr$lang['passcrypt'] = '패스워드 암호화 방법'; 89*54f7220eSAndreas Gohr$lang['defaultgroup']= '기본 그룹'; 90*54f7220eSAndreas Gohr$lang['superuser'] = '슈퍼 유저'; 91*54f7220eSAndreas Gohr$lang['profileconfirm'] = '개인정보 변경시 암호 재확인'; 92*54f7220eSAndreas Gohr$lang['disableactions'] = 'DokuWiki Action 금지'; 93*54f7220eSAndreas Gohr$lang['disableactions_check'] = '검사'; 94*54f7220eSAndreas Gohr$lang['disableactions_subscription'] = '구독 신청/해지'; 95*54f7220eSAndreas Gohr$lang['disableactions_wikicode'] = '문서 소스 보기'; 96*54f7220eSAndreas Gohr$lang['disableactions_other'] = '다른 Action(comma로 구분)'; 97*54f7220eSAndreas Gohr 98*54f7220eSAndreas Gohr/* Advanced Options */ 99*54f7220eSAndreas Gohr$lang['updatecheck'] = '업데이트와 보안 문제를 검사(DokuWiki를 splitbrain.org에 연결해야 합니다.)'; 100*54f7220eSAndreas Gohr$lang['userewrite'] = 'URL rewriting기능을 사용'; 101*54f7220eSAndreas Gohr$lang['useslash'] = 'URL에서 네임스페이스 구분자로 슬래쉬 문자 사용'; 102*54f7220eSAndreas Gohr$lang['usedraft'] = '편집하는 동안 자동으로 문서 초안 저장'; 103*54f7220eSAndreas Gohr$lang['sepchar'] = '페이지 이름 단어 구분자'; 104*54f7220eSAndreas Gohr$lang['canonical'] = '완전한 canonical URL 사용'; 105*54f7220eSAndreas Gohr$lang['autoplural'] = '링크 연결시 plural폼 검사'; 106*54f7220eSAndreas Gohr$lang['compression'] = 'attic파일 압축 방법 선택'; 107*54f7220eSAndreas Gohr$lang['cachetime'] = '최대 캐쉬 생존 시간(초)'; 108*54f7220eSAndreas Gohr$lang['locktime'] = '쵀대 파일 잠금 시간(초)'; 109*54f7220eSAndreas Gohr$lang['fetchsize'] = 'fetch.php가 외부에서 다운로드할 수도 있는 최대 크기(바이트)'; 110*54f7220eSAndreas Gohr$lang['notify'] = '이메일 알람 기능'; 111*54f7220eSAndreas Gohr$lang['registernotify'] = '신규 등록자 알람 기능'; 112*54f7220eSAndreas Gohr$lang['mailfrom'] = '자동으로 보내지는 메일 발신자'; 113*54f7220eSAndreas Gohr$lang['gzip_output'] = 'xhml내용 gzip압출 여부'; 114*54f7220eSAndreas Gohr$lang['gdlib'] = 'GD 라이브러리 버전'; 115*54f7220eSAndreas Gohr$lang['im_convert'] = 'ImageMagick 위치'; 116*54f7220eSAndreas Gohr$lang['jpg_quality'] = 'JPG 압축 품질 (0-100)'; 117*54f7220eSAndreas Gohr$lang['spellchecker']= '맞춤법 검사기 사용'; 118*54f7220eSAndreas Gohr$lang['subscribers'] = '페이지 갱신 알람 기능'; 119*54f7220eSAndreas Gohr$lang['compress'] = '최적화된 CSS, javascript 출력'; 120*54f7220eSAndreas Gohr$lang['hidepages'] = '매칭된 페이지 숨기기(정규식 매칭)'; 121*54f7220eSAndreas Gohr$lang['send404'] = '존재하지 않는 페이지에 대해 "HTTP 404/Page Not Found" 응답'; 122*54f7220eSAndreas Gohr$lang['sitemap'] = '구글 사이트맵 생성(날짜)'; 123*54f7220eSAndreas Gohr 124*54f7220eSAndreas Gohr$lang['rss_type'] = 'XML feed 타잎'; 125*54f7220eSAndreas Gohr$lang['rss_linkto'] = 'XML feed 링크 정보'; 126*54f7220eSAndreas Gohr$lang['rss_update'] = 'XML feed 갱신 주기(초)'; 127*54f7220eSAndreas Gohr$lang['recent_days'] = '최근 바뀐 페이지 기준 시간(날짜)'; 128*54f7220eSAndreas Gohr 129*54f7220eSAndreas Gohr/* Target options */ 130*54f7220eSAndreas Gohr$lang['target____wiki'] = '내부 링크들에 대한 타겟 윈도우 '; 131*54f7220eSAndreas Gohr$lang['target____interwiki'] = 'InterWiki 링크들에 대한 타겟 윈도우'; 132*54f7220eSAndreas Gohr$lang['target____extern'] = '외부 링크들에 대한 타겟 윈도우'; 133*54f7220eSAndreas Gohr$lang['target____media'] = '미디어 링크들에 대한 타겟 윈도우'; 134*54f7220eSAndreas Gohr$lang['target____windows'] = '윈도우 링크들에 대한 타겟 윈도우'; 135*54f7220eSAndreas Gohr 136*54f7220eSAndreas Gohr/* Proxy Options */ 137*54f7220eSAndreas Gohr$lang['proxy____host'] = '프록시 서버 이름'; 138*54f7220eSAndreas Gohr$lang['proxy____port'] = '프록시 서버 포트'; 139*54f7220eSAndreas Gohr$lang['proxy____user'] = '프록시 사용자 이름'; 140*54f7220eSAndreas Gohr$lang['proxy____pass'] = '프록시 패스워드'; 141*54f7220eSAndreas Gohr$lang['proxy____ssl'] = '프록시 연결시 ssl사용'; 142*54f7220eSAndreas Gohr 143*54f7220eSAndreas Gohr/* Safemode Hack */ 144*54f7220eSAndreas Gohr$lang['safemodehack'] = 'safemode hack기능 사용'; 145*54f7220eSAndreas Gohr$lang['ftp____host'] = 'safemode hack의 FTP 서버'; 146*54f7220eSAndreas Gohr$lang['ftp____port'] = 'safemode hack의 FTP port'; 147*54f7220eSAndreas Gohr$lang['ftp____user'] = 'safemode hack의 FTP 사용자 이름'; 148*54f7220eSAndreas Gohr$lang['ftp____pass'] = 'safemode hack의 FTP 패스워드'; 149*54f7220eSAndreas Gohr$lang['ftp____root'] = 'safemode hack의 FTP 루트 디렉토리'; 150*54f7220eSAndreas Gohr 151*54f7220eSAndreas Gohr/* userewrite options */ 152*54f7220eSAndreas Gohr$lang['userewrite_o_0'] = '사용 안함'; 153*54f7220eSAndreas Gohr$lang['userewrite_o_1'] = '.htaccess'; 154*54f7220eSAndreas Gohr$lang['userewrite_o_2'] = 'DokuWiki 내부 기능'; 155*54f7220eSAndreas Gohr 156*54f7220eSAndreas Gohr/* deaccent options */ 157*54f7220eSAndreas Gohr$lang['deaccent_o_0'] = '사용 안함'; 158*54f7220eSAndreas Gohr$lang['deaccent_o_1'] = '악센트 제거'; 159*54f7220eSAndreas Gohr$lang['deaccent_o_2'] = '라틴문자화'; 160*54f7220eSAndreas Gohr 161*54f7220eSAndreas Gohr/* gdlib options */ 162*54f7220eSAndreas Gohr$lang['gdlib_o_0'] = 'GD 라이브러리 사용 안함'; 163*54f7220eSAndreas Gohr$lang['gdlib_o_1'] = '버전 1.x'; 164*54f7220eSAndreas Gohr$lang['gdlib_o_2'] = '자동 인식'; 165*54f7220eSAndreas Gohr 166*54f7220eSAndreas Gohr/* rss_type options */ 167*54f7220eSAndreas Gohr$lang['rss_type_o_rss'] = 'RSS 0.91'; 168*54f7220eSAndreas Gohr$lang['rss_type_o_rss1'] = 'RSS 1.0'; 169*54f7220eSAndreas Gohr$lang['rss_type_o_rss2'] = 'RSS 2.0'; 170*54f7220eSAndreas Gohr$lang['rss_type_o_atom'] = 'Atom 0.3'; 171*54f7220eSAndreas Gohr 172*54f7220eSAndreas Gohr/* rss_linkto options */ 173*54f7220eSAndreas Gohr$lang['rss_linkto_o_diff'] = '차이점 보기'; 174*54f7220eSAndreas Gohr$lang['rss_linkto_o_page'] = '변경 페이지 보기'; 175*54f7220eSAndreas Gohr$lang['rss_linkto_o_rev'] = '변경 목록 보기'; 176*54f7220eSAndreas Gohr$lang['rss_linkto_o_current'] = '최근 페이지 보기'; 177*54f7220eSAndreas Gohr 178*54f7220eSAndreas Gohr/* compression options */ 179*54f7220eSAndreas Gohr$lang['compression_o_0'] = '없음'; 180*54f7220eSAndreas Gohr$lang['compression_o_gz'] = 'gzip'; 181*54f7220eSAndreas Gohr$lang['compression_o_bz2'] = 'bz2'; 182*54f7220eSAndreas Gohr 183