summaryrefslogtreecommitdiffstats
path: root/config/locales/ko.yml
blob: ed5f24d8242c78cc43a14061dfd6dd5888491bb2 (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
# Korean translations for Ruby on Rails
ko:
  direction: ltr
  date:
    formats:
      # Use the strftime parameters for formats.
      # When no format has been given, it uses default.
      # You can provide other formats here if you like!
      default: "%Y/%m/%d"
      short: "%m/%d"
      long: "%Y년 %m월 %d�?� (%a)"

    day_names: [?�요�?, 월요�?, 화요�?, 수요�?, 목요�?, 금요�?, 토요�?]
    abbr_day_names: [?, , , , , , ]

    # Don't forget the nil at the beginning; there's no such thing as a 0th month
    month_names: [~, 1월, 2월, 3월, 4월, 5월, 6월, 7월, 8월, 9월, 10월, 11월, 12월]
    abbr_month_names: [~, 1월, 2월, 3월, 4월, 5월, 6월, 7월, 8월, 9월, 10월, 11월, 12월]
    # Used in date_select and datime_select.
    order:
      - :year
      - :month
      - :day

  time:
    formats:
      default: "%Y/%m/%d %H:%M:%S"
      time: "%H:%M"
      short: "%y/%m/%d %H:%M"
      long: "%Y년 %B월 %d�?�, %H시 %M분 %S초 %Z"
    am: "오전"
    pm: "오후"

  datetime:
    distance_in_words:
      half_a_minute: "30초"
      less_than_x_seconds:
        one:   "�?�초 �?�하"
        other: "%{count}초 �?�하"
      x_seconds:
        one:   "�?�초"
        other: "%{count}초"
      less_than_x_minutes:
        one:   "�?�분 �?�하"
        other: "%{count}분 �?�하"
      x_minutes:
        one:   "�?�분"
        other: "%{count}분"
      about_x_hours:
        one:   "약 한시간"
        other: "약 %{count}시간"
      x_hours:
        one:   "1 시간"
        other: "%{count} 시간"
      x_days:
        one:   "하루"
        other: "%{count}�?�"
      about_x_months:
        one:   "약 한달"
        other: "약 %{count}달"
      x_months:
        one:   "한달"
        other: "%{count}달"
      about_x_years:
        one:   "약 �?�년"
        other: "약 %{count}년"
      over_x_years:
        one:   "�?�년 �?��?"
        other: "%{count}년 �?��?"
      almost_x_years:
        one:   "약 1년"
        other: "약 %{count}년"
    prompts:
      year:   "년"
      month:  "월"
      day:    "�?�"
      hour:   "시"
      minute: "분"
      second: "초"

  number:
    # Used in number_with_delimiter()
    # These are also the defaults for 'currency', 'percentage', 'precision', and 'human'
    format:
      # Sets the separator between the units, for more precision (e.g. 1.0 / 2.0 == 0.5)
      separator: "."
      # Delimets thousands (e.g. 1,000,000 is a million) (always in groups of three)
      delimiter: ","
      # Number of decimals, behind the separator (the number 1 with a precision of 2 gives: 1.00)
      precision: 3

    # Used in number_to_currency()
    currency:
      format:
        # Where is the currency sign? %u is the currency unit, %n the number (default: $5.00)
        format: "%u%n"
        unit: "₩"
        # These three are to override number.format and are optional
        separator: "."
        delimiter: ","
        precision: 0

    # Used in number_to_percentage()
    percentage:
      format:
        # These three are to override number.format and are optional
        # separator:
        delimiter: ""
        # precision:

    # Used in number_to_precision()
    precision:
      format:
        # These three are to override number.format and are optional
        # separator:
        delimiter: ""
        # precision:

    # Used in number_to_human_size()
    human:
      format:
        # These three are to override number.format and are optional
        # separator:
        delimiter: ""
        precision: 3
      storage_units:
        format: "%n %u"
        units:
          byte:
            one: "Byte"
            other: "Bytes"
          kb: "KB"
          mb: "MB"
          gb: "GB"
          tb: "TB"

# Used in array.to_sentence.
  support:
    array:
      words_connector: ", "
      two_words_connector: "과 "
      last_word_connector: ", "
      sentence_connector: "그리고"
      skip_last_comma: false

  activerecord:
    errors:
      template:
        header:
          one:    "한개�?� 오류가 발�?해 %{model}�?�(를) 저장하지 않았습니다."
          other:  "%{count}개�?� 오류가 발�?해 %{model}�?�(를) 저장하지 않았습니다."
        # The variable :count is also available
        body: "다�?� 항목�? 문제가 발견했습니다:"

      messages:
        inclusion: "�?� 목�?�? �?�함�?�어 있지 않습니다"
        exclusion: "�?� 예약�?�어 있습니다"
        invalid: "�?� 유효하지 않습니다."
        confirmation: "�?� 확�?��?� �?�지 않았습니다"
        accepted: "�?� �?�정�?�어야 합니다"
        empty: "�?� 길�?�가 0�?�어서는 안�?�니다."
        blank: "�?�  값�?�어서는  �?�니다"
        too_long: "�?� 너무 �?니다 (최대 %{count}�? 까지)"
        too_short: "�?� 너무 짧습니다 (최소 %{count}�? 까지)"
        wrong_length: "�?� 길�?�가 틀렸습니다 (%{count}�?�?�어야 합니다.)"
        taken: "�?� �?�미 선�?�?� �?니다"
        not_a_number: "�?� 숫�?가 아닙니다"
        greater_than: "�?� %{count}보다 커야 합니다."
        greater_than_or_equal_to: "�?� %{count}보다 �?�거나 같아야 합니다"
        equal_to: "�?� %{count}(와)과 같아야 합니다"
        less_than: "�?� %{count}보다 작어야 합니다"
        less_than_or_equal_to: "�?� %{count}과 같거나 �?�하�?� 요구합니다"
        odd: "�?� 홀수여야 합니다"
        even: "�?� �?수여야 합니다"
        greater_than_start_date: "는 시작날짜보다 커야 합니다"
        not_same_project: "는 같�?� 프로�?트�? �?해 있지 않습니다"
        circular_dependency: "�?� 관계는 순환 �?�존관계를 만들  있습니다"
        cant_link_an_issue_with_a_descendant: "�?��?�?� 하위 �?��?과 연결할  없습니다."
        earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues"

  actionview_instancetag_blank_option: 선�?하세요

  general_text_No: '아니오'
  general_text_Yes: '예'
  general_text_no: '아니오'
  general_text_yes: '예'
  general_lang_name: 'Korean (한국어)'
  general_csv_separator: ','
  general_csv_decimal_separator: '.'
  general_csv_encoding: CP949
  general_pdf_fontname: hysmyeongjostdmedium
  general_pdf_monospaced_fontname: hysmyeongjostdmedium
  general_first_day_of_week: '7'

  notice_account_updated: 계정�?� 성공�?으로 변경�?�었습니다.
  notice_account_invalid_credentials: 잘못�?� 계정 �?는 비밀번호
  notice_account_password_updated: 비밀번호가 잘 변경�?�었습니다.
  notice_account_wrong_password: 잘못�?� 비밀번호
  notice_account_register_done: 계정�?� 잘 만들어졌습니다. 계정�?� 활성화하시려면 받�?� 메�?��?� �?�?�를 �?�릭해주세요.
  notice_account_unknown_email: 알려지지 않�?� 사용�?.
  notice_can_t_change_password: �?� 계정�?� 외부 �?��?�?� �?�용합니다. 비밀번호를 변경할 수 없습니다.
  notice_account_lost_email_sent: 새로운 비밀번호를 위한 메�?��?� 발송�?�었습니다.
  notice_account_activated: 계정�?� 활성화�?�었습니다. �?�제 로그�?� 하실수 있습니다.
  notice_successful_create: �?성 성공.
  notice_successful_update: 변경 성공.
  notice_successful_delete: 삭제 성공.
  notice_successful_connection: 연결 성공.
  notice_file_not_found: 요청하신 페�?�지는 삭제�?�었거나 옮겨졌습니다.
  notice_locking_conflict: 다른 사용�?�? �?�해서 �?��?�터가 변경�?�었습니다.
  notice_not_authorized: �?� 페�?�지�? 접근할 권한�?� 없습니다.
  notice_email_sent: "%{value}님�?게 메�?��?� 발송�?�었습니다."
  notice_email_error: "메�?��?� 전송하는 과정�? 오류가 발�?했습니다. (%{value})"
  notice_feeds_access_key_reseted: Atom�? 접근가능한 열쇠(key)가 �?성�?�었습니다.
  notice_failed_to_save_issues: "저장�? 실패하였습니다: 실패 %{count}(선�? %{total}): %{ids}."
  notice_no_issue_selected: "�?��?�?� 선�?�?�지 않았습니다. 수정하기 �?하는 �?��?�?� 선�?하세요"
  notice_account_pending: "계정�?� 만들어졌으며 관리�? 승�?� 대기중입니다."
  notice_default_data_loaded: 기본값�?� 성공�?으로 �?�어들였습니다.
  notice_unable_delete_version: 삭제할 수 없는 버전입니다.

  error_can_t_load_default_data: "기본값�?� �?�어들�?�  없습니다.: %{value}"
  error_scm_not_found: 항목�?�나 리비젼�?� 저장소�? 존재하지 않습니다.
  error_scm_command_failed: "저장소�? 접근하는 �?�중�? 오류가 발�?하였습니다.: %{value}"
  error_scm_annotate: "항목�?� 없거나 행별 �?�력�?�   없습니다."
  error_issue_not_found_in_project: '�?��?�?� 없거나 �?� 프로�?트�?� 것�?� 아닙니다.'

  warning_attachments_not_saved: "%{count}개 파�?��?� 저장할  없습니다."

  mail_subject_lost_password: "%{value} 비밀번호"
  mail_body_lost_password: '비밀번호를 변경하려면 다�?� �?�?�를 �?�릭하세요.'
  mail_subject_register: "%{value} 계정 활성화"
  mail_body_register: '계정�?� 활성화하려면 �?�?�를 �?�릭하세요.:'
  mail_body_account_information_external: "로그�?�할  %{value} 계정�?� 사용하실  있습니다."
  mail_body_account_information: 계정 정보
  mail_subject_account_activation_request: "%{value} 계정 활성화 요청"
  mail_body_account_activation_request: "새 사용�?(%{value})가 등�?�?�었습니다. 관리�?님�?� 승�?��?� 기다리고 있습니다.:"
  mail_body_reminder: "당신�?� 맡고 있는 �?��? %{count}개�?� 완료기한�?� %{days}�?�  입니다."
  mail_subject_reminder: "내�?��?� 만기�?� �?��? %{count}개 (%{days})"
  mail_subject_wiki_content_added: "위키페�?�지 '%{id}'�?�(가) 추가�?�었습니다."
  mail_subject_wiki_content_updated: "'위키페�?�지 %{id}'�?�(가) 수정�?�었습니다."
  mail_body_wiki_content_added: "%{author}�?�(가) 위키페�?�지 '%{id}'�?�(를) 추가하였습니다."
  mail_body_wiki_content_updated: "%{author}�?�(가) 위키페�?�지 '%{id}'�?�(를) 수정하였습니다."


  field_name: �?�름
  field_description: 설명
  field_summary: 요약
  field_is_required: 필수
  field_firstname: �?�름
  field_lastname: 
  field_mail: 메�?�
  field_filename: 파�?�
  field_filesize: �?�기
  field_downloads: 다운로드
  field_author: 저�?
  field_created_on: 등�?
  field_updated_on: 변경
  field_field_format: 형�?
  field_is_for_all: 모든 프로�?트
  field_possible_values: 가능한 값들
  field_regexp: 정규�?
  field_min_length: 최소 길�?�
  field_max_length: 최대 길�?�
  field_value: 
  field_category: 범주
  field_title: 제목
  field_project: 프로�?트
  field_issue: �?��?
  field_status: �?태
  field_notes: �?�글
  field_is_closed: 완료 �?태
  field_is_default: 기본값
  field_tracker: 유형
  field_subject: 제목
  field_due_date: 완료기한
  field_assigned_to: 담당�?
  field_priority: 우선순위
  field_fixed_version: 목표버전
  field_user: 사용�?
  field_role: 역할
  field_homepage: 홈페�?�지
  field_is_public: 공개
  field_parent: �?위 프로�?트
  field_is_in_roadmap: 로드맵�? 표시
  field_login: 로그�?�
  field_mail_notification: 메�?� 알림
  field_admin: 관리�?
  field_last_login_on: 마지막 로그�?�
  field_language: 언어
  field_effective_date: 날짜
  field_password: 비밀번호
  field_new_password: 새 비밀번호
  field_password_confirmation: 비밀번호 확�?�
  field_version: 버전
  field_type: 방�?
  field_host: 호스트
  field_port: �?�트
  field_account: 계정
  field_base_dn: 기본 DN
  field_attr_login: 로그�?� �?성
  field_attr_firstname: �?�름 �?성
  field_attr_lastname: 성 �?성
  field_attr_mail: 메�?� �?성
  field_onthefly: �?��? 사용�? �?성
  field_start_date: 시작시간
  field_done_ratio: 진척�?�
  field_auth_source: �?��? 공급�?
  field_hide_mail: 메�?� 주소 숨기기
  field_comments: 설명
  field_url: URL
  field_start_page: 첫 페�?�지
  field_subproject: 하위 프로�?트
  field_hours: 시간
  field_activity: 작업종류
  field_spent_on: 작업시간
  field_identifier: �?별�?
  field_is_filter: 검색조건으로 사용�?�
  field_issue_to_id: 연관�?� �?��?
  field_delay: 지연
  field_assignable: �?� 역할�?게 �?��?�?� 맡길 수 있�?�
  field_redirect_existing_links: 기존�?� �?�?�로 �?�려보냄(redirect)
  field_estimated_hours: 추정시간
  field_column_names: 컬럼
  field_default_value: 기본값
  field_time_zone: 시간대
  field_searchable: 검색가능
  field_comments_sorting: 댓글 정렬
  field_parent_title: �?위 제목
  field_editable: 편집가능
  field_watcher: �?��?관람�?
  field_identity_url: OpenID URL
  field_content: 내용
  field_group_by: 결과를 묶어 보여줄 기준

  setting_app_title: 레드마�?� 제목
  setting_app_subtitle: 레드마�?� 부제목
  setting_welcome_text: 환�? 메시지
  setting_default_language: 기본 언어
  setting_login_required: �?��?�?� 필요함
  setting_self_registration: 사용�? �?접등�?
  setting_attachment_max_size: 최대 첨부파�?� �?�기
  setting_issues_export_limit: �?��? 내보내기 제한
  setting_mail_from: 발신 메�?� 주소
  setting_bcc_recipients: 참조�?들�?� bcc로 숨기기
  setting_plain_text_mail: �?스트만 (HTML 없�?�)
  setting_host_name: 호스트 �?�름과 경로
  setting_text_formatting: 본문 형�?
  setting_wiki_compression: 위키 �?�력 압축
  setting_feeds_limit: 피드�? �?�함할 항목�?� 수
  setting_default_projects_public: 새 프로�?트를 공개로 설정
  setting_autofetch_changesets: 커밋(commit)�?� 변경묶�?��?� �?�?�으로 가져오기
  setting_sys_api_enabled: 저장소 관리�? WS를 사용
  setting_commit_ref_keywords: �?��? 참조�? 사용할 키워드들
  setting_commit_fix_keywords: �?��? 해결�? 사용할 키워드들
  setting_autologin: �?�?� 로그�?�
  setting_date_format: 날짜 형�?
  setting_time_format: 시간 형�?
  setting_cross_project_issue_relations: 다른 프로�?트�?� �?��?과 연결하는 것�?� 허용
  setting_issue_list_default_columns: �?��? 목�?�? 표시할 항목
  setting_emails_footer: 메�?� 꼬리
  setting_protocol: 프로토콜
  setting_per_page_options: 목�?�?서, 한 페�?�지�? 표시할 행
  setting_user_format: 사용�? 표시 형�?
  setting_activity_days_default: 프로�?트 작업내역�? 표시할 기간
  setting_display_subprojects_issues: 하위 프로�?트�?� �?��?�?� 함께 표시
  setting_enabled_scm: "지�?할 SCM(Source Control Management)"
  setting_mail_handler_api_enabled: 수신 메�?��? WS를 허용
  setting_mail_handler_api_key: API 키
  setting_sequential_project_identifiers: 프로�?트 �?별�?를 순차�?으로 �?성
  setting_gravatar_enabled: 그�?�바타 사용�? 아�?�콘 사용
  setting_diff_max_lines_displayed: 차�?��?(diff) 보기�? 표시할 최대 줄수
  setting_repository_log_display_limit: 저장소 보기�? 표시할 개정�? �?�력�?� 최대 갯수
  setting_file_max_size_displayed: 바로 보여줄 �?스트파�?��?� 최대 �?�기
  setting_openid: OpenID 로그�?�과 등�? 허용
  setting_password_min_length: 최소 암호 길�?�
  setting_new_project_user_role_id: 프로�?트를 만든 사용�?�?게 주어질 역할

  permission_add_project: 프로�?트 �?성
  permission_edit_project: 프로�?트 편집
  permission_select_project_modules: 프로�?트 모듈 선�?
  permission_manage_members: 구성�? 관리
  permission_manage_versions: 버전 관리
  permission_manage_categories: �?��? 범주 관리
  permission_add_issues: �?��? 추가
  permission_edit_issues: �?��? 편집
  permission_manage_issue_relations: �?��? 관계 관리
  permission_add_issue_notes: �?�글 추가
  permission_edit_issue_notes: �?�글 편집
  permission_edit_own_issue_notes: 내 �?�글 편집
  permission_move_issues: �?��? �?��?�
  permission_delete_issues: �?��? 삭제
  permission_manage_public_queries: 공용 검색양�? 관리
  permission_save_queries: 검색양�? 저장
  permission_view_gantt: Gantt차트 보기
  permission_view_calendar: 달력 보기
  permission_view_issue_watchers: �?��?관람�? 보기
  permission_add_issue_watchers: �?��?관람�? 추가
  permission_log_time: 작업시간 기�?
  permission_view_time_entries: 시간입력 보기
  permission_edit_time_entries: 시간입력 편집
  permission_edit_own_time_entries: 내 시간입력 편집
  permission_manage_news: 뉴스 관리
  permission_comment_news: 뉴스�? 댓글달기
  permission_view_documents: 문서 보기
  permission_manage_files: 파�?�관리
  permission_view_files: 파�?�보기
  permission_manage_wiki: 위키 관리
  permission_rename_wiki_pages: 위키 페�?�지 �?�름변경
  permission_delete_wiki_pages: 위치 페�?�지 삭제
  permission_view_wiki_pages: 위키 보기
  permission_view_wiki_edits: 위키 기�? 보기
  permission_edit_wiki_pages: 위키 페�?�지 편집
  permission_delete_wiki_pages_attachments: 첨부파�?� 삭제
  permission_protect_wiki_pages: 프로�?트 위키 페�?�지
  permission_manage_repository: 저장소 관리
  permission_browse_repository: 저장소 둘러보기
  permission_view_changesets: 변경묶�?�보기
  permission_commit_access: 변경로그 보기
  permission_manage_boards: 게시�? 관리
  permission_view_messages: 메시지 보기
  permission_add_messages: 메시지 추가
  permission_edit_messages: 메시지 편집
  permission_edit_own_messages: �?기 메시지 편집
  permission_delete_messages: 메시지 삭제
  permission_delete_own_messages: �?기 메시지 삭제

  project_module_issue_tracking: �?��?관리
  project_module_time_tracking: 시간추�?
  project_module_news: 뉴스
  project_module_documents: 문서
  project_module_files: 파�?�
  project_module_wiki: 위키
  project_module_repository: 저장소
  project_module_boards: 게시�?

  label_user: 사용�?
  label_user_plural: 사용�?
  label_user_new: 새 사용�?
  label_project: 프로�?트
  label_project_new: 새 프로�?트
  label_project_plural: 프로�?트
  label_x_projects:
    zero:  없�?�
    one:   "한 프로�?트"
    other: "%{count}개 프로�?트"
  label_project_all: 모든 프로�?트
  label_project_latest: 최근 프로�?트
  label_issue: �?��?
  label_issue_new: 새 �?��?만들기
  label_issue_plural: �?��?
  label_issue_view_all: 모든 �?��? 보기
  label_issues_by: "%{value}별 �?��?"
  label_issue_added: �?��? 추가
  label_issue_updated: �?��? 수정
  label_document: 문서
  label_document_new: 새 문서
  label_document_plural: 문서
  label_document_added: 문서 추가
  label_role: 역할
  label_role_plural: 역할
  label_role_new: 새 역할
  label_role_and_permissions: 역할 �? 권한
  label_member: 구성�?
  label_member_new: 새 구성�?
  label_member_plural: 구성�?
  label_tracker: �?��? 유형
  label_tracker_plural: �?��? 유형
  label_tracker_new: 새 �?��? 유형
  label_workflow: 업무�??름
  label_issue_status: �?��? �?태
  label_issue_status_plural: �?��? �?태
  label_issue_status_new: 새 �?��? �?태
  label_issue_category: �?��? 범주
  label_issue_category_plural: �?��? 범주
  label_issue_category_new: 새 �?��? 범주
  label_custom_field: 사용�? 정�?� 항목
  label_custom_field_plural: 사용�? 정�?� 항목
  label_custom_field_new: 새 사용�? 정�?� 항목
  label_enumerations: 코드값
  label_enumeration_new: 새 코드값
  label_information: 정보
  label_information_plural: 정보
  label_please_login: 로그�?�하세요.
  label_register: 등�?
  label_login_with_open_id_option: �?는 OpenID로 로그�?�
  label_password_lost: 비밀번호 찾기
  label_home: 초기화면
  label_my_page: 내 페�?�지
  label_my_account: 내 계정
  label_my_projects: 내 프로�?트
  label_administration: 관리
  label_login: 로그�?�
  label_logout: 로그아웃
  label_help: �?�움�?
  label_reported_issues: 보고한 �?��?
  label_assigned_to_me_issues: 내가 맡�?� �?��? 
  label_last_login: 마지막 접�?
  label_registered_on: 등�?시�?
  label_activity: 작업내역
  label_overall_activity: 전체 작업내역
  label_user_activity: "%{value}�?� 작업내역"
  label_new: 새로 만들기
  label_logged_as: '로그�?�계정:'
  label_environment: 환경
  label_authentication: �?��?
  label_auth_source: �?��? 공급�?
  label_auth_source_new: 새 �?��? 공급�?
  label_auth_source_plural: �?��? 공급�?
  label_subproject_plural: 하위 프로�?트
  label_and_its_subprojects: "%{value}와 하위 프로�?트들"
  label_min_max_length: 최소 - 최대 길�?�
  label_list: 목�?
  label_date: 날짜
  label_integer: 정수
  label_float: 부�?�소수
  label_boolean: 부울린
  label_string: 문�?열
  label_text: �?스트
  label_attribute: �?성
  label_attribute_plural: �?성
  label_no_data: 표시할 �?��?�터가 없습니다.
  label_change_status: �?태 변경
  label_history: �?�력
  label_attachment: 파�?�
  label_attachment_new: 파�?�추가
  label_attachment_delete: 파�?�삭제
  label_attachment_plural: 파�?�
  label_file_added: 파�?� 추가
  label_report: 보고서
  label_report_plural: 보고서
  label_news: 뉴스
  label_news_new: 새 뉴스
  label_news_plural: 뉴스
  label_news_latest: 최근 뉴스
  label_news_view_all: 모든 뉴스
  label_news_added: 뉴스 추가
  label_settings: 설정
  label_overview: 개요
  label_version: 버전
  label_version_new: 새 버전
  label_version_plural: 버전
  label_confirmation: 확�?�
  label_export_to: 내보내기
  label_read: �?�기...
  label_public_projects: 공개 프로�?트
  label_open_issues: 진행중
  label_open_issues_plural: 진행중
  label_closed_issues: 완료�?�
  label_closed_issues_plural: 완료�?�
  label_x_open_issues_abbr:
    zero:  모�? 완료
    one:   한 건 진행 중
    other: "%{count}  진행 중"
  label_x_closed_issues_abbr:
    zero:  모�? 미완료
    one:   한 건 완료
    other: "%{count}  완료"
  label_total: 합계
  label_permissions: 권한
  label_current_status: �?��? �?태
  label_new_statuses_allowed: 허용�?�는 �?��? �?태
  label_all: 모�?
  label_none: 없�?�
  label_nobody: 미지정
  label_next: 다�?�
  label_previous: 뒤로
  label_used_by: 사용�?�
  label_details: �?세히
  label_add_note: �?��?�?�글 추가
  label_calendar: 달력
  label_months_from: 개월 �?�안 | 다�?�부터
  label_gantt: Gantt 챠트
  label_internal: 내부
  label_last_changes: "최근 %{count}개�?� 변경사항"
  label_change_view_all: 모든 변경 내역 보기
  label_personalize_page: 입맛대로 구성하기
  label_comment: 댓글
  label_comment_plural: 댓글
  label_x_comments:
    zero: 댓글 없�?�
    one: 한 개�?� 댓글
    other: "%{count} 개�?� 댓글"
  label_comment_add: 댓글 추가
  label_comment_added: 댓글�?� 추가�?�었습니다.
  label_comment_delete: 댓글 삭제
  label_query: 검색양�?
  label_query_plural: 검색양�?
  label_query_new: 새 검색양�?
  label_filter_add: 검색조건 추가
  label_filter_plural: 검색조건
  label_equals: �?�다
  label_not_equals: 아니다
  label_in_less_than: �?�내
  label_in_more_than: �?�후
  label_greater_or_equal: ">="
  label_less_or_equal: "<="
  label_in: �?�내
  label_today: 오늘
  label_all_time: 모든 시간
  label_yesterday: 어제
  label_this_week: �?�번주
  label_last_week: 지난 주
  label_last_n_days: "지난 %{count} �?�"
  label_this_month: �?�번 달
  label_last_month: 지난 달
  label_this_year: 올해
  label_date_range: 날짜 범위
  label_less_than_ago: �?�전
  label_more_than_ago: �?�후
  label_ago: �?� 전
  label_contains: �?�함�?�는 키워드
  label_not_contains: �?�함하지 않는 키워드
  label_day_plural: �?�
  label_repository: 저장소
  label_repository_plural: 저장소
  label_browse: 저장소 둘러보기
  label_revision: 개정�?
  label_revision_plural: 개정�?
  label_associated_revisions: 관련�?� 개정�?들
  label_added: 추가�?�
  label_modified: 변경�?�
  label_copied: 복사�?�
  label_renamed: �?�름바뀜
  label_deleted: 삭제�?�
  label_latest_revision: 최근 개정�?
  label_latest_revision_plural: 최근 개정�?
  label_view_revisions: 개정�? 보기
  label_max_size: 최대 �?�기
  label_sort_highest: 맨 위로
  label_sort_higher: 위로
  label_sort_lower: 아래로
  label_sort_lowest: 맨 아래로
  label_roadmap: 로드맵
  label_roadmap_due_in: "기한  %{value}"
  label_roadmap_overdue: "%{value} 지연"
  label_roadmap_no_issues: �?� 버전�? 해당하는 �?��? 없�?�
  label_search: 검색
  label_result_plural: 결과
  label_all_words: 모든 단어
  label_wiki: 위키
  label_wiki_edit: 위키 편집
  label_wiki_edit_plural: 위키 편집
  label_wiki_page: 위키 페�?�지
  label_wiki_page_plural: 위키 페�?�지
  label_index_by_title: 제목별 색�?�
  label_index_by_date: 날짜별 색�?�
  label_current_version: 현재 버전
  label_preview: 미리보기
  label_feed_plural: 피드(Feeds)
  label_changes_details: 모든 �?세 변경 내역
  label_issue_tracking: �?��? 추�?
  label_spent_time: 소요 시간
  label_f_hour: "%{value} 시간"
  label_f_hour_plural: "%{value} 시간"
  label_time_tracking: 시간추�?
  label_change_plural: 변경사항들
  label_statistics: 통계
  label_commits_per_month: 월별 커밋 내역
  label_commits_per_author: 저�?별 커밋 내역
  label_view_diff: 차�?��? 보기
  label_diff_inline: �?줄로
  label_diff_side_by_side: 한줄로
  label_options: 옵션
  label_copy_workflow_from: 업무�??름 복사하기
  label_permissions_report: 권한 보고서
  label_watched_issues: 지켜보고 있는 �?��? 
  label_related_issues: 연결�?� �?��?
  label_applied_status: �?용�?� �?태
  label_loading: �?�는 중...
  label_relation_new: 새 관계
  label_relation_delete: 관계 지우기
  label_relates_to: "다�?� �?��?과 관련�?�:"
  label_duplicates: "다�?� �?��?�? 중복�?�:"
  label_duplicated_by: "중복�?� �?��?:"
  label_blocks: "다�?� �?��?�?� 해결�?� 막고 있�?�:"
  label_blocked_by: "다�?� �?��?�?게 막혀 있�?�:"
  label_precedes: "다�?��? 진행할 �?��?:"
  label_follows: "다�?� �?��?�?� 우선 진행:"
  label_stay_logged_in: 로그�?� 유지
  label_disabled: 비활성화
  label_show_completed_versions: 완료�?� 버전 보기
  label_me: 
  label_board: 게시�?
  label_board_new: 새 게시�?
  label_board_plural: 게시�?
  label_topic_plural: 주제
  label_message_plural: 
  label_message_last: 마지막 글
  label_message_new: 새글쓰기
  label_message_posted: 글 추가
  label_reply_plural: 답글
  label_send_information: 사용�?�?게 계정정보를 보내기
  label_year: 
  label_month: 
  label_week: 
  label_date_from: '기간:'
  label_date_to: ' ~ '
  label_language_based: 언어설정�? 따름
  label_sort_by: "%{value}(으)로 정렬"
  label_send_test_email: 테스트 메�?� 보내기
  label_feeds_access_key_created_on: "피드 접근 키가 %{value} �?�전�? �?성�?�었습니다."
  label_module_plural: 모듈
  label_added_time_by: "%{author}�?�(가) %{age} 전�? 추가함"
  label_updated_time_by: "%{author}�?�(가) %{age} 전�? 변경"
  label_updated_time: "%{value} 전�? 수정�?�"
  label_jump_to_a_project: 프로�?트 바로가기
  label_file_plural: 파�?�
  label_changeset_plural: 변경묶�?�
  label_default_columns: 기본 컬럼
  label_no_change_option: (수정 안함)
  label_bulk_edit_selected_issues: 선�?한 �?��?들�?� 한꺼번�? 수정하기
  label_theme: 테마
  label_default: 기본
  label_search_titles_only: 제목�?서만 찾기
  label_user_mail_option_all: "내가 �?한 프로�?트로들부터 모든 메�?� 받기"
  label_user_mail_option_selected: "선�?한 프로�?트들로부터 모든 메�?� 받기.."
  label_user_mail_no_self_notified: "내가 만든 변경사항들�? 대해서는 알림메�?��?� 받지 않습니다."
  label_registration_activation_by_email: 메�?�로 계정�?� 활성화하기
  label_registration_automatic_activation: �?�?� 계정 활성화
  label_registration_manual_activation: 수�?� 계정 활성화
  label_display_per_page: "페�?�지당 줄수: %{value}"
  label_age: 마지막 수정�?�
  label_change_properties: �?성 변경
  label_general: �?�반
  label_more: 제목 �? 설명 수정
  label_scm: 형�?관리시스템
  label_plugins: 플러그�?�
  label_ldap_authentication: LDAP �?��?
  label_downloads_abbr: D/L
  label_optional_description: 부가�?�?� 설명
  label_add_another_file: 다른 파�?� 추가
  label_preferences: 설정
  label_chronological_order: 시간 순으로 정렬
  label_reverse_chronological_order: 시간 역순으로 정렬
  label_planning: 프로�?트계�?
  label_incoming_emails: 수신 메�?�
  label_generate_key: 키 �?성
  label_issue_watchers: �?��?관람�?
  label_example: 
  label_display: 표시방�?
  label_sort: 정렬
  label_ascending: 오름차순
  label_descending: 내림차순
  label_date_from_to: "%{start}부터 %{end}까지"
  label_wiki_content_added: 위키페�?�지 추가
  label_wiki_content_updated: 위키페�?�지 수정

  button_login: 로그�?�
  button_submit: 확�?�
  button_save: 저장
  button_check_all: 모�?선�?
  button_uncheck_all: 선�?해제
  button_delete: 삭제
  button_create: 만들기
  button_create_and_continue: 만들고 계�?하기
  button_test: 테스트
  button_edit: 편집
  button_add: 추가
  button_change: 변경
  button_apply: �?용
  button_clear: 지우기
  button_lock: 잠금
  button_unlock: 잠금해제
  button_download: 다운로드
  button_list: 목�?
  button_view: 보기
  button_move: �?��?�
  button_back: 뒤로
  button_cancel: 취소
  button_activate: 활성화
  button_sort: 정렬
  button_log_time: 작업시간 기�?
  button_rollback: �?� 버전으로 �?��?�리기
  button_watch: 지켜보기
  button_unwatch: 관심�?�기
  button_reply: 답글
  button_archive: 잠금보관
  button_unarchive: 잠금보관해제
  button_reset: 초기화
  button_rename: �?�름바꾸기
  button_change_password: 비밀번호 바꾸기
  button_copy: 복사
  button_annotate: �?�력해설
  button_update: 업�?��?�트
  button_configure: 설정
  button_quote: 댓글달기

  status_active: 사용중
  status_registered: 등�?대기
  status_locked: 잠김

  text_select_mail_notifications: 알림메�?��?� 필요한 작업�?� 선�?하세요.
  text_regexp_info: 예) ^[A-Z0-9]+$
  text_min_max_length_info: 0 는 제한�?� 없�?��?� �?�미함
  text_project_destroy_confirmation: �?� 프로�?트를 삭제하고 모든 �?��?�터를 지우시겠습니까?
  text_subprojects_destroy_warning: "하위 프로�?트(%{value})�?�(가) �?�?�으로 지워질 것입니다."
  text_workflow_edit: 업무�??름�?� 수정하려면 역할과 �?��? 유형�?� 선�?하세요.
  text_are_you_sure: 계�? 진행 하시겠습니까?
  text_tip_issue_begin_day: 오늘 시작하는 업무(task)
  text_tip_issue_end_day: 오늘 종료하는 업무(task)
  text_tip_issue_begin_end_day: 오늘 시작하고 종료하는 업무(task)
  text_caracters_maximum: "최대 %{count} 글�? 가능"
  text_caracters_minimum: "최소한 %{count} 글�? �?��?�?�어야 합니다."
  text_length_between: "%{min} �?서 %{max} 글�?"
  text_tracker_no_workflow: �?� �?��? 유형�?는 업무�??름�?� 정�?��?�지 않았습니다.
  text_unallowed_characters: 허용�?�지 않는 문�?열
  text_comma_separated: "구분�?','를 �?�용해서 여러 개�?� 값�?� 입력할  있습니다."
  text_issues_ref_in_commit_messages: 커밋 메시지�?서 �?��?�?� 참조하거나 해결하기
  text_issue_added: "%{author}�?�(가) �?��? %{id}�?�(를) 보고하였습니다."
  text_issue_updated: "%{author}�?�(가) �?��? %{id}�?�(를) 수정하였습니다."
  text_wiki_destroy_confirmation: �?� 위키와 모든 내용�?� 지우시겠습니까?
  text_issue_category_destroy_question: "�?�부 �?��?들(%{count}개)�?� �?� 범주�? 지정�?�어 있습니다. 어떻게 하시겠습니까?"
  text_issue_category_destroy_assignments: 범주 지정 지우기
  text_issue_category_reassign_to: �?��?�?� �?� 범주�? 다시 지정하기
  text_user_mail_option: "선�?하지 않�?� 프로�?트�?서�?�, 지켜보는 중�?�거나 �?해있는 사항(�?��?를 발행했거나 할당�?� 경우)�?� 있으면 알림메�?��?� 받게 �?�니다."
  text_no_configuration_data: "역할, �?��? 유형, �?��? �?태들과 업무�??름�?� 아�? 설정�?�지 않았습니다.\n기본 설정�?� �?�어들�?�는 것�?� 권장합니다. �?�어들�?� 후�? 수정할  있습니다."
  text_load_default_configuration: 기본 설정�?� �?�어들�?�기
  text_status_changed_by_changeset: "변경묶�?� %{value}�? �?�하여 변경�?�"
  text_issues_destroy_confirmation: '선�?한 �?��?를 정�?로 삭제하시겠습니까?'
  text_select_project_modules: '�?� 프로�?트�?서 활성화시킬 모듈�?� 선�?하세요:'
  text_default_administrator_account_changed: 기본 관리�? 계정�?� 변경
  text_file_repository_writable: 파�?� 저장소 쓰기 가능
  text_plugin_assets_writable: 플러그�?� 전용 디렉토리가 쓰기 가능
  text_rmagick_available: RMagick 사용 가능 (선�?�?)
  text_destroy_time_entries_question: 삭제하려는 �?��?�? %{hours} 시간�?� 보고�?�어 있습니다. 어떻게 하시겠습니까?
  text_destroy_time_entries: 보고�?� 시간�?� 삭제하기
  text_assign_time_entries_to_project: 보고�?� 시간�?� 프로�?트�? 할당하기
  text_reassign_time_entries: '�?� 알림�? 보고�?� 시간�?� 재할당하기:'
  text_user_wrote: "%{value}�?� �?�글:"
  text_enumeration_category_reassign_to: '새로운 값�?� 설정:'
  text_enumeration_destroy_question: "%{count} 개�?� �?��?�?� �?� 값�?� 사용하고 있습니다."
  text_email_delivery_not_configured: "�?�메�?� 전달�?� 설정�?�지 않았습니다. 그래서 알림�?� 비활성화�?�었습니다.\n SMTP서버를 config/configuration.yml�?서 설정하고 어플리케�?�션�?� 다시 시작하십시오. 그러면 �?�작합니다."
  text_repository_usernames_mapping: "저장소 로그�?서 발견�?� �? 사용�?�? 레드마�?� 사용�?를 업�?��?�트할때 선�?합니다.\n레드마�?�과 저장소�?� �?�름�?�나 �?�메�?��?� 같�?� 사용�?가 �?�?�으로 연결�?�니다."
  text_diff_truncated: '... �?� 차�?��?�?� 표시할  있는 최대 줄수를 초과해서 �?� 차�?��?�?� 잘렸습니다.'
  text_custom_field_possible_values_info: '�?    줄'
  text_wiki_page_destroy_question: �?� 페�?�지는 %{descendants} 개�?� 하위 페�?�지와 관련 내용�?� 있습니다. �?� 내용�?� 어떻게 하시겠습니까?
  text_wiki_page_nullify_children: 하위 페�?�지를 최�?위 페�?�지 아래로 지정
  text_wiki_page_destroy_children: 모든 하위 페�?�지와 관련 내용�?� 삭제
  text_wiki_page_reassign_children: 하위 페�?�지를 �?� 페�?�지 아래로 지정

  default_role_manager: 관리�?
  default_role_developer: 개발�?
  default_role_reporter: 보고�?
  default_tracker_bug: 결함
  default_tracker_feature: 새기능
  default_tracker_support: 지�?
  default_issue_status_new: 신규
  default_issue_status_in_progress: 진행
  default_issue_status_resolved: 해결
  default_issue_status_feedback: �?�견
  default_issue_status_closed: 완료
  default_issue_status_rejected: 거절
  default_doc_category_user: 사용�? 문서
  default_doc_category_tech: 기술 문서
  default_priority_low: 낮�?�
  default_priority_normal: 보통
  default_priority_high: 높�?�
  default_priority_urgent: 긴급
  default_priority_immediate: 즉시
  default_activity_design: 설계
  default_activity_development: 개발

  enumeration_issue_priorities: �?��? 우선순위
  enumeration_doc_categories: 문서 범주
  enumeration_activities: 작업분류(시간추�?)

  field_issue_to: 관련 �?��? 
  label_view_all_revisions: 모든 개정�? 표시
  label_tag: 태그(Tag)
  label_branch: 브랜치(Branch)
  error_no_tracker_in_project: 사용할 수 있�?��? 설정�?� �?��? 유형�?� 없습니다. 프로�?트 설정�?� 확�?�하십시오.
  error_no_default_issue_status: '기본 �?태가 정해져 있지 않습니다. 설정�?� 확�?�하십시오. (주 메뉴�?� "관리" -> "�?��? �?태")'
  text_journal_changed: "%{label}�?�(를) %{old}�?서 %{new}(으)로 변경�?�었습니다."
  text_journal_set_to: "%{label}�?�(를) %{value}(으)로 지정�?�었습니다."
  text_journal_deleted: "%{label} 값�?� 지워졌습니다. (%{old})"
  label_group_plural: 그룹
  label_group: 그룹
  label_group_new: 새 그룹
  label_time_entry_plural: 작업시간
  text_journal_added: "%{label}�? %{value}�?�(가) 추가�?�었습니다."
  field_active: 사용중
  enumeration_system_activity: 시스템 작업
  permission_delete_issue_watchers: �?��?관람�? 지우기
  version_status_closed: 닫힘
  version_status_locked: 잠김
  version_status_open: 진행
  error_can_not_reopen_issue_on_closed_version: 닫힌 버전�? 할당�?� �?��?�?� 다시 재발�?시킬 수 없습니다.
  label_user_anonymous: �?�름없�?�
  button_move_and_follow: �?��?�하고 따�?�가기
  setting_default_projects_modules: 새 프로�?트�? 기본�?으로 활성화�?� 모듈
  setting_gravatar_default: 기본 그�?�바타 �?�미지
  field_sharing: 공유
  label_version_sharing_hierarchy: �?위 �? 하위 프로�?트
  label_version_sharing_system: 모든 프로�?트
  label_version_sharing_descendants: 하위 프로�?트
  label_version_sharing_tree: 최�?위 �? 모든 하위 프로�?트
  label_version_sharing_none: 공유없�?�
  error_can_not_archive_project: �?� 프로�?트를 잠금보관할 수 없습니다.
  button_duplicate: 복제
  button_copy_and_follow: 복사하고 따�?�가기
  label_copy_source: �?본
  setting_issue_done_ratio: �?��?�?� 진척�?� 계산방법
  setting_issue_done_ratio_issue_status: �?��? �?태를 사용하기
  error_issue_done_ratios_not_updated: �?��? 진척�?�가 수정�?�지 않았습니다.
  error_workflow_copy_target: 대�? �?��?�?� 유형과 역할�?� 선�?하세요.
  setting_issue_done_ratio_issue_field: �?��? 수정�?서 진척�?� 입력하기
  label_copy_same_as_target: 대�?과 같�?�.
  label_copy_target: 대�?
  notice_issue_done_ratios_updated: �?��? 진척�?�가 수정�?�었습니다.
  error_workflow_copy_source: �?본 �?��?�?� 유형�?�나 역할�?� 선�?하세요.
  label_update_issue_done_ratios: 모든 �?��? 진척�?� 갱신하기
  setting_start_of_week: 달력 시작 요�?�
  permission_view_issues: �?��? 보기
  label_display_used_statuses_only: �?� �?��? 유형�?서 사용�?�는 �?태만 보여주기
  label_revision_id: 개정�? %{value}
  label_api_access_key: API 접근키
  label_api_access_key_created_on: API 접근키가 %{value} 전�? �?성�?�었습니다.
  label_feeds_access_key: Atom 접근키
  notice_api_access_key_reseted: API 접근키가 초기화�?�었습니다.
  setting_rest_api_enabled: REST 웹서비스 활성화
  label_missing_api_access_key: API 접근키가 없습니다.
  label_missing_feeds_access_key: Atom 접근키가 없습니다.
  button_show: 보기
  text_line_separated: 여러 값�?� 허용�?�(값 마다 한 줄씩)
  setting_mail_handler_body_delimiters: 메�?� 본문 구분�?
  permission_add_subprojects: 하위 프로�?트 만들기
  label_subproject_new: 새 하위 프로�?트
  text_own_membership_delete_confirmation: |-
    권한들 �?�부 �?는 전부를 막 삭제하려고 하고 있습니다. 그렇게 �?�면 �?� 프로�?트를 �?��?��? 수정할 수 없게 �?�니다.
    계�?하시겠습니까?
  label_close_versions: 완료�?� 버전 닫기
  label_board_sticky: 붙박�?�
  label_board_locked: 잠금
  permission_export_wiki_pages: 위키 페�?�지 내보내기
  setting_cache_formatted_text: 형�?�?� 가진 �?스트 빠른 임시 기억
  permission_manage_project_activities: 프로�?트 작업내역 관리
  error_unable_delete_issue_status: �?��? �?태를 지울 수 없습니다.
  label_profile: 사용�?정보
  permission_manage_subtasks: 하위 �?��? 관리
  field_parent_issue: �?위 �?��?
  label_subtask_plural: 하위 �?��?
  label_project_copy_notifications: 프로�?트 복사 중�? �?�메�?� 알림 보내기
  error_can_not_delete_custom_field: 사용�? 정�?� 필드를 삭제할 수 없습니다.
  error_unable_to_connect: 연결할 수 없습니다((%{value})
  error_can_not_remove_role: �?� 역할�?� 현재 사용 중�?��?�서 삭제할 수 없습니다.
  error_can_not_delete_tracker: �?� 유형�?� �?��?들�?� 있어서 삭제할 수 없습니다.
  field_principal: 신�?
  label_my_page_block: 내 페�?�지 출력화면
  notice_failed_to_save_members: "%{errors}:구성�?�?� 저장  실패하였습니다"
  text_zoom_out: �?� 작게
  text_zoom_in: �?� �?�게
  notice_unable_delete_time_entry: 시간 기�? 항목�?� 삭제할 수 없습니다.
  label_overall_spent_time: �? 소요시간
  field_time_entries: 기�?�?� 시간
  project_module_gantt: Gantt 챠트
  project_module_calendar: 달력
  button_edit_associated_wikipage: "연관�?� 위키 페�?�지 %{page_title} 수정"
  field_text: �?스트 �?역
  label_user_mail_option_only_owner: 내가 저�?�?� 사항만
  setting_default_notification_option: 기본 알림 옵션
  label_user_mail_option_only_my_events: 내가 지켜보거나 �?해있는 사항만
  label_user_mail_option_only_assigned: 나�?게 할당�?� 사항만
  label_user_mail_option_none: 알림 없�?�
  field_member_of_group: 할당�?� 사람�?� 그룹
  field_assigned_to_role: 할당�?� 사람�?� 역할
  notice_not_authorized_archived_project: 접근하려는 프로�?트는 �?�미 잠금보관�?�어 있습니다.
  label_principal_search: "사용�? �? 그룹 찾기:"
  label_user_search: "사용�? 찾기::"
  field_visible: 보�?�기
  setting_emails_header: �?�메�?� 헤�?�
  setting_commit_logtime_activity_id: 기�?�?� 시간�? �?용할 작업분류
  text_time_logged_by_changeset: "변경묶�?� %{value}�?서 �?용�?�었습니다."
  setting_commit_logtime_enabled: 커밋 시�?�? 작업 시간 기�? 활성화
  notice_gantt_chart_truncated: "표시할  있는 최대 항목수(%{max})를 초과하여 차트가 잘렸습니다."
  setting_gantt_items_limit: "Gantt 차트�? 표시�?�는 최대 항목수"
  field_warn_on_leaving_unsaved: "저장하지 않�?� 페�?�지를 빠져나갈  나�?게 알림"
  text_warn_on_leaving_unsaved: "현재 페�?�지는 저장�?�지 않�?� 문�?가 있습니다. �?� 페�?�지를 빠져나가면 내용�?� 잃�?� 것입니다."
  label_my_queries: "내 검색 양�?"
  text_journal_changed_no_detail: "%{label}�?� 변경�?�었습니다."
  label_news_comment_added: "뉴스�? 설명�?� 추가�?�었습니다."
  button_expand_all: "모�? 확장"
  button_collapse_all: "모�? 축소"
  label_additional_workflow_transitions_for_assignee: "사용�?가 작업�?�?�  허용�?�는 추가 �?태"
  label_additional_workflow_transitions_for_author: "사용�?가 저�?�?�  허용�?�는 추가 �?태"
  label_bulk_edit_selected_time_entries: "선�?�?� 소요 시간 대량 편집"
  text_time_entries_destroy_confirmation: "선�?한 소요 시간 항목�?� 삭제하시겠습니까?"
  label_role_anonymous: Anonymous
  label_role_non_member: Non member

  label_issue_note_added: "�?�글�?� 추가�?�었습니다."
  label_issue_status_updated: "�?태가 변경�?�었습니다."
  label_issue_priority_updated: "우선 순위가 변경�?�었습니다."
  label_issues_visibility_own: "�?��?�?� �?성하거나 맡�?� 사용�?"
  field_issues_visibility: "�?��? 보임"
  label_issues_visibility_all: "모든 �?��?"
  permission_set_own_issues_private: "�?신�?� �?��?�?� 공개나 비공개로 설정"
  field_is_private: "비공개"
  permission_set_issues_private: "�?��?�?� 공개나 비공개로 설정"
  label_issues_visibility_public: "비공개 �?��? 제외"
  text_issues_destroy_descendants_confirmation: "%{count} 개�?� 하위 �?��?�?� 삭제할 것입니다."
  field_commit_logs_encoding: "커밋(commit) 기�? �?�코딩"
  field_scm_path_encoding: "경로 �?�코딩"
  text_scm_path_encoding_note: "기본: UTF-8"
  field_path_to_repository: "저장소 경로"
  field_root_directory: "루트 경로"
  field_cvs_module: "모듈"
  field_cvsroot: "CVS 루트"
  text_mercurial_repository_note: "로컬 저장소 (예: /hgrepo, c:\\hgrepo)"
  text_scm_command: "명령"
  text_scm_command_version: "버전"
  label_git_report_last_commit: "파�?��?�나 �?��?��?� 마지막 커밋(commit)�?� 보고"
  text_scm_config: "SCM 명령�?� config/configuration.yml�?서 수정할  있습니다. 수정후�?는 재시작하십시오."
  text_scm_command_not_available: "SCM 명령�?� 사용할  없습니다. 관리 페�?�지�?� 설정�?� 검사하십시오."
  notice_issue_successful_create: "%{id} �?��?�?� �?성�?�었습니다."
  label_between: "사�?�"
  setting_issue_group_assignment: "그룹�? �?��? 할당 허용"
  label_diff: "비�?(diff)"
  text_git_repository_note: "로컬�?� bare 저장소 (예: /gitrepo, c:\\gitrepo)"
  description_query_sort_criteria_direction: "정렬 방향"
  description_project_scope: "검색 범위"
  description_filter: "검색 조건"
  description_user_mail_notification: "메�?� 알림 설정"
  description_date_from: "시작 날짜 입력"
  description_message_content: "메세지 내용"
  description_available_columns: "가능한 컬럼"
  description_date_range_interval: "시작과 �?? 날짜로 범위를 선�?하십시오."
  description_issue_category_reassign: "�?��? 범주를 선�?하십시오."
  description_search: "검색항목"
  description_notes: "�?�글"
  description_date_range_list: "목�?�?서 범위를 선�? 하십시오."
  description_choose_project: "프로�?트"
  description_date_to: "종료 날짜 입력"
  description_query_sort_criteria_attribute: "정렬 �?성"
  description_wiki_subpages_reassign: "새로운 �?위 페�?�지를 선�?하십시오."
  description_selected_columns: "선�?�?� 컬럼"
  label_parent_revision: "�?위"
  label_child_revision: "하위"
  error_scm_annotate_big_text_file: "최대 �?스트 파�?� �?�기를 초과 하면 항목�?� �?�력화 �?�  없습니다."
  setting_default_issue_start_date_to_creation_date: "새로운 �?��?�?� 시작 날짜로 오늘 날짜 사용"
  button_edit_section: "�?� 부분 수정"
  setting_repositories_encodings: "첨부파�?��?�나 저장소 �?�코딩"
  description_all_columns: "모든 컬럼"
  button_export: "내보내기"
  label_export_options: "내보내기 옵션: %{export_format}"
  error_attachment_too_big: "�?� 파�?��?� 제한�?� �?�기(%{max_size})를 초과하였기 때문�? 업로드   없습니다."

  notice_failed_to_save_time_entries: "%{total} 개�?� 시간입력중 다�?� %{count} 개�?� 저장�? 실패했습니다:: %{ids}."
  label_x_issues:
    zero:  0 �?��?
    one:   1 �?��? 
    other: "%{count} �?��?"
  label_repository_new: 저장소 추가
  field_repository_is_default: 주 저장소
  label_copy_attachments: 첨부파�?� 복사
  label_item_position: "%{position}/%{count}"
  label_completed_versions: 완료 버전
  text_project_identifier_info: "소문�?(a-z),숫�?,대쉬(-)와 밑줄(_)만 가능합니다.<br />�?별�?는 저장후�?는 수정할  없습니다."
  field_multiple: 복수선�?가능
  setting_commit_cross_project_ref: 다른 프로�?트�?� �?��? 참조 �? 수정 허용
  text_issue_conflict_resolution_add_notes: 변경내용�?� 취소하고 �?�글만 추가
  text_issue_conflict_resolution_overwrite: 변경내용 강제�?용 (�?�전 �?�글�?� 제외하고 �?�어 �?니다)
  notice_issue_update_conflict: �?��?�?� 수정�?�는 �?�안 다른 사용�?�? �?�해서 변경�?�었습니다.
  text_issue_conflict_resolution_cancel: "변경내용�?� �?��?�리고 다시 표시 %{link}"
  permission_manage_related_issues: 연결�?� �?��? 관리
  field_auth_source_ldap_filter: LDAP 필터
  label_search_for_watchers: 추가할 �?��?관람�? 검색
  notice_account_deleted: 당신�?� 계정�?� 완전히 삭제�?�었습니다.
  setting_unsubscribe: 사용�?들�?� �?신�?� 계정�?� 삭제토�? 허용
  button_delete_my_account: 나�?� 계정 삭제
  text_account_destroy_confirmation: |-
        계�?하시겠습니까?
        계정�?� 삭제�?�면 복구할 수 없습니다.
  error_session_expired: 당신�?� 세션�?� 만료�?�었습니다. 다시 로그�?�하세요.
  text_session_expiration_settings: "경고: �?� 설정�?� 바꾸면 당신�?� �?�함하여 현재�?� 세션들�?� 만료시킬  있습니다."
  setting_session_lifetime: 세션 최대 시간
  setting_session_timeout: 세션 비활성화 타임아웃
  label_session_expiration: 세션 만료
  permission_close_project: 프로�?트를 닫거나 다시 열기
  label_show_closed_projects: 닫힌 프로�?트 보기
  button_close: 닫기
  button_reopen: 다시 열기
  project_status_active: 사용중
  project_status_closed: 닫힘
  project_status_archived: 잠금보관
  text_project_closed: �?� 프로�?트는 닫혀 있으며 �?�기 전용입니다.
  notice_user_successful_create: 사용�? %{id} �?�(가) �?성�?�었습니다.
  field_core_fields: 표준 항목들
  field_timeout: 타임아웃 (초)
  setting_thumbnails_enabled: 첨부파�?��?� �?�네�?��?� 보여줌
  setting_thumbnails_size: �?�네�?� �?�기 (픽셀)
  label_status_transitions: �?��? �?태 변경
  label_fields_permissions: 항목 편집 권한
  label_readonly: �?�기 전용
  label_required: 필수
  text_repository_identifier_info: "소문�?(a-z),숫�?,대쉬(-)와 밑줄(_)만 가능합니다.<br />�?별�?는 저장후�?는 수정할  없습니다."
  field_board_parent: Parent forum
  label_attribute_of_project: "프로�?트�?� %{name}"
  label_attribute_of_author: "저�?�?� %{name}"
  label_attribute_of_assigned_to: "담당�?�?� %{name}"
  label_attribute_of_fixed_version: "목표버전�?� %{name}"
  label_copy_subtasks: 하위 �?��?들�?� 복사
  label_copied_to: "다�?� �?��?으로 복사�?�:"
  label_copied_from: "다�?� �?��?으로부터 복사�?�:"
  label_any_issues_in_project: 다�?� 프로�?트�? �?한 아무 �?��?
  label_any_issues_not_in_project: 다�?� 프로�?트�? �?하지 않�?� 아무 �?��?
  field_private_notes: 비공개 �?�글
  permission_view_private_notes: 비공개 �?�글 보기
  permission_set_notes_private: �?�글�?� 비공개로 설정
  label_no_issues_in_project: 다�?� 프로�?트�?� �?��? 제외
  label_any: 모�?
  label_last_n_weeks: 최근 %{count} 주
  setting_cross_project_subtasks: 다른 프로�?트�?� �?��?�?� �?위 �?��?으로 지정하는 것�?� 허용
  label_cross_project_descendants: 하위 프로�?트
  label_cross_project_tree: 최�?위 �? 모든 하위 프로�?트
  label_cross_project_hierarchy: �?위 �? 하위 프로�?트
  label_cross_project_system: 모든 프로�?트
  button_hide: 숨기기
  setting_non_working_week_days: 비근무�?� (non-working days)
  label_in_the_next_days: 다�?�
  label_in_the_past_days: 지난
  label_attribute_of_user: "사용�?�?� %{name}"
  text_turning_multiple_off: 복수선�?�?� 비활성화하면, 하나�?� 값�?� 제외한 나머지 값들�?� 지워집니다.
  label_attribute_of_issue: "�?��?�?� %{name}"
  permission_add_documents: 문서 추가
  permission_edit_documents: 문서 편집
  permission_delete_documents: 문서 삭제
  label_gantt_progress_line: 진행 선
  setting_jsonp_enabled: JSONP 허용
  field_inherit_members: �?위 프로�?트로부터 구성�?�?� �?�?
  field_closed_on: 완료�?�
  field_generate_password: 비밀번호 �?성
  setting_default_projects_tracker_ids: 새 프로�?트�? 기본�?으로 추가할 �?��? 유형
  label_total_time: 합계
  notice_account_not_activated_yet: 계정�?� 활성화�?�지 않았습니다. 계정�?� 활성화하기 위해 메�?��?� 다시 수신하려면 <a href="%{url}">여기를 �?�릭해 주세요</a>.
  notice_account_locked: 계정�?� 잠겨 있습니다.
  label_hidden: 숨김
  label_visibility_private: �?신 만
  label_visibility_roles: 다�?� 역할 만
  label_visibility_public: 모든 사용�?
  field_must_change_passwd: 다�?� 로그온 시 반드시 암호를 변경해야 함
  notice_new_password_must_be_different: 새 암호는 현재 암호와 달�?�야 합니다.
  setting_mail_handler_excluded_filenames: 제외할 첨부 파�?�명
  text_convert_available: ImageMagick 변환 사용 가능 (옵션)
  label_link: �?�?�
  label_only: 다�?��?� 것만
  label_drop_down_list: 드롭다운 목�?
  label_checkboxes: 체�?�박스
  label_link_values_to: URL �?�?� 값
  setting_force_default_language_for_anonymous: �?�명 사용�?�?� 기본 언어 강제
  setting_force_default_language_for_loggedin: 로그�?� 사용�?�?� 기본 언어 강제
  label_custom_field_select_type: 사용�? 정�?� 필드�? 추가할 대�?�?� 선�?해주세요.
  label_issue_assigned_to_updated: Assignee updated
  label_check_for_updates: Check for updates
  label_latest_compatible_version: Latest compatible version
  label_unknown_plugin: Unknown plugin
  label_radio_buttons: radio buttons
  label_group_anonymous: Anonymous users
  label_group_non_member: Non member users
  label_add_projects: Add projects
  field_default_status: Default status
  text_subversion_repository_note: 'Examples: file:///, http://, https://, svn://, svn+[tunnelscheme]://'
  field_users_visibility: Users visibility
  label_users_visibility_all: All active users
  label_users_visibility_members_of_visible_projects: Members of visible projects
  label_edit_attachments: Edit attached files
  setting_link_copied_issue: Link issues on copy
  label_link_copied_issue: Link copied issue
  label_ask: Ask
  label_search_attachments_yes: Search attachment filenames and descriptions
  label_search_attachments_no: Do not search attachments
  label_search_attachments_only: Search attachments only
  label_search_open_issues_only: Open issues only
  field_address: 메�?�
  setting_max_additional_emails: Maximum number of additional email addresses
  label_email_address_plural: Emails
  label_email_address_add: Add email address
  label_enable_notifications: Enable notifications
  label_disable_notifications: Disable notifications
  setting_search_results_per_page: Search results per page
  label_blank_value: blank
  permission_copy_issues: Copy issues
  error_password_expired: Your password has expired or the administrator requires you
    to change it.
  field_time_entries_visibility: Time logs visibility
  setting_password_max_age: Require password change after
  label_parent_task_attributes: Parent tasks attributes
  label_parent_task_attributes_derived: Calculated from subtasks
  label_parent_task_attributes_independent: Independent of subtasks
  label_time_entries_visibility_all: All time entries
  label_time_entries_visibility_own: Time entries created by the user
  label_member_management: Member management
  label_member_management_all_roles: All roles
  label_member_management_selected_roles_only: Only these roles
  label_password_required: Confirm your password to continue
  label_total_spent_time: �? 소요시간
  notice_import_finished: All %{count} items have been imported.
  notice_import_finished_with_errors: ! '%{count} out of %{total} items could not be
    imported.'
  error_invalid_file_encoding: The file is not a valid %{encoding} encoded file
  error_invalid_csv_file_or_settings: The file is not a CSV file or does not match the
    settings below
  error_can_not_read_import_file: An error occurred while reading the file to import
  permission_import_issues: Import issues
  label_import_issues: Import issues
  label_select_file_to_import: Select the file to import
  label_fields_separator: Field separator
  label_fields_wrapper: Field wrapper
  label_encoding: Encoding
  label_comma_char: Comma
  label_semi_colon_char: Semicolon
  label_quote_char: Quote
  label_double_quote_char: Double quote
  label_fields_mapping: Fields mapping
  label_file_content_preview: File content preview
  label_create_missing_values: Create missing values
  button_import: Import
  field_total_estimated_hours: Total estimated time
  label_api: API
  label_total_plural: Totals
  label_assigned_issues: Assigned issues
  label_field_format_enumeration: Key/value list
  label_f_hour_short: '%{value} h'
  field_default_version: Default version
  error_attachment_extension_not_allowed: Attachment extension %{extension} is not allowed
  setting_attachment_extensions_allowed: Allowed extensions
  setting_attachment_extensions_denied: Disallowed extensions
  label_any_open_issues: any open issues
  label_no_open_issues: no open issues
  label_default_values_for_new_users: Default values for new users
  error_ldap_bind_credentials: Invalid LDAP Account/Password
  setting_sys_api_key: API 키
  setting_lost_password: 비밀번호 찾기
  mail_subject_security_notification: Security notification
  mail_body_security_notification_change: ! '%{field} was changed.'
  mail_body_security_notification_change_to: ! '%{field} was changed to %{value}.'
  mail_body_security_notification_add: ! '%{field} %{value} was added.'
  mail_body_security_notification_remove: ! '%{field} %{value} was removed.'
  mail_body_security_notification_notify_enabled: Email address %{value} now receives
    notifications.
  mail_body_security_notification_notify_disabled: Email address %{value} no longer
    receives notifications.
  mail_body_settings_updated: ! 'The following settings were changed:'
  field_remote_ip: IP address