xref: /dokuwiki/lib/plugins/usermanager/lang/ko/lang.php (revision 54f7220e240f8b20d6750ed02327d78470a108b1)
1*54f7220eSAndreas Gohr<?php
2*54f7220eSAndreas Gohr/**
3*54f7220eSAndreas Gohr * korean language file
4*54f7220eSAndreas Gohr *
5*54f7220eSAndreas Gohr * @author Chris Smith <chris@jalakai.co.uk>
6*54f7220eSAndreas Gohr * @author jk Lee <bootmeta@gmail.com>
7*54f7220eSAndreas Gohr */
8*54f7220eSAndreas Gohr
9*54f7220eSAndreas Gohr$lang['menu'] = '사용자 관리자';
10*54f7220eSAndreas Gohr
11*54f7220eSAndreas Gohr// custom language strings for the plugin
12*54f7220eSAndreas Gohr$lang['noauth']      = '(사용자 인증이 불가능합니다.)';
13*54f7220eSAndreas Gohr$lang['nosupport']   = '(사용자 관리가 지원되지 않습니다.)';
14*54f7220eSAndreas Gohr
15*54f7220eSAndreas Gohr$lang['badauth']     = '유효하지 않은 인증 메카니즘입니다.';     // should never be displayed!
16*54f7220eSAndreas Gohr
17*54f7220eSAndreas Gohr$lang['user_id']     = '사용자';
18*54f7220eSAndreas Gohr$lang['user_pass']   = '패스워드';
19*54f7220eSAndreas Gohr$lang['user_name']   = '실제 이름';
20*54f7220eSAndreas Gohr$lang['user_mail']   = '이메일 ';
21*54f7220eSAndreas Gohr$lang['user_groups'] = '그룹들';
22*54f7220eSAndreas Gohr
23*54f7220eSAndreas Gohr$lang['field']       = '항목';
24*54f7220eSAndreas Gohr$lang['value']       = '값';
25*54f7220eSAndreas Gohr$lang['add']         = '추가';
26*54f7220eSAndreas Gohr$lang['delete']      = '삭제';
27*54f7220eSAndreas Gohr$lang['delete_selected'] = '삭제 선택';
28*54f7220eSAndreas Gohr$lang['edit']        = '수정';
29*54f7220eSAndreas Gohr$lang['edit_prompt'] = '이 사용자 수정';
30*54f7220eSAndreas Gohr$lang['modify']      = '변경 저장';
31*54f7220eSAndreas Gohr$lang['search']      = '검색';
32*54f7220eSAndreas Gohr$lang['search_prompt'] = '검색 실행';
33*54f7220eSAndreas Gohr$lang['clear']       = '검색 필터 초기화';
34*54f7220eSAndreas Gohr$lang['filter']      = '필터';
35*54f7220eSAndreas Gohr
36*54f7220eSAndreas Gohr$lang['summary']     = '검색된 사용자들 보기(%1$d-%2$d 중 %3$d). 전체 사용자 %4$d 명.';
37*54f7220eSAndreas Gohr$lang['nonefound']   = '검색된 사용자가 없습니다. 전체 사용자 %d 명.';
38*54f7220eSAndreas Gohr$lang['delete_ok']   = '%d 명의 사용자가 삭제되었습니다.';
39*54f7220eSAndreas Gohr$lang['delete_fail'] = '%d 명의 사용자의 삭제가 실패했습니다.';
40*54f7220eSAndreas Gohr$lang['update_ok']   = '사용자 갱신이 성공했습니다.';
41*54f7220eSAndreas Gohr$lang['update_fail'] = '사용자 갱신이 실패했습니다.';
42*54f7220eSAndreas Gohr$lang['update_exists'] = '사용자 이름 변경이 실패했습니다. 사용자 이름(%s)이 이미 존재합니다. (다른 항목들의 변경은 적용됩니다.)';
43*54f7220eSAndreas Gohr
44*54f7220eSAndreas Gohr$lang['start']  = '시작';
45*54f7220eSAndreas Gohr$lang['prev']   = '이전';
46*54f7220eSAndreas Gohr$lang['next']   = '다음';
47*54f7220eSAndreas Gohr$lang['last']   = '마지막';
48*54f7220eSAndreas Gohr
49*54f7220eSAndreas Gohr// added after 2006-03-09 release
50*54f7220eSAndreas Gohr$lang['edit_usermissing'] = '선택된 사용자를 찾을 수 없습니다, 사용자 이름이 삭제되거나 변경됐을 수도 있습니다.';
51*54f7220eSAndreas Gohr$lang['user_notify'] = '사용자에게 알림';
52*54f7220eSAndreas Gohr$lang['note_notify'] = '사용자에게 새로운 암호를 준 경우에만 알림 이메일이 보내집니다.';
53*54f7220eSAndreas Gohr$lang['note_group'] = '새로운 사용자들은 어떤 그룹도 설정하지 않은 경우에 기본 그룹(%s)에 추가됩니다.';
54*54f7220eSAndreas Gohr$lang['add_ok'] = '사용자가 성공적으로 추가되었습니다.';
55*54f7220eSAndreas Gohr$lang['add_fail'] = '사용자 추가가 실패했습니다.';
56*54f7220eSAndreas Gohr$lang['notify_ok'] = '알림 이메일이 성공적으로 발송되었습니다. ';
57*54f7220eSAndreas Gohr$lang['notify_fail'] = '알림 이메일 발송이 실패했습니다.';
58*54f7220eSAndreas Gohr
59