-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlang.php
More file actions
80 lines (79 loc) · 2.35 KB
/
lang.php
File metadata and controls
80 lines (79 loc) · 2.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<?php
return [
'claimManage' => [
'ko' => '신고 관리',
'en' => 'Claim manage',
],
'AlreadyClaimed' => [
'ko' => '이미 신고되었습니다.',
'en' => "It's already been reported",
],
'msgClaimReceived' => [
'ko' => '신고가 접수 되었습니다.',
'en' => 'The report has been received',
],
'msgClaimCanceled' => [
'ko' => '신고가 취소 되었습니다.',
'en' => 'The report has been canceled',
],
'unknownUser' => [
'ko' => '알 수 없는 회원',
'en' => 'Unknown user'
],
'enterClaimReason' => [
'ko' => '신고 사유를 입력해주세요.',
'en' => 'Please enter reason for report'
],
'claimException' => [
'ko' => '신고에 실패하였습니다.<br>계속 실패하는 경우 관리자에게 문의해주세요.',
'en' => 'Failed to report.<br>If you continue to receive this error please contact Administrator.'
],
'cantReportAdminException' => [
'ko' => '관리자는 신고할 수 없습니다.',
'en' => "You can't report admin"
],
'cantReportMyselfException' => [
'ko' => '자기 자신을 신고할 수 없습니다',
'en' => "You can't report yourself"
],
'cantReportWithdrawnUserException' => [
'ko' => '탈퇴한 사용자입니다.',
'en' => "You can't report withdrawn user"
],
'guestCannotReportException' => [
'ko' => '비회원은 신고할 수 없습니다.',
'en' => 'Guest cannot report'
],
'notSupportClaimTypeException' => [
'ko' => '지원하지 않는 신고 유형 입니다.',
'en' => 'Not supported report type'
],
'notFoundTargetException' => [
'ko' => '잘못된 신고 대상 입니다.',
'en' => 'Invalid report target'
],
'statusNew' => [
'ko' => '접수중',
'en' => 'New'
],
'statusProcessing' => [
'ko' => '처리중',
'en' => 'Processing'
],
'statusClosed' => [
'ko' => '처리됨',
'en' => 'Closed'
],
'claimTypeBoard' => [
'ko' => '게시물',
'en' => 'Board'
],
'claimTypeComment' => [
'ko' => '댓글',
'en' => 'Comment'
],
'claimTypeUser' => [
'ko' => '유저',
'en' => 'User'
],
];