summaryrefslogtreecommitdiff
path: root/app/Locale/ko_KR/translations.php
blob: c85b06ed26d44e55ed3ba2fbf0264fd4fa015bcd (plain)
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
<?php

return array(
    // 'number.decimals_separator' => '',
    // 'number.thousands_separator' => '',
    'None' => '없음',
    'edit' => '수정',
    'Edit' => '수정',
    'remove' => '삭제',
    'Remove' => '삭제',
    'Yes' => '예',
    'No' => '아니오',
    'cancel' => '취소',
    'or' => '또는',
    'Yellow' => '노랑',
    'Blue' => '파랑',
    'Green' => '초록',
    'Purple' => '보라',
    'Red' => '빨강',
    'Orange' => '주황',
    'Grey' => '회색',
    'Brown' => '브라운',
    'Deep Orange' => '진홍',
    'Dark Grey' => '암회',
    'Pink' => '핑크',
    'Teal' => '암녹',
    'Cyan' => '청녹',
    'Lime' => '라임',
    'Light Green' => '연회',
    'Amber' => '호박',
    'Save' => '저장',
    'Login' => '로그인',
    'Official website:' => '공식 웹사이트:',
    'Unassigned' => '담당자 없음',
    'View this task' => '이 할일 보기',
    'Remove user' => '사용자 삭제',
    'Do you really want to remove this user: "%s"?' => '사용자 "%s"를 정말로 삭제하시겠습니까?',
    'All users' => '모든 사용자',
    'Username' => '사용자 이름',
    'Password' => '패스워드',
    'Administrator' => '관리자',
    'Sign in' => '로그인',
    'Users' => '사용자',
    'No user' => '사용자가 없습니다',
    'Forbidden' => '접근 거부',
    'Access Forbidden' => '접속이 거부되었습니다',
    'Edit user' => '사용자를 변경하는 ',
    'Logout' => '로그아웃',
    'Bad username or password' => '사용자 이름 또는 패스워드가 다릅니다.',
    'Edit project' => '프로젝트 수정',
    'Name' => '이름',
    'Projects' => '프로젝트',
    'No project' => '프로젝트가 없습니다',
    'Project' => '프로젝트',
    'Status' => '상태',
    'Tasks' => '할일',
    'Board' => '보드',
    'Actions' => 'Actions',
    'Inactive' => '무효',
    'Active' => '유효',
    'Unable to update this board.' => '보드를 갱신할 수 없었습니다',
    'Disable' => '비활성화',
    'Enable' => '유효하게 한다',
    'New project' => '새 프로젝트',
    'Do you really want to remove this project: "%s"?' => '프로젝트를 삭제하시겠습니까: "%s"?',
    'Remove project' => '프로젝트의 삭제',
    'Edit the board for "%s"' => '"%s"를 위한 보드 수정',
    'Add a new column' => '컬럼의 추가',
    'Title' => '제목',
    'Assigned to %s' => '담당자 %s',
    'Remove a column' => '컬럼 삭제',
    'Unable to remove this column.' => '(※)컬럼을 삭제할 수 없었습니다.',
    'Do you really want to remove this column: "%s"?' => '컬럼을 삭제하시겠습니까: "%s"?',
    'Settings' => '설정',
    'Application settings' => '애플리케이션의 설정',
    'Language' => '언어',
    'Webhook token:' => 'Webhook토큰:',
    'API token:' => 'API토큰:',
    'Database size:' => '데이터베이스의 사이즈:',
    'Download the database' => '데이터베이스의 다운로드',
    'Optimize the database' => '데이터베이스 최적화',
    '(VACUUM command)' => '(VACUUM명령)',
    '(Gzip compressed Sqlite file)' => '(GZip명령으로 압축된 Sqlite파일)',
    'Close a task' => '할일 마치기',
    'Column' => '컬럼',
    'Color' => '색',
    'Assignee' => '담당자',
    'Create another task' => '다른 할일 추가',
    'New task' => '새로운 할일',
    'Open a task' => '할일 열기',
    'Do you really want to open this task: "%s"?' => '할일은 시작 하시겠습니까: "%s"?',
    'Back to the board' => '보드로 돌아가기',
    'There is nobody assigned' => '담당자가 없습니다',
    'Column on the board:' => '컬럼:',
    'Close this task' => '할일 마치기',
    'Open this task' => '할일을 열다',
    'There is no description.' => '설명이 없다',
    'Add a new task' => '할일을 추가하는 ',
    'The username is required' => '사용자 이름이 필요합니다',
    'The maximum length is %d characters' => '최대 길이는 "%d" 글자 입니다',
    'The minimum length is %d characters' => '최소 길이는 "%d" 글자 입니다',
    'The password is required' => '패스워드가 필요합니다',
    'This value must be an integer' => '정수로 입력하세요',
    'The username must be unique' => '사용자 이름이 이미 사용되고 있습니다',
    'The user id is required' => '사용자 ID가 필요합니다',
    'Passwords don\'t match' => '패스워드가 일치하지 않습니다',
    'The confirmation is required' => '확인용 패스워드를 입력하세요',
    'The project is required' => '프로젝트가 필요합니다',
    'The id is required' => 'ID가 필요합니다',
    'The project id is required' => '프로젝트 ID가 필요합니다',
    'The project name is required' => '프로젝트 이름이 필요합니다',
    'The title is required' => '제목이 필요합니다',
    'Settings saved successfully.' => '설정을 저장하였습니다',
    'Unable to save your settings.' => '설정의 보존에 실패했습니다.',
    'Database optimization done.' => '데이터베이스 최적화가 끝났습니다.',
    'Your project have been created successfully.' => '프로젝트를 작성했습니다.',
    'Unable to create your project.' => '프로젝트의 작성에 실패했습니다.',
    'Project updated successfully.' => '프로젝트를 갱신했습니다.',
    'Unable to update this project.' => '프로젝트의 갱신에 실패했습니다.',
    'Unable to remove this project.' => '프로젝트의 삭제에 실패했습니다.',
    'Project removed successfully.' => '프로젝트를 삭제했습니다.',
    'Project activated successfully.' => '프로젝트를 유효로 했습니다.',
    'Unable to activate this project.' => '프로젝트의 유효하게 못했어요.',
    'Project disabled successfully.' => '프로젝트를 무효로 했습니다.',
    'Unable to disable this project.' => '프로젝트의 무효화할 수 없었습니다.',
    'Unable to open this task.' => '할일의 오픈에 실패했습니다.',
    'Task opened successfully.' => '할일을 오픈했습니다.',
    'Unable to close this task.' => '할일의 클로즈에 실패했습니다.',
    'Task closed successfully.' => '할일을 마쳤습니다.',
    'Unable to update your task.' => '할일의 갱신에 실패했습니다.',
    'Task updated successfully.' => '할일을 갱신했습니다.',
    'Unable to create your task.' => '할일의 추가에 실패했습니다.',
    'Task created successfully.' => '할일을 추가했습니다.',
    'User created successfully.' => '사용자를 추가했습니다.',
    'Unable to create your user.' => '사용자의 추가에 실패했습니다.',
    'User updated successfully.' => '사용자를 갱신했습니다.',
    'Unable to update your user.' => '사용자의 갱신에 실패했습니다.',
    'User removed successfully.' => '사용자를 삭제했습니다.',
    'Unable to remove this user.' => '사용자 삭제에 실패했습니다.',
    'Board updated successfully.' => '보드를 갱신했습니다.',
    'Ready' => '준비중',
    'Backlog' => '요구사항',
    'Work in progress' => '진행중',
    'Done' => '완료',
    'Application version:' => '애플리케이션의 버전:',
    'Id' => 'ID',
    'Public link' => '공개 접속 링크',
    'Timezone' => '시간대',
    'Sorry, I didn\'t find this information in my database!' => '데이터베이스에서 정보가 발견되지 않았습니다!',
    'Page not found' => '페이지가 발견되지 않는다',
    'Complexity' => '복잡도',
    'Task limit' => '할일 수 제한',
    'Task count' => '할일 수',
    'User' => '사용자',
    'Comments' => '댓글',
    'Comment is required' => '댓글을 입력하세요',
    'Comment added successfully.' => '의견을 추가했습니다.',
    'Unable to create your comment.' => '댓글의 추가에 실패했습니다.',
    'Due Date' => '마감일',
    'Invalid date' => '날짜가 무효입니다',
    'Automatic actions' => '자동액션 관리',
    'Your automatic action have been created successfully.' => '자동 액션을 작성했습니다.',
    'Unable to create your automatic action.' => '자동 액션의 작성에 실패했습니다.',
    'Remove an action' => '자동 액션의 삭제',
    'Unable to remove this action.' => '자동 액션의 삭제에 실패했습니다.',
    'Action removed successfully.' => '자동 액션의 삭제에 성공했어요.',
    'Automatic actions for the project "%s"' => '"%s" 프로젝트를 위한 자동 액션',
    'Add an action' => '자동 액션 추가',
    'Event name' => '이벤트 이름',
    'Action name' => '액션 이름',
    'Action parameters' => '액션의 바로미터',
    'Action' => '액션',
    'Event' => '이벤트',
    'When the selected event occurs execute the corresponding action.' => '선택된 이벤트가 발생했을 때 대응하는 액션을 실행한다.',
    'Next step' => '다음 단계',
    'Define action parameters' => '액션의 바로미터',
    'Do you really want to remove this action: "%s"?' => '액션을 삭제하시겠습니까: "%s"?',
    'Remove an automatic action' => '자동 액션의 삭제',
    'Assign the task to a specific user' => '할일 담당자를 할당',
    'Assign the task to the person who does the action' => '액션을 일으킨 사용자를 담당자이자',
    'Duplicate the task to another project' => ' 다른 프로젝트에 할일을 복제하는 ',
    'Move a task to another column' => '할일을 다른 컬럼에 이동하는 ',
    'Task modification' => '할일 변경',
    'Task creation' => '할일을 만들',
    'Closing a task' => '할일을 닫혔다',
    'Assign a color to a specific user' => '색을 사용자에 할당',
    'Position' => '위치',
    'Duplicate to another project' => '다른 프로젝트에 복사',
    'Duplicate' => '복사',
    'link' => '링크',
    'Comment updated successfully.' => '댓글을 갱신했습니다.',
    'Unable to update your comment.' => '댓글의 갱신에 실패했습니다.',
    'Remove a comment' => '댓글 삭제',
    'Comment removed successfully.' => '댓글을 삭제했습니다.',
    'Unable to remove this comment.' => '댓글의 삭제에 실패했습니다.',
    'Do you really want to remove this comment?' => '댓글을 삭제합니까?',
    'Current password for the user "%s"' => '사용자 "%s"의 현재 패스워드',
    'The current password is required' => '현재의 패스워드를 입력하세요',
    'Wrong password' => '패스워드가 다릅니다',
    'Unknown' => '불명',
    'Last logins' => '마지막 로그인',
    'Login date' => '로그인 일시',
    'Authentication method' => '인증 방법',
    'IP address' => 'IP 주소',
    'User agent' => '사용자 에이전트',
    'Persistent connections' => '세션',
    'No session.' => '세션 없음',
    'Expiration date' => '유효기간',
    'Remember Me' => '자동 로그인',
    'Creation date' => '작성일',
    'Everybody' => '모두',
    'Open' => '열림',
    'Closed' => '닫힘',
    'Search' => '검색',
    'Nothing found.' => '결과가 없습니다',
    'Due date' => '마감일',
    'Description' => '설명',
    '%d comments' => '%d개의 댓글',
    '%d comment' => '%d개의 댓글',
    'Email address invalid' => '메일 주소가 올바르지 않습니다.',
    'Your external account is not linked anymore to your profile.' => '외부 계정과 프로필이 더이상 연결되지 않습니다',
    'Unable to unlink your external account.' => '외부 계정과 연결 해제에 실패하였습니다',
    'External authentication failed' => '외부 인증 실패',
    'Your external account is linked to your profile successfully.' => '외부 계정과 프로필이 성공적으로 연결되었습니다',
    'Email' => '이메일',
    'Task removed successfully.' => '할일을 삭제했습니다.',
    'Unable to remove this task.' => '할일 삭제에 실패하였습니다',
    'Remove a task' => '할일 삭제',
    'Do you really want to remove this task: "%s"?' => '할일을 삭제하시겠습니까: "%s"?',
    'Assign automatically a color based on a category' => '카테고리에 바탕을 두고 색을 바꾸고',
    'Assign automatically a category based on a color' => '색에 바탕을 두고 카테고리를 바꾸었다',
    'Task creation or modification' => '할일의 작성 또는 변경',
    'Category' => '카테고리',
    'Category:' => '카테고리:',
    'Categories' => '카테고리',
    'Your category have been created successfully.' => '카테고리를 작성했습니다.',
    'Unable to create your category.' => '카테고리의 작성에 실패했습니다.',
    'Your category have been updated successfully.' => '카테고리를 갱신했습니다.',
    'Unable to update your category.' => '카테고리의 갱신에 실패했습니다.',
    'Remove a category' => '카테고리의 삭제',
    'Category removed successfully.' => '카테고리를 삭제했습니다.',
    'Unable to remove this category.' => '카테고리를 삭제할 수 없었습니다.',
    'Category modification for the project "%s"' => '"%s" 프로젝트 카테고리 수정',
    'Category Name' => '카테고리 이름',
    'Add a new category' => '카테고리의 추가',
    'Do you really want to remove this category: "%s"?' => '카테고리를 삭제하시겠습니까: "%s"?',
    'All categories' => '모든 카테고리',
    'No category' => '카테고리 없음',
    'The name is required' => '이름을 입력하십시오',
    'Remove a file' => '파일 삭제',
    'Unable to remove this file.' => '파일 삭제에 실패했습니다.',
    'File removed successfully.' => '파일을 삭제했습니다.',
    'Attach a document' => '문서 첨부',
    'Do you really want to remove this file: "%s"?' => '파일 "%s" 을 삭제할까요?',
    'Attachments' => '첨부',
    'Edit the task' => '할일 수정',
    'Add a comment' => '댓글 추가',
    'Edit a comment' => '댓글 수정',
    'Summary' => '개요',
    'Time tracking' => '시간 추적',
    'Estimate:' => '예측:',
    'Spent:' => '경과:',
    'Do you really want to remove this sub-task?' => '서브 할일을 삭제합니까?',
    'Remaining:' => '나머지:',
    'hours' => '시간',
    'spent' => '경과',
    'estimated' => '예측',
    'Sub-Tasks' => '서브 할일',
    'Add a sub-task' => '서브 할일 추가',
    'Original estimate' => '최초 예측시간',
    'Create another sub-task' => '다음 서브 할일 추가',
    'Time spent' => '경과시간',
    'Edit a sub-task' => '서브 할일을 변경하는 ',
    'Remove a sub-task' => '서브 할일을 삭제하는 ',
    'The time must be a numeric value' => '시간은 숫자로 입력하세요',
    'Todo' => '할일 예정',
    'In progress' => '할일 중',
    'Sub-task removed successfully.' => '서브 할일을 삭제했습니다.',
    'Unable to remove this sub-task.' => '서브 할일의 삭제가 실패했습니다.',
    'Sub-task updated successfully.' => '서브 할일을 갱신했습니다.',
    'Unable to update your sub-task.' => '서브 할일의 경신에 실패했습니다.',
    'Unable to create your sub-task.' => '서브 할일의 추가에 실패했습니다.',
    'Sub-task added successfully.' => '서브 할일을 추가했습니다.',
    'Maximum size: ' => '최대: ',
    'Display another project' => '프로젝트 보기',
    'Created by %s' => '작성자 %s',
    'Tasks Export' => '할일 내보내기',
    'Start Date' => '시작일',
    'Execute' => '실행',
    'Task Id' => '할일 ID',
    'Creator' => '작성자',
    'Modification date' => '변경 일',
    'Completion date' => '완료일',
    'Clone' => '복사',
    'Project cloned successfully.' => '프로젝트를 복제했습니다.',
    'Unable to clone this project.' => '프로젝트의 복제에 실패했습니다.',
    'Enable email notifications' => '이메일 알림 설정',
    'Task position:' => '할일 위치:',
    'The task #%d have been opened.' => '할일 #%d가 시작되었습니다',
    'The task #%d have been closed.' => '할일 #%d가 종료되었습니다',
    'Sub-task updated' => '서브 할일 갱신',
    'Title:' => '제목:',
    'Status:' => '상태:',
    'Assignee:' => '담당:',
    'Time tracking:' => '시간 계측:',
    'New sub-task' => '새로운 서브 할일',
    'New attachment added "%s"' => '"%s"의 새로운 첨부 파일',
    'New comment posted by %s' => '"%s"님이 댓글을 추가하였습니다',
    'New comment' => ' 새로운 댓글',
    'Comment updated' => '댓글가 갱신되었습니다',
    'New subtask' => ' 새로운 서브 할일',
    'I want to receive notifications only for those projects:' => '다음 프로젝트의 알림만 받겠습니다:',
    'view the task on Kanboard' => 'Kanboard에서 할일을 본다',
    'Public access' => '공개 접속 설정',
    'Disable public access' => '공개 접속 비활성화',
    'Enable public access' => '공개 접속 활성화',
    'Public access disabled' => '공개 접속 불가',
    'Move the task to another project' => '할일별 프로젝트에 옮기',
    'Move to another project' => '다른 프로젝트로 이동',
    'Do you really want to duplicate this task?' => '할일을 복제합니까?',
    'Duplicate a task' => '할일 복사',
    'External accounts' => '외부 계정',
    'Account type' => '계정종류',
    'Local' => '로컬',
    'Remote' => '원격',
    'Enabled' => '활성화',
    'Disabled' => '비활성화',
    'Login:' => '사용자명',
    'Full Name:' => '이름:',
    'Email:' => '이메일:',
    'Notifications:' => '알림:',
    'Notifications' => '알림',
    'Account type:' => '계정종류:',
    'Edit profile' => '프로필 변경',
    'Change password' => '패스워드 변경',
    'Password modification' => '패스워드 변경',
    'External authentications' => '외부 인증',
    'Never connected.' => '접속기록없음',
    'No external authentication enabled.' => '외부 인증이 설정되어 있지 않습니다.',
    'Password modified successfully.' => '패스워드를 변경했습니다.',
    'Unable to change the password.' => '비밀 번호가 변경할 수 없었습니다.',
    'Change category' => '카테고리 수정',
    '%s updated the task %s' => '%s이 할일 %s을 갱신 하였습니다',
    '%s opened the task %s' => '%s이 할일 %s을 시작시켰습니다',
    '%s moved the task %s to the position #%d in the column "%s"' => '%s이 할일%s을 위치#%d컬럼%s로 옮겼습니다',
    '%s moved the task %s to the column "%s"' => '%s이 할일 %s을 컬럼 "%s" 로 옮겼습니다',
    '%s created the task %s' => '%s이 할일%s을 추가했습니다',
    '%s closed the task %s' => '%s이 할일%s을 마쳤습니다',
    '%s created a subtask for the task %s' => '%s이 할일%s의 서브 할일을 추가했습니다',
    '%s updated a subtask for the task %s' => '%s이 할일%s의 서브 할일을 갱신했습니다',
    'Assigned to %s with an estimate of %s/%sh' => '담당자 %s에게 예상 %s/%sh을 할당했습니다',
    'Not assigned, estimate of %sh' => '예상 %sh가 할당되지 않았습니다',
    '%s updated a comment on the task %s' => '%s이 할일%s의 댓글을 수정했습니다',
    '%s commented the task %s' => '%s이 할일%s에 댓글을 남겼습니다',
    '%s\'s activity' => '%s의 활동',
    'RSS feed' => 'RSS피드',
    '%s updated a comment on the task #%d' => '%s이 할일#%d의 댓글을 수정했습니다',
    '%s commented on the task #%d' => '%s이 할일#%d을 언급하였습니다',
    '%s updated a subtask for the task #%d' => '%s이 할일#%d의 서브 할일을 수정했습니다',
    '%s created a subtask for the task #%d' => '%s이 할일#%d의 서브 할일을 수정했습니다',
    '%s updated the task #%d' => '%s이 할일#%d을 갱신했습니다',
    '%s created the task #%d' => '%s이 할일#%d을 추가했습니다',
    '%s closed the task #%d' => '%s이 할일#%d을 닫혔습니다',
    '%s opened the task #%d' => '%s이 할일#%d를 오픈했습니다',
    'Activity' => '활동',
    'Default values are "%s"' => '기본 값은 "%s" 입니다',
    'Default columns for new projects (Comma-separated)' => '새로운 프로젝트의 기본 컬럼 (콤마(,)로 분리됨)',
    'Task assignee change' => '담당자의 변경',
    '%s changed the assignee of the task #%d to %s' => '%s이 할일 #%d의 담당을 %s로 변경합니다',
    '%s changed the assignee of the task %s to %s' => '%s이 할일 %s의 담당을 %s로 변경했습니다',
    'New password for the user "%s"' => '사용자 "%s"의 새로운 패스워드',
    'Choose an event' => '행사의 선택',
    'Create a task from an external provider' => '할일을 외부 서비스로부터 작성하는 ',
    'Change the assignee based on an external username' => '담당자를 외부 서비스에 바탕을 두고 변경하는 ',
    'Change the category based on an external label' => '카테고리를 외부 서비스에 바탕을 두고 변경하는 ',
    'Reference' => '참조',
    'Label' => '라벨',
    'Database' => '데이터베이스',
    'About' => '정보',
    'Database driver:' => '데이터베이스 드라이버:',
    'Board settings' => '기본 설정',
    'Webhook settings' => 'Webhook의 설정',
    'Reset token' => '토큰 리셋',
    'API endpoint:' => 'API엔드 포인트:',
    'Refresh interval for private board' => '비공개 보드의 갱신 빈도',
    'Refresh interval for public board' => '공개 보드의 갱신 빈도',
    'Task highlight period' => '할일의 하이라이트 기간',
    'Period (in second) to consider a task was modified recently (0 to disable, 2 days by default)' => '최근 수정된 작업 고려 기간(초), (비활성화:0, 기본값:2일)',
    'Frequency in second (60 seconds by default)' => '초당 횟수(기본값:60초)',
    'Frequency in second (0 to disable this feature, 10 seconds by default)' => '초당 횟수(비활성화:0, 기본값:10초)',
    'Application URL' => '애플리케이션의 URL',
    'Token regenerated.' => '토큰이 다시 생성되었습니다.',
    'Date format' => '데이터 포멧',
    'ISO format is always accepted, example: "%s" and "%s"' => 'ISO 포멧은 항상 가능합니다. 예를 들어: "%s" 와 "%s"',
    'New private project' => '새 비공개 프로젝트',
    'This project is private' => '이 프로젝트는 비공개입니다',
    'Add' => '추가',
    'Start date' => '시작시간',
    'Time estimated' => '예상시간',
    'There is nothing assigned to you.' => '할일이 없습니다. 옆사람의 일을 도와주면 어떨까요?',
    'My tasks' => '내 할일',
    'Activity stream' => '활동기록',
    'Dashboard' => '대시보드',
    'Confirmation' => '확인',
    'Allow everybody to access to this project' => '모든 사람이 이 프로젝트에 접근할 수 있도록 합니다',
    'Everybody have access to this project.' => '누구나 이 프로젝트에 액세스 할 수 있습니다',
    'Webhooks' => 'Webhook',
    'API' => 'API',
    'Create a comment from an external provider' => '외부 서비스로부터 의견을 작성한다',
    'Project management' => '프로젝트 관리',
    'My projects' => '내 프로젝트',
    'Columns' => '컬럼',
    'Task' => '할일',
    'Your are not member of any project.' => '어떤 프로젝트에도 속하지 않습니다.',
    'Percentage' => '비중',
    'Number of tasks' => '할일 수',
    'Task distribution' => '할일 분포',
    'Analytics' => '분석',
    'Subtask' => '서브 할일',
    'My subtasks' => '내 서브 할일',
    'User repartition' => '담당자 분포',
    'Clone this project' => '이 프로젝트를 복제하는 ',
    'Column removed successfully.' => '(※)컬럼을 삭제했습니다',
    'Not enough data to show the graph.' => '그래프를 선묘화하려면 나왔지만 부족합니다',
    'Previous' => ' 돌아가',
    'The id must be an integer' => 'id은 숫자가 아니면 안 됩니다',
    'The project id must be an integer' => 'project id은 숫자가 아니면 안 됩니다',
    'The status must be an integer' => 'status는 숫자지 않으면 안 됩니다',
    'The subtask id is required' => 'subtask id가 필요합니다',
    'The subtask id must be an integer' => 'subtask id은 숫자가 아니면 안 됩니다',
    'The task id is required' => 'task id가 필요합니다',
    'The task id must be an integer' => 'task id은 숫자가 아니면 안 됩니다',
    'The user id must be an integer' => 'user id은 숫자가 아니면 안 됩니다',
    'This value is required' => '이 값이 필요합니다',
    'This value must be numeric' => '이 값은 숫자가 아니면 안 됩니다',
    'Unable to create this task.' => '이 할일을 작성할 수 없었습니다',
    'Cumulative flow diagram' => '축적 흐름',
    'Daily project summary' => '하루 프로젝트 개요',
    'Daily project summary export' => '하루 프로젝트 개요의 출력',
    'Exports' => '출력',
    'This export contains the number of tasks per column grouped per day.' => '이 출력은 날짜의 칼람별 할일 수를 집계한 것입니다',
    'Active swimlanes' => '액티브한 스윔레인',
    'Add a new swimlane' => ' 새로운 스윔레인',
    'Change default swimlane' => '기본 스윔레인의 변경',
    'Default swimlane' => '기본 스윔레인',
    'Do you really want to remove this swimlane: "%s"?' => '스웜레인을 삭제하시겠습니까: "%s"?',
    'Inactive swimlanes' => '인터랙티브한 스윔레인',
    'Remove a swimlane' => '스윔레인의 삭제',
    'Show default swimlane' => '기본 스윔레인의 표시',
    'Swimlane modification for the project "%s"' => '"%s" 프로젝트의 스웜레인 수정',
    'Swimlane removed successfully.' => '스윔레인을 삭제했습니다.',
    'Swimlanes' => '스윔레인',
    'Swimlane updated successfully.' => '스윔레인을 갱신했습니다.',
    'The default swimlane have been updated successfully.' => '기본 스윔레인을 갱신했습니다.',
    'Unable to remove this swimlane.' => '스윔레인을 삭제할 수 없었습니다.',
    'Unable to update this swimlane.' => '스윔레인을 갱신할 수 없었습니다.',
    'Your swimlane have been created successfully.' => '스윔레인이 작성되었습니다.',
    'Example: "Bug, Feature Request, Improvement"' => '예: "버그, 특성 요청, 향상"',
    'Default categories for new projects (Comma-separated)' => '새로운 프로젝트의 기본 카테고리 (콤마(,)로 구분)',
    'Integrations' => '연계',
    'Integration with third-party services' => '외부 서비스 연계',
    'Subtask Id' => '서브 할일 Id',
    'Subtasks' => '서브 할일',
    'Subtasks Export' => '서브 할일 출력',
    'Task Title' => '할일 제목',
    'Untitled' => '제목 없음',
    'Application default' => '애플리케이션 기본',
    'Language:' => '언어:',
    'Timezone:' => '시간대:',
    'All columns' => '모든 컬럼',
    'Calendar' => '달력',
    'Next' => '다음에 ',
    '#%d' => '#%d',
    'All swimlanes' => '모든 스윔레인',
    'All colors' => '모든 색',
    'Moved to column %s' => '"%s" 컬럼으로 이동',
    'User dashboard' => '대시보드',
    'Allow only one subtask in progress at the same time for a user' => '한 사용자에 대한 하나의 할일만 진행 중에 가능합니다',
    'Edit column "%s"' => '"%s" 컬럼 수정',
    'Select the new status of the subtask: "%s"' => '서브 할일의 새로운 상태 선택: "%s"',
    'Subtask timesheet' => '서브 할일 타임시트',
    'There is nothing to show.' => '기록이 없습니다',
    'Time Tracking' => '시간 트레킹',
    'You already have one subtask in progress' => '이미 진행 중인 서브 할일가 있습니다.',
    'Which parts of the project do you want to duplicate?' => '프로젝트의 무엇을 복제합니까?',
    'Disallow login form' => '허가되지 않은 로그인 양식',
    'Start' => '시작',
    'End' => '종료',
    'Task age in days' => '할일이 생긴 시간',
    'Days in this column' => '이 컬럼에 있는 시간',
    '%dd' => '%d일',
    'Add a new link' => ' 새로운 링크 추가',
    'Do you really want to remove this link: "%s"?' => '링크를 삭제하시겠습니까: "%s"?',
    'Do you really want to remove this link with task #%d?' => '#%d 할일의 링크를 삭제하시겠습니까?',
    'Field required' => '필드가 필요합니다',
    'Link added successfully.' => '링크를 추가했습니다.',
    'Link updated successfully.' => '링크를 갱신했습니다.',
    'Link removed successfully.' => '링크를 삭제했습니다.',
    'Link labels' => '링크 라벨',
    'Link modification' => '링크의 변경',
    'Links' => '링크',
    'Opposite label' => '반대의 라벨',
    'Remove a link' => '라벨의 삭제',
    'The labels must be different' => ' 다른 라벨을 지정하세요',
    'There is no link.' => '링크가 없습니다',
    'This label must be unique' => '라벨은 독특할 필요가 있습니다',
    'Unable to create your link.' => '링크를 작성할 수 없었습니다.',
    'Unable to update your link.' => '링크를 갱신할 수 없었습니다.',
    'Unable to remove this link.' => '링크를 삭제할 수 없었습니다.',
    'relates to' => '연관 링크',
    'blocks' => '다음을 딜레이하는',
    'is blocked by' => '다음 때문에 딜레이되는',
    'duplicates' => '다음과 중복하는',
    'is duplicated by' => '다음에 중복되는',
    'is a child of' => '다음의 하위 할일',
    'is a parent of' => '다음의 상위 할일',
    'targets milestone' => '다음의 이정표를 목표로 하는',
    'is a milestone of' => '다음의 이정표인',
    'fixes' => '다음을 수정하는',
    'is fixed by' => '다음에 의해 수정되는',
    'This task' => '이 할일의 ',
    '<1h' => '<1시간',
    '%dh' => '%d시간',
    'Expand tasks' => '할일 크게',
    'Collapse tasks' => '할일 작게',
    'Expand/collapse tasks' => '할일 크게/작게',
    'Close dialog box' => '다이얼로그를 닫습니다',
    'Submit a form' => '제출',
    'Board view' => '보드 뷰',
    'Keyboard shortcuts' => '키보드 숏 컷',
    'Open board switcher' => '보드 전환을 열',
    'Application' => '애플리케이션',
    'Compact view' => '컴팩트 뷰',
    'Horizontal scrolling' => '세로 스크롤',
    'Compact/wide view' => '컴팩트/와이드 뷰',
    'Currency' => '통화',
    'Private project' => '개인 프로젝트',
    'AUD - Australian Dollar' => 'AUD - 호주 달러',
    'CAD - Canadian Dollar' => 'CAD -캐나다 달러',
    'CHF - Swiss Francs' => 'CHF - 스위스 프랑',
    'Custom Stylesheet' => '커스텀 스타일 시트',
    'download' => '다운로드',
    'EUR - Euro' => 'EUR - 유로',
    'GBP - British Pound' => 'GBP - 영국 파운드',
    'INR - Indian Rupee' => 'INR - 인도 루피',
    'JPY - Japanese Yen' => 'JPY - 일본 엔',
    'NZD - New Zealand Dollar' => 'NZD - 뉴질랜드 달러',
    'RSD - Serbian dinar' => 'RSD - 세르비아 디나르',
    // 'CNY - Chinese Yuan' => '',
    'USD - US Dollar' => 'USD - 미국 달러',
    'Destination column' => '이동 후 컬럼',
    'Move the task to another column when assigned to a user' => '사용자의 할당을 하면 할일을 다른 컬럼에 이동',
    'Move the task to another column when assignee is cleared' => '사용자의 할당이 없어지면 할일을 다른 컬럼에 이동',
    'Source column' => '이동 전 컬럼',
    'Transitions' => '이력',
    'Executer' => '실행자',
    'Time spent in the column' => '컬럼에 있던 시간',
    'Task transitions' => '할일 천이',
    'Task transitions export' => '할일 천이를 출력',
    'This report contains all column moves for each task with the date, the user and the time spent for each transition.' => '이 리포트는 할일의 컬럼 간 이동을 시간, 유저, 경과 시간과 함께 기록한 것입니다.',
    'Currency rates' => '환율',
    'Rate' => '레이트',
    'Change reference currency' => '현재의 기축 통화',
    'Reference currency' => '기축 통화',
    'The currency rate have been added successfully.' => '통화가 성공적으로 추가되었습니다',
    'Unable to add this currency rate.' => '이 통화 환율을 추가할 수 없습니다.',
    'Webhook URL' => 'Webhook URL',
    '%s removed the assignee of the task %s' => '%s이 할일 %s의 담당을 삭제했습니다',
    'Enable Gravatar images' => 'Gravatar이미지를 활성화',
    'Information' => '정보',
    'Check two factor authentication code' => '2단 인증을 체크한다',
    'The two factor authentication code is not valid.' => '2단 인증 코드는 무효입니다.',
    'The two factor authentication code is valid.' => '2단 인증 코드는 유효합니다.',
    'Code' => '코드',
    'Two factor authentication' => '2단 인증',
    'This QR code contains the key URI: ' => 'QR 코드는 키 URI를 포함합니다: ',
    'Check my code' => '코드 체크',
    'Secret key: ' => '비밀키: ',
    'Test your device' => '디바이스 테스트',
    'Assign a color when the task is moved to a specific column' => '상세 컬럼으로 이동할 할일의 색깔을 지정하세요',
    '%s via Kanboard' => '%s via E-board',
    'Burndown chart' => '번다운 차트',
    'This chart show the task complexity over the time (Work Remaining).' => '이 차트는 시간에 따른 할일의 복잡성을 보여줍니다. (남아있는 일)',
    'Screenshot taken %s' => '스크린샷_%s',
    'Add a screenshot' => '스크린샷 추가',
    'Take a screenshot and press CTRL+V or ⌘+V to paste here.' => '스크린샷을 CTRL+V 혹은 ⌘+V를 눌러 붙여넣기',
    'Screenshot uploaded successfully.' => '스크린샷을 업로드하였습니다',
    'SEK - Swedish Krona' => 'SEK - 스위스 크로나',
    'Identifier' => '식별자',
    'Disable two factor authentication' => '이중 인증 비활성화',
    'Do you really want to disable the two factor authentication for this user: "%s"?' => '"%s" 담당자의 이중 인증을 비활성화 하시겠습니까?',
    'Edit link' => '링크 수정',
    'Start to type task title...' => '할일 제목을 입력하세요',
    'A task cannot be linked to itself' => '할일을 자기자신에게 연결할 수 없습니다',
    'The exact same link already exists' => '동일한 링크가 이미 존재합니다',
    'Recurrent task is scheduled to be generated' => '반복 할일이 생성된 예정입니다.',
    'Score' => '점수',
    'The identifier must be unique' => '식별자는 유일해야 합니다',
    'This linked task id doesn\'t exists' => '연결된 할일 ID가 존재하지 않습니다',
    'This value must be alphanumeric' => '글자와 숫자만 가능합니다',
    'Edit recurrence' => '반복 수정',
    'Generate recurrent task' => '반복 할일 생성',
    'Trigger to generate recurrent task' => '반복 할일 생성 트리거',
    'Factor to calculate new due date' => '새로운 종료날짜 계산',
    'Timeframe to calculate new due date' => '종료날짜 계산 단위',
    'Base date to calculate new due date' => '새로운 기본 종료날짜 계산',
    'Action date' => '시작날짜',
    'Base date to calculate new due date: ' => '새로운 기본 종료날짜 계산: ',
    'This task has created this child task: ' => '이 할일은 하위 할일을 만들었습니다.',
    'Day(s)' => '일',
    'Existing due date' => '기존 종료날짜',
    'Factor to calculate new due date: ' => '새로운 종료날짜 계산: ',
    'Month(s)' => '월',
    'Recurrence' => '반복',
    'This task has been created by: ' => '할일을 만들었습니다: ',
    'Recurrent task has been generated:' => '반복 할일이 생성되었습니다',
    'Timeframe to calculate new due date: ' => '종료날짜 계산 단위',
    'Trigger to generate recurrent task: ' => '반복 할일 생성 트리거',
    'When task is closed' => '할일을 마쳤을때',
    'When task is moved from first column' => '할일이 첫번째 컬럼으로 옮겨졌을때',
    'When task is moved to last column' => '할일이 마지막 컬럼으로 옮겨졌을때',
    'Year(s)' => '년',
    'Calendar settings' => '달력 설정',
    'Project calendar view' => '프로젝트 달력 보기',
    'Project settings' => '프로젝트 설정',
    'Show subtasks based on the time tracking' => '시간 트래킹의 서브 할일 보기',
    'Show tasks based on the creation date' => '생성 날짜로 할일 보기',
    'Show tasks based on the start date' => '시작 날짜로 할일 보기',
    'Subtasks time tracking' => '서브 할일 시간 트래킹',
    'User calendar view' => '담당자 달력 보기',
    'Automatically update the start date' => '시작일에 자동 갱신',
    'iCal feed' => 'iCal 피드',
    'Preferences' => '우선권',
    'Security' => '보안',
    'Two factor authentication disabled' => '이중 인증이 비활성화 되었습니다',
    'Two factor authentication enabled' => '이중 인증이 활성화 되었습니다',
    'Unable to update this user.' => '담당자 갱신이 가능합니다',
    'There is no user management for private projects.' => '비밀 프로젝트의 관리 담당자가 없습니다',
    'User that will receive the email' => '그 담당자가 이메일을 수신할 것입니다',
    'Email subject' => '이메일 제목',
    'Date' => '날짜',
    'Add a comment log when moving the task between columns' => '컬럼 중간의 할일이 이동할 때 의견 달기',
    'Move the task to another column when the category is changed' => '카테고리 변경시 할일을 다른 컬럼으로 이동',
    'Send a task by email to someone' => '할일을 이메일로 보내기',
    'Reopen a task' => '할일 다시 시작',
    'Notification' => '알림',
    '%s moved the task #%d to the first swimlane' => '%s가 할일 #%d를 첫번째 스웜레인으로 이동시켰습니다',
    'Swimlane' => '스윔레인',
    'Gravatar' => 'Gravatar',
    '%s moved the task %s to the first swimlane' => '%s가 할일 %s를 첫번째 스웜레인으로 이동시켰습니다',
    '%s moved the task %s to the swimlane "%s"' => '%s가 할일 %s를 %s 스웜레인으로 이동시켰습니다',
    'This report contains all subtasks information for the given date range.' => '해당 기간의 모든 서브 할일 정보가 보고서에 포함됩니다',
    'This report contains all tasks information for the given date range.' => '해당 기간의 모든 할일 정보가 보고서에 포함됩니다',
    'Project activities for %s' => '%s의 프로젝트 활성화',
    'view the board on Kanboard' => 'kanboard로 보드 보기',
    'The task have been moved to the first swimlane' => '할일이 첫번째 스웜라인으로 이동되어 있습니다',
    'The task have been moved to another swimlane:' => '할일이 다른 스웜라인으로 이동되어 있습니다',
    'New title: %s' => '제목 변경: %s',
    'The task is not assigned anymore' => '담당자 없음',
    'New assignee: %s' => '담당자 변경: %s',
    'There is no category now' => '카테고리 없음',
    'New category: %s' => '카테고리 변경: %s',
    'New color: %s' => '색깔 변경: %s',
    'New complexity: %d' => '복잡도 변경: %d',
    'The due date have been removed' => '마감날짜 삭제',
    'There is no description anymore' => '설명 없음',
    'Recurrence settings have been modified' => '반복할일 설정 수정',
    'Time spent changed: %sh' => '경과시간 변경: %s시간',
    'Time estimated changed: %sh' => '%s시간으로 예상시간 변경',
    'The field "%s" have been updated' => '%s 필드가 갱신되어 있습니다',
    'The description has been modified:' => '설명이 수정되어 있습니다: ',
    'Do you really want to close the task "%s" as well as all subtasks?' => '할일 "%s"과 서브 할일을 모두 마치시겠습니까?',
    'I want to receive notifications for:' => '다음의 알림을 받기를 원합니다:',
    'All tasks' => '모든 할일',
    'Only for tasks assigned to me' => '내가 담당자인 일',
    'Only for tasks created by me' => '내가 만든 일',
    'Only for tasks created by me and assigned to me' => '내가 만들었거나 내가 담당자인 일',
    '%%Y-%%m-%%d' => '%%Y-%%m-%%d',
    'Total for all columns' => '모든 컬럼',
    'You need at least 2 days of data to show the chart.' => '차트를 보기 위하여 최소 2일의 데이터가 필요합니다',
    '<15m' => '<15분',
    '<30m' => '<30분',
    'Stop timer' => '타이머 정지',
    'Start timer' => '타이머 시작',
    'My activity stream' => '내 활동기록',
    'My calendar' => '내 캘린더',
    'Search tasks' => '할일 찾기',
    'Reset filters' => '필터 리셋',
    'My tasks due tomorrow' => '내일까지 내 할일',
    'Tasks due today' => '오늘까지 할일',
    'Tasks due tomorrow' => '내일까지 할일',
    'Tasks due yesterday' => '어제까지 할일',
    'Closed tasks' => '닫힌 할일',
    'Open tasks' => '열린 할일',
    'Not assigned' => '담당자가 없는 일',
    'View advanced search syntax' => '추가 검색 문법보기',
    'Overview' => '개요',
    'Board/Calendar/List view' => '보드/달력/리스트 보기',
    'Switch to the board view' => '보드 보기로 전환',
    'Switch to the calendar view' => '달력 보기로 전환',
    'Switch to the list view' => '리스트 보기로 전환',
    'Go to the search/filter box' => '검색/필터 박스로 이동',
    'There is no activity yet.' => '활동이 없습니다',
    'No tasks found.' => '할일을 찾을 수 없습니다',
    'Keyboard shortcut: "%s"' => '쉬운 키보드: "%s"',
    'List' => '목록',
    'Filter' => '필터',
    'Advanced search' => '검색 문법',
    'Example of query: ' => '문법 예제 ',
    'Search by project: ' => '프로젝트로 찾기 ',
    'Search by column: ' => '컬럼으로 찾기 ',
    'Search by assignee: ' => '담당자로 찾기 ',
    'Search by color: ' => '색깔로 찾기 ',
    'Search by category: ' => '카테고리로 찾기 ',
    'Search by description: ' => '설명으로 찾기 ',
    'Search by due date: ' => '마감날짜로 찾기 ',
    'Average time spent into each column' => '각 칼럼의 평균 소요시간',
    'Average time spent' => '평균 소요시간',
    'This chart show the average time spent into each column for the last %d tasks.' => '마지막 %d 할일의 컬럼 평균 소요시간을 차트에 표시합니다',
    'Average Lead and Cycle time' => '평균 Lead and Cycle 시간',
    'Average lead time: ' => '평균 lead 시간',
    'Average cycle time: ' => '평균 cycle 시간',
    'Cycle Time' => '사이클 시간',
    'Lead Time' => '리드 시간',
    'This chart show the average lead and cycle time for the last %d tasks over the time.' => '마지막 %d 할일의 평균 리드와 사이클 시간을 차트에 표시합니다',
    'Average time into each column' => '각 컬럼의 평균 시간',
    'Lead and cycle time' => '리드와 사이클 시간',
    'Lead time: ' => '리드 시간: ',
    'Cycle time: ' => '사이클 시간: ',
    'Time spent into each column' => '각 컬럼에서 걸린 시간',
    'The lead time is the duration between the task creation and the completion.' => '리드 시간은 할일의 생성부터 완료까지의 기간입니다',
    'The cycle time is the duration between the start date and the completion.' => '사이클 시간은 할일의 시작일부터 완료까지의 기간입니다',
    'If the task is not closed the current time is used instead of the completion date.' => '할일이 종료되지 않았다면, 완료 시간 대신 현재 시간이 사용됩니다',
    'Set automatically the start date' => '자동으로 시작 날짜를 설정합니다',
    'Edit Authentication' => '계정 수정',
    'Remote user' => '원격 담당자',
    'Remote users do not store their password in Kanboard database, examples: LDAP, Google and Github accounts.' => '예를 들어 LDAP, Google, Github 계정같은 원격 담당자의 비밀번호는 칸반보드 데이터베이스에 저장하지 않습니다',
    'If you check the box "Disallow login form", credentials entered in the login form will be ignored.' => '만약 "로그인 폼 거절"에 체크한다면, 로그인 폼에 접근할 자격이 무시됩니다',
    'Default task color' => '기본 할일 색',
    'This feature does not work with all browsers.' => '이 기능은 일부 브라우저에서 작동하지 않습니다',
    'There is no destination project available.' => '가능한 목적 프로젝트가 없습니다',
    'Trigger automatically subtask time tracking' => '자동 서브 할일 시간 트래킹 트리거',
    'Include closed tasks in the cumulative flow diagram' => '누적 플로우 다이어그램에 종료된 할일을 포함합니다',
    'Current swimlane: %s' => '현재 스웜라인: %s',
    'Current column: %s' => '현재 컬럼: %s',
    'Current category: %s' => '현재 카테고리: %s',
    'no category' => '카테고리 아님',
    'Current assignee: %s' => '현재 할당자: %s',
    'not assigned' => '할당되지 않음',
    'Author:' => '글쓴이:',
    'contributors' => '기여자',
    'License:' => '라이센스:',
    'License' => '라이센스',
    'Enter the text below' => '아랫글로 들어가기',
    'Sort by position' => '위치별 정렬',
    'Sort by date' => '날짜별 정렬',
    'Add task' => '할일 추가',
    'Start date:' => '시작일:',
    'Due date:' => '만기일:',
    'There is no start date or due date for this task.' => '할일의 시작일 또는 만기일이 없습니다',
    'Moving or resizing a task will change the start and due date of the task.' => '할일의 이동 혹은 리사이징으로 시작시간과 마감시간이 변경됩니다.',
    'There is no task in your project.' => '프로젝트에 할일이 없습니다.',
    'Gantt chart' => '간트 차트',
    'People who are project managers' => '프로젝트 매니저',
    'People who are project members' => '프로젝트 멤버',
    'NOK - Norwegian Krone' => 'NOK - 노르웨이 크로네',
    'Show this column' => '컬럼 보이기',
    'Hide this column' => '컬럼 숨기기',
    'open file' => '열기',
    'End date' => '종료 날짜',
    'Users overview' => '유저 전체보기',
    'Members' => '멤버',
    'Shared project' => '프로젝트 공유',
    'Project managers' => '프로젝트 매니저',
    'Gantt chart for all projects' => '모든 프로젝트의 간트 차트',
    'Projects list' => '프로젝트 리스트',
    'Gantt chart for this project' => '이 프로젝트 간트차트',
    'Project board' => '프로젝트 보드',
    'End date:' => '날짜 수정',
    'There is no start date or end date for this project.' => '이 프로젝트에는 시작날짜와 종료날짜가 없습니다',
    'Projects Gantt chart' => '프로젝트 간트차트',
    'Change task color when using a specific task link' => '특정 할일 링크를 사용할때 할일의 색깔 변경',
    'Task link creation or modification' => '할일 링크 생성 혹은 수정',
    'Milestone' => '마일스톤',
    'Documentation: %s' => '문서: %s',
    'Switch to the Gantt chart view' => '간트 차트 보기로 변경',
    'Reset the search/filter box' => '찾기/필터 박스 초기화',
    'Documentation' => '문서',
    'Table of contents' => '목차',
    'Gantt' => '간트',
    'Author' => '글쓴이',
    'Version' => '버전',
    'Plugins' => '플러그인',
    'There is no plugin loaded.' => '플러그인이 로드되지 않았습니다',
    'My notifications' => '내 알림',
    'Custom filters' => '사용자 정의 필터',
    'Your custom filter have been created successfully.' => '사용자 정의 필터가 성공적으로 생성되었습니다',
    'Unable to create your custom filter.' => '사용자 정의 필터 생성 비활성화',
    'Custom filter removed successfully.' => '사용자 정의 필터가 성공적으로 삭제되었습니다',
    'Unable to remove this custom filter.' => '정의 필터 삭제 비활성화',
    'Edit custom filter' => '정의 필터 수정',
    'Your custom filter have been updated successfully.' => '사용자 정의 필터가 성공적으로 수정되었습니다',
    'Unable to update custom filter.' => '정의 필터 수정 비활성화',
    'Web' => '웹',
    'New attachment on task #%d: %s' => '할일 #%d의 새로운 첨부파일: %s',
    'New comment on task #%d' => '할일 #%d에 새로운 댓글이 달렸습니다',
    'Comment updated on task #%d' => '할일 #%d에 댓글이 갱신 되었습니다',
    'New subtask on task #%d' => '서브 할일 #%d이 갱신 되었습니다',
    'Subtask updated on task #%d' => '서브 할일 #%d가 갱신 되었습니다',
    'New task #%d: %s' => '할일 #%d: %s이 추가되었습니다',
    'Task updated #%d' => '할일 #%d이 갱신 되었습니다',
    'Task #%d closed' => '할일 #%d를 마쳤습니다',
    'Task #%d opened' => '할일 #%d가 시작되었습니다',
    'Column changed for task #%d' => '할일 #%d의 컬럼이 변경되었습니다',
    'New position for task #%d' => '할일 #%d이 새로운 위치에 등록되었습니다',
    'Swimlane changed for task #%d' => '#%d 할일의 스웜라인이 변경됩니다',
    'Assignee changed on task #%d' => '#%d 할일의 담당자가 변경됩니다',
    '%d overdue tasks' => '할일의 기한이 %d일 지났습니다',
    'Task #%d is overdue' => '#%d 할일의 기한이 지났습니다',
    'No new notifications.' => '알림이 없습니다',
    'Mark all as read' => '모두 읽음',
    'Mark as read' => '읽음',
    'Total number of tasks in this column across all swimlanes' => '모든 스웜라인 칼럼의 할일 수',
    'Collapse swimlane' => '스웜라인 붕괴',
    'Expand swimlane' => '스웜라인 확장',
    'Add a new filter' => '새로운 필터 추가',
    'Share with all project members' => '모든 프로젝트 맴버 공유',
    'Shared' => '공유',
    'Owner' => '소유자',
    'Unread notifications' => '읽지않은 알림',
    'Notification methods:' => '알림 방법',
    'Unable to read your file' => '파일을 읽을 수 없습니다',
    '%d task(s) have been imported successfully.' => '%d 할일이 성공적으로 추가되었습니다',
    'Nothing have been imported!' => '추가가 되지 않았습니다!',
    'Import users from CSV file' => 'CSV 파일에서 사용자 가져오기',
    '%d user(s) have been imported successfully.' => '%d 사용자가 성공적으로 추가되었습니다',
    'Comma' => '콤마',
    'Semi-colon' => '세미콜론',
    'Tab' => '탭',
    'Vertical bar' => '세로줄',
    'Double Quote' => '이중 따옴표',
    'Single Quote' => '따옴표',
    '%s attached a file to the task #%d' => '%s가 할일 #%d에 파일을 추가하였습니다',
    'There is no column or swimlane activated in your project!' => '프로젝트에 활성화된 컬럼이나 스웜라인이 없습니다',
    'Append filter (instead of replacement)' => '필터 (변경 대신)추가',
    'Append/Replace' => '추가/변경',
    'Append' => '추가',
    'Replace' => '변경',
    'Import' => '가져오기',
    'change sorting' => '정렬 변경',
    'Tasks Importation' => '할일 가져오기',
    'Delimiter' => '구분자',
    'Enclosure' => '동봉',
    'CSV File' => 'CSV 파일',
    'Instructions' => '명령',
    'Your file must use the predefined CSV format' => '파일은 미리 정의된 CVS 형식이어야 합니다',
    'Your file must be encoded in UTF-8' => '파일은 UTF-8로 인코딩되어야 합니다',
    'The first row must be the header' => '첫 줄은 헤더이어야 합니다',
    'Duplicates are not verified for you' => '사본이 허락되지 않습니다',
    'The due date must use the ISO format: YYYY-MM-DD' => '만기일은 ISO 형식이어야 합니다: YYYY-MM-DD',
    'Download CSV template' => 'CVS 탬플릿 내려받기',
    'No external integration registered.' => '설정이 되어있지 않습니다',
    'Duplicates are not imported' => '사본을 가져올 수 없습니다',
    'Usernames must be lowercase and unique' => '사용자 이름은 소문자이며 유일해야 합니다',
    'Passwords will be encrypted if present' => '비밀번호는 암호화됩니다',
    '%s attached a new file to the task %s' => '%s이 새로운 파일을 할일 %s에 추가했습니다',
    'Link type' => '링크 형식',
    'Assign automatically a category based on a link' => '링크 기반 자동 카테고리 할당',
    'BAM - Konvertible Mark' => 'BAM - 보스니아 마르카',
    'Assignee Username' => '담당자의 사용자이름',
    'Assignee Name' => '당장자 이름',
    'Groups' => '그룹',
    'Members of %s' => '%s의 맴버',
    'New group' => '새로운 그룹',
    'Group created successfully.' => '그룹이 성공적으로 생성되었습니다',
    'Unable to create your group.' => '그룹 생성 비활성화',
    'Edit group' => '그룹 편집',
    'Group updated successfully.' => '그룹이 성공적으로 수정되었습니다',
    'Unable to update your group.' => '그룹 수정 비활성화',
    'Add group member to "%s"' => '%s 그룹 맴버 추가',
    'Group member added successfully.' => '그룹 맴버가 성공적으로 추가되었습니다',
    'Unable to add group member.' => '그룹 맴버 추가 비활성화',
    'Remove user from group "%s"' => '%s 그룹 사용자 삭제',
    'User removed successfully from this group.' => '그룹 사용자가 성공적으로 삭제되었습니다',
    'Unable to remove this user from the group.' => '그룹 사용자 삭제 비활성화',
    'Remove group' => '그룹 삭제',
    'Group removed successfully.' => '그룹이 성공적으로 삭제되었습니다',
    'Unable to remove this group.' => '그룹 삭제 비활성화',
    'Project Permissions' => '프로젝트 권한',
    'Manager' => '매니저',
    'Project Manager' => '프로젝트 매니저',
    'Project Member' => '프로젝트 멤버',
    'Project Viewer' => '프로젝트 뷰어',
    'Your account is locked for %d minutes' => '%d분 동안 계정이 잠깁니다',
    'Invalid captcha' => '잘못된 보안 문자',
    'The name must be unique' => '이름은 유일해야 합니다',
    'View all groups' => '모든그룹보기',
    'There is no user available.' => '가능한 사용자가 없습니다',
    'Do you really want to remove the user "%s" from the group "%s"?' => '"%s" 사용자를 "%s" 에서 삭제하시겠습니까?',
    'There is no group.' => '그룹이 없습니다',
    'External Id' => '외부 아이디',
    'Add group member' => '멤버추가',
    'Do you really want to remove this group: "%s"?' => '그룹을 삭제하시겠습니까: "%s"?',
    'There is no user in this group.' => '이 그룹에는 사용자가 없습니다',
    'Remove this user' => '사용자 삭제',
    'Permissions' => '권한',
    'Allowed Users' => '사용자 승인',
    'No user have been allowed specifically.' => '구체적으로 승인된 사용자가 없습니다',
    'Role' => '역할',
    'Enter user name...' => '사용자 이름을 입력합니다...',
    'Allowed Groups' => '승인된 그룹',
    'No group have been allowed specifically.' => '구체적으로 승인된 그룹이 없습니다',
    'Group' => '그룹',
    'Group Name' => '그룹명',
    'Enter group name...' => '그룹명을 입력합니다...',
    'Role:' => '역할: ',
    'Project members' => '프로젝트 멤버',
    '%s mentioned you in the task #%d' => '#%d 할일에서 %s가 당신을 언급하였습니다',
    '%s mentioned you in a comment on the task #%d' => '#%d 할일에서 %s가 당신의 댓글을 언급하였습니다',
    'You were mentioned in the task #%d' => '#%d 할일에서 당신이 언급되었습니다',
    'You were mentioned in a comment on the task #%d' => '할일 #%d의 댓글에서 언급되었습니다',
    'Estimated hours: ' => '예상 시간: ',
    'Actual hours: ' => '실제 시간: ',
    'Hours Spent' => '소요 시간',
    'Hours Estimated' => '예상 시간',
    'Estimated Time' => '예상 시간',
    'Actual Time' => '실제 시간',
    'Estimated vs actual time' => '예상 vs 실제 시간',
    'RUB - Russian Ruble' => 'RUB - 러시아 루블',
    'Assign the task to the person who does the action when the column is changed' => '컬럼이 변경되면 액션하지 않는 사람에게 할일을 할당합니다',
    'Close a task in a specific column' => '상세 컬럼의 할일을 종료합니다',
    'Time-based One-time Password Algorithm' => '시간에 기반한 1회용 패스워드 알고리즘',
    'Two-Factor Provider: ' => '이중 인증: ',
    'Disable two-factor authentication' => '이중 인증 비활성화',
    'Enable two-factor authentication' => '이중 인증 활성화',
    'There is no integration registered at the moment.' => '현재 등록된 통합이 없습니다.',
    'Password Reset for Kanboard' => 'Kanboard의 비밀번호 초기화',
    'Forgot password?' => '비밀번호 찾기',
    'Enable "Forget Password"' => '"비밀번호 분실" 활성화',
    'Password Reset' => '비밀번호 초기화',
    'New password' => '새로운 비밀번호',
    'Change Password' => '비밀번호 변경',
    'To reset your password click on this link:' => '비밀번호를 초기화 하시려면 링크를 눌러주세요:',
    'Last Password Reset' => '마지막 비밀번호 초기화',
    'The password has never been reinitialized.' => '비밀번호가 초기화되지 않았습니다',
    'Creation' => '생성',
    'Expiration' => '만료',
    'Password reset history' => '비밀번호 초기화 기록',
    'All tasks of the column "%s" and the swimlane "%s" have been closed successfully.' => '컬럼 "%s"와 스웜라인 "%s"의 모든 할일이 성공적으로 종료되었습니다',
    'Do you really want to close all tasks of this column?' => '이 컬럼의 모든 할일을 종료 하시겠습니까?',
    '%d task(s) in the column "%s" and the swimlane "%s" will be closed.' => '컬럼 "%s"와 스웜라인 "%s"의 할일 %d가 종료될 것입니다',
    'Close all tasks of this column' => '컬럼의 모든 할일 마치기',
    'No plugin has registered a project notification method. You can still configure individual notifications in your user profile.' => '프로젝트 알림 방법으로 플러그인이 등록되지 않았습니다. 각각의 알림을 프로파일에서 설정하실 수 있습니다',
    'My dashboard' => '대시보드',
    'My profile' => '프로필',
    'Project owner: ' => '프로젝트 소유자:',
    'The project identifier is optional and must be alphanumeric, example: MYPROJECT.' => '프로젝트 구분자는 선택사항이며, 숫자와 문자만 가능합니다. 예: MYPROJECT.',
    'Project owner' => '프로젝트 소유자',
    'Private projects do not have users and groups management.' => '비밀 프로젝트는 사용자나 관리 그룹이 소유하지 않습니다',
    'There is no project member.' => '프로젝트 맴버가 없습니다',
    'Priority' => '우선순위',
    'Task priority' => '할일의 우선순위',
    'General' => '일반적인',
    'Dates' => '날짜',
    'Default priority' => '기본 우선순위',
    'Lowest priority' => '낮은 우선순위',
    'Highest priority' => '높은 우선순위',
    'If you put zero to the low and high priority, this feature will be disabled.' => '만약 낮은/높은 우선순위에 0을 입력하면 이 특성은 비활성화됩니다',
    'Close a task when there is no activity' => '활동이 없는 할일을 종료합니다',
    'Duration in days' => '기간',
    'Send email when there is no activity on a task' => '활동이 없는 할일을 이메일로 보냅니다',
    'Unable to fetch link information.' => '링크 정보 가져오기 비활성화',
    'Daily background job for tasks' => '할일의 일일 배경 작업 ',
    'Auto' => '자동',
    'Related' => '연관된',
    'Attachment' => '첨부',
    'Title not found' => '제목이 없습니다',
    'Web Link' => '웹 링크',
    'External links' => '외부 링크',
    'Add external link' => '외부 링크 추가',
    'Type' => '타입',
    'Dependency' => '의존',
    'Add internal link' => '내부 링크 추가',
    'Add a new external link' => '새로운 외부 링크 추가',
    'Edit external link' => '외부 링크 수정',
    'External link' => '외부 링크',
    'Copy and paste your link here...' => '여기에 링크를 복사/붙여넣기',
    'URL' => '인터넷 주소',
    'Internal links' => '내부 링크',
    'Assign to me' => '나에게 할당',
    'Me' => '나',
    'Do not duplicate anything' => '복사할까요?',
    'Projects management' => '프로젝트 관리',
    'Users management' => '사용자 관리',
    'Groups management' => '그룹 관리',
    'Create from another project' => '다른 프로젝트 생성',
    'open' => '시작',
    'closed' => '종료',
    'Priority:' => '우선순위:',
    'Reference:' => '참고:',
    'Complexity:' => '복합:',
    'Swimlane:' => '스웜라인:',
    'Column:' => '컬럼:',
    'Position:' => '위치:',
    'Creator:' => '생성자:',
    'Time estimated:' => '예상 시간:',
    '%s hours' => '%s 시간',
    'Time spent:' => '소요 시간:',
    'Created:' => '생성:',
    'Modified:' => '수정;',
    'Completed:' => '완료:',
    'Started:' => '시작:',
    'Moved:' => '이동:',
    'Task #%d' => '할일 #%d',
    'Time format' => '시간 형식',
    'Start date: ' => '시작일: ',
    'End date: ' => '종료일: ',
    'New due date: ' => '새로운 만기일: ',
    'Start date changed: ' => '변경된 시작일: ',
    'Disable private projects' => '비밀 프로젝트 비활성화',
    'Do you really want to remove this custom filter: "%s"?' => '정의 필터를 삭제하시겠습니까: "%s"?',
    'Remove a custom filter' => '정의 필터 삭제',
    'User activated successfully.' => '사용자가 성공적으로 활성화되었습니다',
    'Unable to enable this user.' => '이 사용자를 활성화할 수 없습니다.',
    'User disabled successfully.' => '사용자가 성공적으로 비활성화되었습니다',
    'Unable to disable this user.' => '이 사용자를 비활성화할 수 없습니다.',
    'All files have been uploaded successfully.' => '모든 파일이 성공적으로 업로드되었습니다',
    'The maximum allowed file size is %sB.' => '업로드 파일의 최대 크기는 %sB 입니다',
    'Drag and drop your files here' => '파일을 이곳으로 끌고오기',
    'choose files' => '파일 선택',
    'View profile' => '프로파일 보기',
    'Two Factor' => '이중',
    'Disable user' => '사용자 비활성화',
    'Do you really want to disable this user: "%s"?' => '사용자를 비활성화 시키겠습니까: "%s"?',
    'Enable user' => '사용자 활성화',
    'Do you really want to enable this user: "%s"?' => '사용자를 활성화 시키겠습니까: "%s"?',
    'Download' => '내려받기',
    'Uploaded: %s' => '올리기: %s',
    'Size: %s' => '크기: %s',
    'Uploaded by %s' => '%s로 올리기',
    'Filename' => '파일 이름',
    'Size' => '크기',
    'Column created successfully.' => '컬럼이 성공적으로 생성되었습니다',
    'Another column with the same name exists in the project' => '프로젝트에 동일한 이름의 컬럼이 있습니다',
    'Default filters' => '기본 필터',
    'Your board doesn\'t have any columns!' => '보드에 컬럼이 존재하지 않습니다',
    'Change column position' => '컬럼 위치 변경',
    'Switch to the project overview' => '프로젝트 개요로 변경',
    'User filters' => '사용자 필터',
    'Category filters' => '카테고리 필터',
    'Upload a file' => '파일 업로드',
    'View file' => '파일 보기',
    'Last activity' => '마지막 행동',
    'Change subtask position' => '서브 할일 위치 변경',
    'This value must be greater than %d' => '이 값은 %d보다 커야 합니다',
    'Another swimlane with the same name exists in the project' => '프로젝트에 같은 이름의 스웜라인이 존재합니다',
    'Example: http://example.kanboard.net/ (used to generate absolute URLs)' => '예: http://example.kanboard.net/ (절대적 URLs을 생성하는데 사용됨)',
    'Actions duplicated successfully.' => '행동이 성공적으로 복제되었습니다',
    'Unable to duplicate actions.' => '행동 복제 비활성화',
    'Add a new action' => '새로운 행동 추가',
    'Import from another project' => '다른 프로젝트에서 가져오기',
    'There is no action at the moment.' => '현재 행동이 없습니다',
    'Import actions from another project' => '다른 프로젝트에서 행동 가져오기',
    'There is no available project.' => '사용 가능한 프로젝트가 없습니다',
    'Local File' => '로컬 파일',
    'Configuration' => '구성',
    'PHP version:' => 'PHP 버전:',
    'PHP SAPI:' => 'PHP SAPI:',
    'OS version:' => '운영체제 버전:',
    'Database version:' => '데이터베이스 버전:',
    'Browser:' => '브라우저:',
    'Task view' => '할일 보기',
    'Edit task' => '할일 수정',
    'Edit description' => '설명 수정',
    'New internal link' => '새로운 내부 링크',
    'Display list of keyboard shortcuts' => '키보드 숏컷 리스트 보여주기',
    'Menu' => '메뉴',
    'Set start date' => '시작일 설정',
    'Avatar' => '아바타',
    'Upload my avatar image' => '아바타 이미지 올리기',
    'Remove my image' => '이미지 삭제',
    'The OAuth2 state parameter is invalid' => 'OAuth2 상태값이 올바르지 않습니다',
    'User not found.' => '사용자를 찾을 수 없습니다',
    'Search in activity stream' => '활성 스트림 찾기',
    'My activities' => '나의 활동',
    'Activity until yesterday' => '어제까지의 활동',
    'Activity until today' => '오늘까지의 활동',
    'Search by creator: ' => '생성자로 검색: ',
    'Search by creation date: ' => '생성 날짜로 검색: ',
    'Search by task status: ' => '할일 상태로 검색: ',
    'Search by task title: ' => '할일 제목으로 검색: ',
    'Activity stream search' => '활동 스트림 검색',
    'Projects where "%s" is manager' => '"%s" 관리자의 프로젝트',
    'Projects where "%s" is member' => '"%s" 맴버의 프로젝트',
    'Open tasks assigned to "%s"' => '"%s"에게 할당된 할일 시작하기',
    'Closed tasks assigned to "%s"' => '"%s"에게 할당된 할일 종료하기',
    'Assign automatically a color based on a priority' => '우선순위로 색깔 자동 지정',
    'Overdue tasks for the project(s) "%s"' => '"%s" 프로젝트의 기한이 지난 할일',
    'Upload files' => '파일 올리기',
    'Installed Plugins' => '설치된 플러그인',
    'Plugin Directory' => '플러그인 폴더',
    'Plugin installed successfully.' => '플러그인이 성공적으로 설치 되었습니다.',
    'Plugin updated successfully.' => '플러그인이 성공적으로 갱신 되었습니다.',
    'Plugin removed successfully.' => '플러그인이 성공적으로 삭제 되었습니다.',
    'Subtask converted to task successfully.' => '서브 할일이 할일로 성공적으로 변경 되었습니다.',
    'Unable to convert the subtask.' => '서브 할일로 변경할 수 없습니다.',
    'Unable to extract plugin archive.' => '플러그인 아카이브를 추출할 수 없습니다.',
    'Plugin not found.' => '플러그인을 찾을 수 없습니다.',
    'You don\'t have the permission to remove this plugin.' => '이 플러그인의 삭제 권한이 없습니다.',
    'Unable to download plugin archive.' => '플러그인 아카이브를 다운로드할 수 없습니다.',
    'Unable to write temporary file for plugin.' => '플러그인의 임시 파일을 기록할 수 없습니다.',
    'Unable to open plugin archive.' => '플러그인 아카이브를 열수 없습니다.',
    'There is no file in the plugin archive.' => '플러그인 아카이브에 파일이 존재하지 않습니다.',
    'Create tasks in bulk' => '대량의 할일 만들기',
    'Your Kanboard instance is not configured to install plugins from the user interface.' => '칸보드 인스턴스가 사용자 인터페이스에서 플러그인을 설치하도록 구성되지 않았습니다',
    'There is no plugin available.' => '사용 가능한 플러그인이 없습니다.',
    'Install' => '설치',
    'Update' => '갱신',
    'Up to date' => '날짜 갱신',
    'Not available' => '사용 불가능',
    'Remove plugin' => '플러그인 삭제',
    'Do you really want to remove this plugin: "%s"?' => '정말로 플러그인을 삭제하시겠습니까: "%s"?',
    'Uninstall' => '삭제',
    'Listing' => '목록',
    'Metadata' => '메타데이터',
    'Manage projects' => '프로젝트 관리',
    'Convert to task' => '할일로 변경하기',
    'Convert sub-task to task' => '서브 할일을 할일로 변경하기',
    'Do you really want to convert this sub-task to a task?' => '정말로 서브 할일을 할일로 변경하시겠습니까?',
    'My task title' => '나의 할일 제목',
    'Enter one task by line.' => '정확히 하나의 할일로 진입',
    'Number of failed login:' => '로그인 실패 횟수:',
    'Account locked until:' => '다음동안 계정이 잠겼습니다:',
    'Email settings' => '이메일 설정',
    'Email sender address' => '이메일 보낸이 주소',
    'Email transport' => '이메일 전송',
    'Webhook token' => 'Webhook토큰',
    'Project tags management' => '프로젝트 태그 관리',
    'Tag created successfully.' => '태그가 성공적으로 생성되었습니다.',
    'Unable to create this tag.' => '태그를 생성할 수 없습니다.',
    'Tag updated successfully.' => '태그가 성공적으로 수정되었습니다.',
    'Unable to update this tag.' => '태그를 수정할 수 없습니다.',
    'Tag removed successfully.' => '태그가 성공적으로 삭제되었습니다.',
    'Unable to remove this tag.' => '태그를 삭제할 수 없습니다.',
    'Global tags management' => '전역 태그 관리',
    'Tags' => '태그',
    'Tags management' => '태그 관리',
    'Add new tag' => '태그 추가',
    'Edit a tag' => '태그 수정',
    'Project tags' => '프로젝트 태그',
    'There is no specific tag for this project at the moment.' => '현재 이 프로젝트에는 태그가 없습니다.',
    'Tag' => '태그',
    'Remove a tag' => '태그 삭제',
    'Do you really want to remove this tag: "%s"?' => '태그를 삭제하시겠습니까: "%s"?',
    'Global tags' => '전역 태그',
    'There is no global tag at the moment.' => '현재 전역 태그가 없습니다.',
    'This field cannot be empty' => '이 필드는 비워둘 수 없습니다',
    'Close a task when there is no activity in an specific column' => '활동이 없는 컬럼의 할일 마치기',
    '%s removed a subtask for the task #%d' => '%s가 할일 #%d의 서브 할일을 삭제하였습니다',
    '%s removed a comment on the task #%d' => '%s가 할일 #%d의 댓글을 삭제하였습니다',
    'Comment removed on task #%d' => '할일 #%d의 댓글이 삭제되었습니다',
    'Subtask removed on task #%d' => '할일 #%d의 서브 할일이 삭제되었습니다',
    'Hide tasks in this column in the dashboard' => '대시보드 컬럼의 할일 숨기기',
    '%s removed a comment on the task %s' => '%s가 할일 %s의 댓글을 삭제하였습니다',
    '%s removed a subtask for the task %s' => '%s가 할일 %s의 서브 할일을 삭제하였습니다',
    'Comment removed' => '댓글이 삭제되었습니다',
    'Subtask removed' => '서브 할일이 삭제되었습니다',
    '%s set a new internal link for the task #%d' => '%s가 할일 #%d의 새로운 내부 링크를 설정하였습니다',
    '%s removed an internal link for the task #%d' => '%s가 할일 #%d의 새로운 내부 링크를 삭제하였습니다',
    'A new internal link for the task #%d have been defined' => '할일 #%d의 새로운 내부 링크가 정의되었습니다',
    'Internal link removed for the task #%d' => '할일 #%d의 새로운 내부 링크가 삭제되었습니다',
    '%s set a new internal link for the task %s' => '%s가 할일 %s의 새로운 내부 링크를 설정하였습니다',
    '%s removed an internal link for the task %s' => '%s가 할일 %s의 새로운 내부 링크를 삭제하였습니다',
    'Automatically set the due date on task creation' => '할일 생성시 마감일이 자동으로 설정되었습니다',
    'Move the task to another column when closed' => '할일을 마치면 다른 컬럼으로 이동시키기',
    'Move the task to another column when not moved during a given period' => '주어진 기간동안 이동하지 않으면 할일을 다른 컬럼으로 이동시키기',
    'Dashboard for %s' => '%s의 대시보드',
    'Tasks overview for %s' => '%s의 할일 개요',
    'Subtasks overview for %s' => '%s의 서브 할일 개요',
    'Projects overview for %s' => '%s의 프로젝트 개요',
    'Activity stream for %s' => '%s의 활동기록',
    'Calendar for %s' => '%s의 달력',
    'Notifications for %s' => '%s의 알림',
    'Assign a color when the task is moved to a specific swimlane' => '할일이 특정 스웜라인으로 옮겨질 때 색상 지정',
    'Assign a priority when the task is moved to a specific swimlane' => '할일이 특정 스웜라인으로 옮겨질 때 우선순위 지정',
    'User unlocked successfully.' => '사용자 잠금 성공',
    'Unable to unlock the user.' => '사용자 해제 성공',
    'Move a task to another swimlane' => '다른 스웜라인으로 할일 이동',
    'Creator Name' => '생성자 이름',
    'Time spent and estimated' => '소요시간과 예상시간',
    'Move position' => '이동 위치',
    'Move task to another position on the board' => '할일을 보드의 다른 위치로 이동',
    'Insert before this task' => '이 할일 이전에 삽입',
    'Insert after this task' => '이 할일 이후에 삽입',
    'Unlock this user' => '사용자 잠금',
    'Custom Project Roles' => '정의 프로젝트 규칙',
    'Add a new custom role' => '새로운 정의 규칙 추가',
    'Restrictions for the role "%s"' => '"%s" 역할의 제약',
    'Add a new project restriction' => '새로운 프로젝트 제약 추가',
    'Add a new drag and drop restriction' => '새로운 드래그 앤 드롭 제약 추가',
    'Add a new column restriction' => '새로운 칼럼 제약 추가',
    'Edit this role' => '역할 수정',
    'Remove this role' => '역할 삭제',
    'There is no restriction for this role.' => '역할에 대한 제약이 없습니다.',
    'Only moving task between those columns is permitted' => '칼럼간 이동만 허용됩니다.',
    'Close a task in a specific column when not moved during a given period' => '특정 기간동안 이동하지 않은 특정 칼럼의 할일 마치기',
    'Edit columns' => '칼럼 수정',
    'The column restriction has been created successfully.' => '칼럼 제약이 생성되었습니다.',
    'Unable to create this column restriction.' => '칼럼 제약을 생성할 수 없습니다.',
    'Column restriction removed successfully.' => '칼럼 제약이 삭제되었습니다.',
    'Unable to remove this restriction.' => '칼럼 제약을 삭제할 수 없습니다.',
    'Your custom project role has been created successfully.' => '정의 프로젝트 역할이 생성되었습니다.',
    'Unable to create custom project role.' => '정의 프로젝트 역할을 생성할 수 없습니다.',
    'Your custom project role has been updated successfully.' => '정의 프로젝트 역할이 수정되었습니다.',
    'Unable to update custom project role.' => '정의 프로젝트 역할을 수정할 수 없습니다.',
    'Custom project role removed successfully.' => '정의 프로젝트 역할이 삭제되었습니다.',
    'Unable to remove this project role.' => '정의 프로젝트 역할을 삭제할 수 없습니다.',
    'The project restriction has been created successfully.' => '프로젝트 제약이 생성되었습니다.',
    'Unable to create this project restriction.' => '프로젝트 제약을 생성할 수 없습니다.',
    'Project restriction removed successfully.' => '프로젝트 제약을 삭제하였습니다.',
    'You cannot create tasks in this column.' => '이 칼럼의 할일을 생성할 수 없습니다.',
    'Task creation is permitted for this column' => '이 칼럼의 할일 생성이 허가되었습니다.',
    'Closing or opening a task is permitted for this column' => '이 칼럼의 할일 열기 혹은 닫기가 허가되었습니다.',
    'Task creation is blocked for this column' => '이 칼럼의 할일 생성이 거부되었습니다.',
    'Closing or opening a task is blocked for this column' => '이 칼럼의 할일 열기 혹은 닫기가 거부되었습니다.',
    'Task creation is not permitted' => '할일 생성이 거부되었습니다.',
    'Closing or opening a task is not permitted' => '할일 열기 혹은 닫기가 거부되었습니다.',
    'New drag and drop restriction for the role "%s"' => '"%s" 역할의 새로운 드래그 앤 드롭 제약',
    'People belonging to this role will be able to move tasks only between the source and the destination column.' => '이 역할에 속한 사용자는 원본 및 대상 칼럼 사이에서만 할일을 이동할 수 있습니다',
    'Remove a column restriction' => '칼럼 제약 삭제',
    'Do you really want to remove this column restriction: "%s" to "%s"?' => '칼럼 제약을 "%s" 에서 "%s"로 이동하시겠습니까?',
    'New column restriction for the role "%s"' => '"%s" 역할의 새로운 칼럼 제약',
    'Rule' => '역할',
    'Do you really want to remove this column restriction?' => '칼럼 제약을 삭제하시겠습니까?',
    'Custom roles' => '정의 역할',
    'New custom project role' => '새로운 정의 프로젝트 역할',
    'Edit custom project role' => '정의 프로젝트 역할 수정',
    'Remove a custom role' => '정의 역할 삭제',
    'Do you really want to remove this custom role: "%s"? All people assigned to this role will become project member.' => '"%s" 정의 역할을 삭제하시겠습니까? 이 역할에 할당 된 모든 사람들이 프로젝트 멤버가됩니다.',
    'There is no custom role for this project.' => '이 프로젝트에는 정의 역할이 없습니다.',
    'New project restriction for the role "%s"' => '"%s" 역할의 새로운 프로젝트 제약',
    'Restriction' => '제약',
    'Remove a project restriction' => '프로젝트 제약 삭제',
    'Do you really want to remove this project restriction: "%s"?' => '"%s" 프로젝트 제약을 삭제하시겠습니까?',
    'Duplicate to multiple projects' => '다수의 프로젝트 복제',
    'This field is required' => '이 필드는 필수 항목입니다.',
    'Moving a task is not permitted' => '할일 이동이 거부되었습니다.',
    'This value must be in the range %d to %d' => '값의 범위는 %d 부터 %d 까지 입니다.',
    'You are not allowed to move this task.' => '당신은 할일 이동이 거부되었습니다.',
    // 'API User Access' => '',
    // 'Preview' => '',
    // 'Write' => '',
    // 'Write your text in Markdown' => '',
    // 'New External Task: %s' => '',
    // 'No personal API access token registered.' => '',
    // 'Your personal API access token is "%s"' => '',
    // 'Remove your token' => '',
    // 'Generate a new token' => '',
    // 'Showing %d-%d of %d' => '',
    // 'Outgoing Emails' => '',
    // 'Add or change currency rate' => '',
    // 'Reference currency: %s' => '',
    // 'Add custom filters' => '',
    // 'Export' => '',
    // 'Add link label' => '',
    // 'Incompatible Plugins' => '',
    // 'Compatibility' => '',
    // 'Permissions and ownership' => '',
    // 'Priorities' => '',
    // 'Close this window' => '',
    // 'Unable to upload this file.' => '',
    // 'Import tasks' => '',
    // 'Choose a project' => '',
    // 'Profile' => '',
    // 'Application role' => '',
    // '%d invitations were sent.' => '',
    // '%d invitation was sent.' => '',
    // 'Unable to create this user.' => '',
    // 'Kanboard Invitation' => '',
    // 'Visible on dashboard' => '',
    // 'Created at:' => '',
    // 'Updated at:' => '',
    // 'There is no custom filter.' => '',
    // 'New User' => '',
    // 'Authentication' => '',
    // 'If checked, this user will use a third-party system for authentication.' => '',
    // 'The password is necessary only for local users.' => '',
    // 'You have been invited to register on Kanboard.' => '',
    // 'Click here to join your team' => '',
    // 'Invite people' => '',
    // 'Emails' => '',
    // 'Enter one email address by line.' => '',
    // 'Add these people to this project' => '',
    // 'Add this person to this project' => '',
    // 'Sign-up' => '',
    // 'Credentials' => '',
    // 'New user' => '',
    // 'This username is already taken' => '',
    // 'A link to reset your password has been sent by email.' => '',
    // 'Your profile must have a valid email address.' => '',
    // 'Unfortunately, we are unable to reset your password. Did you entered a valid username? Do you have an email address in your profile?' => '',
    // 'TRL - Turkish Lira' => '',
    // 'The project email is optional and could be used by several plugins.' => '',
    // 'The email project must be unique across all projects' => '',
    // 'The email configuration has been disabled by the administrator.' => '',
    // 'Close this project' => '',
    // 'Open this project' => '',
    // 'Close a project' => '',
    // 'Do you really want to close this project: "%s"?' => '',
    // 'Reopen a project' => '',
    // 'Do you really want to reopen this project: "%s"?' => '',
    // 'This project is open' => '',
    // 'This project is closed' => '',
    // 'Unable to upload files, check the permissions of your data folder.' => '',
);