forked from mattermost/mattermost
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathko.json
7033 lines (7033 loc) · 242 KB
/
ko.json
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
[
{
"id": "April",
"translation": "4월"
},
{
"id": "August",
"translation": "8월"
},
{
"id": "December",
"translation": "12월"
},
{
"id": "February",
"translation": "2월"
},
{
"id": "January",
"translation": "1월"
},
{
"id": "July",
"translation": "7월"
},
{
"id": "June",
"translation": "6월"
},
{
"id": "March",
"translation": "3월"
},
{
"id": "May",
"translation": "5월"
},
{
"id": "November",
"translation": "11월"
},
{
"id": "October",
"translation": "10월"
},
{
"id": "September",
"translation": "9월"
},
{
"id": "actiance.export.marshalToXml.appError",
"translation": "XML형식으로 변환하여 내보낼 수 없습니다."
},
{
"id": "api.admin.add_certificate.array.app_error",
"translation": "요청된 '인증서' 항목의 파일이 없습니다."
},
{
"id": "api.admin.add_certificate.no_file.app_error",
"translation": "요청된 '인증서' 항목의 파일이 없습니다."
},
{
"id": "api.admin.add_certificate.open.app_error",
"translation": "인증서 파일을 열 수 없습니다."
},
{
"id": "api.admin.add_certificate.saving.app_error",
"translation": "인증서 파일을 저장할 수 없습니다."
},
{
"id": "api.admin.file_read_error",
"translation": "로그 파일을 읽는데 오류가 발생했습니다."
},
{
"id": "api.admin.get_brand_image.storage.app_error",
"translation": "이미지 저장소가 설정되지 않았습니다."
},
{
"id": "api.admin.remove_certificate.delete.app_error",
"translation": "An error occurred while deleting the OAuth2 App"
},
{
"id": "api.admin.saml.metadata.app_error",
"translation": "서비스 제공 메타 데이터를 만드는 중 오류가 발생하였습니다."
},
{
"id": "api.admin.saml.not_available.app_error",
"translation": "SAML 2.0이 설정되지 않았거나 해당 서버에서 지원하지 않습니다."
},
{
"id": "api.admin.test_email.body",
"translation": "사용자의 Mattermost 이메일이 잘 설정되었습니다!"
},
{
"id": "api.admin.test_email.missing_server",
"translation": "SMTP 서버가 필요합니다"
},
{
"id": "api.admin.test_email.reenter_password",
"translation": "SMTP 서버, 포트 또는 사용자이름이 변경되었습니다. SMTP 비밀번호를 다시 입력해주세요."
},
{
"id": "api.admin.test_email.subject",
"translation": "Mattermost - 이메일 설정 테스트중"
},
{
"id": "api.admin.test_s3.missing_s3_bucket",
"translation": "S3 버킷이 필요합니다"
},
{
"id": "api.admin.upload_brand_image.array.app_error",
"translation": "요청의 'image' 속성에 빈 배열이 전달되었습니다"
},
{
"id": "api.admin.upload_brand_image.no_file.app_error",
"translation": "요청의 'image' 속성 아래에 파일이 없습니다"
},
{
"id": "api.admin.upload_brand_image.parse.app_error",
"translation": "잘못된 multipart form을 파싱할 수 없습니다."
},
{
"id": "api.admin.upload_brand_image.storage.app_error",
"translation": "이미지 업로드를 할 수 없습니다. 이미지 저장소가 설정되지 않았습니다."
},
{
"id": "api.admin.upload_brand_image.too_large.app_error",
"translation": "용량이 커서 파일을 업로드 할 수 없습니다."
},
{
"id": "api.channel.add_member.added",
"translation": "%v 님이 %v에 의해 채널에 추가되었습니다."
},
{
"id": "api.channel.add_user.to.channel.failed.app_error",
"translation": "사용자를 채널에 추가하는 데 실패하였습니다"
},
{
"id": "api.channel.add_user.to.channel.failed.deleted.app_error",
"translation": "사용자가 팀에서 제거되어 채널에 추가할 수 없습니다."
},
{
"id": "api.channel.add_user_to_channel.type.app_error",
"translation": "이 유형의 채널엔 사용자를 추가할 수 없습니다"
},
{
"id": "api.channel.change_channel_privacy.private_to_public",
"translation": "이 채널은 공개 채널로 전환되어 모든 팀원이 들어올 수 있습니다."
},
{
"id": "api.channel.change_channel_privacy.public_to_private",
"translation": "이 채널은 비공개 채널로 변경되었습니다."
},
{
"id": "api.channel.convert_channel_to_private.default_channel_error",
"translation": "이 기본 채널은 전용 채널로 변환할 수 없습니다."
},
{
"id": "api.channel.convert_channel_to_private.private_channel_error",
"translation": "변환하기 위해 요청 된 채널은 이미 개인 채널입니다."
},
{
"id": "api.channel.create_channel.direct_channel.app_error",
"translation": "개인 메시지 채널을 만들기 위해서는 반드시 createDirectChannel API 서비스를 이용해야 함"
},
{
"id": "api.channel.create_channel.invalid_character.app_error",
"translation": "채널 이름 중 '__' 와 같은 글자는 개인 메시지가 아닌 채널에 적합하지 않습니다"
},
{
"id": "api.channel.create_channel.max_channel_limit.app_error",
"translation": "현재 팀에서 {{.MaxChannelsPerTeam}} 이상의 채널을 생성할 수 없습니다."
},
{
"id": "api.channel.create_default_channels.off_topic",
"translation": "잡담"
},
{
"id": "api.channel.create_default_channels.town_square",
"translation": "공지사항"
},
{
"id": "api.channel.create_direct_channel.invalid_user.app_error",
"translation": "개인 메시지 채널에 적합하지 않은 사용자 ID"
},
{
"id": "api.channel.create_group.bad_size.app_error",
"translation": "그룹 메세지 채널은 최소 3명에서 최대 8명까지의 사용자를 포함해야 합니다."
},
{
"id": "api.channel.create_group.bad_user.app_error",
"translation": "제공된 사용자 중 존재하지 않는 사용자가 있습니다."
},
{
"id": "api.channel.delete_channel.archived",
"translation": "%v 가 채널을 보존 처리 하였습니다."
},
{
"id": "api.channel.delete_channel.cannot.app_error",
"translation": "기본 채널 {{.Channel}} 은/는 삭제할 수 없습니다."
},
{
"id": "api.channel.delete_channel.deleted.app_error",
"translation": "채널이 보존 처리 혹은 삭제되었습니다"
},
{
"id": "api.channel.delete_channel.type.invalid",
"translation": "개인 혹은 단체 메시지 채널을 삭제할 수 없습니다."
},
{
"id": "api.channel.join_channel.permissions.app_error",
"translation": "사용 권한이 없습니다."
},
{
"id": "api.channel.join_channel.post_and_forget",
"translation": "%v 이(가) 채널에 들어왔습니다."
},
{
"id": "api.channel.leave.default.app_error",
"translation": "기본 채널은 삭제할 수 없습니다 {{.Channel}}"
},
{
"id": "api.channel.leave.direct.app_error",
"translation": "개인 메시지 채널은 나갈 수 없습니다."
},
{
"id": "api.channel.leave.last_member.app_error",
"translation": "비공개 그룹에 당신밖에 남지 않았습니다. 이 그룹을 떠나는 대신 그룹을 삭제하세요."
},
{
"id": "api.channel.leave.left",
"translation": "%v 가 채널을 떠났습니다."
},
{
"id": "api.channel.patch_update_channel.forbidden.app_error",
"translation": "채널 업데이트에 실패하였습니다"
},
{
"id": "api.channel.post_channel_privacy_message.error",
"translation": "채널 공개상태설정 업데이트 메시지 전달이 실패했습니다."
},
{
"id": "api.channel.post_update_channel_displayname_message_and_forget.create_post.error",
"translation": "displayname 업데이트 메시지 등록 실패"
},
{
"id": "api.channel.post_update_channel_displayname_message_and_forget.retrieve_user.error",
"translation": "채널 DisplayName 란을 업데이트 중 사용자를 가져오는 데 실패함"
},
{
"id": "api.channel.post_update_channel_displayname_message_and_forget.updated_from",
"translation": "%s 이(가) 채널 표시명을 %s에서 %s(으)로 갱신함"
},
{
"id": "api.channel.post_update_channel_header_message_and_forget.post.error",
"translation": "채널 헤더 업데이트 표시 실패"
},
{
"id": "api.channel.post_update_channel_header_message_and_forget.removed",
"translation": "%s이(가) 채널 헤더를 제거했습니다 (이전: %s)"
},
{
"id": "api.channel.post_update_channel_header_message_and_forget.retrieve_user.error",
"translation": "채널 헤더 업데이트 중 사용자를 가져오는 데 실패함"
},
{
"id": "api.channel.post_update_channel_header_message_and_forget.updated_from",
"translation": "%s 이(가) 채널 헤더를 %s에서 %s(으)로 갱신했습니다"
},
{
"id": "api.channel.post_update_channel_header_message_and_forget.updated_to",
"translation": "%s이(가) 채널 헤더를 %s로 갱신했습니다"
},
{
"id": "api.channel.post_user_add_remove_message_and_forget.error",
"translation": "들어옴/나감 메시지를 등록하는 데 실패함"
},
{
"id": "api.channel.remove.default.app_error",
"translation": "기본 채널로부터는 사용자를 제거할 수 없습니다 {{.Channel}}"
},
{
"id": "api.channel.remove_channel_member.type.app_error",
"translation": "사용자를 채널에서 제거할 수 없습니다."
},
{
"id": "api.channel.remove_member.removed",
"translation": "%v 가 채널에서 제거되었습니다."
},
{
"id": "api.channel.rename_channel.cant_rename_direct_messages.app_error",
"translation": "단체 메세지 채널 이름을 바꿀 수 없습니다."
},
{
"id": "api.channel.rename_channel.cant_rename_group_messages.app_error",
"translation": "단체 메세지 채널 이름을 바꿀 수 없습니다."
},
{
"id": "api.channel.update_channel.deleted.app_error",
"translation": "채널이 보존 처리 혹은 삭제되었습니다"
},
{
"id": "api.channel.update_channel.tried.app_error",
"translation": "기본 채널 {{.Channel}}에 적절하지 않은 갱신을 시도했습니다"
},
{
"id": "api.channel.update_channel_member_roles.scheme_role.app_error",
"translation": "제공된 역할은 스키마에 의해 관리되고 있으므로 채널 멤버에 의해 직접 적용될 수 없습니다."
},
{
"id": "api.channel.update_channel_scheme.license.error",
"translation": "귀하의 라이센스는 채널 스키마의 업데이트를 지원하지 않습니다."
},
{
"id": "api.channel.update_channel_scheme.scheme_scope.error",
"translation": "제공된 스키마는 채널의 스키마가 아니기 때문에 채널에 적용시킬 수 없습니다."
},
{
"id": "api.channel.update_team_member_roles.scheme_role.app_error",
"translation": "제공된 역할은 스키마에 의해 관리되고 있으므로 팀 멤버에 의해서 직접 적용될 수 없습니다."
},
{
"id": "api.command.admin_only.app_error",
"translation": "연동은 관리자만 사용할 수 있습니다."
},
{
"id": "api.command.command_post.forbidden.app_error",
"translation": "지정된 사용자는 지정된 팀의 멤버가 아닙니다."
},
{
"id": "api.command.disabled.app_error",
"translation": "시스템 관리자가 비활성화한 명령입니다."
},
{
"id": "api.command.duplicate_trigger.app_error",
"translation": "선택한 트리거 단어는 이미 사용중입니다. 다른 단어를 선택해주세요."
},
{
"id": "api.command.execute_command.create_post_failed.app_error",
"translation": "Command '{{.Trigger}}' failed to post response. Please contact your System Administrator."
},
{
"id": "api.command.execute_command.debug",
"translation": "실행 cmd=%v userId=%v"
},
{
"id": "api.command.execute_command.failed.app_error",
"translation": "트리거 '{{.Trigger}}'에 의한 명령어가 실패했습니다"
},
{
"id": "api.command.execute_command.failed_empty.app_error",
"translation": "트리거 '{{.Trigger}}'에 의한 명령어가 빈 응답을 반환했습니다"
},
{
"id": "api.command.execute_command.failed_resp.app_error",
"translation": "트리거 '{{.Trigger}}'에 의한 명령어가 응답 {{.Status}}을(를) 반환했습니다"
},
{
"id": "api.command.execute_command.not_found.app_error",
"translation": "'{{.Trigger}}' 트리거에 실행되는 커맨드를 찾지 못했습니다. \"/\"로 시작하는 메시지를 보내려면 메시지 시작 부분에 빈 공간을 추가하십시오."
},
{
"id": "api.command.execute_command.start.app_error",
"translation": "명령어 트리거를 찾을 수 없습니다"
},
{
"id": "api.command.invite_people.desc",
"translation": "여러분의 Mattermost 팀에게 초대 메일을 보내기"
},
{
"id": "api.command.invite_people.email_invitations_off",
"translation": "이메일 초대가 막혀있습니다, 초대가 보내지지 않았습니다."
},
{
"id": "api.command.invite_people.email_off",
"translation": "이메일이 설정되어 있지 않아서 초대메일 보낼 수 없음"
},
{
"id": "api.command.invite_people.fail",
"translation": "초대 이메일을 보낼 때 오류가 발생했습니다"
},
{
"id": "api.command.invite_people.hint",
"translation": "[[email protected] ...]"
},
{
"id": "api.command.invite_people.invite_off",
"translation": "이 서버의 사용자 생성는 중지되어 있습니다. 초대가 보내지지 않습니다"
},
{
"id": "api.command.invite_people.name",
"translation": "초대하기"
},
{
"id": "api.command.invite_people.no_email",
"translation": "정확한 이메일을 입력해주세요"
},
{
"id": "api.command.invite_people.sent",
"translation": "초대 이메일을 보냈습니다"
},
{
"id": "api.command.team_mismatch.app_error",
"translation": "팀들간의 명령어를 업데이트 할 수 없습니다."
},
{
"id": "api.command_away.desc",
"translation": "현재 상태를 자리비움으로 설정합니다."
},
{
"id": "api.command_away.name",
"translation": "자리 비움"
},
{
"id": "api.command_away.success",
"translation": "이제 자리비움 상태입니다."
},
{
"id": "api.command_channel_header.channel.app_error",
"translation": "현재 채널을 찾는 중 오류가 발생하였습니다."
},
{
"id": "api.command_channel_header.desc",
"translation": "채널 머릿말 수정"
},
{
"id": "api.command_channel_header.hint",
"translation": "[text]"
},
{
"id": "api.command_channel_header.message.app_error",
"translation": "문장은 /header 명령과 함께 입력되어야 합니다."
},
{
"id": "api.command_channel_header.name",
"translation": "머리글"
},
{
"id": "api.command_channel_header.permission.app_error",
"translation": "채널 헤더를 수정할 권한을 가지고 있지 않습니다."
},
{
"id": "api.command_channel_header.update_channel.app_error",
"translation": "현재 채널의 업데이트에 실패하였습니다."
},
{
"id": "api.command_channel_purpose.channel.app_error",
"translation": "채널 조회 중 오류가 발생하였습니다."
},
{
"id": "api.command_channel_purpose.desc",
"translation": "체널 설명 수정하기"
},
{
"id": "api.command_channel_purpose.direct_group.app_error",
"translation": "개인 메시지의 설명은 설정할 수 없습니다. 머리글을 설정하려면 /header 를 사용하세요."
},
{
"id": "api.command_channel_purpose.hint",
"translation": "[문자]"
},
{
"id": "api.command_channel_purpose.message.app_error",
"translation": "/purpose 명령어를 사용해서 메세지를 작성하세요."
},
{
"id": "api.command_channel_purpose.name",
"translation": "설명"
},
{
"id": "api.command_channel_purpose.permission.app_error",
"translation": "채널 설명 수정 권한을 가지고 있지 않습니다."
},
{
"id": "api.command_channel_purpose.update_channel.app_error",
"translation": "현재 채널의 업데이트에 실패하였습니다."
},
{
"id": "api.command_channel_remove.channel.app_error",
"translation": "현재 채널을 찾는 중 오류가 발생하였습니다."
},
{
"id": "api.command_channel_rename.channel.app_error",
"translation": "현재 채널을 찾는 중 오류가 발생하였습니다."
},
{
"id": "api.command_channel_rename.desc",
"translation": "채널 이름 바꾸기"
},
{
"id": "api.command_channel_rename.direct_group.app_error",
"translation": "개인 메시지 채널의 이름은 변경 할 수 없습니다."
},
{
"id": "api.command_channel_rename.hint",
"translation": "[문자]"
},
{
"id": "api.command_channel_rename.message.app_error",
"translation": "메시지는 /rename 명령어와 함께 제공되어야 합니다."
},
{
"id": "api.command_channel_rename.name",
"translation": "이름변경"
},
{
"id": "api.command_channel_rename.permission.app_error",
"translation": "채널 이름 수정 권한을 가지고 있지 않습니다."
},
{
"id": "api.command_channel_rename.too_long.app_error",
"translation": "채널 이름은 {{.Length}} 자 이하여야 합니다."
},
{
"id": "api.command_channel_rename.too_short.app_error",
"translation": "채널 이름은 {{.Length}} 자 이상이여야 합니다."
},
{
"id": "api.command_channel_rename.update_channel.app_error",
"translation": "현재 채널의 업데이트에 실패하였습니다."
},
{
"id": "api.command_code.desc",
"translation": "텍스트를 코드 블록으로 표시합니다."
},
{
"id": "api.command_code.hint",
"translation": "[문자]"
},
{
"id": "api.command_code.message.app_error",
"translation": "메시지는 /code 명령어와 함께 제공되어야 합니다."
},
{
"id": "api.command_code.name",
"translation": "코드"
},
{
"id": "api.command_collapse.desc",
"translation": "이미지 미리보기를 자동으로 접습니다"
},
{
"id": "api.command_collapse.name",
"translation": "닫기"
},
{
"id": "api.command_collapse.success",
"translation": "이미지 링크가 기본값으로 접히도록 설정됨"
},
{
"id": "api.command_dnd.desc",
"translation": "방해 금지모드는 데스크탑과 모바일 푸시 알림을 비활성화합니다."
},
{
"id": "api.command_dnd.disabled",
"translation": "방해 금지 모드가 해제되었습니다."
},
{
"id": "api.command_dnd.error",
"translation": "유저 상태 검색 중 오류가 발생하였습니다."
},
{
"id": "api.command_dnd.name",
"translation": "방해 금지"
},
{
"id": "api.command_dnd.success",
"translation": "방해 금지 모드가 활성화되었습니다. 방해 금지 모드가 비활성화 될 때 까지 데스크탑이나 모바일 푸시 알림을 받지 못합니다."
},
{
"id": "api.command_echo.delay.app_error",
"translation": "딜레이는 10000초보다 작아야 합니다"
},
{
"id": "api.command_echo.desc",
"translation": "당신의 계정에서 보낸 Echo back 텍스트"
},
{
"id": "api.command_echo.high_volume.app_error",
"translation": "에코 요청이 너무 많아 요청을 진행할 수 없습니다."
},
{
"id": "api.command_echo.hint",
"translation": "'메시지' [딜레이(초)]"
},
{
"id": "api.command_echo.message.app_error",
"translation": "메시지는 /echo 명령어와 함께 제공되어야 합니다."
},
{
"id": "api.command_echo.name",
"translation": "에코"
},
{
"id": "api.command_expand.desc",
"translation": "이미지 미리보기를 자동으로 접지 않습니다"
},
{
"id": "api.command_expand.name",
"translation": "확장"
},
{
"id": "api.command_expand.success",
"translation": "이미지 링크가 기본값으로 펼쳐지도록 설정됨"
},
{
"id": "api.command_expand_collapse.fail.app_error",
"translation": "미리보기를 펼치는 중 오류가 발생하였습니다."
},
{
"id": "api.command_groupmsg.desc",
"translation": "지정된 사용자에게 그룹 메시지를 보냅니다."
},
{
"id": "api.command_groupmsg.fail.app_error",
"translation": "사용자에게 메시지 전달 중 오류가 발생하였습니다."
},
{
"id": "api.command_groupmsg.group_fail.app_error",
"translation": "그룹 메시지 생성 중 오류가 발생하였습니다."
},
{
"id": "api.command_groupmsg.hint",
"translation": "@[username1],@[username2] '메시지'"
},
{
"id": "api.command_groupmsg.invalid_user.app_error",
"translation": {
"one": "사용자를 찾을 수 없습니다 : {{.Users}}사용자들을 찾을 수 없습니다 : {{.Users}}",
"other": ""
}
},
{
"id": "api.command_groupmsg.max_users.app_error",
"translation": "그룹 메시지는 최대 {{.MaxUsers}}명으로 제한되어 있습니다."
},
{
"id": "api.command_groupmsg.min_users.app_error",
"translation": "그룹 메시지는 최소 {{.MaxUsers}}명으로 제한되어 있습니다."
},
{
"id": "api.command_groupmsg.name",
"translation": "메시지"
},
{
"id": "api.command_groupmsg.permission.app_error",
"translation": "사용자는 새로운 그룹 메시지를 만들 적절한 권한이 없습니다."
},
{
"id": "api.command_help.desc",
"translation": "Mattermost 도움말 페이지 열기"
},
{
"id": "api.command_help.name",
"translation": "도움말"
},
{
"id": "api.command_invite.channel.app_error",
"translation": "현재 채널 조회 중 오류가 발생하였습니다."
},
{
"id": "api.command_invite.channel.error",
"translation": "{{.Channel}} 채널을 찾을 수 없습니다. 채널을 식별하려면 [채널 핸들] (https://about.mattermost.com/default-channel-handle-documentation) 을 사용하세요."
},
{
"id": "api.command_invite.desc",
"translation": "사용자를 채널에 초대 합니다."
},
{
"id": "api.command_invite.directchannel.app_error",
"translation": "Direct Message 채널에서 사용자를 추가할 수 없습니다."
},
{
"id": "api.command_invite.fail.app_error",
"translation": "채널에 가입 중 오류가 발생했습니다."
},
{
"id": "api.command_invite.hint",
"translation": "@[사용자 이름] ~[채널]"
},
{
"id": "api.command_invite.missing_message.app_error",
"translation": "사용자 이름 및 채널이 없습니다."
},
{
"id": "api.command_invite.missing_user.app_error",
"translation": "사용자를 찾을 수 없습니다. 시스템 관리자가 사용자를 비활성화 했을 수 있습니다."
},
{
"id": "api.command_invite.name",
"translation": "초대"
},
{
"id": "api.command_invite.permission.app_error",
"translation": "{{.Channel}} 에 {{.User}}를 추가할 권한이 없습니다."
},
{
"id": "api.command_invite.private_channel.app_error",
"translation": "{{.Channel}} 채널을 찾을 수 없습니다. 채널을 식별하려면 채널 핸들을 사용하십시오."
},
{
"id": "api.command_invite.success",
"translation": "{{.Channel}} 채널에 {{.User}} 가 추가되었습니다."
},
{
"id": "api.command_invite.user_already_in_channel.app_error",
"translation": "채널에 이미 {{.User}} 가 있습니다."
},
{
"id": "api.command_invite_people.permission.app_error",
"translation": "이 서버로 새로운 사용자를 초대할 권한이 없습니다."
},
{
"id": "api.command_join.desc",
"translation": "열린 채널에 참가"
},
{
"id": "api.command_join.fail.app_error",
"translation": "채널에 참가하는 중 오류가 발생했습니다."
},
{
"id": "api.command_join.hint",
"translation": "~[채널]"
},
{
"id": "api.command_join.list.app_error",
"translation": "채널 목록을 나열하는 중 오류가 발생하였습니다."
},
{
"id": "api.command_join.missing.app_error",
"translation": "채널을 불러올 수 없습니다."
},
{
"id": "api.command_join.name",
"translation": "참가"
},
{
"id": "api.command_kick.name",
"translation": "킥"
},
{
"id": "api.command_leave.desc",
"translation": "현재 채널 떠나기"
},
{
"id": "api.command_leave.fail.app_error",
"translation": "채널에서 나가는 중 오류가 발생했습니다."
},
{
"id": "api.command_leave.name",
"translation": "떠나기"
},
{
"id": "api.command_logout.desc",
"translation": "Mattermost 로그아웃"
},
{
"id": "api.command_logout.fail_message",
"translation": "로그아웃 실패"
},
{
"id": "api.command_logout.name",
"translation": "로그아웃"
},
{
"id": "api.command_me.desc",
"translation": "액션 실행"
},
{
"id": "api.command_me.hint",
"translation": "[메시지]"
},
{
"id": "api.command_me.name",
"translation": "나"
},
{
"id": "api.command_msg.desc",
"translation": "유저에게 개인 메시지 전송"
},
{
"id": "api.command_msg.dm_fail.app_error",
"translation": "메시지 암호화 중 오류가 발생하였습니다."
},
{
"id": "api.command_msg.fail.app_error",
"translation": "사용자에게 메시지 전달 중 오류가 발생하였습니다."
},
{
"id": "api.command_msg.hint",
"translation": "@[유저이름] '메세지'"
},
{
"id": "api.command_msg.missing.app_error",
"translation": "사용자를 찾을 수 없습니다."
},
{
"id": "api.command_msg.name",
"translation": "메시지"
},
{
"id": "api.command_msg.permission.app_error",
"translation": "해당 사용자에게 개인 메시지를 보낼 권한이 없습니다."
},
{
"id": "api.command_mute.desc",
"translation": "지정된 현재 채널 또는[채널]에 대해 데스크 톱, 이메일 및 푸시 알림 기능을 해제합니다."
},
{
"id": "api.command_mute.error",
"translation": "채널{{.Channel}} 을(를) 찾을 수 없습니다. 채널을 식별하려면[채널 핸들](https://about.mattermost.com/default-channel-handle-documentation) 을 사용하십시오."
},
{
"id": "api.command_mute.hint",
"translation": "~[채널]"
},
{
"id": "api.command_mute.name",
"translation": "음소거"
},
{
"id": "api.command_mute.no_channel.error",
"translation": "지정한 채널을 찾을 수 없습니다. 채널을 식별하려면[채널 핸들](https://about.mattermost.com/default-channel-handle-documentation)을 사용하십시오."
},
{
"id": "api.command_mute.not_member.error",
"translation": "사용자가 멤버가 아니기 때문에 채널 {{.Channel}}의 음을 소거할 수 없습니다."
},
{
"id": "api.command_mute.success_mute",
"translation": "채널 음소거가 해제될 때까지{{.Channel}}에 대한 알림을 받지 못 합니다."
},
{
"id": "api.command_mute.success_mute_direct_msg",
"translation": "채널 음소거를 끄지 않으면 이 채널에 대한 알림을 받지 못 합니다."
},
{
"id": "api.command_mute.success_unmute",
"translation": "{{.Channel}} 이 더 이상 음소거가 상태가 아닙니다."
},
{
"id": "api.command_mute.success_unmute_direct_msg",
"translation": "이 채널은 더 이상 음소거 상태가 아닙니다."
},
{
"id": "api.command_offline.desc",
"translation": "현재 상태를 오프라인으로 설정합니다."
},
{
"id": "api.command_offline.name",
"translation": "오프라인"
},
{
"id": "api.command_offline.success",
"translation": "이제 오프라인 상태입니다."
},
{
"id": "api.command_online.desc",
"translation": "현재 상태를 온라인으로 설정합니다."
},
{
"id": "api.command_online.name",
"translation": "온라인"
},
{
"id": "api.command_online.success",
"translation": "이제 온라인 상태입니다."
},
{
"id": "api.command_open.name",
"translation": "열기"
},
{
"id": "api.command_remove.desc",
"translation": "채널에서 멤버 제거하기"
},
{
"id": "api.command_remove.direct_group.app_error",
"translation": "개인 메시지 채널에서 다른 사용자를 제거할 수 없습니다."
},
{
"id": "api.command_remove.hint",
"translation": "@[사용자 이름]"
},
{
"id": "api.command_remove.message.app_error",
"translation": "/remove 혹은 /kick 명령어를 사용해서 메시지를 작성하세요."
},
{
"id": "api.command_remove.missing.app_error",
"translation": "사용자를 찾을 수 없습니다. 시스템 관리자가 사용자를 비활성화 했을 수 있습니다."
},
{
"id": "api.command_remove.name",
"translation": "제거"
},
{
"id": "api.command_remove.permission.app_error",
"translation": "멤버 삭제 권한을 가지고 있지 않습니다."
},
{
"id": "api.command_remove.user_not_in_channel",
"translation": "{{.Username}}은 이 채널의 사용자가 아닙니다."
},
{
"id": "api.command_search.desc",
"translation": "메세지에서 문장 찾기"
},
{
"id": "api.command_search.hint",
"translation": "[문자]"
},
{
"id": "api.command_search.name",
"translation": "찾기"
},
{
"id": "api.command_search.unsupported.app_error",
"translation": "당신의 기기에서는 검색 명령을 지원하지 않습니다"
},
{
"id": "api.command_settings.desc",
"translation": "계정 설정 화면 열기"
},
{
"id": "api.command_settings.name",
"translation": "설정"
},
{
"id": "api.command_settings.unsupported.app_error",
"translation": "당신의 기기에서는 설정 명령을 지원하지 않습니다"
},
{
"id": "api.command_shortcuts.desc",
"translation": "단축키 목록을 표시합니다."
},
{
"id": "api.command_shortcuts.name",
"translation": "단축키"
},
{
"id": "api.command_shortcuts.unsupported.app_error",
"translation": "해당 기기에서 단축키를 지원하지 않습니다."
},
{
"id": "api.command_shrug.desc",
"translation": "¯\\_(ツ)_/¯를 메시지에 추가"
},
{
"id": "api.command_shrug.hint",
"translation": "[메시지]"
},
{
"id": "api.command_shrug.name",
"translation": "shrug"
},
{
"id": "api.config.client.old_format.app_error",
"translation": "사용자 설정을 위한 새로운 형식은 아직 지원되지 않습니다. 명령문에서 format=old 를 명시해 주세요."
},
{
"id": "api.context.404.app_error",
"translation": "죄송합니다, 페이지를 찾을 수 없습니다."
},
{
"id": "api.context.invalid_body_param.app_error",
"translation": "요청 본문에서 {{.Name}}이(가) 없거나 잘못됨"
},
{
"id": "api.context.invalid_param.app_error",
"translation": "적절하지 않은 {{.Name}} 파라미터"
},
{
"id": "api.context.invalid_token.error",
"translation": "잘못된 세션 token={{.Token}}, err={{.Error}}"
},
{
"id": "api.context.invalid_url_param.app_error",
"translation": "요청 URL에서 {{.Name}} 변수가 없거나 잘못됨"
},
{
"id": "api.context.mfa_required.app_error",
"translation": "이 서버에는 다단계 인증이 요구됩니다."
},
{
"id": "api.context.permissions.app_error",
"translation": "작업을 할 수 있는 권한이 없습니다"
},
{
"id": "api.context.session_expired.app_error",
"translation": "잘못되거나 만료된 세션입니다, 다시 로그인 해주세요."
},
{
"id": "api.context.token_provided.app_error",
"translation": "OAuth 세션이 아님에도 쿼리 문자열에 토큰이 제공되었습니다"
},
{
"id": "api.create_terms_of_service.custom_terms_of_service_disabled.app_error",
"translation": "Custom terms of service feature is disabled"
},