summaryrefslogtreecommitdiff
path: root/app/Locale/ko_KR/translations.php
blob: ad1a62d661c041a43b62587abb1ae3d65d482999 (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
<?php

return array(
    //'number.decimals_separator'=>'',
    //'number.thousands_separator'=>'',
    'None'=>'없음',
    'edit'=>'수정',
    'Edit'=>'수정',
    'remove'=>'삭제',
    'Remove'=>'삭제',
    'Update'=>'수정',
    '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"를 정말로 삭제하시겠습니까?',
    'New user'=>'사용자를 추가하는 ',
    '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'=>'유효',
    'Add this column'=>'칼럼을 추가하는 ',
    '%d tasks on the board'=>'%d개의 할일',
    '%d tasks in total'=>'총 %d개의 할일',
    'Unable to update this board.'=>'보드를 갱신할 수 없었습니다',
    'Edit board'=>'보드를 변경하는 ',
    'Disable'=>'비활성화',
    'Enable'=>'유효하게 한다',
    'New project'=>'새 프로젝트',
    'Do you really want to remove this project:"%s"?'=>'프로젝트"%s"를 정말로 삭제하시겠습니까?',
    'Remove project'=>'프로젝트의 삭제',
    'Edit the board for"%s"'=>'보드"%s"를 변경하는 ',
    'All projects'=>'모든 프로젝트',
    'Change columns'=>'칼럼의 변경',
    'Add a new column'=>'칼럼의 추가',
    'Title'=>'제목',
    'Nobody assigned'=>'담당자 없음',
    'Assigned to %s'=>'담당자 %s',
    'Remove a column'=>'칼럼 삭제',
    'Remove a column from a board'=>'보드에서 칼럼 삭제',
    'Unable to remove this column.'=>'(※)컬럼을 삭제할 수 없었습니다.',
    'Do you really want to remove this column:"%s"('=>'칼럼"%s"을 삭제할까요?',
    'This action will REMOVE ALL TASKS associated to this column!'=>'이 조작은 이 컬럼에 할당된 『 모든 할일을 삭제 』합니다!',
    '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'=>'할일 마치기',
    'Edit 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'=>'보드로 돌아가기',
    'Created on %B %e, %Y at %k:%M %p'=>'%Y-%m-%d %p %H:%M 에 작성',
    'There is nobody assigned'=>'담당자가 없습니다',
    'Column on the board:'=>'칼럼:',
    'Status is open'=>'상태 열림',
    'Status is closed'=>'상태 닫힘',
    '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:'=>'애플리케이션의 버전:',
    'Completed on%B%e,%Y at%k:%M%p'=>'%Y/%m/%d%H:%M에 완료',
    '%B%e,%Y at%k:%M%p'=>'%Y/%m/%d%H:%M',
    'Date created'=>'작성일',
    'Date completed'=>'완료일',
    'Id'=>'ID',
    '%d closed tasks'=>'%d개의 마친 할일',
    'No task for this project'=>'이 프로젝트에 할일이 없습니다',
    'Public link'=>'공개 접속 링크',
    'Change assignee'=>'담당자 변경',
    'Change assignee for the task "%s"'=>'할일 "%s"의 담당자를 변경',
    'Timezone'=>'시간대',
    'Sorry, I didn\'t find this information in my database!'=>'데이터베이스에서 정보가 발견되지 않았습니다!',
    'Page not found'=>'페이지가 발견되지 않는다',
    'Complexity'=>'복잡도',
    'Task limit'=>'할일 수 제한',
    'Task count'=>'할일 수',
    'User'=>'사용자',
    'Comments'=>'댓글',
    'Write your text in Markdown'=>'Markdown 사용',
    'Leave a comment'=>'댓글 남기기',
    'Comment is required'=>'댓글을 입력하세요',
    'Leave a description'=>'설명을 입력하세요',
    'Comment added successfully.'=>'의견을 추가했습니다.',
    'Unable to create your comment.'=>'댓글의 추가에 실패했습니다.',
    'Edit this task'=>'할일 수정',
    'Due Date'=>'마감일',
    'Invalid date'=>'날짜가 무효입니다',
    'Must be done before %B %e, %Y'=>'%Y-%m-%d %p %H:%M 까지 완료',
    '%B%e,%Y'=>'%Y%B%e',
    '%b%e,%Y'=>'%Y%b%e',
    '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"의 자동 액션',
    'Defined actions'=>'정의된 자동 액션',
    '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'=>'액션의 바로미터',
    'Save this action'=>'이 액션을 보존하는 ',
    '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'=>'색을 사용자에 할당',
    'Column title'=>'칼럼의 제목',
    'Position'=>'위치',
    'Move Up'=>'위에 움직이는 ',
    'Move Down'=>'아래로 움직이는 ',
    '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?'=>'댓글을 삭제합니까?',
    'Only administrators or the creator of the comment can access to this page.'=>'관리자나 의견 작성자만이 이 페이지 액세스 할 수 있습니다',
    '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'=>'마감일',
    'Others formats accepted: %s and %s'=>' 다른 서식: %s 또는 %s',
    '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'=>'이메일',
    'Link my Google Account'=>'Google계정을 연결하는 ',
    'Unlink my Google Account'=>'Google계정의 링크를 해제하는 ',
    'Login with my Google Account'=>'Google계정으로 로그인 한다',
    'Project not found.'=>'프로젝트가 발견되지 않습니다.',
    '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'=>'카테고리',
    'Category not found.'=>'카테고리가 발견되지 않습니다',
    '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'=>'할일 수정',
    'Edit the description'=>'설명 수정',
    '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: '=>'최대: ',
    'Unable to upload the file.'=>'파일 업로드에 실패했습니다.',
    'Display another project'=>'프로젝트 보기',
    'Login with my Github Account'=>'Github계정으로 로그인 한다',
    'Link my Github Account'=>'Github계정을 연결하는 ',
    'Unlink my Github Account'=>'Github어카운트와의 링크를 해제하는 ',
    'Created by %s'=>'작성자 %s',
    'Last modified on %B %e, %Y at %k:%M %p'=>'%Y-%m-%d %p %H:%M 에 변경',
    'Tasks Export'=>'할일 내보내기',
    'Tasks exportation for"%s"'=>'"%s"의 할일 출력',
    'Start Date'=>'시작일',
    'End 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"가 추가되었습니다',
    'Comment updated'=>'댓글가 갱신되었습니다',
    'New comment posted by %s'=>'"%s"님이 댓글을 추가하였습니다',
    'New attachment'=>' 새로운 첨부 파일',
    'New comment'=>' 새로운 댓글',
    'New subtask'=>' 새로운 서브 할일',
    'Subtask updated'=>'서브 할일 갱신',
    'Task updated'=>'할일 업데이트',
    'Task closed'=>'할일 마침',
    'Task opened'=>'할일 시작',
    'I want to receive notifications only for those projects:'=>'다음 프로젝트의 알림만 받겠습니다:',
    'view the task on Kanboard'=>'Kanboard에서 할일을 본다',
    'Public access'=>'공개 접속 설정',
    'User management'=>'사용자 관리',
    'Active tasks'=>'활성화된 할일',
    'Disable public access'=>'공개 접속 비활성화',
    'Enable public access'=>'공개 접속 활성화',
    'Public access disabled'=>'공개 접속 불가',
    'Do you really want to disable this project:"%s"('=>'"%s"를 무효로 합니까?',
    'Do you really want to enable this project:"%s"('=>'"%s"를 유효하게 합니까?',
    'Project activation'=>'프로젝트의 액티베ー션',
    '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'=>'비활성화',
    'Username:'=>'사용자명',
    'Name:'=>'이름:',
    'Email:'=>'이메일:',
    'Notifications:'=>'알림:',
    'Notifications'=>'알림',
    'Account type:'=>'계정종류:',
    'Edit profile'=>'프로필 변경',
    'Change password'=>'패스워드 변경',
    'Password modification'=>'패스워드 변경',
    'External authentications'=>'외부 인증',
    'Google Account'=>'Google 계정',
    'Github Account'=>'Github 계정',
    'Never connected.'=>'접속기록없음',
    'No account linked.'=>'계정이 링크하지 않습니다.',
    'Account linked.'=>'계정이 링크했습니다.',
    'No external authentication enabled.'=>'외부 인증이 설정되어 있지 않습니다.',
    'Password modified successfully.'=>'패스워드를 변경했습니다.',
    'Unable to change the password.'=>'비밀 번호가 변경할 수 없었습니다.',
    'Change category for the task "%s"'=>'할일 "%s"의 카테고리의 변경',
    '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 open the task #%d'=>'%s이 할일#%d를 오픈했습니다',
    '%s moved the task #%d to the column "%s"'=>'%s이 할일#%d을 칼럼"%s"로 옮겼습니다',
    '%s moved the task #%d to the position%d in the column "%s"'=>'%s이 할일#%d을 위치%d컬럼"%s"이동했습니다',
    'Activity'=>'활동',
    'Default values are"%s"'=>'기본 값은 "%s"',
    'Default columns for new projects(Comma-separated)'=>'신규 프로젝트의 기본 컬럼(쉼표로 구분하여 입력)',
    'Task assignee change'=>'담당자의 변경',
    '%s change 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'=>'참조',
    'Reference:%s'=>'참조:%s',
    'Label'=>'라벨',
    'Database'=>'데이터베이스',
    'About'=>'정보',
    'Database driver:'=>'데이터베이스 드라이버:',
    'Board settings'=>'기본 설정',
    'URL and token'=>'URL와 토큰',
    'Webhook settings'=>'Webhook의 설정',
    'URL for task creation:'=>'Task작성의 URL:',
    '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',
    'Example:http://example.kanboard.net/(used by email notifications)'=>'Exemple:http://exemple.kanboard.net/(Email통지에 이용)',
    'Token regenerated.'=>'토큰이 다시 생성되었습니다.',
    'Date format'=>'데이터 포맷',
    'ISO format is always accepted, example:"%s"and"%s"'=>'ISO포맷이 입력할 수 있습니다(예:%s또는%s)',
    'New private project'=>'새 비공개 프로젝트',
    'This project is private'=>'이 프로젝트는 비공개입니다',
    'Type here to create a new sub-task'=>'서브 할일을 추가하려면 여기에 입력하세요',
    'Add'=>'추가',
    'Estimated time: %s hours'=>'예상시간: %s시간',
    'Time spent: %s hours'=>'경과: %s시간',
    'Started on%B%e,%Y'=>'시작%Y/%m/%d',
    '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'=>'할일 분포',
    'Reportings'=>'리포트',
    'Task repartition for"%s"'=>'"%s"의 할일 분포',
    'Analytics'=>'분석',
    'Subtask'=>'서브 할일',
    'My subtasks'=>'내 서브 할일',
    'User repartition'=>'담당자 분포',
    'User repartition for"%s"'=>'"%s"의 담당자 분포',
    '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'=>'축적 플로',
    'Cumulative flow diagram for"%s"'=>'"%s"의 축적 플로',
    'Daily project summary'=>'일시 프로젝트 개요',
    'Daily project summary export'=>'일시 프로젝트 개요의 출력',
    'Daily project summary export for"%s"'=>'"%s"의 일시 프로젝트 개요의 출력',
    'Exports'=>'출력',
    'This export contains the number of tasks per column grouped per day.'=>'이 출력은 날짜의 칼람별 할일 수를 집계한 것입니다',
    'Nothing to preview...'=>'미리보기가 없습니다',
    'Preview'=>'미리보기',
    'Write'=>'쓰기',
    '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'=>'스윔레인의 삭제',
    'Rename'=>'이름 변경',
    'Show default swimlane'=>'기본 스윔레인의 표시',
    'Swimlane modification for the project"%s"'=>'"%s"에 대한 스윔레인 변경',
    'Swimlane not found.'=>'스윔레인이 발견되지 않습니다.',
    'Swimlane removed successfully.'=>'스윔레인을 삭제했습니다.',
    'Swimlanes'=>'스윔레인',
    'Swimlane updated successfully.'=>'스윔레인을 갱신했습니다.',
    'The default swimlane have been updated successfully.'=>'기본 스윔레인을 갱신했습니다.',
    'Unable to create your swimlane.'=>'스윔레인을 추가할 수 없었습니다.',
    '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'=>'서브 할일 출력',
    'Subtasks exportation for"%s"'=>'"%s"의 서브 할일 출력',
    'Task Title'=>'할일 제목',
    'Untitled'=>'제목 없음',
    'Application default'=>'애플리케이션 기본',
    'Language:'=>'언어:',
    'Timezone:'=>'시간대:',
    'All columns'=>'모든 칼럼',
    'Calendar'=>'달력',
    'Next'=>'다음에 ',
    '#%d'=>'#%d',
    'All swimlanes'=>'모든 스윔레인',
    'All colors'=>'모든 색',
    'Moved to column%s'=>'칼럼%s로 이동했습니다',
    'Change description'=>'설명 수정',
    '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 link'=>'링크 추가',
    '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'=>'링크',
    'Link settings'=>'링크 설정',
    'Opposite label'=>'반대의 라벨',
    'Remove a link'=>'라벨의 삭제',
    'Task\'s links'=>'할일의 라벨',
    '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시간',
    '%b%e'=>'%b/%e',
    'Expand tasks'=>'할일 크게',
    'Collapse tasks'=>'할일 작게',
    'Expand/collapse tasks'=>'할일 크게/작게',
    'Close dialog box'=>'다이얼로그를 닫습니다',
    'Submit a form'=>'제출',
    'Board view'=>'보드 뷰',
    'Keyboard shortcuts'=>'키보드 숏 컷',
    'Open board switcher'=>'보드 전환을 열',
    'Application'=>'애플리케이션',
    'since %B %e, %Y at %k:%M %p'=>'%Y-%m-%d %p %H:%M',
    'Compact view'=>'컴팩트 뷰',
    'Horizontal scrolling'=>'세로 스크롤',
    'Compact/wide view'=>'컴팩트/와이드 뷰',
    'No results match:'=>'결과가 일치하지 않았습니다',
    'Currency'=>'통화',
    'Files'=>'파일',
    'Images'=>'이미지',
    '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-NZ달러',
    'RSD-Serbian dinar'=>'RSD-세르비아 데나ー루',
    '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'=>'현재의 기축 통화',
    'Add a new currency rate'=>' 새로운 통화 환율을 추가',
    'Reference currency'=>'기축 통화',
    //'The currency rate have been added successfully.'=>'',
    'Unable to add this currency rate.'=>'이 통화 환율을 추가할 수 없습니다.',
    'Webhook URL'=>'Webhook URL',
    '%s remove 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',
    'uploaded by: %s' => '업로드: %s',
    'uploaded on: %s' => '날짜: %s',
    'size: %s' => '사이즈: %s',
    // 'Burndown chart for "%s"' => '',
    // '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' => '',
    // 'The project identifier is an optional alphanumeric code used to identify your project.' => '',
    // 'Identifier' => '',
    // 'Disable two factor authentication' => '',
    // 'Do you really want to disable the two factor authentication for this user: "%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' => '',
    // 'Recurring information' => '',
    // 'Score' => '',
    // 'The identifier must be unique' => '',
    // 'This linked task id doesn\'t exists' => '',
    // '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' => '',
    // 'Preferences' => '',
    // 'Security' => '',
    'Two factor authentication disabled' => '2단 인증 비활성화',
    // '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' => '할일 다시 시작',
    'Column change' => '칼럼 이동',
    'Position change' => '위치 이동',
    'Swimlane change' => '스윔레인 변경',
    'Assignee change' => '담당자 변경',
    '[%s] Overdue tasks' => '[%s] 마감시간 지남',
    'Notification' => '알림',
    // '%s moved the task #%d to the first swimlane' => '',
    // '%s moved the task #%d to the swimlane "%s"' => '',
    'Swimlane' => '스윔레인',
    // 'Gravatar' => '',
    // '%s moved the task %s to the first swimlane' => '',
    // '%s moved the task %s to the swimlane "%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' => '',
    // 'view the board on Kanboard' => '',
    // 'The task have been moved to the first swimlane' => '',
    // 'The task have been moved to another swimlane:' => '',
    // 'Overdue tasks for the project "%s"' => '',
    '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' => '',
    'The description have been modified' => '설명 수정',
    'Do you really want to close the task "%s" as well as all subtasks?' => '할일 "%s"과 서브 할일을 모두 마치시겠습니까?',
    // 'Swimlane: %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' => '내가 만들었거나 내가 담당자인 일',
    // '%A' => '',
    // '%b %e, %Y, %k:%M %p' => '',
    'New due date: %B %e, %Y' => '종료날짜 변경: %Y-%m-%d %p %H:%M',
    'Start date changed: %B %e, %Y' => '시작시간 변경: %Y-%m-%d %p %H:%M',
    // '%k:%M %p' => '',
    // '%%Y-%%m-%%d' => '',
    // 'Total for all columns' => '',
    // 'You need at least 2 days of data to show the chart.' => '',
    '<15m' => '<15분',
    '<30m' => '<30분',
    // 'Stop timer' => '',
    'Start timer' => '타이머 시작',
    // 'Add project member' => '',
    'Enable notifications' => '알림 켜기',
    'My activity stream' => '내 활동기록',
    'My calendar' => '내 캘린더',
    // 'Search tasks' => '',
    'Back to the calendar' => '달력으로 돌아가기',
    'Filters' => '필터',
    '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' => '개요',
    // '%b %e %Y' => '',
    // '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"' => '',
    '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: ' => '마감날짜로 찾기 ',
    // 'Lead and Cycle time for "%s"' => '',
    // 'Average time spent into each column for "%s"' => '',
    // 'Average time spent into each column' => '',
    // 'Average time spent' => '',
    // 'This chart show the average time spent into each column for the last %d tasks.' => '',
    // 'Average Lead and Cycle time' => '',
    // 'Average lead time: ' => '',
    // 'Average cycle time: ' => '',
    'Cycle Time' => '사이클 타임',
    'Lead Time' => '리드 타임',
    // 'This chart show the average lead and cycle time for the last %d tasks over the time.' => '',
    // 'Average time into each column' => '',
    // 'Lead and cycle time' => '',
    // 'Google Authentication' => '',
    // 'Help on Google authentication' => '',
    // 'Github Authentication' => '',
    // 'Help on Github authentication' => '',
    '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' => '계정 수정',
    // 'Google Id' => '',
    // 'Github Id' => '',
    // 'Remote user' => '',
    // 'Remote users do not store their password in Kanboard database, examples: LDAP, Google and Github accounts.' => '',
    // 'If you check the box "Disallow login form", credentials entered in the login form will be ignored.' => '',
    'New remote user' => '새로운 원격유저',
    'New local user' => '새로운 유저',
    // 'Default task color' => '',
    'Hide sidebar' => '사이드바 닫기',
    'Expand sidebar' => '사이드바 열기',
    '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' => '',
    // 'Current column: %s' => '',
    // 'Current category: %s' => '',
    // 'no category' => '',
    // 'Current assignee: %s' => '',
    // 'not assigned' => '',
    // 'Author:' => '',
    // 'contributors' => '',
    // 'License:' => '',
    // 'License' => '',
    // 'Enter the text below' => '',
    // 'Gantt chart for %s' => '',
    // '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' => '',
    'Show this column' => '칼럼 보이기',
    'Hide this column' => '칼럼 숨기기',
    'open file' => '열기',
    'End date' => '종료 날짜',
    'Users overview' => '유저 전체보기',
    'Managers' => '매니저',
    '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' => '프로젝트 간트차트',
    // 'Start date: %s' => '',
    // 'End date: %s' => '',
    // 'Link type' => '',
    // 'Change task color when using a specific task link' => '',
    // 'Task link creation or modification' => '',
    // 'Login with my Gitlab Account' => '',
    // 'Milestone' => '',
    // 'Gitlab Authentication' => '',
    // 'Help on Gitlab authentication' => '',
    // 'Gitlab Id' => '',
    // 'Gitlab Account' => '',
    // 'Link my Gitlab Account' => '',
    // 'Unlink my Gitlab Account' => '',
    // 'Documentation: %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.' => '',
    'Set maximum column height' => '최대 칼럼 높이 제한하기',
    'Remove maximum column height' => '최대 칼럼 높이 없애기',
    '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' => '',
    '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' => '',
    'Column changed for task #%d' => '할일 #%d의 칼럼이 변경되었습니다',
    'New position for task #%d' => '할일 #%d이 새로운 위치에 등록되었습니다',
    // 'Swimlane changed for task #%d' => '',
    // 'Assignee changed on task #%d' => '',
    // '%d overdue tasks' => '',
    // 'Task #%d is overdue' => '',
    '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' => '읽지않은 알림',
    'My filters' => '내 필터',
    'Notification methods:' => '알림 방법',
    // 'Import tasks from CSV file' => '',
    // 'Unable to read your file' => '',
    // '%d task(s) have been imported successfully.' => '',
    // 'Nothing have been imported!' => '',
    // 'Import users from CSV file' => '',
    // '%d user(s) have been imported successfully.' => '',
    // 'Comma' => '',
    // 'Semi-colon' => '',
    // 'Tab' => '',
    // 'Vertical bar' => '',
    // 'Double Quote' => '',
    // 'Single Quote' => '',
    // '%s attached a file to the task #%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' => '',
    // 'Instructions' => '',
    // 'Your file must use the predefined CSV format' => '',
    // 'Your file must be encoded in 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' => '',
    // 'Download CSV template' => '',
    '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에 추가했습니다',
    // 'Assign automatically a category based on a link' => '',
    // 'BAM - Konvertible Mark' => '',
    // 'Assignee Username' => '',
    // 'Assignee Name' => '',
    // 'Groups' => '',
    // 'Members of %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"' => '',
    // 'Group member added successfully.' => '',
    // 'Unable to add group member.' => '',
    // 'Remove user from group "%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' => '',
    // 'Invalid captcha' => '',
    // 'The name must be unique' => '',
    'View all groups' => '모든그룹보기',
    // 'View group members' => '',
    // 'There is no user available.' => '',
    // 'Do you really want to remove the user "%s" from the group "%s"?' => '',
    // 'There is no group.' => '',
    // 'External Id' => '',
    'Add group member' => '멤버추가',
    // 'Do you really want to remove this group: "%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' => '프로젝트 멤버',
    // 'Compare hours for "%s"' => '',
    // '%s mentioned you in the task #%d' => '',
    // '%s mentioned you in a comment on the task #%d' => '',
    // 'You were mentioned in the task #%d' => '',
    'You were mentioned in a comment on the task #%d' => '할일 #%d의 댓글에서 언급되었습니다',
    // 'Mentioned' => '',
    // 'Compare Estimated Time vs Actual Time' => '',
    // 'Estimated hours: ' => '',
    // 'Actual hours: ' => '',
    // 'Hours Spent' => '',
    // 'Hours Estimated' => '',
    // 'Estimated Time' => '',
    // 'Actual Time' => '',
    // 'Estimated vs actual time' => '',
    // 'RUB - Russian Ruble' => '',
    // '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: ' => '2단 인증: ',
    // 'Disable two-factor authentication' => '',
    'Enable two-factor authentication' => '2단 인증 활성화',
    // 'There is no integration registered at the moment.' => '',
    // 'Password Reset for 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.' => '',
    // '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.' => '',
    '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' => '프로필',
);