ko.php
6.88 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<?php $TRANSLATIONS = array(
"Contacts" => "연락처",
"Save" => "저장",
"Uploading..." => "업로드 중...",
"Importing..." => "가져오기중...",
"Failed adding address book: {error}" => "주소록 추가 실패: {error}",
"Failed loading address books: {error}" => "주소록 불러오기 실패: {error}",
"Unrecoverable error loading address books: {msg}" => "주소록을 불러오는 중 복구할 수 없는 오류 발생: {msg}",
"Error." => "오류.",
"Add to..." => "추가... ",
"Remove from..." => "다음에서 삭제... ",
"Add group..." => "그룹 추가... ",
"Invalid URL: \"{url}\"" => "잘못된 URL: \"{url}\"",
"Invalid email: \"{url}\"" => "잘못된 이메일: \"{url}\"",
"Select photo" => "사진 선택",
"Cancel" => "취소",
"OK" => "확인",
"No files selected for upload." => "업로드를 위한 파일이 선택되지 않았습니다. ",
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "이 파일은 이 서버 파일 업로드 최대 용량을 초과 합니다. ",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "일부 연락처가 삭제 표시 되었으나 아직 삭제되지 않았습니다. 삭제가 끝날 때 까지 기다려 주세요.",
"Add" => "추가",
"Contact is already in this group." => "연락처가 이미 이 그룹에 있습니다.",
"Couldn't get contact list." => "연락처 목록을 가져올 수 없습니다.",
"Please choose the addressbook" => "주소록 선택",
"Import" => "가져오기",
"Import done" => "가져오기 완료",
"Close" => "닫기",
"Error" => "오류",
"Displayname cannot be empty." => "디스플레이 이름은 비워둘 수 없습니다. ",
"Show CardDav link" => "CardDav 링크를 표시",
"Show read-only VCF link" => "읽기전용 VCF 링크 표시",
"Download" => "다운로드",
"Edit" => "편집",
"Delete" => "삭제",
"More..." => "더...",
"Less..." => "그외...",
"Unknown error" => "알려지지 않은 오류",
"Unknown IM: " => "알려지지 않은 IM:",
"{name}'s Birthday" => "{이름}의 생일",
"Error saving contact." => "연락처 저장 중 오류가 발생했습니다.",
"Information about vCard is incorrect. Please reload the page." => "vCard 정보가 올바르지 않습니다. 페이지를 새로 고치십시오.",
"No file was uploaded. Unknown error" => "파일이 업로드되지 않았습니다. 알 수 없는 오류입니다",
"There is no error, the file uploaded with success" => "파일 업로드에 성공하였습니다.",
"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "php.ini 형식으로 업로드 된 이 파일은 MAX_FILE_SIZE를 초과하였다.",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "업로드한 파일 크기가 HTML 폼의 MAX_FILE_SIZE보다 큼",
"The uploaded file was only partially uploaded" => "파일의 일부분만 업로드됨",
"No file was uploaded" => "파일이 업로드되지 않았음",
"Missing a temporary folder" => "임시 폴더가 없음",
"Couldn't load temporary image: " => "임시 이미지를 불러올 수 없습니다. ",
"Couldn't save temporary image: " => "임시 이미지를 저장할 수 없습니다:",
"No photo path was submitted." => "사진 경로가 제출되지 않았습니다. ",
"File doesn't exist:" => "파일이 존재하지 않습니다:",
"Error loading image." => "로딩 이미지 오류입니다.",
"Error creating temporary image" => "임시 이미지를 생성 중 오류가 발생했습니다.",
"Error cropping image" => "이미지를 자르던 중 오류가 발생했습니다.",
"Error resizing image" => "이미지 크기 조정 중 오류가 발생했습니다.",
"Error getting PHOTO property." => "사진 속성을 가져오는 중 오류가 발생했습니다. ",
"Failed to write to disk" => "디스크에 쓰지 못했습니다",
"Not enough storage available" => "저장소가 용량이 충분하지 않습니다.",
"Error uploading contacts to storage." => "스토리지 에러 업로드 연락처.",
"Could not set preference: " => "선호도를 설정할 수 없음: ",
"Contact" => "연락처",
"Other" => "기타",
"Jabber" => "Jabber",
"AIM" => "AIM",
"MSN" => "MSN",
"Twitter" => "Twitter",
"GoogleTalk" => "GoogleTalk",
"Facebook" => "Facebook",
"XMPP" => "XMPP",
"ICQ" => "ICQ",
"Yahoo" => "Yahoo",
"Skype" => "Skype",
"QQ" => "QQ",
"GaduGadu" => "GaduGadu",
"Work" => "작업",
"Home" => "가정",
"Mobile" => "휴대폰",
"Text" => "텍스트",
"Voice" => "음성 번호",
"Message" => "메세지",
"Fax" => "팩스 번호",
"Video" => "영상 번호",
"Pager" => "호출기",
"Internet" => "인터넷",
"Friends" => "친구들",
"Family" => "가족",
"Groups" => "그룹",
"Keyboard shortcuts" => "단축키",
"Navigation" => "네비게이션",
"Next contact in list" => "목록에서의 다음 연락처",
"Previous contact in list" => "목록에서의 이전 연락처",
"Expand/collapse current addressbook" => "현재 주소록을 확장/축소",
"Next addressbook" => "다음 주소록",
"Previous addressbook" => "이전 주소록",
"Actions" => "작업",
"Refresh contacts list" => "연락처 목록 새로 고침",
"Add new contact" => "새로운 연락처 추가",
"Add new addressbook" => "새로운 주소록 추가",
"Delete current contact" => "현재 연락처 삭제",
"Add contact" => "연락처 추가",
"Delete current photo" => "현재 사진 삭제",
"Edit current photo" => "현재 사진 편집",
"Upload new photo" => "새로운 사진 업로드",
"Select photo from ownCloud" => "ownCloud에서 사진 선택",
"Name" => "이름",
"Additional names" => "추가 이름",
"Select groups" => "그룹 선택",
"Nickname" => "별명",
"Enter nickname" => "별명 입력",
"Title" => "직위",
"Organization" => "조직",
"Birthday" => "생일",
"Phone" => "전화 번호",
"Email" => "이메일",
"Instant Messaging" => "인스턴트 메세지",
"Address" => "주소",
"Note" => "메모",
"Web site" => "웹 사이트",
"Delete contact" => "연락처 삭제",
"Preferred" => "선호함",
"Please specify a valid email address." => "올바른 이메일 주소를 입력하세요.",
"Mail to address" => "이메일 주소",
"Delete email address" => "이메일 주소 삭제",
"Enter phone number" => "전화번호 입력",
"Delete phone number" => "전화번호 삭제",
"Go to web site" => "웹 사이트로 가기",
"View on map" => "지도에서 보기",
"Street address" => "번지",
"Postal code" => "우편 번호",
"City" => "도시",
"Country" => "국가",
"Instant Messenger" => "인스턴트 메신저",
"Delete IM" => "IM 삭제",
"Active" => "활성",
"Share" => "공유",
"Export" => "내보내기",
"CardDAV syncing addresses" => "CardDAV 주소 동기화",
"more info" => "더 많은 정보",
"Primary address (Kontact et al)" => "기본 주소 (Kontact 등)",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "주소록",
"New Address Book" => "새 주소록",
"Description" => "종류"
);