xref: /dokuwiki/lib/plugins/config/lang/ko/lang.php (revision a575fb576b0b8f8b0442f10f0d28ca2269da83f1)
154f7220eSAndreas Gohr<?php
254f7220eSAndreas Gohr/**
354f7220eSAndreas Gohr * korean language file
454f7220eSAndreas Gohr *
554f7220eSAndreas Gohr * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
654f7220eSAndreas Gohr * @author     Christopher Smith <chris@jalakai.co.uk>
754f7220eSAndreas Gohr * @author     jk Lee <bootmeta@gmail.com>
854f7220eSAndreas Gohr */
954f7220eSAndreas Gohr
1054f7220eSAndreas Gohr// for admin plugins, the menu prompt to be displayed in the admin menu
1154f7220eSAndreas Gohr// if set here, the plugin doesn't need to override the getMenuText() method
1254f7220eSAndreas Gohr$lang['menu']       = '환경 설정';
1354f7220eSAndreas Gohr
1454f7220eSAndreas Gohr$lang['error']      = '잘못된 값때문에 설정들을 변경할 수 없습니다. 수정한 값들을 검사하고 확인을 누르기 바랍니다.
1554f7220eSAndreas Gohr                       <br />잘못된 값(들)은 붉은 선으로 둘러싸여 있습니다.';
1654f7220eSAndreas Gohr$lang['updated']    = '설정이 성공적으로 변경되었습니다.';
1754f7220eSAndreas Gohr$lang['nochoice']   = '(다른 선택이 불가능합니다.)';
1854f7220eSAndreas Gohr$lang['locked']     = '환경 설정 파일을 수정할 수 없습니다. 의도된 행동이 아니라면,<br /> 파일이름과 권한이 맞는지 확인하기 바랍니다. ';
1954f7220eSAndreas Gohr
2054f7220eSAndreas Gohr/* --- Config Setting Headers --- */
2154f7220eSAndreas Gohr$lang['_configuration_manager'] = '환경 설정 관리자'; //same as heading in intro.txt
2254f7220eSAndreas Gohr$lang['_header_dokuwiki'] = 'DokuWiki 설정';
2354f7220eSAndreas Gohr$lang['_header_plugin'] = 'Plugin 설정';
2454f7220eSAndreas Gohr$lang['_header_template'] = 'Template 설정';
2554f7220eSAndreas Gohr$lang['_header_undefined'] = '정의되지 않은 설정';
2654f7220eSAndreas Gohr
2754f7220eSAndreas Gohr/* --- Config Setting Groups --- */
2854f7220eSAndreas Gohr$lang['_basic'] = '기본 설정';
2954f7220eSAndreas Gohr$lang['_display'] = '화면 표시 설정';
3054f7220eSAndreas Gohr$lang['_authentication'] = '인증 설정';
3154f7220eSAndreas Gohr$lang['_anti_spam'] = '안티-스팸 설정';
3254f7220eSAndreas Gohr$lang['_editing'] = '편집 설정';
3354f7220eSAndreas Gohr$lang['_links'] = '링크 설정';
3454f7220eSAndreas Gohr$lang['_media'] = '미디어 설정';
3554f7220eSAndreas Gohr$lang['_advanced'] = '진보된 설정';
3654f7220eSAndreas Gohr$lang['_network'] = '네트워크 설정';
3754f7220eSAndreas Gohr// The settings group name for plugins and templates can be set with
3854f7220eSAndreas Gohr// plugin_settings_name and template_settings_name respectively. If one
3954f7220eSAndreas Gohr// of these lang properties is not set, the group name will be generated
4054f7220eSAndreas Gohr// from the plugin or template name and the localized suffix.
4154f7220eSAndreas Gohr$lang['_plugin_sufix'] = 'Plugin 설정';
4254f7220eSAndreas Gohr$lang['_template_sufix'] = 'Template 설정';
4354f7220eSAndreas Gohr
4454f7220eSAndreas Gohr/* --- Undefined Setting Messages --- */
4554f7220eSAndreas Gohr$lang['_msg_setting_undefined'] = '설정되지 않은 메타데이타.';
4654f7220eSAndreas Gohr$lang['_msg_setting_no_class'] = '설정되지 않은 클래스.';
4754f7220eSAndreas Gohr$lang['_msg_setting_no_default'] = '기본값 없음.';
4854f7220eSAndreas Gohr
4954f7220eSAndreas Gohr/* -------------------- Config Options --------------------------- */
5054f7220eSAndreas Gohr
5154f7220eSAndreas Gohr$lang['fmode']       = '파일 생성 모드';
5254f7220eSAndreas Gohr$lang['dmode']       = '디렉토리 생성 모드';
5354f7220eSAndreas Gohr$lang['lang']        = '언어';
5454f7220eSAndreas Gohr$lang['basedir']     = '기본 디렉토리';
5554f7220eSAndreas Gohr$lang['baseurl']     = '기본 URL';
5654f7220eSAndreas Gohr$lang['savedir']     = '데이타 저장 디렉토리';
5754f7220eSAndreas Gohr$lang['start']       = '시작 페이지 이름';
5854f7220eSAndreas Gohr$lang['title']       = '위키 제목';
5954f7220eSAndreas Gohr$lang['template']    = '템플릿';
6054f7220eSAndreas Gohr$lang['fullpath']    = '페이지 하단에 전체 경로 보여주기';
6154f7220eSAndreas Gohr$lang['recent']      = '최근에 바뀐 것';
6254f7220eSAndreas Gohr$lang['breadcrumbs'] = '위치 추적 수';
6354f7220eSAndreas Gohr$lang['youarehere']  = '계층형 위치 추적';
6454f7220eSAndreas Gohr$lang['typography']  = '기호 대체';
6554f7220eSAndreas Gohr$lang['htmlok']      = 'HTML 내장 허용';
6654f7220eSAndreas Gohr$lang['phpok']       = 'PHP 내장 허용';
6754f7220eSAndreas Gohr$lang['dformat']     = '날짜 포맷 (PHP <a href="http://www.php.net/date">date</a> 기능) 참조';
6854f7220eSAndreas Gohr$lang['signature']   = '서명';
6954f7220eSAndreas Gohr$lang['toptoclevel'] = '목차 최상위 항목';
7054f7220eSAndreas Gohr$lang['maxtoclevel'] = '목차 최대 단계';
7154f7220eSAndreas Gohr$lang['maxseclevel'] = '섹션 최대 편집 단계';
7254f7220eSAndreas Gohr$lang['camelcase']   = '링크에 CamelCase 사용';
7354f7220eSAndreas Gohr$lang['deaccent']    = '악센트 없는 페이지 이름';
7454f7220eSAndreas Gohr$lang['useheading']  = '페이지 이름으로 첫 헤드라인 사용';
7554f7220eSAndreas Gohr$lang['refcheck']    = '미디어 참조 검사';
7654f7220eSAndreas Gohr$lang['refshow']     = '보여줄 미디어 참조 수';
7754f7220eSAndreas Gohr$lang['allowdebug']  = '디버그 허용 <b>필요하지 않으면 금지!</b>';
7854f7220eSAndreas Gohr
7954f7220eSAndreas Gohr$lang['usewordblock']= '금지단어를 사용해 스팸 막기';
8054f7220eSAndreas Gohr$lang['indexdelay']  = '색인 연기 시간(초)';
8154f7220eSAndreas Gohr$lang['relnofollow'] = '외부 링크에 rel="nofollow" 사용';
8254f7220eSAndreas Gohr$lang['mailguard']   = '이메일 주소를 알아볼 수 없게';
83*a575fb57SAndreas Gohr$lang['iexssprotect']= '업로드 파일의 악성 Javascript, HTML 코드 가능성 여부를 검사';
8454f7220eSAndreas Gohr
8554f7220eSAndreas Gohr/* Authentication Options */
8654f7220eSAndreas Gohr$lang['useacl']      = '접근 제어 목록(ACL) 사용';
8754f7220eSAndreas Gohr$lang['autopasswd']  = '자동으로 만들어진 패스워드';
8854f7220eSAndreas Gohr$lang['authtype']    = '인증 백-엔드';
8954f7220eSAndreas Gohr$lang['passcrypt']   = '패스워드 암호화 방법';
9054f7220eSAndreas Gohr$lang['defaultgroup']= '기본 그룹';
9154f7220eSAndreas Gohr$lang['superuser']   = '슈퍼 유저';
92*a575fb57SAndreas Gohr$lang['manager']     = '관리자 - 관리 기능들을 사용할 수 있는 그룹이나 사용자';
9354f7220eSAndreas Gohr$lang['profileconfirm'] = '개인정보 변경시 암호 재확인';
9454f7220eSAndreas Gohr$lang['disableactions'] = 'DokuWiki Action 금지';
9554f7220eSAndreas Gohr$lang['disableactions_check'] = '검사';
9654f7220eSAndreas Gohr$lang['disableactions_subscription'] = '구독 신청/해지';
9754f7220eSAndreas Gohr$lang['disableactions_wikicode'] = '문서 소스 보기';
9854f7220eSAndreas Gohr$lang['disableactions_other'] = '다른 Action(comma로 구분)';
9954f7220eSAndreas Gohr
10054f7220eSAndreas Gohr/* Advanced Options */
10154f7220eSAndreas Gohr$lang['updatecheck'] = '업데이트와 보안 문제를 검사(DokuWiki를 splitbrain.org에 연결해야 합니다.)';
10254f7220eSAndreas Gohr$lang['userewrite']  = 'URL rewriting기능을 사용';
10354f7220eSAndreas Gohr$lang['useslash']    = 'URL에서 네임스페이스 구분자로 슬래쉬 문자 사용';
10454f7220eSAndreas Gohr$lang['usedraft']    = '편집하는 동안 자동으로 문서 초안 저장';
10554f7220eSAndreas Gohr$lang['sepchar']     = '페이지 이름 단어 구분자';
10654f7220eSAndreas Gohr$lang['canonical']   = '완전한 canonical URL 사용';
10754f7220eSAndreas Gohr$lang['autoplural']  = '링크 연결시 plural폼 검사';
10854f7220eSAndreas Gohr$lang['compression'] = 'attic파일 압축 방법 선택';
10954f7220eSAndreas Gohr$lang['cachetime']   = '최대 캐쉬 생존 시간(초)';
11054f7220eSAndreas Gohr$lang['locktime']    = '쵀대 파일 잠금 시간(초)';
11154f7220eSAndreas Gohr$lang['fetchsize']   = 'fetch.php가 외부에서 다운로드할 수도 있는 최대 크기(바이트)';
11254f7220eSAndreas Gohr$lang['notify']      = '이메일 알람 기능';
11354f7220eSAndreas Gohr$lang['registernotify'] = '신규 등록자 알람 기능';
11454f7220eSAndreas Gohr$lang['mailfrom']    = '자동으로 보내지는 메일 발신자';
11554f7220eSAndreas Gohr$lang['gzip_output'] = 'xhml내용 gzip압출 여부';
11654f7220eSAndreas Gohr$lang['gdlib']       = 'GD 라이브러리 버전';
11754f7220eSAndreas Gohr$lang['im_convert']  = 'ImageMagick 위치';
11854f7220eSAndreas Gohr$lang['jpg_quality'] = 'JPG 압축 품질 (0-100)';
11954f7220eSAndreas Gohr$lang['spellchecker']= '맞춤법 검사기 사용';
12054f7220eSAndreas Gohr$lang['subscribers'] = '페이지 갱신 알람 기능';
12154f7220eSAndreas Gohr$lang['compress']    = '최적화된 CSS, javascript 출력';
12254f7220eSAndreas Gohr$lang['hidepages']   = '매칭된 페이지 숨기기(정규식 매칭)';
12354f7220eSAndreas Gohr$lang['send404']     = '존재하지 않는 페이지에 대해 "HTTP 404/Page Not Found" 응답';
12454f7220eSAndreas Gohr$lang['sitemap']     = '구글 사이트맵 생성(날짜)';
125*a575fb57SAndreas Gohr$lang['broken_iua']  = '설치된 시스템에서 ignore_user_abort 기능에 문제가 있으면 색인이 정상적으로 동작하지 않습니다. 이 기능이 IIS+PHP/CGI에서 문제가 있는 것으로 알려졌습니다. 자세한 정보는 <a href="http://bugs.splitbrain.org/?do=details&id=852">Bug 852</a>를 참고하기 바랍니다.';
12654f7220eSAndreas Gohr
12754f7220eSAndreas Gohr$lang['rss_type']    = 'XML feed 타잎';
12854f7220eSAndreas Gohr$lang['rss_linkto']  = 'XML feed 링크 정보';
12954f7220eSAndreas Gohr$lang['rss_update']  = 'XML feed 갱신 주기(초)';
13054f7220eSAndreas Gohr$lang['recent_days'] = '최근 바뀐 페이지 기준 시간(날짜)';
131*a575fb57SAndreas Gohr$lang['rss_show_summary'] = 'XML feed 제목에서 요약정보 보여주기';
13254f7220eSAndreas Gohr
13354f7220eSAndreas Gohr/* Target options */
13454f7220eSAndreas Gohr$lang['target____wiki']      = '내부 링크들에 대한 타겟 윈도우 ';
13554f7220eSAndreas Gohr$lang['target____interwiki'] = 'InterWiki 링크들에 대한 타겟 윈도우';
13654f7220eSAndreas Gohr$lang['target____extern']    = '외부 링크들에 대한 타겟 윈도우';
13754f7220eSAndreas Gohr$lang['target____media']     = '미디어 링크들에 대한 타겟 윈도우';
13854f7220eSAndreas Gohr$lang['target____windows']   = '윈도우 링크들에 대한 타겟 윈도우';
13954f7220eSAndreas Gohr
14054f7220eSAndreas Gohr/* Proxy Options */
14154f7220eSAndreas Gohr$lang['proxy____host'] = '프록시 서버 이름';
14254f7220eSAndreas Gohr$lang['proxy____port'] = '프록시 서버 포트';
14354f7220eSAndreas Gohr$lang['proxy____user'] = '프록시 사용자 이름';
14454f7220eSAndreas Gohr$lang['proxy____pass'] = '프록시 패스워드';
14554f7220eSAndreas Gohr$lang['proxy____ssl']  = '프록시 연결시 ssl사용';
14654f7220eSAndreas Gohr
14754f7220eSAndreas Gohr/* Safemode Hack */
14854f7220eSAndreas Gohr$lang['safemodehack'] = 'safemode hack기능 사용';
14954f7220eSAndreas Gohr$lang['ftp____host'] = 'safemode hack의 FTP 서버';
15054f7220eSAndreas Gohr$lang['ftp____port'] = 'safemode hack의 FTP port';
15154f7220eSAndreas Gohr$lang['ftp____user'] = 'safemode hack의 FTP 사용자 이름';
15254f7220eSAndreas Gohr$lang['ftp____pass'] = 'safemode hack의 FTP 패스워드';
15354f7220eSAndreas Gohr$lang['ftp____root'] = 'safemode hack의 FTP 루트 디렉토리';
15454f7220eSAndreas Gohr
15554f7220eSAndreas Gohr/* userewrite options */
15654f7220eSAndreas Gohr$lang['userewrite_o_0'] = '사용 안함';
15754f7220eSAndreas Gohr$lang['userewrite_o_1'] = '.htaccess';
15854f7220eSAndreas Gohr$lang['userewrite_o_2'] = 'DokuWiki 내부 기능';
15954f7220eSAndreas Gohr
16054f7220eSAndreas Gohr/* deaccent options */
16154f7220eSAndreas Gohr$lang['deaccent_o_0'] = '사용 안함';
16254f7220eSAndreas Gohr$lang['deaccent_o_1'] = '악센트 제거';
16354f7220eSAndreas Gohr$lang['deaccent_o_2'] = '라틴문자화';
16454f7220eSAndreas Gohr
16554f7220eSAndreas Gohr/* gdlib options */
16654f7220eSAndreas Gohr$lang['gdlib_o_0'] = 'GD 라이브러리 사용 안함';
16754f7220eSAndreas Gohr$lang['gdlib_o_1'] = '버전 1.x';
16854f7220eSAndreas Gohr$lang['gdlib_o_2'] = '자동 인식';
16954f7220eSAndreas Gohr
17054f7220eSAndreas Gohr/* rss_type options */
17154f7220eSAndreas Gohr$lang['rss_type_o_rss']  = 'RSS 0.91';
17254f7220eSAndreas Gohr$lang['rss_type_o_rss1'] = 'RSS 1.0';
17354f7220eSAndreas Gohr$lang['rss_type_o_rss2'] = 'RSS 2.0';
17454f7220eSAndreas Gohr$lang['rss_type_o_atom'] = 'Atom 0.3';
17554f7220eSAndreas Gohr
17654f7220eSAndreas Gohr/* rss_linkto options */
17754f7220eSAndreas Gohr$lang['rss_linkto_o_diff']    = '차이점 보기';
17854f7220eSAndreas Gohr$lang['rss_linkto_o_page']    = '변경 페이지 보기';
17954f7220eSAndreas Gohr$lang['rss_linkto_o_rev']     = '변경 목록 보기';
18054f7220eSAndreas Gohr$lang['rss_linkto_o_current'] = '최근 페이지 보기';
18154f7220eSAndreas Gohr
18254f7220eSAndreas Gohr/* compression options */
18354f7220eSAndreas Gohr$lang['compression_o_0']   = '없음';
18454f7220eSAndreas Gohr$lang['compression_o_gz']  = 'gzip';
18554f7220eSAndreas Gohr$lang['compression_o_bz2'] = 'bz2';
18654f7220eSAndreas Gohr
187