summaryrefslogtreecommitdiffstats
path: root/webapp/i18n/ko.json
blob: 9f2ef93b2f18f0f5016b5b784362417f4ea35e4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
{
  "about.close": "닫기",
  "about.copyright": "Copyright 2016 Mattermost, Inc. All rights reserved",
  "about.database": "데이터베이스:",
  "about.date": "빌드 일자:",
  "about.enterpriseEditionLearn": "엔터프라이즈 에디션에 대한 자세한 정보 ",
  "about.enterpriseEditionSt": "개인 방화벽 안에 구축 가능한 현대적인 커뮤니케이션",
  "about.enterpriseEditione1": "엔터프라이즈 에디션 E1",
  "about.hash": "빌드 해쉬:",
  "about.hashee": "EE 빌드 해쉬:",
  "about.licensed": "다음 사용자에게 허가되었습니다:",
  "about.number": "빌드 넘버:",
  "about.teamEditionLearn": "Mattermost 커뮤니티에 참여 ",
  "about.teamEditionSt": "모든 커뮤니케이션 활동을 한 곳에서, 쉽게 접근하고 빠르게 검색할 수 있습니다.",
  "about.teamEditiont0": "팀 에디션 T0",
  "about.teamEditiont1": "엔터프라이즈 에디션 E1",
  "about.title": "Mattermost에 대해",
  "about.version": "버전:",
  "access_history.title": "접근 기록",
  "activity_log.activeSessions": "활성 세션",
  "activity_log.browser": "브라우저: {browser}",
  "activity_log.firstTime": "첫 활성화 시간: {date}, {time}",
  "activity_log.lastActivity": "최근 활동: {date}, {time}",
  "activity_log.logout": "로그아웃",
  "activity_log.moreInfo": "상세 정보",
  "activity_log.os": "OS: {os}",
  "activity_log.sessionId": "세션 ID: {id}",
  "activity_log.sessionsDescription": "세션은 기기의 새 브라우저로 로그인할때 생성됩니다. 세션을 사용하면 시스템에서 정한 시간동안은 다시 로그인할 필요가 없습니다. '로그아웃' 버튼을 사용해서 세션을 종료할 수 있습니다.",
  "activity_log_modal.android": "안드로이드",
  "activity_log_modal.androidNativeApp": "안드로이드 앱",
  "activity_log_modal.iphoneNativeApp": "아이폰 앱",
  "add_command.autocomplete": "자동완성",
  "add_command.autocomplete.help": "(선택사항) 명령어가 자동완성 목록에서 보이게 합니다.",
  "add_command.autocompleteDescription": "자동완성 설명",
  "add_command.autocompleteDescription.help": "자동완성 목록에서 보여질 부가적인 설명을 입력하세요.",
  "add_command.autocompleteDescription.placeholder": "예시: \"환자 기록에 대한 검색결과를 보여줍니다\"",
  "add_command.autocompleteHint": "자동완성 힌트",
  "add_command.autocompleteHint.help": "(선택사항) 자동완성 목록에서 보여질, 명령어와 관련된 매개변수 도움말을 입력하세요.",
  "add_command.autocompleteHint.placeholder": "예시: [환자 이름]",
  "add_command.cancel": "취소",
  "add_command.description": "설명",
  "add_command.description.help": "명령어에 대한 설명을 입력하세요.",
  "add_command.displayName": "표시명",
  "add_command.displayName.help": "명령어의 표시명을 64글자 이내로 입력하세요.",
  "add_command.header": "추가",
  "add_command.iconUrl": "응답 아이콘",
  "add_command.iconUrl.help": "Choose a profile picture override for the post responses to this slash command. Enter the URL of a .png or .jpg file at least 128 pixels by 128 pixels.",
  "add_command.iconUrl.placeholder": "https://www.example.com/myicon.png",
  "add_command.method": "요청 메소드",
  "add_command.method.get": "GET",
  "add_command.method.help": "The type of command request issued to the Request URL.",
  "add_command.method.post": "POST",
  "add_command.save": "저장",
  "add_command.trigger": "명령어 트리거 단어",
  "add_command.trigger.help": "Trigger word must be unique, and cannot begin with a slash or contain any spaces.",
  "add_command.trigger.helpExamples": "예시: client, employee, patient, weather",
  "add_command.trigger.helpReserved": "사용할 수 없음: {link}",
  "add_command.trigger.helpReservedLinkText": "내장된 명령어 목록을 확인하세요.",
  "add_command.trigger.placeholder": "명령어 트리거 예시. \"hello\"",
  "add_command.triggerInvalidLength": "단어가 {min}글자 이상, {max}글자 이하여야 합니다.",
  "add_command.triggerInvalidSlash": "단어 앞에 /를 사용할 수 없습니다.",
  "add_command.triggerInvalidSpace": "단어에 공백을 포함할 수 없습니다.",
  "add_command.triggerRequired": "단어가 필요합니다.",
  "add_command.url": "요청 URL",
  "add_command.url.help": "The callback URL to receive the HTTP POST or GET event request when the slash command is run.",
  "add_command.url.placeholder": "URL 주소는 http:// 또는 https:// 로 시작되어야 합니다",
  "add_command.urlRequired": "요청 URL을 입력하세요.",
  "add_command.username": "응답 유저 이름",
  "add_command.username.help": "Choose a username override for responses for this slash command. Usernames can consist of up to 22 characters consisting of lowercase letters, numbers and they symbols \"-\", \"_\", and \".\" .",
  "add_command.username.placeholder": "사용자 이름",
  "add_emoji.cancel": "취소",
  "add_emoji.header": "추가",
  "add_emoji.image": "이미지",
  "add_emoji.image.button": "선택",
  "add_emoji.image.help": "Choose the image for your emoji. The image can be a gif, png, or jpeg file with a max size of 64 KB and dimensions up to 128 by 128 pixels.",
  "add_emoji.imageRequired": "이모티콘 이미지가 필요합니다.",
  "add_emoji.name": "이름",
  "add_emoji.name.help": "Choose a name for your emoji made of up to 64 characters consisting of lowercase letters, numbers, and the symbols '-' and '_'.",
  "add_emoji.nameInvalid": "An emoji's name can only contain numbers, letters, and the symbols '-' and '_'.",
  "add_emoji.nameRequired": "이모티콘 이름이 필요합니다.",
  "add_emoji.nameTaken": "This name is already in use by a system emoji. Please choose another name.",
  "add_emoji.preview": "미리보기",
  "add_emoji.preview.sentence": "This is a sentence with {image} in it.",
  "add_emoji.save": "저장",
  "add_incoming_webhook.cancel": "취소",
  "add_incoming_webhook.channel": "채널",
  "add_incoming_webhook.channel.help": "Public channel or private group that receives the webhook payloads. You must belong to the private group when setting up the webhook.",
  "add_incoming_webhook.channelRequired": "유효한 채널을 선택하세요.",
  "add_incoming_webhook.description": "설명",
  "add_incoming_webhook.description.help": "Incoming webhook에 대한 설명을 입력하세요.",
  "add_incoming_webhook.displayName": "표시명",
  "add_incoming_webhook.displayName.help": "Incoming webhook의 표시명을 64글자 이내로 입력하세요.",
  "add_incoming_webhook.header": "추가",
  "add_incoming_webhook.name": "이름",
  "add_incoming_webhook.save": "저장",
  "add_oauth_app.callbackUrls.help": "The redirect URIs to which the service will redirect users after accepting or denying authorization of your application, and which will handle authorization codes or access tokens. Must be a valid URL and start with http:// or https://.",
  "add_oauth_app.callbackUrlsRequired": "One or more callback URLs are required",
  "add_oauth_app.description.help": "Description for your OAuth 2.0 application.",
  "add_oauth_app.descriptionRequired": "Description for the OAuth 2.0 application is required.",
  "add_oauth_app.header": "추가",
  "add_oauth_app.homepage.help": "The URL for the homepage of the OAuth 2.0 application. Make sure you use HTTP or HTTPS in your URL depending on your server configuration.",
  "add_oauth_app.homepageRequired": "Homepage for the OAuth 2.0 application is required.",
  "add_oauth_app.icon.help": "(Optional) The URL of the image used for your OAuth 2.0 application. Make sure you use HTTP or HTTPS in your URL.",
  "add_oauth_app.name.help": "Display name for your OAuth 2.0 application made of up to 64 characters.",
  "add_oauth_app.nameRequired": "Name for the OAuth 2.0 application is required.",
  "add_oauth_app.trusted.help": "When true, the OAuth 2.0 application is considered trusted by the Mattermost server and doesn't require the user to accept authorization. When false, an additional window will appear, asking the user to accept or deny the authorization.",
  "add_outgoing_webhook.callbackUrls": "Callback URLs (One Per Line)",
  "add_outgoing_webhook.callbackUrls.help": "The URL that messages will be sent to.",
  "add_outgoing_webhook.callbackUrlsRequired": "One or more callback URLs are required",
  "add_outgoing_webhook.cancel": "취소",
  "add_outgoing_webhook.channel": "채널",
  "add_outgoing_webhook.channel.help": "Public channel to receive webhook payloads. Optional if at least one Trigger Word is specified.",
  "add_outgoing_webhook.contentType.help1": "Choose the content type by which the response will be sent.",
  "add_outgoing_webhook.contentType.help2": "If application/x-www-form-urlencoded is chosen, the server assumes you will be encoding the parameters in a URL format.",
  "add_outgoing_webhook.contentType.help3": "If application/json is chosen, the server assumes you will posting JSON data.",
  "add_outgoing_webhook.content_Type": "콘텐츠 형식",
  "add_outgoing_webhook.description": "설명",
  "add_outgoing_webhook.description.help": "Description for your outgoing webhook.",
  "add_outgoing_webhook.displayName": "표시명",
  "add_outgoing_webhook.displayName.help": "Display name for your outgoing webhook made of up to 64 characters.",
  "add_outgoing_webhook.header": "추가",
  "add_outgoing_webhook.name": "이름",
  "add_outgoing_webhook.save": "저장",
  "add_outgoing_webhook.triggerWords": "트리거 단어 (줄 당 하나씩 입력합니다)",
  "add_outgoing_webhook.triggerWords.help": "Messages that start with one of the specified words will trigger the outgoing webhook. Optional if Channel is selected.",
  "add_outgoing_webhook.triggerWordsOrChannelRequired": "유효한 채널과 트리거 단어 목록을 입력하세요",
  "add_outgoing_webhook.triggerWordsTriggerWhen": "Trigger When",
  "add_outgoing_webhook.triggerWordsTriggerWhen.help": "Choose when to trigger the outgoing webhook; if the first word of a message matches a Trigger Word exactly, or if it starts with a Trigger Word.",
  "add_outgoing_webhook.triggerWordsTriggerWhenFullWord": "First word matches a trigger word exactly",
  "add_outgoing_webhook.triggerWordsTriggerWhenStartsWith": "First word starts with a trigger word",
  "admin.advance.cluster": "High Availability (Beta)",
  "admin.audits.reload": "Reload User Activity Logs",
  "admin.audits.title": "User Activity Logs",
  "admin.authentication.email": "Email Auth",
  "admin.authentication.gitlab": "GitLab",
  "admin.authentication.oauth": "OAuth 2.0",
  "admin.authentication.saml": "SAML",
  "admin.banner.heading": "Note:",
  "admin.cluster.enableDescription": "활성화 하면 Mattermost가 고 가용성 모드로 동작합니다. 고 가용성 모드 설정에 대한 자세한 내용은 이 <a href=\"http://docs.mattermost.com/deployment/cluster.html\" target=\"_blank\">문서</a>를 참고하세요.",
  "admin.cluster.enableTitle": "Enable High Availability Mode:",
  "admin.cluster.interNodeListenAddressDesc": "The address the server will listen on for communicating with other servers.",
  "admin.cluster.interNodeListenAddressEx": "예시 \":8075\"",
  "admin.cluster.interNodeListenAddressTitle": "Inter-Node Listen Address:",
  "admin.cluster.interNodeUrlsDesc": "The internal/private URLs of all the Mattermost servers separated by commas.",
  "admin.cluster.interNodeUrlsEx": "Ex \"http://10.10.10.30, http://10.10.10.31\"",
  "admin.cluster.interNodeUrlsTitle": "Inter-Node URLs:",
  "admin.cluster.loadedFrom": "This configuration file was loaded from Node ID {clusterId}. Please see the Troubleshooting Guide in our <a href=\"http://docs.mattermost.com/deployment/cluster.html\" target=\"_blank\">documentation</a> if you are accessing the System Console through a load balancer and experiencing issues.",
  "admin.cluster.noteDescription": "Changing properties in this section will require a server restart before taking effect. When High Availability mode is enabled, the System Console is set to read-only and can only be changed from the configuration file.",
  "admin.cluster.should_not_change": "WARNING: These settings may not sync with the other servers in the cluster. High Availability inter-node communication will not start until you modify the config.json to be identical on all servers and restart Mattermost. Please see the <a href=\"http://docs.mattermost.com/deployment/cluster.html\" target=\"_blank\">documentation</a> on how to add or remove a server from the cluster. If you are accessing the System Console through a load balancer and experiencing issues, please see the Troubleshooting Guide in our <a href=\"http://docs.mattermost.com/deployment/cluster.html\" target=\"_blank\">documentation</a>.",
  "admin.cluster.status_table.config_hash": "Config File MD5",
  "admin.cluster.status_table.hostname": "Hostname",
  "admin.cluster.status_table.id": "Node ID",
  "admin.cluster.status_table.reload": " Reload Cluster Status",
  "admin.cluster.status_table.status": "상태",
  "admin.cluster.status_table.url": "Inter-Node URL",
  "admin.cluster.status_table.version": "버전:",
  "admin.compliance.directoryDescription": "Directory to which compliance reports are written. If blank, will be set to ./data/.",
  "admin.compliance.directoryExample": "예시: \"./data/\"",
  "admin.compliance.directoryTitle": "Compliance Report Directory:",
  "admin.compliance.enableDailyDesc": "When true, Mattermost will generate a daily compliance report.",
  "admin.compliance.enableDailyTitle": "일일 보고:",
  "admin.compliance.enableDesc": "When true, Mattermost allows compliance reporting from the <strong>Compliance and Auditing</strong> tab. See <a href=\"https://docs.mattermost.com/administration/compliance.html\" target=\"_blank\">documentation</a> to learn more.",
  "admin.compliance.enableTitle": "Enable Compliance Reporting:",
  "admin.compliance.false": "비활성화",
  "admin.compliance.noLicense": "<h4 class=\"banner__heading\">Note:</h4><p>Compliance 는 엔터프라이즈 에디션의 기능입니다. 현재 라이센스는 Compliance 기능을 지원하지 않습니다. <a href=\"http://mattermost.com\" target=\"_blank\">이 곳</a>에서 엔터프라이즈 라이센스에 대한 정보를 확인하세요.</p>",
  "admin.compliance.save": "저장",
  "admin.compliance.saving": "설정 저장중...",
  "admin.compliance.title": "Compliance 설정",
  "admin.compliance.true": "활성화",
  "admin.compliance_reports.desc": "작업명:",
  "admin.compliance_reports.desc_placeholder": "예시. \"Audit 445 for HR\"",
  "admin.compliance_reports.emails": "이메일:",
  "admin.compliance_reports.emails_placeholder": "예시. \"bill@example.com, bob@example.com\"",
  "admin.compliance_reports.from": "발신:",
  "admin.compliance_reports.from_placeholder": "예시. \"2016-03-11\"",
  "admin.compliance_reports.keywords": "키워드:",
  "admin.compliance_reports.keywords_placeholder": "예시. \"shorting stock\"",
  "admin.compliance_reports.reload": "Reload Completed Compliance Reports",
  "admin.compliance_reports.run": "Run Compliance Report",
  "admin.compliance_reports.title": "Compliance Reports",
  "admin.compliance_reports.to": "수신:",
  "admin.compliance_reports.to_placeholder": "예시. \"2016-03-15\"",
  "admin.compliance_table.desc": "설명",
  "admin.compliance_table.download": "다운로드",
  "admin.compliance_table.params": "Params",
  "admin.compliance_table.records": "기록",
  "admin.compliance_table.status": "상태",
  "admin.compliance_table.timestamp": "Timestamp",
  "admin.compliance_table.type": "종류",
  "admin.compliance_table.userId": "Requested By",
  "admin.connectionSecurityNone": "None",
  "admin.connectionSecurityNoneDescription": "Mattermost will connect over an unsecure connection.",
  "admin.connectionSecurityStart": "STARTTLS",
  "admin.connectionSecurityStartDescription": "Takes an existing insecure connection and attempts to upgrade it to a secure connection using TLS.",
  "admin.connectionSecurityTest": "연결 테스트",
  "admin.connectionSecurityTitle": "연결 보안:",
  "admin.connectionSecurityTls": "TLS",
  "admin.connectionSecurityTlsDescription": "Encrypts the communication between Mattermost and your server.",
  "admin.customization.androidAppDownloadLinkDesc": "Add a link to download the Android app. Users who access the site on a mobile web browser will be prompted with a page giving them the option to download the app. Leave this field blank to prevent the page from appearing.",
  "admin.customization.androidAppDownloadLinkTitle": "안드로이드 앱 다운로드 링크:",
  "admin.customization.appDownloadLinkDesc": "Add a link to a download page for the Mattermost apps. When a link is present, an option to \"Download Mattermost Apps\" will be added in the Main Menu so users can find the download page. Leave this field blank to hide the option from the Main Menu.",
  "admin.customization.appDownloadLinkTitle": "Mattermost Apps Download Page Link:",
  "admin.customization.customBrand": "사용자 정의 브랜딩",
  "admin.customization.customEmoji": "사용자 정의 이모티콘",
  "admin.customization.enableCustomEmojiDesc": "Enable users to create custom emoji for use in messages. When enabled, Custom Emoji settings can be accessed by switching to a team and clicking the three dots above the channel sidebar, and selecting \"Custom Emoji\".",
  "admin.customization.enableCustomEmojiTitle": "사용자 정의 이모티콘 활성화:",
  "admin.customization.iosAppDownloadLinkDesc": "Add a link to download the iOS app. Users who access the site on a mobile web browser will be prompted with a page giving them the option to download the app. Leave this field blank to prevent the page from appearing.",
  "admin.customization.iosAppDownloadLinkTitle": "iOS 앱 다운로드 링크:",
  "admin.customization.nativeAppLinks": "네이티브 앱 링크",
  "admin.customization.restrictCustomEmojiCreationAdmin": "Allow System and Team Admins to create custom emoji",
  "admin.customization.restrictCustomEmojiCreationAll": "Allow everyone to create custom emoji",
  "admin.customization.restrictCustomEmojiCreationDesc": "Restrict the creation of custom emoji to certain users.",
  "admin.customization.restrictCustomEmojiCreationSystemAdmin": "Only allow System Admins to create custom emoji",
  "admin.customization.restrictCustomEmojiCreationTitle": "Restrict Custom Emoji Creation:",
  "admin.customization.support": "Legal and Support",
  "admin.database.title": "데이터베이스 설정",
  "admin.developer.title": "개발자 설정",
  "admin.email.agreeHPNS": " I understand and accept the Mattermost Hosted Push Notification Service <a href=\"https://about.mattermost.com/hpns-terms/\" target=\"_blank\">Terms of Service</a> and <a href=\"https://about.mattermost.com/hpns-privacy/\" target=\"_blank\">Privacy Policy</a>.",
  "admin.email.allowEmailSignInDescription": "설정 시, Mattermost는 사용자들이 그들의 이메일과 비밀번호로 로그인할 수 있게 합니다.",
  "admin.email.allowEmailSignInTitle": "Enable sign-in with email: ",
  "admin.email.allowSignupDescription": "When true, Mattermost allows team creation and account signup using email and password.  This value should be false only when you want to limit signup to a single-sign-on service like OAuth or LDAP.",
  "admin.email.allowSignupTitle": "Enable account creation with email: ",
  "admin.email.allowUsernameSignInDescription": "When true, Mattermost allows users to sign in using their username and password.  This setting is typically only used when email verification is disabled.",
  "admin.email.allowUsernameSignInTitle": "Enable sign-in with username: ",
  "admin.email.connectionSecurityTest": "연결 테스트",
  "admin.email.easHelp": "Learn more about compiling and deploying your own mobile apps from an <a href=\"http://docs.mattermost.com/deployment/push.html#enterprise-app-store-eas\" target=\"_blank\">Enterprise App Store</a>.",
  "admin.email.emailFail": "연결을 실패했습니다: {error}",
  "admin.email.emailSuccess": "No errors were reported while sending an email.  Please check your inbox to make sure.",
  "admin.email.fullPushNotification": "Send full message snippet",
  "admin.email.genericPushNotification": "Send generic description with user and channel names",
  "admin.email.inviteSaltDescription": "32-character salt added to signing of email invites. Randomly generated on install. Click \"Regenerate\" to create new salt.",
  "admin.email.inviteSaltExample": "예시: \"bjlSR4QqkXFBr7TP4oDzlfZmcNuH9Yo\"",
  "admin.email.inviteSaltTitle": "Email Invite Salt:",
  "admin.email.mhpns": "Use encrypted, production-quality HPNS connection to iOS and Android apps",
  "admin.email.mhpnsHelp": "iTunes에서 <a href=\"https://itunes.apple.com/us/app/mattermost/id984966508?mt=8\" target=\"_blank\">Mattermost iOS 앱</a> 다운로드. Google Play에서 <a href=\"https://play.google.com/store/apps/details?id=com.mattermost.mattermost&hl=en\" target=\"_blank\">Mattermost Android 앱</a> 다운로드.  <a href=\"http://docs.mattermost.com/deployment/push.html#hosted-push-notifications-service-hpns\" target=\"_blank\">HPNS</a>에 대해 알아보기.",
  "admin.email.mtpns": "IOS, Android 앱을 TPNS와 사용합니다.",
  "admin.email.mtpnsHelp": "iTunes에서 <a href=\"https://itunes.apple.com/us/app/mattermost/id984966508?mt=8\" target=\"_blank\">Mattermost iOS 앱</a> 다운로드. Google Play에서 <a href=\"https://play.google.com/store/apps/details?id=com.mattermost.mattermost&hl=en\" target=\"_blank\">Mattermost Android 앱</a> 다운로드. <a href=\"http://docs.mattermost.com/deployment/push.html#test-push-notifications-service-tpns\" target=\"_blank\">TPNS</a>에 대해 알아보기.",
  "admin.email.nofificationOrganizationExample": "예시. \"© ABC Corporation, 565 Knight Way, Palo Alto, California, 94305, USA\"",
  "admin.email.notificationDisplayDescription": "Display name on email account used when sending notification emails from Mattermost.",
  "admin.email.notificationDisplayExample": "Ex: \"Mattermost Notification\", \"System\", \"No-Reply\"",
  "admin.email.notificationDisplayTitle": "알림 표시명:",
  "admin.email.notificationEmailDescription": "Email address displayed on email account used when sending notification emails from Mattermost.",
  "admin.email.notificationEmailExample": "예시: \"mattermost@yourcompany.com\", \"admin@yourcompany.com\"",
  "admin.email.notificationEmailTitle": "알림 이메일 주소:",
  "admin.email.notificationOrganization": "Notification Footer Mailing Address:",
  "admin.email.notificationOrganizationDescription": "Organization name and address displayed on email notifications from Mattermost, such as \"© ABC Corporation, 565 Knight Way, Palo Alto, California, 94305, USA\". If the field is left empty, the organization name and address will not be displayed.",
  "admin.email.notificationsDescription": "Typically set to true in production. When true, Mattermost attempts to send email notifications. Developers may set this field to false to skip email setup for faster development.<br />Setting this to true removes the Preview Mode banner (requires logging out and logging back in after setting is changed).",
  "admin.email.notificationsTitle": "Enable Email Notifications: ",
  "admin.email.passwordSaltDescription": "32-character salt added to signing of password reset emails. Randomly generated on install. Click \"Regenerate\" to create new salt.",
  "admin.email.passwordSaltExample": "예시: \"bjlSR4QqkXFBr7TP4oDzlfZmcNuH9Yo\"",
  "admin.email.passwordSaltTitle": "Password Reset Salt:",
  "admin.email.pushContentDesc": "Selecting \"Send generic description with user and channel names\" provides push notifications with generic messages, including names of users and channels but no specific details from the message text.<br /><br />Selecting \"Send full message snippet\" sends excerpts from messages triggering notifications with specifics and may include confidential information sent in messages. If your Push Notification Service is outside your firewall, it is HIGHLY RECOMMENDED this option only be used with an \"https\" protocol to encrypt the connection.",
  "admin.email.pushContentTitle": "Push Notification Contents:",
  "admin.email.pushDesc": "Typically set to true in production. When true, Mattermost attempts to send iOS and Android push notifications through the push notification server.",
  "admin.email.pushOff": "Do not send push notifications",
  "admin.email.pushOffHelp": "Please see <a href=\"http://docs.mattermost.com/deployment/push.html#push-notifications-and-mobile-devices\" target=\"_blank\">documentation on push notifications</a> to learn more about setup options.",
  "admin.email.pushServerDesc": "Location of Mattermost push notification service you can set up behind your firewall using https://github.com/mattermost/push-proxy. For testing you can use http://push-test.mattermost.com, which connects to the sample Mattermost iOS app in the public Apple AppStore. Please do not use test service for production deployments.",
  "admin.email.pushServerEx": "E.g.: \"http://push-test.mattermost.com\"",
  "admin.email.pushServerTitle": "Push Notification Server:",
  "admin.email.pushTitle": "Enable Push Notifications: ",
  "admin.email.requireVerificationDescription": "Typically set to true in production. When true, Mattermost requires email verification after account creation prior to allowing login. Developers may set this field to false so skip sending verification emails for faster development.",
  "admin.email.requireVerificationTitle": "Require Email Verification: ",
  "admin.email.selfPush": "Manually enter Push Notification Service location",
  "admin.email.smtpPasswordDescription": " Obtain this credential from administrator setting up your email server.",
  "admin.email.smtpPasswordExample": "Ex: \"yourpassword\", \"jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY\"",
  "admin.email.smtpPasswordTitle": "SMTP Server Password:",
  "admin.email.smtpPortDescription": "Port of SMTP email server.",
  "admin.email.smtpPortExample": "Ex: \"25\", \"465\"",
  "admin.email.smtpPortTitle": "SMTP Server Port:",
  "admin.email.smtpServerDescription": "Location of SMTP email server.",
  "admin.email.smtpServerExample": "Ex: \"smtp.yourcompany.com\", \"email-smtp.us-east-1.amazonaws.com\"",
  "admin.email.smtpServerTitle": "SMTP Server:",
  "admin.email.smtpUsernameDescription": " Obtain this credential from administrator setting up your email server.",
  "admin.email.smtpUsernameExample": "Ex: \"admin@yourcompany.com\", \"AKIADTOVBGERKLCBV\"",
  "admin.email.smtpUsernameTitle": "SMTP Server Username:",
  "admin.email.testing": "테스트 중...",
  "admin.false": "비활성화",
  "admin.file_upload.chooseFile": "파일 선택",
  "admin.file_upload.noFile": "No file uploaded",
  "admin.file_upload.uploadFile": "Upload",
  "admin.files.images": "이미지",
  "admin.files.storage": "저장소",
  "admin.general.configuration": "Configuration",
  "admin.general.localization": "Localization",
  "admin.general.localization.availableLocalesDescription": "Set which languages are available for users in Account Settings (leave this field blank to have all supported languages available).<br /><br />Would like to help with translations? Join the <a href='http://translate.mattermost.com/' target='_blank'>Mattermost Translation Server</a> to contribute.",
  "admin.general.localization.availableLocalesTitle": "Available Languages:",
  "admin.general.localization.clientLocaleDescription": "Default language for newly created users and pages where the user hasn't logged in.",
  "admin.general.localization.clientLocaleTitle": "Default Client Language:",
  "admin.general.localization.serverLocaleDescription": "Default language for system messages and logs. Changing this will require a server restart before taking effect.",
  "admin.general.localization.serverLocaleTitle": "Default Server Language:",
  "admin.general.log": "로그",
  "admin.general.policy": "정책",
  "admin.general.policy.permissionsAdmin": "Team and System Admins",
  "admin.general.policy.permissionsAll": "All team members",
  "admin.general.policy.permissionsSystemAdmin": "System Admins",
  "admin.general.policy.restrictPrivateChannelManagementDescription": "Set policy on who can create, delete, rename, and set the header or purpose for private groups.",
  "admin.general.policy.restrictPrivateChannelManagementTitle": "Enable private group management permissions for:",
  "admin.general.policy.restrictPublicChannelManagementDescription": "Set policy on who can create, delete, rename, and set the header or purpose for public channels.",
  "admin.general.policy.restrictPublicChannelManagementTitle": "Enable public channel management permissions for:",
  "admin.general.policy.teamInviteDescription": "Set policy on who can invite others to a team using <b>Invite New Member</b> to invite new users by email, or the <b>Get Team Invite Link</b> options from the Main Menu. If <b>Get Team Invite Link</b> is used to share a link, you can expire the invite code from <b>Team Settings</b> > <b>Invite Code</b> after the desired users join the team.",
  "admin.general.policy.teamInviteTitle": "Enable sending team invites from:",
  "admin.general.privacy": "Privacy",
  "admin.general.usersAndTeams": "Users and Teams",
  "admin.gitab.clientSecretDescription": "Obtain this value via the instructions above for logging into GitLab.",
  "admin.gitlab.EnableHtmlDesc": "<ol><li>Log in to your GitLab account and go to Profile Settings -> Applications.</li><li>Enter Redirect URIs \"<your-mattermost-url>/login/gitlab/complete\" (example: http://localhost:8065/login/gitlab/complete) and \"<your-mattermost-url>/signup/gitlab/complete\". </li><li>Then use \"Application Secret Key\" and \"Application ID\" fields from GitLab to complete the options below.</li><li>Complete the Endpoint URLs below. </li></ol>",
  "admin.gitlab.authDescription": "Enter https://<your-gitlab-url>/oauth/authorize (example https://example.com:3000/oauth/authorize).   Make sure you use HTTP or HTTPS in your URL depending on your server configuration.",
  "admin.gitlab.authExample": "예: \"https://<your-gitlab-url>/api/v3/user\"",
  "admin.gitlab.authTitle": "Auth Endpoint:",
  "admin.gitlab.clientIdDescription": "Obtain this value via the instructions above for logging into GitLab",
  "admin.gitlab.clientIdExample": "Ex \"jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY\"",
  "admin.gitlab.clientIdTitle": "Application ID:",
  "admin.gitlab.clientSecretExample": "Ex \"jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY\"",
  "admin.gitlab.clientSecretTitle": "Application Secret Key:",
  "admin.gitlab.enableDescription": "When true, Mattermost allows team creation and account signup using GitLab OAuth.",
  "admin.gitlab.enableTitle": "Enable authentication with GitLab: ",
  "admin.gitlab.settingsTitle": "GitLab Settings",
  "admin.gitlab.tokenDescription": "GitLab 연동을 위해 다음 URL https://<your-gitlab-url>/api/v3/user 을 입력하십시오.   서버 설정에 따라 HTTP와 HTTPS 중 올바른 것을 사용하여야 합니다.",
  "admin.gitlab.tokenExample": "예: \"https://<your-gitlab-url>/api/v3/user\"",
  "admin.gitlab.tokenTitle": "Token Endpoint:",
  "admin.gitlab.userDescription": "GitLab 연동을 위해 다음 URL https://<your-gitlab-url>/api/v3/user 을 입력하십시오.   서버 설정에 따라 HTTP와 HTTPS 중 올바른 것을 사용하여야 합니다.",
  "admin.gitlab.userExample": "예: \"https://<your-gitlab-url>/api/v3/user\"",
  "admin.gitlab.userTitle": "사용자 API 엔드포인트:",
  "admin.google.EnableHtmlDesc": "<ol><li><a href='https://accounts.google.com/login'>Log in</a> to your Google account.</li><li>Go to <a href='https://console.developers.google.com'>https://console.developers.google.com</a>, click <strong>Credentials</strong> in the left hand sidebar and enter \"Mattermost - your-company-name\" as the <strong>Project Name</strong>, then click <strong>Create</strong>.</li><li>Click the <strong>OAuth consent screen</strong> header and enter \"Mattermost\" as the <strong>Product name shown to users</strong>, then click <strong>Save</strong>.</li><li>Under the <strong>Credentials</strong> header, click <strong>Create credentials</strong>, choose <strong>OAuth client ID</strong> and select <strong>Web Application</strong>.</li><li>Under <strong>Restrictions</strong> and <strong>Authorized redirect URIs</strong> enter <strong>your-mattermost-url/signup/google/complete</strong> (example: http://localhost:8065/signup/google/complete). Click <strong>Create</strong>.</li><li>Paste the <strong>Client ID</strong> and <strong>Client Secret</strong> to the fields below, then click <strong>Save</strong>.</li><li>Finally, go to <a href='https://console.developers.google.com/apis/api/plus/overview'>Google+ API</a> and click <strong>Enable</strong>. This might take a few minutes to propagate through Google's systems.</li></ol>",
  "admin.google.authTitle": "Auth Endpoint:",
  "admin.google.clientIdDescription": "The Client ID you received when registering your application with Google.",
  "admin.google.clientIdExample": "Ex \"7602141235235-url0fhs1mayfasbmop5qlfns8dh4.apps.googleusercontent.com\"",
  "admin.google.clientIdTitle": "Client ID",
  "admin.google.clientSecretDescription": "The Client Secret you received when registering your application with Google.",
  "admin.google.clientSecretExample": "Ex \"H8sz0Az-dDs2p15-7QzD231\"",
  "admin.google.clientSecretTitle": "Client Secret",
  "admin.google.tokenTitle": "Token Endpoint:",
  "admin.google.userTitle": "사용자 API 엔드포인트:",
  "admin.image.amazonS3BucketDescription": "Name you selected for your S3 bucket in AWS.",
  "admin.image.amazonS3BucketExample": "Ex \"mattermost-media\"",
  "admin.image.amazonS3BucketTitle": "Amazon S3 Bucket:",
  "admin.image.amazonS3IdDescription": "Obtain this credential from your Amazon EC2 administrator.",
  "admin.image.amazonS3IdExample": "Ex \"AKIADTOVBGERKLCBV\"",
  "admin.image.amazonS3IdTitle": "Amazon S3 Access Key ID:",
  "admin.image.amazonS3RegionDescription": "AWS region you selected for creating your S3 bucket.",
  "admin.image.amazonS3RegionExample": "Ex \"us-east-1\"",
  "admin.image.amazonS3RegionTitle": "Amazon S3 Region:",
  "admin.image.amazonS3SecretDescription": "Obtain this credential from your Amazon EC2 administrator.",
  "admin.image.amazonS3SecretExample": "Ex \"jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY\"",
  "admin.image.amazonS3SecretTitle": "Amazon S3 Secret Access Key:",
  "admin.image.localDescription": "Directory to which files and images are written. If blank, defaults to ./data/.",
  "admin.image.localExample": "예시: \"./data/\"",
  "admin.image.localTitle": "Local Storage Directory:",
  "admin.image.maxFileSizeDescription": "Maximum file size for message attachments in megabytes. Caution: Verify server memory can support your setting choice. Large file sizes increase the risk of server crashes and failed uploads due to network interruptions.",
  "admin.image.maxFileSizeExample": "50",
  "admin.image.maxFileSizeTitle": "Maximum File Size:",
  "admin.image.previewHeightDescription": "Maximum height of preview image (\"0\": Sets to auto-size). Updating this value changes how preview images render in future, but does not change images created in the past.",
  "admin.image.previewHeightExample": "Ex \"0\"",
  "admin.image.previewHeightTitle": "Image Preview Height:",
  "admin.image.previewWidthDescription": "Maximum width of preview image. Updating this value changes how preview images render in future, but does not change images created in the past.",
  "admin.image.previewWidthExample": "Ex \"1024\"",
  "admin.image.previewWidthTitle": "Image Preview Width:",
  "admin.image.profileHeightDescription": "Height of profile picture.",
  "admin.image.profileHeightExample": "Ex \"0\"",
  "admin.image.profileHeightTitle": "Profile Picture Height:",
  "admin.image.profileWidthDescription": "Width of profile picture.",
  "admin.image.profileWidthExample": "Ex \"1024\"",
  "admin.image.profileWidthTitle": "Profile Picture Width:",
  "admin.image.publicLinkDescription": "32-character salt added to signing of public image links. Randomly generated on install. Click \"Regenerate\" to create new salt.",
  "admin.image.publicLinkExample": "Ex \"gxHVDcKUyP2y1eiyW8S8na1UYQAfq6J6\"",
  "admin.image.publicLinkTitle": "Public Link Salt:",
  "admin.image.shareDescription": "Allow users to share public links to files and images.",
  "admin.image.shareTitle": "Enable Public File Links: ",
  "admin.image.storeAmazonS3": "Amazon S3",
  "admin.image.storeDescription": "Storage system where files and image attachments are saved.<br /><br />Selecting \"Amazon S3\" enables fields to enter your Amazon credentials and bucket details.<br /><br />Selecting \"Local File System\" enables the field to specify a local file directory.",
  "admin.image.storeLocal": "Local File System",
  "admin.image.storeTitle": "File Storage System:",
  "admin.image.thumbHeightDescription": "Height of thumbnails generated from uploaded images. Updating this value changes how thumbnail images render in future, but does not change images created in the past.",
  "admin.image.thumbHeightExample": "Ex \"100\"",
  "admin.image.thumbHeightTitle": "Attachment Thumbnail Height:",
  "admin.image.thumbWidthDescription": "Width of thumbnails generated from uploaded images. Updating this value changes how thumbnail images render in future, but does not change images created in the past.",
  "admin.image.thumbWidthExample": "Ex \"120\"",
  "admin.image.thumbWidthTitle": "Attachment Thumbnail Width:",
  "admin.integrations.custom": "Custom Integrations",
  "admin.integrations.external": "External Services",
  "admin.ldap.baseDesc": "The Base DN is the Distinguished Name of the location where Mattermost should start its search for users in the LDAP tree.",
  "admin.ldap.baseEx": "Ex \"ou=Unit Name,dc=corp,dc=example,dc=com\"",
  "admin.ldap.baseTitle": "BaseDN:",
  "admin.ldap.bindPwdDesc": "Password of the user given in \"Bind Username\".",
  "admin.ldap.bindPwdTitle": "Bind Password:",
  "admin.ldap.bindUserDesc": "The username used to perform the LDAP search. This should typically be an account created specifically for use with Mattermost. It should have access limited to read the portion of the LDAP tree specified in the BaseDN field.",
  "admin.ldap.bindUserTitle": "Bind Username:",
  "admin.ldap.emailAttrDesc": "The attribute in the LDAP server that will be used to populate the email addresses of users in Mattermost.",
  "admin.ldap.emailAttrEx": "Ex \"mail\" or \"userPrincipalName\"",
  "admin.ldap.emailAttrTitle": "Email Attribute:",
  "admin.ldap.enableDesc": "When true, Mattermost allows login using LDAP",
  "admin.ldap.enableTitle": "Enable sign-in with LDAP:",
  "admin.ldap.firstnameAttrDesc": "The attribute in the LDAP server that will be used to populate the first name of users in Mattermost.",
  "admin.ldap.firstnameAttrEx": "Ex \"givenName\"",
  "admin.ldap.firstnameAttrTitle": "First Name Attribute",
  "admin.ldap.idAttrDesc": "The attribute in the LDAP server that will be used as a unique identifier in Mattermost. It should be an LDAP attribute with a value that does not change, such as username or uid. If a user’s ID Attribute changes, it will create a new Mattermost account unassociated with their old one. This is the value used to log in to Mattermost in the \"LDAP Username\" field on the sign in page. Normally this attribute is the same as the “Username Attribute” field above. If your team typically uses domain\\username to sign in to other services with LDAP, you may choose to put domain\\username in this field to maintain consistency between sites.",
  "admin.ldap.idAttrEx": "Ex \"sAMAccountName\"",
  "admin.ldap.idAttrTitle": "ID Attribute: ",
  "admin.ldap.lastnameAttrDesc": "The attribute in the LDAP server that will be used to populate the last name of users in Mattermost.",
  "admin.ldap.lastnameAttrEx": "Ex \"sn\"",
  "admin.ldap.lastnameAttrTitle": "Last Name Attribute:",
  "admin.ldap.loginNameDesc": "The placeholder text that appears in the login field on the login page. Defaults to \"LDAP Username\".",
  "admin.ldap.loginNameEx": "Ex \"LDAP Username\"",
  "admin.ldap.loginNameTitle": "Login Field Name:",
  "admin.ldap.maxPageSizeEx": "Ex \"2000\"",
  "admin.ldap.maxPageSizeHelpText": "The maximum number of users the Mattermost server will request from the LDAP server at one time. 0 is unlimited.",
  "admin.ldap.maxPageSizeTitle": "Maximum Page Size",
  "admin.ldap.nicknameAttrDesc": "(Optional) The attribute in the LDAP server that will be used to populate the nickname of users in Mattermost.",
  "admin.ldap.nicknameAttrEx": "Ex \"nickname\"",
  "admin.ldap.nicknameAttrTitle": "Nickname Attribute:",
  "admin.ldap.noLicense": "<h4 class=\"banner__heading\">Note:</h4><p>Compliance 는 엔터프라이즈 에디션의 기능입니다. 현재 라이센스는 Compliance 기능을 지원하지 않습니다. <a href=\"http://mattermost.com\" target=\"_blank\">이 곳</a>에서 엔터프라이즈 라이센스에 대한 정보를 확인하세요.</p>",
  "admin.ldap.portDesc": "The port Mattermost will use to connect to the LDAP server. Default is 389.",
  "admin.ldap.portEx": "Ex \"389\"",
  "admin.ldap.portTitle": "LDAP 포트:",
  "admin.ldap.queryDesc": "The timeout value for queries to the LDAP server. Increase if you are getting timeout errors caused by a slow LDAP server.",
  "admin.ldap.queryEx": "Ex \"60\"",
  "admin.ldap.queryTitle": "Query Timeout (seconds):",
  "admin.ldap.serverDesc": "The domain or IP address of LDAP server.",
  "admin.ldap.serverEx": "Ex \"10.0.0.23\"",
  "admin.ldap.serverTitle": "LDAP 서버:",
  "admin.ldap.skipCertificateVerification": "Skip Certificate Verification",
  "admin.ldap.skipCertificateVerificationDesc": "Skips the certificate verification step for TLS or STARTTLS connections. Not recommended for production environments where TLS is required. For testing only.",
  "admin.ldap.syncFailure": "Sync Failure: {error}",
  "admin.ldap.syncIntervalHelpText": "LDAP Synchronization updates Mattermost user information to reflect updates on the LDAP server. For example, when a user’s name changes on the LDAP server, the change updates in Mattermost when synchronization is performed. Accounts removed from or disabled in the LDAP server have their Mattermost accounts set to “Inactive” and have their account sessions revoked. Mattermost performs synchronization on the interval entered. For example, if 60 is entered, Mattermost synchronizes every 60 minutes.",
  "admin.ldap.syncIntervalTitle": "Synchronization Interval (minutes)",
  "admin.ldap.syncNowHelpText": "Initiates an LDAP synchronization immediately.",
  "admin.ldap.sync_button": "LDAP Synchronize Now",
  "admin.ldap.uernameAttrDesc": "The attribute in the LDAP server that will be used to populate the username field in Mattermost. This may be the same as the ID Attribute.",
  "admin.ldap.userFilterDisc": "(Optional) Enter an LDAP Filter to use when searching for user objects. Only the users selected by the query will be able to access Mattermost. For Active Directory, the query to filter out disabled users is (&(objectCategory=Person)(!(UserAccountControl:1.2.840.113556.1.4.803:=2))).",
  "admin.ldap.userFilterEx": "Ex. \"(objectClass=user)\"",
  "admin.ldap.userFilterTitle": "User Filter:",
  "admin.ldap.usernameAttrEx": "Ex \"sAMAccountName\"",
  "admin.ldap.usernameAttrTitle": "Username Attribute:",
  "admin.license.choose": "파일 선택",
  "admin.license.chooseFile": "파일 선택",
  "admin.license.edition": "Edition: ",
  "admin.license.key": "라이센스 키: ",
  "admin.license.keyRemove": "Remove Enterprise License and Downgrade Server",
  "admin.license.noFile": "No file uploaded",
  "admin.license.removing": "Removing License...",
  "admin.license.title": "Edition and License",
  "admin.license.type": "라이센스: ",
  "admin.license.upload": "Upload",
  "admin.license.uploadDesc": "Upload a license key for Mattermost Enterprise Edition to upgrade this server. <a href=\"http://mattermost.com\" target=\"_blank\">Visit us online</a> to learn more about the benefits of Enterprise Edition or to purchase a key.",
  "admin.license.uploading": "Uploading License...",
  "admin.log.consoleDescription": "Typically set to false in production. Developers may set this field to true to output log messages to console based on the console level option.  If true, server writes messages to the standard output stream (stdout).",
  "admin.log.consoleTitle": "Output logs to console: ",
  "admin.log.enableWebhookDebugging": "Webhook 디버깅 활성화:",
  "admin.log.enableWebhookDebuggingDescription": "false로 설정하면 incoming webhook의 모든 요청 내용이 디버그 로그에 남는 것을 막을 수 있습니다.",
  "admin.log.fileDescription": "Typically set to true in production.  When true, log files are written to the log file specified in file location field below.",
  "admin.log.fileLevelDescription": "This setting determines the level of detail at which log events are written to the log file. ERROR: Outputs only error messages. INFO: Outputs error messages and information around startup and initialization. DEBUG: Prints high detail for developers working on debugging issues.",
  "admin.log.fileLevelTitle": "File Log Level:",
  "admin.log.fileTitle": "Output logs to file: ",
  "admin.log.formatDateLong": "Date (2006/01/02)",
  "admin.log.formatDateShort": "Date (01/02/06)",
  "admin.log.formatDescription": "Format of log message output. If blank will be set to \"[%D %T] [%L] %M\", where:",
  "admin.log.formatLevel": "Level (DEBG, INFO, EROR)",
  "admin.log.formatMessage": "메시지",
  "admin.log.formatPlaceholder": "Enter your file format",
  "admin.log.formatSource": "Source",
  "admin.log.formatTime": "Time (15:04:05 MST)",
  "admin.log.formatTitle": "File Log Format:",
  "admin.log.levelDescription": "This setting determines the level of detail at which log events are written to the console. ERROR: Outputs only error messages. INFO: Outputs error messages and information around startup and initialization. DEBUG: Prints high detail for developers working on debugging issues.",
  "admin.log.levelTitle": "Console Log Level:",
  "admin.log.locationDescription": "File to which log files are written. If blank, will be set to ./logs/mattermost, which writes logs to mattermost.log. Log rotation is enabled and every 10,000 lines of log information is written to new files stored in the same directory, for example mattermost.2015-09-23.001, mattermost.2015-09-23.002, and so forth.",
  "admin.log.locationPlaceholder": "Enter your file location",
  "admin.log.locationTitle": "File Log Directory:",
  "admin.log.logSettings": "로그 설정",
  "admin.logs.reload": "새로 고침",
  "admin.logs.title": "서버 로그",
  "admin.nav.help": "도움말",
  "admin.nav.logout": "로그아웃",
  "admin.nav.report": "문제 보고",
  "admin.nav.switch": "팀 선택",
  "admin.notifications.email": "이메일",
  "admin.notifications.push": "모바일 푸시",
  "admin.notifications.title": "알림 설정",
  "admin.oauth.gitlab": "GitLab",
  "admin.oauth.google": "Google Apps",
  "admin.oauth.off": "Do not allow sign-in via an OAuth 2.0 provider",
  "admin.oauth.office365": "Office 365",
  "admin.oauth.providerDescription": "When true, Mattermost can act as an OAuth 2.0 service provider allowing Mattermost to authorize API requests from external applications.",
  "admin.oauth.providerTitle": "Enable OAuth 2.0 Service Provider: ",
  "admin.oauth.select": "Select OAuth 2.0 service provider:",
  "admin.office365.EnableHtmlDesc": "<ol><li><a href='https://login.microsoftonline.com/'>Log in</a> to your Microsoft or Office 365 account. Make sure it's the account on the same <a href='https://msdn.microsoft.com/en-us/library/azure/jj573650.aspx#Anchor_0'>tenant</a> that you would like users to log in with.</li><li>Go to <a href='https://apps.dev.microsoft.com'>https://apps.dev.microsoft.com</a>, click <strong>Add an app</strong> and use <strong>Mattermost - <your-company-name></strong> as the application name.</li><li>Under <strong>Application Secrets</strong>, click <strong>Generate New Password</strong> and save it to later complete the field below.</li><li>Under <strong>Platforms</strong>, click <strong>Add Platform</strong>, choose <strong>Web</strong> and enter <strong><your-mattermost-url>/signup/office365/complete</strong> (example: http://localhost:8065/signup/office365/complete) under <strong>Redirect URIs</strong>. Also uncheck <strong>Allow Implicit Flow</strong>.</li><li>Finally, click <strong>Save</strong> and complete the <strong>Application ID</strong> and <strong>Application Secret Password</strong> fields below.</li></ol>",
  "admin.office365.authTitle": "Auth Endpoint:",
  "admin.office365.clientIdDescription": "The Application/Client ID you received when registering your application with Microsoft.",
  "admin.office365.clientIdExample": "Ex \"adf3sfa2-ag3f-sn4n-ids0-sh1hdax192qq\"",
  "admin.office365.clientIdTitle": "Application ID:",
  "admin.office365.clientSecretDescription": "The Application Secret Password you generated when registering your application with Microsoft.",
  "admin.office365.clientSecretExample": "Ex \"shAieM47sNBfgl20f8ci294\"",
  "admin.office365.clientSecretTitle": "Application Secret Password:",
  "admin.office365.tokenTitle": "Token Endpoint:",
  "admin.office365.userTitle": "사용자 API 엔드포인트:",
  "admin.password.lowercase": "At least one lowercase letter",
  "admin.password.minimumLength": "Minimum Password Length:",
  "admin.password.minimumLengthDescription": "Minimum number of characters required for a valid password. Must be a whole number greater than or equal to {min} and less than or equal to {max}.",
  "admin.password.minimumLengthExample": "Ex \"5\"",
  "admin.password.number": "At least one number",
  "admin.password.preview": "Error message preview",
  "admin.password.requirements": "Password Requirements:",
  "admin.password.requirementsDescription": "Character types required in a valid password.",
  "admin.password.symbol": "At least one symbol (e.g. \"~!@#$%^&*()\")",
  "admin.password.uppercase": "At least one uppercase letter",
  "admin.privacy.showEmailDescription": "When false, hides email address of users from other users in the user interface, including team owners and team administrators. Used when system is set up for managing teams where some users choose to keep their contact information private.",
  "admin.privacy.showEmailTitle": "Show Email Address: ",
  "admin.privacy.showFullNameDescription": "When false, hides full name of users from other users, including team owners and team administrators. Username is shown in place of full name.",
  "admin.privacy.showFullNameTitle": "Show Full Name: ",
  "admin.rate.enableLimiterDescription": "true로 설정하면 API 호출이 아래에 설정된 속도로 조절됩니다.",
  "admin.rate.enableLimiterTitle": "Enable Rate Limiting: ",
  "admin.rate.httpHeaderDescription": "When filled in, vary rate limiting by HTTP header field specified (e.g. when configuring NGINX set to \"X-Real-IP\", when configuring AmazonELB set to \"X-Forwarded-For\").",
  "admin.rate.httpHeaderExample": "Ex \"X-Real-IP\", \"X-Forwarded-For\"",
  "admin.rate.httpHeaderTitle": "Vary rate limit by HTTP header",
  "admin.rate.memoryDescription": "Maximum number of users sessions connected to the system as determined by \"Vary rate limit by remote address\" and \"Vary rate limit by HTTP header\" settings below.",
  "admin.rate.memoryExample": "Ex \"10000\"",
  "admin.rate.memoryTitle": "Memory Store Size:",
  "admin.rate.noteDescription": "Changing properties in this section will require a server restart before taking effect.",
  "admin.rate.noteTitle": "Note:",
  "admin.rate.queriesDescription": "설정된 값만큼 초당 API 호출을 조절합니다.",
  "admin.rate.queriesExample": "Ex \"10\"",
  "admin.rate.queriesTitle": "Maximum Queries per Second:",
  "admin.rate.remoteDescription": "true로 설정하면, IP 주소에 따라 API 호출 속도를 조절합니다.",
  "admin.rate.remoteTitle": "Vary rate limit by remote address: ",
  "admin.rate.title": "Rate Limit Settings",
  "admin.recycle.button": "Recycle Database Connections",
  "admin.recycle.loading": " Recycling...",
  "admin.recycle.recycleDescription": "Deployments using multiple databases can switch from one master database to another without restarting the Mattermost server by updating \"config.json\" to the new desired configuration and using the <a href=\"../general/configuration\"><b>Configuration > Reload Configuration from Disk</b></a> feature to load the new settings while the server is running. The administrator should then use <b>Recycle Database Connections</b> feature to recycle the database connections based on the new settings.",
  "admin.recycle.reloadFail": "연결을 실패했습니다: {error}",
  "admin.regenerate": "재생성",
  "admin.reload.button": "디스크에서 설정 다시 불러오기",
  "admin.reload.loading": " 로딩 중...",
  "admin.reload.reloadDescription": "Deployments using multiple databases can switch from one master database to another without restarting the Mattermost server by updating \"config.json\" to the new desired configuration and using the <b>Reload Configuration from Disk</b> feature to load the new settings while the server is running. The administrator should then use the <a href=\"../advanced/database\"><b>Database > Recycle Database Connections</b></a> feature to recycle the database connections based on the new settings.",
  "admin.reload.reloadFail": "연결을 실패했습니다: {error}",
  "admin.reset_password.close": "닫기",
  "admin.reset_password.newPassword": "New Password",
  "admin.reset_password.select": "선택",
  "admin.reset_password.submit": "최소 {chars}글자 이상 입력하세요.",
  "admin.reset_password.titleReset": "Reset Password",
  "admin.reset_password.titleSwitch": "Switch Account to Email/Password",
  "admin.saml.assertionConsumerServiceURLDesc": "Enter https://<your-mattermost-url>/login/sso/saml. Make sure you use HTTP or HTTPS in your URL depending on your server configuration. This field is also known as the Assertion Consumer Service URL.",
  "admin.saml.assertionConsumerServiceURLEx": "Ex \"https://<your-mattermost-url>/login/sso/saml\"",
  "admin.saml.assertionConsumerServiceURLTitle": "Service Provider Login URL:",
  "admin.saml.emailAttrDesc": "The attribute in the SAML Assertion that will be used to populate the email addresses of users in Mattermost.",
  "admin.saml.emailAttrEx": "Ex \"Email\" or \"PrimaryEmail\"",
  "admin.saml.emailAttrTitle": "Email Attribute:",
  "admin.saml.enableDescription": "When true, Mattermost allows login using SAML. Please see <a href='http://docs.mattermost.com/deployment/sso-saml.html' target='_blank'>documentation</a> to learn more about configuring SAML for Mattermost.",
  "admin.saml.enableTitle": "Enable Login With SAML:",
  "admin.saml.encryptDescription": "When true, Mattermost will decrypt SAML Assertions encrypted with your Service Provider Public Certificate.",
  "admin.saml.encryptTitle": "Enable Encryption:",
  "admin.saml.firstnameAttrDesc": "The attribute in the SAML Assertion that will be used to populate the first name of users in Mattermost.",
  "admin.saml.firstnameAttrEx": "Ex \"FirstName\"",
  "admin.saml.firstnameAttrTitle": "First Name Attribute:",
  "admin.saml.idpCertificateFileDesc": "The public authentication certificate issued by your Identity Provider.",
  "admin.saml.idpCertificateFileRemoveDesc": "Remove the public authentication certificate issued by your Identity Provider.",
  "admin.saml.idpCertificateFileTitle": "Identity Provider Public Certificate:",
  "admin.saml.idpDescriptorUrlDesc": "The issuer URL for the Identity Provider you use for SAML requests.",
  "admin.saml.idpDescriptorUrlEx": "Ex \"https://idp.example.org/SAML2/issuer\"",
  "admin.saml.idpDescriptorUrlTitle": "Identity Provider Issuer URL:",
  "admin.saml.idpUrlDesc": "The URL where Mattermost sends a SAML request to start login sequence.",
  "admin.saml.idpUrlEx": "Ex \"https://idp.example.org/SAML2/SSO/Login\"",
  "admin.saml.idpUrlTitle": "SAML SSO URL:",
  "admin.saml.lastnameAttrDesc": "The attribute in the SAML Assertion that will be used to populate the last name of users in Mattermost.",
  "admin.saml.lastnameAttrEx": "Ex \"LastName\"",
  "admin.saml.lastnameAttrTitle": "Last Name Attribute:",
  "admin.saml.localeAttrDesc": "(Optional) The attribute in the SAML Assertion that will be used to populate the language of users in Mattermost.",
  "admin.saml.localeAttrEx": "Ex \"Locale\" or \"PrimaryLanguage\"",
  "admin.saml.localeAttrTitle": "Preferred Language Attribute:",
  "admin.saml.loginButtonTextDesc": "(Optional) The text that appears in the login button on the login page. Defaults to \"With SAML\".",
  "admin.saml.loginButtonTextEx": "Ex \"With OKTA\"",
  "admin.saml.loginButtonTextTitle": "Login Button Text:",
  "admin.saml.nicknameAttrDesc": "(Optional) The attribute in the SAML Assertion that will be used to populate the nickname of users in Mattermost.",
  "admin.saml.nicknameAttrEx": "Ex \"Nickname\"",
  "admin.saml.nicknameAttrTitle": "Nickname Attribute:",
  "admin.saml.privateKeyFileFileDesc": "The private key used to decrypt SAML Assertions from the Identity Provider.",
  "admin.saml.privateKeyFileFileRemoveDesc": "Remove the private key used to decrypt SAML Assertions from the Identity Provider.",
  "admin.saml.privateKeyFileTitle": "Service Provider Private Key:",
  "admin.saml.publicCertificateFileDesc": "The certificate used to generate the signature on a SAML request to the Identity Provider for a service provider initiated SAML login, when Mattermost is the Service Provider.",
  "admin.saml.publicCertificateFileRemoveDesc": "Remove the certificate used to generate the signature on a SAML request to the Identity Provider for a service provider initiated SAML login, when Mattermost is the Service Provider.",
  "admin.saml.publicCertificateFileTitle": "Service Provider Public Certificate:",
  "admin.saml.remove.idp_certificate": "Remove Identity Provider Certificate",
  "admin.saml.remove.privKey": "Remove Service Provider Private Key",
  "admin.saml.remove.sp_certificate": "Remove Service Provider Certificate",
  "admin.saml.removing.certificate": "Removing Certificate...",
  "admin.saml.removing.privKey": "Removing Private Key...",
  "admin.saml.uploading.certificate": "Uploading Certificate...",
  "admin.saml.uploading.privateKey": "Uploading Private Key...",
  "admin.saml.usernameAttrDesc": "The attribute in the SAML Assertion that will be used to populate the username field in Mattermost.",
  "admin.saml.usernameAttrEx": "Ex \"Username\"",
  "admin.saml.usernameAttrTitle": "Username Attribute:",
  "admin.saml.verifyDescription": "When true, Mattermost verifies that the signature sent from the SAML Response matches the Service Provider Login URL",
  "admin.saml.verifyTitle": "Verify Signature:",
  "admin.save": "저장",
  "admin.saving": "설정 저장 중...",
  "admin.security.connection": "연결",
  "admin.security.inviteSalt.disabled": "Invite salt cannot be changed while sending emails is disabled.",
  "admin.security.login": "로그인",
  "admin.security.password": "비밀번호",
  "admin.security.passwordResetSalt.disabled": "Password reset salt cannot be changed while sending emails is disabled.",
  "admin.security.public_links": "공개 링크",
  "admin.security.requireEmailVerification.disabled": "Email verification cannot be changed while sending emails is disabled.",
  "admin.security.session": "세션",
  "admin.security.signup": "가입",
  "admin.select_team.close": "닫기",
  "admin.select_team.select": "선택",
  "admin.select_team.selectTeam": "팀 선택",
  "admin.service.attemptDescription": "Number of login attempts allowed before a user is locked out and required to reset their password via email.",
  "admin.service.attemptExample": "Ex \"10\"",
  "admin.service.attemptTitle": "Maximum Login Attempts:",
  "admin.service.cmdsDesc": "When true, custom slash commands will be allowed. See <a href='http://docs.mattermost.com/developer/slash-commands.html' target='_blank'>documentation</a> to learn more.",
  "admin.service.cmdsTitle": "슬래시 명령어 활성화: ",
  "admin.service.corsDescription": "Enable HTTP Cross origin request from a specific domain. Use \"*\" if you want to allow CORS from any domain or leave it blank to disable it.",
  "admin.service.corsEx": "http://example.com",
  "admin.service.corsTitle": "Enable cross-origin requests from:",
  "admin.service.developerDesc": "When true, Javascript errors are shown in a red bar at the top of the user interface. Not recommended for use in production. ",
  "admin.service.developerTitle": "Enable Developer Mode: ",
  "admin.service.googleDescription": "Set this key to enable the display of titles for embedded YouTube video previews. Without the key, YouTube previews will still be created based on hyperlinks appearing in messages or comments but they will not show the video title. View a <a href=\"https://www.youtube.com/watch?v=Im69kzhpR3I\" target=\"_blank\">Google Developers Tutorial</a> for instructions on how to obtain a key.",
  "admin.service.googleExample": "Ex \"7rAh6iwQCkV4cA1Gsg3fgGOXJAQ43QV\"",
  "admin.service.googleTitle": "Google API Key:",
  "admin.service.iconDescription": "true로 설정하면, webhook이나 슬래시 명령어가 메시지를 보낼 때 아이콘을 변경할 수 있게 됩니다. 주의사항: 사용자 이름 변경과 함께 허용하면 피싱 공격의 위험이 있습니다.",
  "admin.service.iconTitle": "Enable webhooks and slash commands to override profile picture icons:",
  "admin.service.insecureTlsDesc": "true로 설정하면 Mattermost에서 밖으로 나가는 어떤 HTTPS 요청에 대해서도 인증서 검사를 하지 않습니다. 예를 들어, self-signed TLS 인증서를 아무 도메인 이름에 대해 설정하더라도 HTTPS 통신을 진행합니다. 이 설정을 켤 때는 MITM 공격에 주의하세요.",
  "admin.service.insecureTlsTitle": "Enable Insecure Outgoing Connections: ",
  "admin.service.integrationAdmin": "Restrict creating integrations to Team and System Admins: ",
  "admin.service.integrationAdminDesc": "When true, user created integrations can only be created by admins.",
  "admin.service.listenAddress": "Listen Address:",
  "admin.service.listenDescription": "The address to which to bind and listen. Entering \":8065\" will bind to all interfaces or you can choose one like \"127.0.0.1:8065\".  Changing this will require a server restart before taking effect.",
  "admin.service.listenExample": "Ex \":8065\"",
  "admin.service.mfaDesc": "When true, users will be given the option to add multi-factor authentication to their account. They will need a smartphone and an authenticator app such as Google Authenticator.",
  "admin.service.mfaTitle": "Enable Multi-factor Authentication:",
  "admin.service.mobileSessionDays": "Session length for mobile apps (days):",
  "admin.service.mobileSessionDaysDesc": "The number of days from the last time a user entered their credentials to the expiry of the user's session. After changing this setting, the new session length will take effect after the next time the user enters their credentials.",
  "admin.service.outWebhooksDesc": "When true, outgoing webhooks will be allowed. See <a href='http://docs.mattermost.com/developer/webhooks-outgoing.html' target='_blank'>documentation</a> to learn more.",
  "admin.service.outWebhooksTitle": "Outgoing webhook 허용: ",
  "admin.service.overrideDescription": "true로 설정하면, webhook과 슬래시 명령어가 메세지를 보낼 때 사용자 이름을 변경할 수 있게 됩니다. 주의사항: 아이콘 변경과 함께 허용하면 피싱 공격의 위험이 있습니다.",
  "admin.service.overrideTitle": "Enable webhooks and slash commands to override usernames:",
  "admin.service.securityDesc": "When true, System Administrators are notified by email if a relevant security fix alert has been announced in the last 12 hours. Requires email to be enabled.",
  "admin.service.securityTitle": "Enable Security Alerts: ",
  "admin.service.segmentDescription": "Segment.com is an online service that can be optionally used to track detailed system statistics. You can obtain a key by signing-up for a free account at Segment.com.",
  "admin.service.segmentExample": "Ex \"g3fgGOXJAQ43QV7rAh6iwQCkV4cA1Gs\"",
  "admin.service.segmentTitle": "Segment Write Key:",
  "admin.service.sessionCache": "Session Cache (minutes):",
  "admin.service.sessionCacheDesc": "The number of minutes to cache a session in memory.",
  "admin.service.sessionDaysEx": "Ex \"30\"",
  "admin.service.siteURL": "Site URL:",
  "admin.service.siteURLDescription": "The URL, including port number and protocol, from which users will access Mattermost. Leave blank to automatically configure based on incoming traffic.",
  "admin.service.siteURLExample": "Ex \"https://mattermost.example.com:1234\"",
  "admin.service.ssoSessionDays": "Session length for mobile apps (days):",
  "admin.service.ssoSessionDaysDesc": "The number of days from the last time a user entered their credentials to the expiry of the user's session. If the authentication method is SAML or GitLab, the user may automatically be logged back in to Mattermost if they are already logged in to SAML or GitLab. After changing this setting, the setting will take effect after the next time the user enters their credentials.",
  "admin.service.testingDescription": "(개발자 옵션) true로 설정하면, /loadtest 슬래시 명령을 사용할 수 있습니다. 이 명령을 사용하여 테스트를 위한 계정과 데이터를 불러들일 수 있습니다. 이 설정이 적용되려면 서버를 재시작해야 합니다.",
  "admin.service.testingTitle": "Enable Testing Commands: ",
  "admin.service.webSessionDays": "Session length LDAP and email (days):",
  "admin.service.webSessionDaysDesc": "The number of days from the last time a user entered their credentials to the expiry of the user's session. After changing this setting, the new session length will take effect after the next time the user enters their credentials.",
  "admin.service.webhooksDescription": "When true, incoming webhooks will be allowed. To help combat phishing attacks, all posts from webhooks will be labelled by a BOT tag. See <a href='http://docs.mattermost.com/developer/webhooks-incoming.html' target='_blank'>documentation</a> to learn more.",
  "admin.service.webhooksTitle": "Incoming webhook 허용: ",
  "admin.sidebar.addTeamSidebar": "Add team from sidebar menu",
  "admin.sidebar.advanced": "고급",
  "admin.sidebar.audits": "감사",
  "admin.sidebar.authentication": "인증",
  "admin.sidebar.cluster": "High Availability (Beta)",
  "admin.sidebar.compliance": "Compliance",
  "admin.sidebar.configuration": "환경설정",
  "admin.sidebar.connections": "연결",
  "admin.sidebar.customBrand": "사용자 정의 브랜딩",
  "admin.sidebar.customEmoji": "사용자 정의 이모티콘",
  "admin.sidebar.customIntegrations": "Custom Integrations",
  "admin.sidebar.customization": "사용자 정의",
  "admin.sidebar.database": "데이터베이스",
  "admin.sidebar.developer": "개발자 설정",
  "admin.sidebar.email": "이메일",
  "admin.sidebar.external": "외부 서비스",
  "admin.sidebar.files": "파일",
  "admin.sidebar.general": "일반",
  "admin.sidebar.gitlab": "GitLab",
  "admin.sidebar.images": "이미지",
  "admin.sidebar.integrations": "통합",
  "admin.sidebar.ldap": "LDAP",
  "admin.sidebar.legalAndSupport": "지원",
  "admin.sidebar.license": "Edition and License",
  "admin.sidebar.localization": "지역화",
  "admin.sidebar.logging": "로그",
  "admin.sidebar.login": "로그인",
  "admin.sidebar.logs": "서버 로그 보기",
  "admin.sidebar.notifications": "알림",
  "admin.sidebar.oauth": "OAuth 2.0",
  "admin.sidebar.other": "기타",
  "admin.sidebar.password": "비밀번호",
  "admin.sidebar.policy": "정책",
  "admin.sidebar.privacy": "개인",
  "admin.sidebar.publicLinks": "공개 링크",
  "admin.sidebar.push": "모바일 푸시",
  "admin.sidebar.rateLimiting": "Rate Limiting",
  "admin.sidebar.reports": "보고",
  "admin.sidebar.rmTeamSidebar": "사이드바 메뉴에서 팀 제거",
  "admin.sidebar.saml": "SAML",
  "admin.sidebar.security": "보안",
  "admin.sidebar.sessions": "세션",
  "admin.sidebar.settings": "설정",
  "admin.sidebar.signUp": "가입",
  "admin.sidebar.sign_up": "가입",
  "admin.sidebar.statistics": "팀 통계",
  "admin.sidebar.storage": "저장소",
  "admin.sidebar.support": "지원",
  "admin.sidebar.teams": "팀 ({count, number})",
  "admin.sidebar.users": "사용자",
  "admin.sidebar.usersAndTeams": "팀과 사용자",
  "admin.sidebar.view_statistics": "사이트 통계",
  "admin.sidebarHeader.systemConsole": "관리자 도구",
  "admin.sql.dataSource": "Data Source:",
  "admin.sql.driverName": "Driver Name:",
  "admin.sql.keyDescription": "32-character salt available to encrypt and decrypt sensitive fields in database.",
  "admin.sql.keyExample": "Ex \"gxHVDcKUyP2y1eiyW8S8na1UYQAfq6J6\"",
  "admin.sql.keyTitle": "At Rest Encrypt Key:",
  "admin.sql.maxConnectionsDescription": "Maximum number of idle connections held open to the database.",
  "admin.sql.maxConnectionsExample": "Ex \"10\"",
  "admin.sql.maxConnectionsTitle": "Maximum Idle Connections:",
  "admin.sql.maxOpenDescription": "Maximum number of open connections held open to the database.",
  "admin.sql.maxOpenExample": "Ex \"10\"",
  "admin.sql.maxOpenTitle": "Maximum Open Connections:",
  "admin.sql.noteDescription": "Changing properties in this section will require a server restart before taking effect.",
  "admin.sql.noteTitle": "Note:",
  "admin.sql.replicas": "Data Source Replicas:",
  "admin.sql.traceDescription": "(Development Mode) When true, executing SQL statements are written to the log.",
  "admin.sql.traceTitle": "Trace: ",
  "admin.sql.warning": "Warning: regenerating this salt may cause some columns in the database to return empty results.",
  "admin.support.aboutDesc": "Link to About page for more information on your Mattermost deployment, for example its purpose and audience within your organization. Defaults to Mattermost information page.",
  "admin.support.aboutTitle": "About link:",
  "admin.support.emailHelp": "Email address displayed on email notifications and during tutorial for end users to ask support questions.",
  "admin.support.emailTitle": "Support Email:",
  "admin.support.helpDesc": "Link to help documentation from team site main menu. Typically not changed unless your organization chooses to create custom documentation.",
  "admin.support.helpTitle": "Help link:",
  "admin.support.noteDescription": "If linking to an external site, URLs should begin with http:// or https://.",
  "admin.support.noteTitle": "Note:",
  "admin.support.privacyDesc": "Link to Privacy Policy available to users on desktop and on mobile. Leaving this blank will hide the option to display a notice.",
  "admin.support.privacyTitle": "Privacy Policy link:",
  "admin.support.problemDesc": "Link to help documentation from team site main menu. By default this points to the peer-to-peer troubleshooting forum where users can search for, find and request help with technical issues.",
  "admin.support.problemTitle": "Report a Problem link:",
  "admin.support.termsDesc": "Link to the terms under which users may use your online service. By default, this includes the \"Mattermost Conditions of Use (End Users)\" explaining the terms under which Mattermost software is provided to end users. If you change the default link to add your own terms for using the service you provide, your new terms must include a link to the default terms so end users are aware of the Mattermost Conditions of Use (End User) for Mattermost software.",
  "admin.support.termsTitle": "Terms of Service link:",
  "admin.system_analytics.activeUsers": "Active Users With Posts",
  "admin.system_analytics.title": "the System",
  "admin.system_analytics.totalPosts": "Total Posts",
  "admin.team.brandDesc": "Enable custom branding to show an image of your choice, uploaded below, and some help text, written below, on the login page.",
  "admin.team.brandDescriptionExample": "모든 팀 커뮤니케이션을 한 곳에서 확인하고, 검색하고, 접근할 수 있습니다.",
  "admin.team.brandDescriptionHelp": "Name of service shown in login screens and UI.",
  "admin.team.brandDescriptionTitle": "Site Description",
  "admin.team.brandImageTitle": "Custom Brand Image:",
  "admin.team.brandTextDescription": "The custom branding Markdown-formatted text you would like to appear below your custom brand image on your login screen.",
  "admin.team.brandTextTitle": "Custom Brand Text:",
  "admin.team.brandTitle": "Enable Custom Branding: ",
  "admin.team.chooseImage": "Choose New Image",
  "admin.team.dirDesc": "When true, teams that are configured to show in team directory will show on main page inplace of creating a new team.",
  "admin.team.dirTitle": "Enable Team Directory: ",
  "admin.team.maxUsersDescription": "Maximum total number of users per team, including both active and inactive users.",
  "admin.team.maxUsersExample": "Ex \"25\"",
  "admin.team.maxUsersTitle": "Max Users Per Team:",
  "admin.team.noBrandImage": "No brand image uploaded",
  "admin.team.openServerDescription": "When true, anyone can signup for a user account on this server without the need to be invited.",
  "admin.team.openServerTitle": "Enable Open Server: ",
  "admin.team.restrictDescription": "Teams and user accounts can only be created from a specific domain (e.g. \"mattermost.org\") or list of comma-separated domains (e.g. \"corp.mattermost.com, mattermost.org\").",
  "admin.team.restrictDirectMessage": "Enable users to open Direct Message channels with:",
  "admin.team.restrictDirectMessageDesc": "'Any user on the Mattermost server' enables users to open a Direct Message channel with any user on the server, even if they are not on any teams together. 'Any member of the team' limits the ability to open Direct Message channels to only users who are in the same team.",
  "admin.team.restrictExample": "Ex \"corp.mattermost.com, mattermost.org\"",
  "admin.team.restrictNameDesc": "When true, You cannot create a team name with reserved words like www, admin, support, test, channel, etc",
  "admin.team.restrictNameTitle": "Restrict Team Names: ",
  "admin.team.restrictTitle": "Restrict account creation to specified email domains:",
  "admin.team.restrict_direct_message_any": "Any user on the Mattermost server",
  "admin.team.restrict_direct_message_team": "Any member of the team",
  "admin.team.siteNameDescription": "Name of service shown in login screens and UI.",
  "admin.team.siteNameExample": "예: \"Mattermost\"",
  "admin.team.siteNameTitle": "사이트 이름:",
  "admin.team.teamCreationDescription": "When false, only System Administrators can create teams.",
  "admin.team.teamCreationTitle": "Enable Team Creation: ",
  "admin.team.upload": "Upload",
  "admin.team.uploadDesc": "Customize your user experience by adding a custom image to your login screen. See examples at <a href='http://docs.mattermost.com/administration/config-settings.html#custom-branding' target='_blank'>docs.mattermost.com/administration/config-settings.html#custom-branding</a>.",
  "admin.team.uploaded": "Uploaded!",
  "admin.team.uploading": "Uploading..",
  "admin.team.userCreationDescription": "When false, the ability to create accounts is disabled. The create account button displays error when pressed.",
  "admin.team.userCreationTitle": "Enable Account Creation: ",
  "admin.team_analytics.activeUsers": "Active Users With Posts",
  "admin.team_analytics.totalPosts": "Total Posts",
  "admin.true": "활성화",
  "admin.userList.title": "Users for {team}",
  "admin.userList.title2": "Users for {team} ({count})",
  "admin.user_item.authServiceEmail": ", <strong>Sign-in Method:</strong> Email",
  "admin.user_item.authServiceNotEmail": ", <strong>Sign-in Method:</strong> {service}",
  "admin.user_item.confirmDemoteDescription": "If you demote yourself from the System Admin role and there is not another user with System Admin privileges, you'll need to re-assign a System Admin by accessing the Mattermost server through a terminal and running the following command.",
  "admin.user_item.confirmDemoteRoleTitle": "Confirm demotion from System Admin role",
  "admin.user_item.confirmDemotion": "Confirm Demotion",
  "admin.user_item.confirmDemotionCmd": "platform -assign_role -team_name=\"yourteam\" -email=\"name@yourcompany.com\" -role=\"system_admin\"",
  "admin.user_item.emailTitle": "<strong>Email:</strong> {email}",
  "admin.user_item.inactive": "비활성",
  "admin.user_item.makeActive": "활성화",
  "admin.user_item.makeInactive": "비활성화",
  "admin.user_item.makeMember": "Make Member",
  "admin.user_item.makeSysAdmin": "Make System Admin",
  "admin.user_item.makeTeamAdmin": "Make Team Admin",
  "admin.user_item.member": "회원",
  "admin.user_item.mfaNo": ", <strong>MFA</strong>: No",
  "admin.user_item.mfaYes": ", <strong>MFA</strong>: Yes",
  "admin.user_item.resetMfa": "Remove MFA",
  "admin.user_item.resetPwd": "Reset Password",
  "admin.user_item.switchToEmail": "Switch to Email/Password",
  "admin.user_item.sysAdmin": "시스템 관리자",
  "admin.user_item.teamAdmin": "팀 관리자",
  "admin.webserverModeDisabled": "Disabled",
  "admin.webserverModeDisabledDescription": "The Mattermost server will not serve static files.",
  "admin.webserverModeGzip": "gzip",
  "admin.webserverModeGzipDescription": "The Mattermost server will serve static files compressed with gzip.",
  "admin.webserverModeHelpText": "gzip compression applies to static content files. It is recommended to enable gzip to improve performance unless your environment has specific restrictions, such as a web proxy that distributes gzip files poorly. This setting requires a server restart to take effect.",
  "admin.webserverModeTitle": "Webserver Mode:",
  "admin.webserverModeUncompressed": "Uncompressed",
  "admin.webserverModeUncompressedDescription": "The Mattermost server will serve static files uncompressed.",
  "analytics.chart.loading": "로딩 중...",
  "analytics.chart.meaningful": "Not enough data for a meaningful representation.",
  "analytics.system.activeUsers": "Active Users With Posts",
  "analytics.system.channelTypes": "Channel Types",
  "analytics.system.expiredBanner": "The Enterprise license expired on {date}. You have 15 days from this date to renew the license, please contact <a href='mailto:commercial@mattermost.com'>commercial@mattermost.com</a>.",
  "analytics.system.expiringBanner": "The Enterprise license is expiring on {date}. To renew your license, please contact <a href='mailto:commercial@mattermost.com'>commercial@mattermost.com</a>.",
  "analytics.system.postTypes": "Posts, Files and Hashtags",
  "analytics.system.privateGroups": "비공개 그룹",
  "analytics.system.publicChannels": "공개 채널",
  "analytics.system.textPosts": "Posts with Text-only",
  "analytics.system.title": "시스템 통계",
  "analytics.system.totalChannels": "전체 채널",
  "analytics.system.totalCommands": "전체 명령어",
  "analytics.system.totalFilePosts": "Posts with Files",
  "analytics.system.totalHashtagPosts": "Posts with Hashtags",
  "analytics.system.totalIncomingWebhooks": "Incoming Webhook",
  "analytics.system.totalOutgoingWebhooks": "Outgoing Webhook",
  "analytics.system.totalPosts": "전체 글",
  "analytics.system.totalSessions": "전체 세션",
  "analytics.system.totalTeams": "전체 팀",
  "analytics.system.totalUsers": "전체 사용자",
  "analytics.team.activeUsers": "Active Users With Posts",
  "analytics.team.newlyCreated": "Newly Created Users",
  "analytics.team.privateGroups": "비공개 그룹",
  "analytics.team.publicChannels": "공개 채널",
  "analytics.team.recentActive": "Recent Active Users",
  "analytics.team.recentUsers": "Recent Active Users",
  "analytics.team.title": "{team} 팀 통계",
  "analytics.team.totalPosts": "전체 글",
  "analytics.team.totalUsers": "전체 사용자",
  "audit_table.accountActive": "Account made active",
  "audit_table.accountInactive": "Account made inactive",
  "audit_table.action": "Action",
  "audit_table.attemptedAllowOAuthAccess": "Attempted to allow a new OAuth service access",
  "audit_table.attemptedLicenseAdd": "Attempted to add new license",
  "audit_table.attemptedLogin": "Attempted to login",
  "audit_table.attemptedOAuthToken": "Attempted to get an OAuth access token",
  "audit_table.attemptedPassword": "Attempted to change password",
  "audit_table.attemptedRegisterApp": "Attempted to register a new OAuth Application with ID {id}",
  "audit_table.attemptedReset": "Attempted to reset password",
  "audit_table.attemptedWebhookCreate": "Attempted to create a webhook",
  "audit_table.attemptedWebhookDelete": "Attempted to delete a webhook",
  "audit_table.by": " by {username}",
  "audit_table.byAdmin": " by an admin",
  "audit_table.channelCreated": "Created the {channelName} channel/group",
  "audit_table.channelDeleted": "Deleted the channel/group with the URL {url}",
  "audit_table.establishedDM": "Established a direct message channel with {username}",
  "audit_table.failedExpiredLicenseAdd": "Failed to add a new license as it has either expired or not yet been started",
  "audit_table.failedInvalidLicenseAdd": "Failed to add an invalid license",
  "audit_table.failedLogin": "FAILED login attempt",
  "audit_table.failedOAuthAccess": "Failed to allow a new OAuth service access - the redirect URI did not match the previously registered callback",
  "audit_table.failedPassword": "Failed to change password - tried to update user password who was logged in through oauth",
  "audit_table.failedWebhookCreate": "Failed to create a webhook - bad channel permissions",
  "audit_table.failedWebhookDelete": "Failed to delete a webhook - inappropriate conditions",
  "audit_table.headerUpdated": "Updated the {channelName} channel/group header",
  "audit_table.ip": "IP 주소",
  "audit_table.licenseRemoved": "Successfully removed a license",
  "audit_table.loginAttempt": " (Login attempt)",
  "audit_table.loginFailure": " (Login failure)",
  "audit_table.logout": "Logged out of your account",
  "audit_table.member": "회원",
  "audit_table.nameUpdated": "Updated the {channelName} channel/group name",
  "audit_table.oauthTokenFailed": "Failed to get an OAuth access token - {token}",
  "audit_table.revokedAll": "Revoked all current sessions for the team",
  "audit_table.sentEmail": "Sent an email to {email} to reset your password",
  "audit_table.session": "세션 ID",
  "audit_table.sessionRevoked": "The session with id {sessionId} was revoked",
  "audit_table.successfullLicenseAdd": "Successfully added new license",
  "audit_table.successfullLogin": "Successfully logged in",
  "audit_table.successfullOAuthAccess": "Successfully gave a new OAuth service access",
  "audit_table.successfullOAuthToken": "Successfully added a new OAuth service",
  "audit_table.successfullPassword": "Successfully changed password",
  "audit_table.successfullReset": "Successfully reset password",
  "audit_table.successfullWebhookCreate": "Successfully created a webhook",
  "audit_table.successfullWebhookDelete": "Successfully deleted a webhook",
  "audit_table.timestamp": "Timestamp",
  "audit_table.updateGeneral": "Updated the general settings of your account",
  "audit_table.updateGlobalNotifications": "Updated your global notification settings",
  "audit_table.updatePicture": "Updated your profile picture",
  "audit_table.updatedRol": "Updated user role(s) to ",
  "audit_table.userAdded": "Added {username} to the {channelName} channel/group",
  "audit_table.userId": "User ID",
  "audit_table.userRemoved": "Removed {username} to the {channelName} channel/group",
  "audit_table.verified": "Sucessfully verified your email address",
  "authorize.access": "Allow <strong>{appName}</strong> access?",
  "authorize.allow": "Allow",
  "authorize.app": "The app <strong>{appName}</strong> would like the ability to access and modify your basic information.",
  "authorize.deny": "Deny",
  "authorize.title": "<strong>{appName}</strong> would like to connect to your <strong>Mattermost</strong> user account",
  "backstage_list.search": "검색",
  "backstage_navbar.backToMattermost": "Back to {siteName}",
  "backstage_sidebar.integrations": "Integrations",
  "backstage_sidebar.integrations.commands": "슬래시 명령어",
  "backstage_sidebar.integrations.incoming_webhooks": "Incoming Webhooks",
  "backstage_sidebar.integrations.oauthApps": "OAuth 2.0 Applications",
  "backstage_sidebar.integrations.outgoing_webhooks": "Outgoing Webhooks",
  "center_panel.recent": "Click here to jump to recent messages. ",
  "chanel_header.addMembers": "Add Members",
  "change_url.close": "닫기",
  "change_url.endWithLetter": "Must end with a letter or number",
  "change_url.invalidUrl": "잘못된 URL",
  "change_url.longer": "Must be longer than two characters",
  "change_url.noUnderscore": "Can not contain two underscores in a row.",
  "change_url.startWithLetter": "Must start with a letter or number",
  "channel_flow.alreadyExist": "이미 존재하는 채널 URL입니다.",
  "channel_flow.changeUrlDescription": "일부 URL로 사용할 수 없는 문자들은 제거될 수 있습니다.",
  "channel_flow.changeUrlTitle": "{term} URL 변경",
  "channel_flow.channel": "채널",
  "channel_flow.create": "Create {term}",
  "channel_flow.group": "그룹",
  "channel_flow.invalidName": "잘못된 채널 이름",
  "channel_flow.set_url_title": "Set {term} URL",
  "channel_header.channel": "채널",
  "channel_header.channelHeader": "채널 헤더 설정...",
  "channel_header.delete": "{term} 삭제...",
  "channel_header.group": "그룹",
  "channel_header.leave": "{term} 떠나기",
  "channel_header.manageMembers": "회원 관리",
  "channel_header.notificationPreferences": "알림 설정",
  "channel_header.recentMentions": "최근 멘션",
  "channel_header.rename": "{term}의 이름을 변경...",
  "channel_header.setHeader": "{term}의 헤더 설정...",
  "channel_header.setPurpose": "{term}의 설명 설정...",
  "channel_header.viewInfo": "정보 보기",
  "channel_header.viewMembers": "회원 보기",
  "channel_info.about": "About",
  "channel_info.close": "닫기",
  "channel_info.header": "헤더:",
  "channel_info.id": "ID: ",
  "channel_info.name": "이름:",
  "channel_info.notFound": "채널을 찾을 수 없습니다.",
  "channel_info.purpose": "설명:",
  "channel_info.url": "URL:",
  "channel_invite.add": " 추가",
  "channel_invite.addNewMembers": "Add New Members to ",
  "channel_invite.close": "닫기",
  "channel_loader.connection_error": "There appears to be a problem with your internet connection.",
  "channel_loader.posted": "Posted",
  "channel_loader.socketError": "Please check connection, Mattermost unreachable. If issue persists, ask administrator to check WebSocket port.",
  "channel_loader.someone": "Someone",
  "channel_loader.something": " did something new",
  "channel_loader.unknown_error": "We received an unexpected status code from the server.",
  "channel_loader.uploadedFile": " uploaded a file",
  "channel_loader.uploadedImage": " uploaded an image",
  "channel_loader.wrote": " wrote: ",
  "channel_members_modal.addNew": " 새로운 회원 추가",
  "channel_members_modal.close": "닫기",
  "channel_members_modal.remove": "제거하기",
  "channel_memebers_modal.members": " 회원",
  "channel_modal.cancel": "취소",
  "channel_modal.channel": "채널",
  "channel_modal.createNew": "새로운 ",
  "channel_modal.descriptionHelp": "{term}은 이렇게 사용되어야 합니다.",
  "channel_modal.displayNameError": "필수 항목입니다.",
  "channel_modal.edit": "편집",
  "channel_modal.group": "그룹",
  "channel_modal.header": "헤더",
  "channel_modal.headerHelp": "{term} 상단 이름 옆에 표시될 텍스트를 입력하세요. 예를 들면, 다음과 같이 자주 사용되는 링크를 등록할 수 있습니다. [Link Title](http://example.com).",
  "channel_modal.modalTitle": "새로운 ",
  "channel_modal.name": "이름",
  "channel_modal.nameEx": "예시: \"Bugs\", \"Marketing\", \"고객지원\"",
  "channel_modal.optional": "(선택사항)",
  "channel_modal.privateGroup1": "일부 회원만 접근할 수 있는 비공개 그룹을 만듭니다. ",
  "channel_modal.privateGroup2": "비공개 그룹 만들기",
  "channel_modal.publicChannel1": "공개 채널 만들기",
  "channel_modal.publicChannel2": "누구나 참여할 수 있는 새 공개 채널을 만듭니다. ",
  "channel_modal.purpose": "설명",
  "channel_notifications.allActivity": "모든 활동",
  "channel_notifications.allUnread": "모든 읽지않은 메시지",
  "channel_notifications.globalDefault": "전역 기본 설정 ({notifyLevel})",
  "channel_notifications.markUnread": "읽지 않은 채널 표시",
  "channel_notifications.never": "알림 사용 안함",
  "channel_notifications.onlyMentions": "멘션만",
  "channel_notifications.override": "\"전역 기본 설정\" 외 다른 옵션을 선택하면 전역으로 설정한 알림 설정이 무시됩니다. 데스크탑 알림은 Firefox, Safari, Chrome에서 사용 가능합니다.",
  "channel_notifications.preferences": "채널 알림 설정: ",
  "channel_notifications.sendDesktop": "데스크탑 알림 받기",
  "channel_notifications.unreadInfo": "읽지 않은 채널은 사이드바에서 굵은 글씨로 표시됩니다. \"멘션만\"을 선택하면 내가 멘션된 채널만 굵게 표시됩니다.",
  "channel_select.placeholder": "--- 채널을 선택하세요 ---",
  "channel_switch_modal.dm": "(개인 메시지)",
  "channel_switch_modal.help": "채널 이름을 입력하세요. ↑↓ 방향키와 TAB키를 이용하여 선택하세요, ↵ 엔터키를 누르면 확인, ESC키를 누르면 취소됩니다.",
  "channel_switch_modal.not_found": "No matches found.",
  "channel_switch_modal.submit": "변경",
  "channel_switch_modal.title": "채널 변경",
  "claim.account.noEmail": "No email specified",
  "claim.email_to_ldap.enterLdapPwd": "Enter the ID and password for your LDAP account",
  "claim.email_to_ldap.enterPwd": "Enter the password for your {site} email account",
  "claim.email_to_ldap.ldapId": "LDAP ID",
  "claim.email_to_ldap.ldapIdError": "LDAP ID를 입력하세요.",
  "claim.email_to_ldap.ldapPasswordError": "LDAP 비밀번호를 입력하세요.",
  "claim.email_to_ldap.ldapPwd": "LDAP 비밀번호",
  "claim.email_to_ldap.pwd": "비밀번호",
  "claim.email_to_ldap.pwdError": "비밀번호를 입력하세요.",
  "claim.email_to_ldap.ssoNote": "You must already have a valid LDAP account",
  "claim.email_to_ldap.ssoType": "Upon claiming your account, you will only be able to login with LDAP",
  "claim.email_to_ldap.switchTo": "LDAP 계정으로 변경",
  "claim.email_to_ldap.title": "이메일/비밀번호 계정을 LDAP 계정으로 변경",
  "claim.email_to_oauth.enterPwd": "Enter the password for your {site} account",
  "claim.email_to_oauth.pwd": "비밀번호",
  "claim.email_to_oauth.pwdError": "비밀번호를 입력하세요.",
  "claim.email_to_oauth.ssoNote": "You must already have a valid {type} account",
  "claim.email_to_oauth.ssoType": "Upon claiming your account, you will only be able to login with {type} SSO",
  "claim.email_to_oauth.switchTo": "Switch account to {uiType}",
  "claim.email_to_oauth.title": "이메일/비밀번호 계정을 {uiType} 계정으로 변경",
  "claim.ldap_to_email.confirm": "비밀번호 확인",
  "claim.ldap_to_email.email": "You will use the email {email} to login",
  "claim.ldap_to_email.enterLdapPwd": "Enter your {ldapPassword} for your {site} email account",
  "claim.ldap_to_email.enterPwd": "Enter a new password for your email account",
  "claim.ldap_to_email.ldapPasswordError": "LDAP 비밀번호를 입력하세요.",
  "claim.ldap_to_email.ldapPwd": "LDAP 비밀번호",
  "claim.ldap_to_email.pwd": "비밀번호",
  "claim.ldap_to_email.pwdError": "비밀번호를 입력하세요.",
  "claim.ldap_to_email.pwdNotMatch": "비밀번호가 일치하지 않습니다.",
  "claim.ldap_to_email.ssoType": "Upon claiming your account, you will only be able to login with your email and password",
  "claim.ldap_to_email.switchTo": "Switch account to email/password",
  "claim.ldap_to_email.title": "Switch LDAP Account to Email/Password",
  "claim.oauth_to_email.confirm": "비밀번호 확인",
  "claim.oauth_to_email.description": "Upon changing your account type, you will only be able to login with your email and password.",
  "claim.oauth_to_email.enterNewPwd": "Enter a new password for your {site} email account",
  "claim.oauth_to_email.enterPwd": "비밀번호를 입력하세요.",
  "claim.oauth_to_email.newPwd": "새로운 비밀번호",
  "claim.oauth_to_email.pwdNotMatch": "비밀번호가 일치하지 않습니다.",
  "claim.oauth_to_email.switchTo": "Switch {type} to email and password",
  "claim.oauth_to_email.title": "Switch {type} Account to Email",
  "confirm_modal.cancel": "취소",
  "create_comment.addComment": "답글 달기...",
  "create_comment.comment": "답글 달기",
  "create_comment.commentLength": "Comment length must be less than {max} characters.",
  "create_comment.commentTitle": "Comment",
  "create_comment.file": "File uploading",
  "create_comment.files": "Files uploading",
  "create_post.comment": "답글",
  "create_post.post": "글",
  "create_post.tutorialTip": "<h4>메시지 보내기</h4><p>보내고 싶은 메시지를 작성하고 <strong>Enter</strong>키를 눌러 보내세요.</p><p><strong>첨부</strong> 버튼을 눌러 이미지나 파일을 업로드하세요.</p>",
  "create_post.write": "메시지를 입력하세요...",
  "create_team.agreement": "By proceeding to create your account and use {siteName}, you agree to our <a href='/static/help/terms.html'>Terms of Service</a> and <a href='/static/help/privacy.html'>Privacy Policy</a>. If you do not agree, you cannot use {siteName}.",
  "create_team.display_name.back": "이전 단계로 돌아가기",
  "create_team.display_name.charLength": "Name must be 4 or more characters up to a maximum of 15",
  "create_team.display_name.nameHelp": "Name your team in any language. Your team name shows in menus and headings.",
  "create_team.display_name.next": "다음",
  "create_team.display_name.required": "필수 항목입니다.",
  "create_team.display_name.teamName": "팀 이름",
  "create_team.team_url.back": "이전 단계로 돌아가기",
  "create_team.team_url.charLength": "Name must be 4 or more characters up to a maximum of 15",
  "create_team.team_url.creatingTeam": "팀 생성 중...",
  "create_team.team_url.finish": "완료",
  "create_team.team_url.hint": "<li>Short and memorable is best</li><li>Use lowercase letters, numbers and dashes</li><li>Must start with a letter and can't end in a dash</li>",
  "create_team.team_url.regex": "Use only lower case letters, numbers and dashes. Must start with a letter and can't end in a dash.",
  "create_team.team_url.required": "필수 항목입니다.",
  "create_team.team_url.taken": "URL is taken or contains a reserved word",
  "create_team.team_url.teamUrl": "팀 URL",
  "create_team.team_url.unavailable": "This URL is unavailable. Please try another.",
  "create_team.team_url.webAddress": "Choose the web address of your new team:",
  "custom_emoji.empty": "사용자 정의 이모티콘이 없습니다.",
  "custom_emoji.header": "사용자 정의 이모티콘",
  "custom_emoji.search": "사용자 정의 이모티콘 검색하기",
  "delete_channel.cancel": "취소",
  "delete_channel.channel": "채널",
  "delete_channel.confirm": "채널 삭제 확인",
  "delete_channel.del": "삭제",
  "delete_channel.group": "그룹",
  "delete_channel.question": "정말 {display_name} {term}을 삭제하시겠습니까?",
  "delete_post.cancel": "취소",
  "delete_post.comment": "답글",
  "delete_post.confirm": "{term} 삭제 확인",
  "delete_post.del": "삭제",
  "delete_post.post": "글",
  "delete_post.question": "정말 {term}을 삭제하시겠습니까?",
  "delete_post.warning": "글에 {count}개의 답글이 있습니다.",
  "edit_channel_header_modal.cancel": "취소",
  "edit_channel_header_modal.description": "상단 채널 이름 옆에 표시될 글자를 편집하세요.",
  "edit_channel_header_modal.error": "채널 헤더가 너무 깁니다. 더 짧은 헤더를 사용하세요.",
  "edit_channel_header_modal.save": "저장",
  "edit_channel_header_modal.title": "{channel}의 헤더 편집",
  "edit_channel_header_modal.title_dm": "헤더 편집",
  "edit_channel_purpose_modal.body": "{type}(이)가 어떻게 사용되어야 하는지 설명하세요. 이 설명은 채널 목록의 \"더 보기...\"에서 가입을 위한 도움말로 표시됩니다.",
  "edit_channel_purpose_modal.cancel": "취소",
  "edit_channel_purpose_modal.channel": "채널",
  "edit_channel_purpose_modal.error": "채널 설명이 너무 깁니다. 더 짧은 채널 설명을 사용하세요.",
  "edit_channel_purpose_modal.group": "그룹",
  "edit_channel_purpose_modal.save": "저장",
  "edit_channel_purpose_modal.title1": "설명 편집",
  "edit_channel_purpose_modal.title2": "설명 편집: ",
  "edit_post.cancel": "취소",
  "edit_post.edit": "{title} 편집",
  "edit_post.editPost": "글 편집하기...",
  "edit_post.save": "저장",
  "email_signup.address": "이메일 주소",
  "email_signup.createTeam": "팀 만들기",
  "email_signup.emailError": "유효한 이메일 주소를 입력하세요.",
  "email_signup.find": "Find my teams",
  "email_verify.almost": "{siteName}: You are almost done",
  "email_verify.failed": " 검증메일 발송을 실패했습니다.",
  "email_verify.notVerifiedBody": "Please verify your email address. Check your inbox for an email.",
  "email_verify.resend": "다시 보내기",
  "email_verify.sent": " 검증 메일을 보냈습니다.",
  "email_verify.verified": "{siteName} 이메일 검증됨",
  "email_verify.verifiedBody": "<p>이메일 검증이 완료되었습니다! <a href={url}>여기</a>를 클릭하여 로그인하세요.</p>",
  "email_verify.verifyFailed": "이메일 검증을 실패했습니다.",
  "emoji_list.actions": "액션",
  "emoji_list.add": "사용자 정의 이모티콘",
  "emoji_list.creator": "만든 사람",
  "emoji_list.delete": "삭제",
  "emoji_list.empty": "사용자 정의 이모티콘이 없습니다.",
  "emoji_list.help": "사용자 정의 이모티콘은 서버의 모두가 사용할 수 있습니다. 메시지 창에 ':'를 입력하여 이모티콘 선택 메뉴를 활성화 할 수 있습니다. 새로운 이모티콘을 등록하면 다른 사용자들은 사용하기 위해 페이지를 새로고침 해야할 수 있습니다.",
  "emoji_list.help2": "팁: 첫 글자로 #, ##, ### 를 입력하면 이모티콘을 더 크게 새로운 행에서 사용할 수 있습니다. '# :smile:'로 메시지를 보내 확인해보세요.",
  "emoji_list.image": "이미지",
  "emoji_list.name": "이름",
  "emoji_list.search": "사용자 정의 이모티콘 검색하기",
  "emoji_list.somebody": "다른 팀의 사용자",
  "error.not_found.link_message": "Mattermost로 돌아가기",
  "error.not_found.message": "The page you were trying to reach does not exist",
  "error.not_found.title": "페이지를 찾을 수 없습니다.",
  "error.not_supported.message": "비밀모드는 지원되지 않습니다.",
  "error.not_supported.title": "지원되지 않는 브라우저입니다.",
  "error_bar.expired": "엔터프라이즈 라이센스가 만료되었습니다; 15일 안에 라이센스를 갱신해야 합니다, 자세한 내용은 commercial@mattermost.com에 문의하세요.",
  "error_bar.expiring": "엔터프라이즈 라이센스가 {date}에 만료됩니다. 라이센스를 갱신하려면, commercial@mattermost.com에 문의하세요.",
  "error_bar.past_grace": "엔터프라이즈 라이센스가 만료되었습니다, 자세한 내용은 시스템 관리자에게 문의하세요.",
  "error_bar.preview_mode": "미리보기 모드: 이메일 알림이 설정되지 않았습니다.",
  "file_attachment.download": "다운로드",
  "file_info_preview.size": "용량 ",
  "file_info_preview.type": "파일 형식 ",
  "file_upload.fileAbove": "File above {max}MB cannot be uploaded: {filename}",
  "file_upload.filesAbove": "Files above {max}MB cannot be uploaded: {filenames}",
  "file_upload.limited": "Uploads limited to {count} files maximum. Please use additional posts for more files.",
  "file_upload.pasted": "Image Pasted at ",
  "filtered_user_list.any_team": "모든 사용자",
  "filtered_user_list.count": "{count}{count, plural, =0 {0명} one {명} other {명}}",
  "filtered_user_list.countTotal": "{total}명 중 {count}{count, plural, =0 {0명} one {명} other {명}}",
  "filtered_user_list.member": "회원",
  "filtered_user_list.search": "회원 검색",
  "filtered_user_list.show": "필터:",
  "filtered_user_list.team_only": "팀의 회원만",
  "find_team.email": "이메일",
  "find_team.findDescription": "An email was sent with links to any teams to which you are a member.",
  "find_team.findTitle": "팀 찾기",
  "find_team.getLinks": "Get an email with links to any teams to which you are a member.",
  "find_team.placeholder": "you@domain.com",
  "find_team.send": "보내기",
  "find_team.submitError": "유효한 이메일 주소를 입력하세요.",
  "flag_post.flag": "Flag for follow up",
  "flag_post.unflag": "Unflag",
  "general_tab.chooseName": "사용자 이름을 선택하세요.",
  "general_tab.codeDesc": "가입 링크를 변경하려면 '편집'을 클릭하세요.",
  "general_tab.codeLongDesc": "The Invite Code is used as part of the URL in the team invitation link created by <strong>Get Team Invite Link</strong> in the main menu. Regenerating creates a new team invitation link and invalidates the previous link.",
  "general_tab.codeTitle": "가입 링크",
  "general_tab.dirDisabled": "Team Directory has been disabled.  Please ask a System Admin to enable the Team Directory in the System Console team settings.",
  "general_tab.dirOff": "Team directory is turned off for this system.",
  "general_tab.includeDirDesc": "Including this team will display the team name from the Team Directory section of the Home Page, and provide a link to the sign-in page.",
  "general_tab.includeDirTitle": "Include this team in the Team Directory",
  "general_tab.no": "아니요",
  "general_tab.openInviteDesc": "When allowed, a link to this team will be included on the landing page allowing anyone with an account to join this team.",
  "general_tab.openInviteTitle": "계정이 있는 사용자가 이 팀에 가입하는 것을 허용합니까?",
  "general_tab.regenerate": "재성성",
  "general_tab.required": "필수 항목입니다.",
  "general_tab.teamName": "팀 이름",
  "general_tab.teamNameInfo": "설정한 팀 이름은 로그인 화면과 왼쪽 사이드바 상단에 표시됩니다.",
  "general_tab.title": "일반 설정",
  "general_tab.yes": "네",
  "get_app.alreadyHaveIt": "Already have it?",
  "get_app.androidAppName": "Mattermost for Android",
  "get_app.androidHeader": "Mattermost works best if you switch to our Android app",
  "get_app.continue": "continue",
  "get_app.continueWithBrowser": "Or {link}",
  "get_app.continueWithBrowserLink": "continue with browser",
  "get_app.iosHeader": "Mattermost works best if you switch to our iPhone app",
  "get_app.mattermostInc": "Mattermost, Inc",
  "get_app.openMattermost": "Open Mattermost",
  "get_link.clipboard": " 링크가 클립보드에 복사되었습니다.",
  "get_link.close": "닫기",
  "get_link.copy": "링크 복사",
  "get_post_link_modal.help": "아래 링크를 통해 허용된 사용자가 내 글을 볼 수 있습니다.",
  "get_post_link_modal.title": "바로가기 링크 복사",
  "get_team_invite_link_modal.help": "아래 링크를 통해 팀에 가입할 수 있습니다. 팀 가입 링크는 여러 사람들에게 공유될 수 있고, 팀 관리자에 의해 변경될 수 있습니다.",
  "get_team_invite_link_modal.helpDisabled": "팀의 신규 사용자 가입이 비활성화 되어있습니다. 팀 관리자에게 문의하세요.",
  "get_team_invite_link_modal.title": "팀 가입 링크",
  "installed_command.header": "슬래시 명령어",
  "installed_commands.add": "슬래시 명령어 추가",
  "installed_commands.empty": "명령어가 없습니다.",
  "installed_commands.header": "슬래시 명령어",
  "installed_commands.help": "외부 통합에 사용하기 위한 슬래시 명령어를 생성하세요. 자세한 내용은 {link}를 참조하세요.",
  "installed_commands.helpLink": "문서",
  "installed_commands.search": "슬래시 명령어 검색하기",
  "installed_commands.unnamed_command": "이름없는 슬래시 명령어",
  "installed_incoming_webhooks.add": "Incoming Webhook 추가하기",
  "installed_incoming_webhooks.empty": "Incoming webhook이 없습니다.",
  "installed_incoming_webhooks.header": "Incoming Webhooks",
  "installed_incoming_webhooks.help": "외부 통합에 사용하기 위한 Incoming webhook URL을 생성하세요. 자세한 내용은 {link}를 참조하세요.",
  "installed_incoming_webhooks.helpLink": "문서",
  "installed_incoming_webhooks.search": "Incoming Webhook 검색하기",
  "installed_incoming_webhooks.unknown_channel": "A Private Webhook",
  "installed_integrations.callback_urls": "Callback URLs: {urls}",
  "installed_integrations.client_id": "Client ID: <strong>{clientId}</strong>",
  "installed_integrations.client_secret": "Client Secret: <strong>{clientSecret}</strong>",
  "installed_integrations.content_type": "Content-Type: {contentType}",
  "installed_integrations.creation": "Created by {creator} on {createAt, date, full}",
  "installed_integrations.delete": "삭제",
  "installed_integrations.hideSecret": "Hide Secret",
  "installed_integrations.regenToken": "토큰 재생성하기",
  "installed_integrations.showSecret": "Show Secret",
  "installed_integrations.token": "토큰: {token}",
  "installed_integrations.triggerWhen": "Trigger When: {triggerWhen}",
  "installed_integrations.triggerWords": "Trigger Words: {triggerWords}",
  "installed_integrations.unnamed_oauth_app": "Unnamed OAuth 2.0 Application",
  "installed_integrations.url": "URL: {url}",
  "installed_oauth_apps.add": "Add OAuth 2.0 Application",
  "installed_oauth_apps.callbackUrls": "Callback URLs (One Per Line)",
  "installed_oauth_apps.cancel": "취소",
  "installed_oauth_apps.description": "설명",
  "installed_oauth_apps.empty": "No OAuth 2.0 Applications found",
  "installed_oauth_apps.header": "OAuth 2.0 Applications",
  "installed_oauth_apps.help": "OAuth 2.0 Applications are available to everyone on your server.",
  "installed_oauth_apps.homepage": "Homepage",
  "installed_oauth_apps.iconUrl": "Icon URL",
  "installed_oauth_apps.is_trusted": "Is Trusted: <strong>{isTrusted}</strong>",
  "installed_oauth_apps.name": "표시명",
  "installed_oauth_apps.save": "저장",
  "installed_oauth_apps.search": "Search OAuth 2.0 Applications",
  "installed_oauth_apps.trusted": "Is Trusted",
  "installed_oauth_apps.trusted.no": "아니요",
  "installed_oauth_apps.trusted.yes": "네",
  "installed_outgoing_webhooks.add": "Outgoing Webhook 추가하기",
  "installed_outgoing_webhooks.empty": "Outgoing webhook이 없습니다.",
  "installed_outgoing_webhooks.header": "Outgoing Webhooks",
  "installed_outgoing_webhooks.help": "외부 통합에 사용하기 위한 Outgoing webhook URL을 생성하세요. 자세한 내용은 {link}를 참조하세요.",
  "installed_outgoing_webhooks.helpLink": "문서",
  "installed_outgoing_webhooks.search": "Outgoing Webhooks 검색하기",
  "installed_outgoing_webhooks.unknown_channel": "A Private Webhook",
  "integrations.command.description": "슬래시 명령어는 외부에 연결한 서비스에 이벤트를 보냅니다.",
  "integrations.command.title": "슬래시 명령어",
  "integrations.header": "통합 기능",
  "integrations.incomingWebhook.description": "Incoming webhook은 외부 시스템에서 메시지를 받는 것을 허용합니다.",
  "integrations.incomingWebhook.title": "Incoming Webhook",
  "integrations.oauthApps.description": "OAuth 2.0 allows external applications to make authorized requests to the Mattermost API.",
  "integrations.oauthApps.title": "OAuth 2.0 Applications",
  "integrations.outgoingWebhook.description": "Outgoing webhook은 외부 시스템에 메시지를 요청하고 응답받는 것을 허용합니다.",
  "integrations.outgoingWebhook.title": "Outgoing Webhook",
  "intro_messages.DM": "{teammate}와 개인 메시지 기록의 시작입니다.<br />개인 메시지나 여기서 공유된 파일들은 외부에서 보여지지 않습니다.",
  "intro_messages.anyMember": " 모든 회원가 이 채널에 가입하고 글을 읽을 수 있습니다.",
  "intro_messages.beginning": "{name}의 시작",
  "intro_messages.channel": "채널",
  "intro_messages.creator": "<strong>{name}</strong> {type}입니다. 만든 사람: <strong>{creator}</strong> 만든 날짜: <strong>{date}</strong>",
  "intro_messages.default": "<h4 class='channel-intro__title'>{display_name}의 시작</h4><p class='channel-intro__content'><strong>{display_name}에 오신 것을 환영합니다!</strong><br/><br/>이 곳은 팀 회원가 처음 로그인 할 때 보이는 공간입니다다 - 모두가 알아야할 내용을 공유하는데 사용하세요.</p>",
  "intro_messages.group": "비공개 그룹",
  "intro_messages.invite": "{type}에 사용자 초대하기",
  "intro_messages.inviteOthers": "팀에 사용자 초대하기",
  "intro_messages.noCreator": "{name} {type}입니다. 만들어진 날짜: {date}.",
  "intro_messages.offTopic": "<h4 class=\"channel-intro__title\">{display_name}의 시작</h4><p class=\"channel-intro__content\">{display_name}(은)는 비업무 대화를 위한 공간입니다.<br/></p>",
  "intro_messages.onlyInvited": " 초대받은 회원만 이 비공개 그룹을 볼 수 있습니다.",
  "intro_messages.setHeader": "헤더 설정",
  "intro_messages.teammate": "This is the start of your direct message history with this teammate. Direct messages and files shared here are not shown to people outside this area.",
  "invite_member.addAnother": "더 초대하기",
  "invite_member.autoJoin": "<strong>{channel}</strong> 채널에 자동으로 초대됩니다.",
  "invite_member.cancel": "취소",
  "invite_member.content": "이메일과 이메일 초대 기능이 비활성화 되어있습니다. 시스템 관리자에게 문의하세요.",
  "invite_member.disabled": "팀의 신규 사용자 가입이 비활성화 되어있습니다. 팀 관리자에게 문의하세요.",
  "invite_member.emailError": "유효한 이메일 주소를 입력하세요.",
  "invite_member.firstname": "이름",
  "invite_member.inviteLink": "팀 가입 링크",
  "invite_member.lastname": "성",
  "invite_member.modalButton": "네, 취소합니다.",
  "invite_member.modalMessage": "You have unsent invitations, are you sure you want to discard them?",
  "invite_member.modalTitle": "초대를 취소하시겠습니까?",
  "invite_member.newMember": "회원 초대하기",
  "invite_member.send": "보내기",
  "invite_member.send2": "보내기",
  "invite_member.sending": " 보내는 중",
  "invite_member.teamInviteLink": "{link}로도 초대할 수 있습니다.",
  "ldap_signup.find": "Find my teams",
  "ldap_signup.ldap": "GitLab 계정으로 팀 만들기",
  "ldap_signup.length_error": "Name must be 3 or more characters up to a maximum of 15",
  "ldap_signup.teamName": "팀 이름을 입력하세요.",
  "ldap_signup.team_error": "팀 이름을 입력하세요.",
  "loading_screen.loading": "불러오는 중",
  "login.changed": " Sign-in method changed successfully",
  "login.create": "Create one now",
  "login.createTeam": "팀 만들기",
  "login.createTeamAdminOnly": "This option is only available for System Administrators, and does not show up for other users.",
  "login.email": "이메일",
  "login.find": "다른 팀 찾기",
  "login.forgot": "비밀번호를 잊어버리셨나요?",
  "login.gitlab": "GitLab",
  "login.google": "Google Apps",
  "login.invalidPassword": "비밀번호가 일치하지 않습니다.",
  "login.ldapUsername": "LDAP 사용자명",
  "login.ldapUsernameLower": "LDAP 사용자명",
  "login.noAccount": "계정이 없으신가요? ",
  "login.noEmail": "이메일을 입력하세요.",
  "login.noEmailLdapUsername": "이메일 또는 {ldapUsername}을 입력하세요.",
  "login.noEmailUsername": "이메일 또는 사용자명을 입력하세요.",
  "login.noEmailUsernameLdapUsername": "이메일, 사용자명 또는 {ldapUsername}을 입력하세요.",
  "login.noLdapUsername": "{ldapUsername}을 입력하세요.",
  "login.noPassword": "비밀번호를 입력하세요.",
  "login.noUsername": "사용자명을 입력하세요.",
  "login.noUsernameLdapUsername": "사용자명 또는 {ldapUsername}을 입력하세요.",
  "login.office365": "Office 365",
  "login.on": "on {siteName}",
  "login.or": "또는",
  "login.password": "비밀번호",
  "login.passwordChanged": " 비밀번호가 성공적으로 변경되었습니다.",
  "login.session_expired": " 세션이 만료되었습니다. 다시 로그인 하세요.",
  "login.signIn": "로그인",
  "login.signInWith": "다음으로 로그인하기:",
  "login.userNotFound": "입력된 계정과 일치하는 사용자 정보를 찾을 수 없습니다.",
  "login.username": "사용자 이름",
  "login.verified": " 이메일 검증됨",
  "login_mfa.enterToken": "To complete the sign in process, please enter a token from your smartphone's authenticator",
  "login_mfa.submit": "제출",
  "login_mfa.token": "MFA 토큰",
  "login_mfa.tokenReq": "MFA 토큰을 입력하세요.",
  "member_item.makeAdmin": "관리자로 설정하기",
  "member_item.member": "회원",
  "member_list.noUsersAdd": "추가할 유저가 없습니다.",
  "members_popover.msg": "메시지",
  "members_popover.title": "회원",
  "more_channels.close": "닫기",
  "more_channels.create": "새로 만들기",
  "more_channels.createClick": "'새로 만들기'를 클릭하여 새로운 채널을 만드세요",
  "more_channels.join": "가입하기",
  "more_channels.noMore": "가입할 수 있는 채널이 없습니다",
  "more_channels.title": "채널 더보기",
  "more_direct_channels.close": "닫기",
  "more_direct_channels.message": "메시지",
  "more_direct_channels.title": "개인 메시지",
  "msg_typing.areTyping": "{users} and {last} are typing...",
  "msg_typing.isTyping": "{user} is typing...",
  "msg_typing.someone": "Someone",
  "navbar.addMembers": "Add Members",
  "navbar.click": "Click here",
  "navbar.delete": "채널 삭제하기...",
  "navbar.leave": "채널 떠나기",
  "navbar.manageMembers": "회원 관리하기",
  "navbar.noHeader": "No channel header yet.{newline}{link} to add one.",
  "navbar.preferences": "알림 설정",
  "navbar.rename": "채널 이름 변경...",
  "navbar.setHeader": "채널 헤더 설정...",
  "navbar.setPurpose": "채널 설명 설정...",
  "navbar.toggle1": "Toggle sidebar",
  "navbar.toggle2": "Toggle sidebar",
  "navbar.viewInfo": "정보 보기",
  "navbar_dropdown.about": "Mattermost 정보",
  "navbar_dropdown.accountSettings": "계정 설정",
  "navbar_dropdown.console": "관리자 도구",
  "navbar_dropdown.create": "팀 만들기",
  "navbar_dropdown.emoji": "사용자 정의 이모티콘",
  "navbar_dropdown.help": "도움말",
  "navbar_dropdown.integrations": "통합 기능",
  "navbar_dropdown.inviteMember": "회원 초대하기",
  "navbar_dropdown.leave": "팀 떠나기",
  "navbar_dropdown.logout": "로그아웃",
  "navbar_dropdown.manageMembers": "회원 관리하기",
  "navbar_dropdown.nativeApps": "네이티브 앱 다운로드",
  "navbar_dropdown.report": "문제 보고",
  "navbar_dropdown.switchTeam": "{team}(으)로 돌아가기",
  "navbar_dropdown.switchTo": "팀 변경: ",
  "navbar_dropdown.teamLink": "팀 가입 링크",
  "navbar_dropdown.teamSettings": "팀 설정",
  "navbar_dropdown.viewMembers": "회원목록 보기",
  "notification.dm": "개인 메시지",
  "password_form.change": "비밀번호 변경하기",
  "password_form.click": "Click <a href={url}>here</a> to log in.",
  "password_form.enter": "Enter a new password for your {siteName} account.",
  "password_form.error": "최소 {chars}글자 이상 입력하세요.",
  "password_form.pwd": "비밀번호",
  "password_form.title": "Password Reset",
  "password_form.update": "Your password has been updated successfully.",
  "password_send.checkInbox": "Please check your inbox.",
  "password_send.description": "To reset your password, enter the email address you used to sign up",
  "password_send.email": "이메일",
  "password_send.error": "유효한 이메일 주소를 입력하세요.",
  "password_send.link": "<p>A password reset link has been sent to <b>{email}</b></p>",
  "password_send.reset": "Reset my password",
  "password_send.title": "Password Reset",
  "pending_post_actions.cancel": "취소",
  "pending_post_actions.retry": "다시 시도",
  "permalink.error.access": "Permalink belongs to a deleted message or to a channel to which you do not have access.",
  "post_attachment.collapse": "Show less...",
  "post_attachment.more": "더 보기...",
  "post_body.commentedOn": "Commented on {name}{apostrophe} message: ",
  "post_body.deleted": "(삭제된 메시지)",
  "post_body.plusMore": " plus {count} other files",
  "post_body.plusOne": " plus 1 other file",
  "post_delete.notPosted": "Comment could not be posted",
  "post_delete.okay": "확인",
  "post_delete.someone": "Someone deleted the message on which you tried to post a comment.",
  "post_focus_view.beginning": "채널의 시작",
  "post_info.del": "삭제",
  "post_info.edit": "편집",
  "post_info.mobile.flag": "Flag",
  "post_info.mobile.unflag": "Unflag",
  "post_info.permalink": "링크",
  "post_info.reply": "답글",
  "posts_view.loadMore": "메시지 더 보기",
  "posts_view.newMsg": "New Messages",
  "removed_channel.channelName": "the channel",
  "removed_channel.from": "Removed from ",
  "removed_channel.okay": "확인",
  "removed_channel.remover": "{remover} removed you from {channel}",
  "removed_channel.someone": "Someone",
  "rename_channel.cancel": "취소",
  "rename_channel.defaultError": " - 기본 채널의 URL은 변경할 수 없습니다.",
  "rename_channel.displayName": "표시명",
  "rename_channel.displayNameHolder": "표시명을 입력하세요.",
  "rename_channel.handle": "URL",
  "rename_channel.handleHolder": "lowercase alphanumeric&#39;s only",
  "rename_channel.lowercase": "Must be lowercase alphanumeric characters",
  "rename_channel.maxLength": "This field must be less than 22 characters",
  "rename_channel.required": "필수 항목입니다.",
  "rename_channel.save": "저장",
  "rename_channel.title": "채널 이름 변경",
  "rhs_comment.comment": "답글",
  "rhs_comment.del": "삭제",
  "rhs_comment.edit": "편집",
  "rhs_comment.mobile.flag": "Flag",
  "rhs_comment.mobile.unflag": "Unflag",
  "rhs_comment.permalink": "바로가기",
  "rhs_header.backToFlaggedTooltip": "Back to Flagged Posts",
  "rhs_header.backToResultsTooltip": "검색결과로 돌아가기",
  "rhs_header.closeSidebarTooltip": "사이드바 닫기",
  "rhs_header.details": "메시지 세부사항",
  "rhs_header.expandSidebarTooltip": "Expand Sidebar",
  "rhs_header.shrinkSidebarTooltip": "Shrink Sidebar",
  "rhs_root.del": "삭제",
  "rhs_root.direct": "개인 메시지",
  "rhs_root.edit": "편집",
  "rhs_root.mobile.flag": "Flag",
  "rhs_root.mobile.unflag": "Unflag",
  "rhs_root.permalink": "바로가기",
  "search_bar.cancel": "취소",
  "search_bar.search": "검색",
  "search_bar.usage": "<h4>검색 옵션</h4><ul><li><b>\"따옴표\"</b><span>를 사용하여 문구를 검색할 수 있습니다.</span></li><li><b>from:</b><span> 을 사용하여 특정 작성자를 검색하거나 </span><b>in:</b><span> 을 사용하여 특정 채널에 대해 검색할 수 있습니다.</span></li></ul>",
  "search_header.results": "검색 결과",
  "search_header.title2": "최근 멘션",
  "search_header.title3": "Flagged Posts",
  "search_item.direct": "개인 메시지",
  "search_item.jump": "바로가기",
  "search_results.because": "<ul><li>문구의 일부분을 검색하려면(예: \"rea\", 를 검색하여 \"reach\" 또는 \"reaction\") 단어 앞 또는 뒤에 와일드카드 문자(*)를 붙여보세요.</li><li>두 글자 검색이나 \"this\", \"a\", \"is\"같이 일반적인 단어는 과도한 결과를 반환하기 때문에 검색결과에 표시되지 않습니다.</li></ul>",
  "search_results.noResults": "검색 결과가 없습니다. 다시 시도하세요.",
  "search_results.usage": "<li><b>\"따옴표\"</b>를 사용하여 문구를 검색할 수 있습니다.</li><li><b>from:</b> 을 사용하여 특정 작성자를 검색하거나 <b>in:</b> 을 사용하여 특정 채널에 대해 검색할 수 있습니다.</li></ul>",
  "setting_item_max.cancel": "취소",
  "setting_item_max.save": "저장",
  "setting_item_min.edit": "편집",
  "setting_picture.cancel": "취소",
  "setting_picture.help": "프로필 사진을 업로드하세요. (JPG 또는 PNG, 최소 크기: {width}px * {height}px)",
  "setting_picture.save": "저장",
  "setting_picture.select": "선택",
  "setting_upload.import": "가져오기",
  "setting_upload.noFile": "파일이 선택되지 않았습니다.",
  "setting_upload.select": "파일 선택",
  "sidebar.channels": "채널",
  "sidebar.createChannel": "채널 생성하기",
  "sidebar.createGroup": "그룹 생성하기",
  "sidebar.direct": "개인 메시지",
  "sidebar.more": "더 보기",
  "sidebar.moreElips": "더 보기...",
  "sidebar.otherMembers": "팀 외부",
  "sidebar.pg": "비공개 그룹",
  "sidebar.removeList": "목록에서 제거",
  "sidebar.tutorialScreen1": "<h4>Channels</h4><p><strong>Channels</strong> organize conversations across different topics. They’re open to everyone on your team. To send private communications use <strong>Direct Messages</strong> for a single person or <strong>Private Groups</strong> for multiple people.</p>",
  "sidebar.tutorialScreen2": "<h4>\"{townsquare}\" and \"{offtopic}\" channels</h4><p>Here are two public channels to start:</p><p><strong>{townsquare}</strong> is a place for team-wide communication. Everyone in your team is a member of this channel.</p><p><strong>{offtopic}</strong> is a place for fun and humor outside of work-related channels. You and your team can decide what other channels to create.</p>",
  "sidebar.tutorialScreen3": "<h4>Creating and Joining Channels</h4><p>Click <strong>\"More...\"</strong> to create a new channel or join an existing one.</p><p>You can also create a new channel or private group by clicking the <strong>\"+\" symbol</strong> next to the channel or private group header.</p>",
  "sidebar.unreadAbove": "Unread post(s) above",
  "sidebar.unreadBelow": "Unread post(s) below",
  "sidebar_header.tutorial": "<h4>Main Menu</h4><p>The <strong>Main Menu</strong> is where you can <strong>Invite New Members</strong>, access your <strong>Account Settings</strong> and set your <strong>Theme Color</strong>.</p><p>Team administrators can also access their <strong>Team Settings</strong> from this menu.</p><p>System administrators will find a <strong>System Console</strong> option to administrate the entire system.</p>",
  "sidebar_right_menu.accountSettings": "계정 설정",
  "sidebar_right_menu.console": "관리자 도구",
  "sidebar_right_menu.flagged": "Flagged Posts",
  "sidebar_right_menu.help": "도움말",
  "sidebar_right_menu.inviteNew": "회원 초대하기",
  "sidebar_right_menu.logout": "로그아웃",
  "sidebar_right_menu.manageMembers": "회원 관리하기",
  "sidebar_right_menu.nativeApps": "네이티브 앱 다운로드",
  "sidebar_right_menu.recentMentions": "최근 멘션",
  "sidebar_right_menu.report": "문제 보고",
  "sidebar_right_menu.switch_team": "팀 선택",
  "sidebar_right_menu.teamLink": "팀 가입 링크",
  "sidebar_right_menu.teamSettings": "팀 설정",
  "signup_team.choose": "가입한 팀: ",
  "signup_team.createTeam": "팀 생성하기",
  "signup_team.disabled": "팀을 생성할 수 없습니다. 시스템 관리자에게 문의하세요.",
  "signup_team.join_open": "가입할 수 있는 팀: ",
  "signup_team.noTeams": "There are no teams included in the Team Directory and team creation has been disabled.",
  "signup_team.no_open_teams": "No teams are available to join. Please ask your administrator for an invite.",
  "signup_team.no_open_teams_canCreate": "No teams are available to join. Please create a new team or ask your administrator for an invite.",
  "signup_team.no_teams": "No teams have been created. Please contact your administrator.",
  "signup_team.no_teams_canCreate": "No teams have been created. You may create one by clicking \"Create a new team\".",
  "signup_team.none": "No team creation method has been enabled.  Please contact an administrator for access.",
  "signup_team_complete.completed": "You've already completed the signup process for this invitation or this invitation has expired.",
  "signup_team_confirm.checkEmail": "Please check your email: <strong>{email}</strong><br />Your email contains a link to set up your team",
  "signup_team_confirm.title": "가입 완료",
  "signup_team_system_console": "관리자 도구로 바로가기",
  "signup_user_completed.choosePwd": "패스워드를 입력하세요.",
  "signup_user_completed.chooseUser": "사용자 이름을 입력하세요.",
  "signup_user_completed.create": "계정 만들기",
  "signup_user_completed.emailHelp": "Valid email required for sign-up",
  "signup_user_completed.emailIs": "Your email address is <strong>{email}</strong>. You'll use this address to sign in to {siteName}.",
  "signup_user_completed.expired": "You've already completed the signup process for this invitation or this invitation has expired.",
  "signup_user_completed.gitlab": "with GitLab",
  "signup_user_completed.google": "with Google",
  "signup_user_completed.haveAccount": "Already have an account?",
  "signup_user_completed.invalid_invite": "The invite link was invalid.  Please speak with your Administrator to receive an invitation.",
  "signup_user_completed.lets": "Let's create your account",
  "signup_user_completed.no_open_server": "This server does not allow open signups.  Please speak with your Administrator to receive an invitation.",
  "signup_user_completed.none": "No user creation method has been enabled.  Please contact an administrator for access.",
  "signup_user_completed.office365": "with Office 365",
  "signup_user_completed.onSite": "on {siteName}",
  "signup_user_completed.or": "또는",
  "signup_user_completed.passwordLength": "최소 {min}글자 이상 입력하세요.",
  "signup_user_completed.required": "필수 항목입니다.",
  "signup_user_completed.reserved": "이미 사용중인 이름입니다.",
  "signup_user_completed.signIn": "Click here to sign in.",
  "signup_user_completed.userHelp": "Username must begin with a letter, and contain between {min} to {max} lowercase characters made up of numbers, letters, and the symbols '.', '-' and '_'",
  "signup_user_completed.usernameLength": "Username must begin with a letter, and contain between {min} to {max} lowercase characters made up of numbers, letters, and the symbols '.', '-' and '_'.",
  "signup_user_completed.validEmail": "Please enter a valid email address",
  "signup_user_completed.welcome": "Welcome to:",
  "signup_user_completed.whatis": "What's your email address?",
  "signup_user_completed.withLdap": "With your LDAP credentials",
  "sso_signup.find": "팀 찾기",
  "sso_signup.gitlab": "GitLab 계정으로 팀 만들기",
  "sso_signup.google": "Google 계정으로 팀 만들기",
  "sso_signup.length_error": "Name must be 3 or more characters up to a maximum of 15",
  "sso_signup.teamName": "팀 이름을 입력하세요.",
  "sso_signup.team_error": "팀 이름을 입력하세요.",
  "suggestion.mention.all": "Notifies everyone in the channel, use in {townsquare} to notify the whole team",
  "suggestion.mention.channel": "Notifies everyone in the channel",
  "suggestion.mention.here": "Notifies everyone in the channel and online",
  "suggestion.search.private": "비공개 그룹",
  "suggestion.search.public": "공개 채널",
  "team_export_tab.download": "다운로드",
  "team_export_tab.export": "내보내기",
  "team_export_tab.exportTeam": "팀 내보내기",
  "team_export_tab.exporting": " 내보내는 중...",
  "team_export_tab.ready": " Ready for ",
  "team_export_tab.unable": " Unable to export: {error}",
  "team_import_tab.failure": " 가져오기 실패: ",
  "team_import_tab.import": "가져오기",
  "team_import_tab.importHelp": "<p>To import a team from Slack go to Slack > Team Settings > Import/Export Data > Export > Start Export. Slack does not allow you to export files, images, private groups or direct messages stored in Slack. Therefore, Slack import to Mattermost only supports importing of text messages in your Slack team's public channels.</p><p>The Slack import to Mattermost is in 'Beta'. Slack bot posts do not yet import and Slack @mentions are not currently supported.</p>",
  "team_import_tab.importSlack": "Slack에서 가져오기 (Beta)",
  "team_import_tab.importing": " 가져오는 중...",
  "team_import_tab.successful": " 가져오기 성공: ",
  "team_import_tab.summary": "요약",
  "team_member_modal.close": "닫기",
  "team_member_modal.members": "{team} 회원",
  "team_members_dropdown.confirmDemoteDescription": "If you demote yourself from the System Admin role and there is not another user with System Admin privileges, you'll need to re-assign a System Admin by accessing the Mattermost server through a terminal and running the following command.",
  "team_members_dropdown.confirmDemoteRoleTitle": "Confirm demotion from System Admin role",
  "team_members_dropdown.confirmDemotion": "Confirm Demotion",
  "team_members_dropdown.confirmDemotionCmd": "platform -assign_role -team_name=\"yourteam\" -email=\"name@yourcompany.com\" -role=\"system_admin\"",
  "team_members_dropdown.inactive": "비활성",
  "team_members_dropdown.leave_team": "팀에서 추방하기",
  "team_members_dropdown.makeActive": "활성화",
  "team_members_dropdown.makeAdmin": "팀 관리자로 설정하기",
  "team_members_dropdown.makeInactive": "비활성화",
  "team_members_dropdown.makeMember": "회원으로 설정하기",
  "team_members_dropdown.member": "회원",
  "team_members_dropdown.systemAdmin": "시스템 관리자",
  "team_members_dropdown.teamAdmin": "팀 관리자",
  "team_settings_modal.exportTab": "내보내기",
  "team_settings_modal.generalTab": "일반",
  "team_settings_modal.importTab": "가져오기",
  "team_settings_modal.title": "팀 설정",
  "textbox.bold": "**굵게**",
  "textbox.edit": "메시지 편집",
  "textbox.help": "도움말",
  "textbox.inlinecode": "`인라인 코드`",
  "textbox.italic": "_기울게_",
  "textbox.preformatted": "```코드 블럭```",
  "textbox.preview": "미리보기",
  "textbox.quote": ">인용",
  "textbox.strike": "취소선",
  "tutorial_intro.allSet": "You’re all set",
  "tutorial_intro.end": "Click “Next” to enter {channel}. This is the first channel teammates see when they sign up. Use it for posting updates everyone needs to know.",
  "tutorial_intro.invite": "Invite teammates",
  "tutorial_intro.mobileApps": "Install the apps for {link} for easy access and notifications on the go.",
  "tutorial_intro.mobileAppsLinkText": "PC, Mac, iOS and Android",
  "tutorial_intro.next": "다음",
  "tutorial_intro.screenOne": "<h3>Welcome to:</h3><h1>Mattermost</h1><p>Your team communication all in one place, instantly searchable and available anywhere</p><p>Keep your team connected to help them achieve what matters most.</p>",
  "tutorial_intro.screenTwo": "<h3>Mattermost를 활용하는 법:</h3><p>공개된 논의 채널, 비공개 그룹, 또는 개인 메시지를 통해 이야기를 나눌 수 있습니다.</p><p>모든 내용은 저장되고, 웹페이지를 볼 수 있는 곳이라면 어디서든 검색 가능합니다.</p>",
  "tutorial_intro.skip": "튜토리얼 생략",
  "tutorial_intro.support": "Need anything, just email us at ",
  "tutorial_intro.teamInvite": "Invite teammates",
  "tutorial_intro.whenReady": " when you’re ready.",
  "tutorial_tip.next": "다음",
  "tutorial_tip.ok": "확인",
  "tutorial_tip.out": "이 팁 더이상 보지 않기.",
  "tutorial_tip.seen": "이미 알고 계신가요? ",
  "upload_overlay.info": "이 곳에 파일을 끌어 업로드하세요.",
  "user.settings.advance.embed_preview": "가능한 경우, 링크 내용 미리보기를 표시",
  "user.settings.advance.embed_toggle": "Show toggle for all embed previews",
  "user.settings.advance.enabledFeatures": "{count, number}개 기능 활성화",
  "user.settings.advance.formattingDesc": "활성화 하면 링크, 이모티콘, 글자 스타일 등을 사용할 수 있습니다. 기본적으로 활성화 되있습니다. 설정을 변경하려면 페이지 새로고침이 필요합니다.",
  "user.settings.advance.formattingTitle": "마크다운으로 글쓰기",
  "user.settings.advance.markdown_preview": "메시지 입력창에 마크다운 미리보기 옵션을 표시",
  "user.settings.advance.off": "끄기",
  "user.settings.advance.on": "켜기",
  "user.settings.advance.preReleaseDesc": "사용하고 싶은 시험판 기능을 선택하세요. 기능 활성화를 위해 페이지 새로고침이 필요할 수도 있습니다.",
  "user.settings.advance.preReleaseTitle": "시험판 기능 미리보기",
  "user.settings.advance.sendDesc": "활성화 하면 'Enter'키로 줄바꿈, 'Ctrl + Enter'키로 메시지를 보내게 됩니다.",
  "user.settings.advance.sendTitle": "Ctrl + Enter로 메시지 보내기",
  "user.settings.advance.slashCmd_autocmp": "외부 어플리케이션을 활성화하면 슬래시 명령어 자동 완성을 제안할 수 있습니다",
  "user.settings.advance.title": "고급 설정",
  "user.settings.custom_theme.awayIndicator": "Away Indicator",
  "user.settings.custom_theme.buttonBg": "Button BG",
  "user.settings.custom_theme.buttonColor": "Button Text",
  "user.settings.custom_theme.centerChannelBg": "Center Channel BG",
  "user.settings.custom_theme.centerChannelColor": "Center Channel Text",
  "user.settings.custom_theme.centerChannelTitle": "채널 영역 스타일",
  "user.settings.custom_theme.codeTheme": "Code Theme",
  "user.settings.custom_theme.copyPaste": "Copy and paste to share theme colors:",
  "user.settings.custom_theme.linkButtonTitle": "링크, 버튼 스타일",
  "user.settings.custom_theme.linkColor": "Link Color",
  "user.settings.custom_theme.mentionBj": "Mention Jewel BG",
  "user.settings.custom_theme.mentionColor": "Mention Jewel Text",
  "user.settings.custom_theme.mentionHighlightBg": "Mention Highlight BG",
  "user.settings.custom_theme.mentionHighlightLink": "Mention Highlight Link",
  "user.settings.custom_theme.newMessageSeparator": "New Message Separator",
  "user.settings.custom_theme.onlineIndicator": "Online Indicator",
  "user.settings.custom_theme.sidebarBg": "Sidebar BG",
  "user.settings.custom_theme.sidebarHeaderBg": "Sidebar Header BG",
  "user.settings.custom_theme.sidebarHeaderTextColor": "Sidebar Header Text",
  "user.settings.custom_theme.sidebarText": "Sidebar Text",
  "user.settings.custom_theme.sidebarTextActiveBorder": "Sidebar Text Active Border",
  "user.settings.custom_theme.sidebarTextActiveColor": "Sidebar Text Active Color",
  "user.settings.custom_theme.sidebarTextHoverBg": "Sidebar Text Hover BG",
  "user.settings.custom_theme.sidebarTitle": "사이드바 스타일",
  "user.settings.custom_theme.sidebarUnreadText": "Sidebar Unread Text",
  "user.settings.display.channelDisplayTitle": "채널 화면 모드",
  "user.settings.display.channeldisplaymode": "채널 영역의 너비를 선택하세요.",
  "user.settings.display.clockDisplay": "시간 표시",
  "user.settings.display.collapseDesc": "미리보기가 가능한 콘텐츠의 미리보기를 펼친 상태로 표시합니다.",
  "user.settings.display.collapseDisplay": "링크 미리보기",
  "user.settings.display.collapseOff": "끄기",
  "user.settings.display.collapseOn": "켜기",
  "user.settings.display.fixedWidthCentered": "고정 너비, 가운데",
  "user.settings.display.fontDesc": "Mattermost 화면에서 보여질 폰트를 선택하세요.",
  "user.settings.display.fontTitle": "폰트",
  "user.settings.display.fullScreen": "전체 너비",
  "user.settings.display.language": "언어",
  "user.settings.display.messageDisplayClean": "표준",
  "user.settings.display.messageDisplayCleanDes": "읽기 쉽게 표시합니다.",
  "user.settings.display.messageDisplayCompact": "압축",
  "user.settings.display.messageDisplayCompactDes": "화면에 더 많은 메시지가 보이도록 압축해서 표시합니다.",
  "user.settings.display.messageDisplayDescription": "화면에 메시지가 어떻게 보여질지 선택합니다.",
  "user.settings.display.messageDisplayTitle": "메시지 표시",
  "user.settings.display.militaryClock": "24시간으로 보이기 (예: 16:00)",
  "user.settings.display.nameOptsDesc": "글과 대화 목록에서 사용자의 이름이 어떻게 표시될 지 선택하세요.",
  "user.settings.display.normalClock": "12시간으로 보이기 (예: 4:00 PM)",
  "user.settings.display.preferTime": "시간이 어떻게 표시될지 선택하세요.",
  "user.settings.display.showFullname": "본명으로 보기",
  "user.settings.display.showNickname": "별명이 있으면 별명으로 보기, 없으면 본명으로 보기",
  "user.settings.display.showUsername": "사용자명으로 보기 (기본)",
  "user.settings.display.teammateDisplay": "사용자 이름 표시",
  "user.settings.display.theme.customTheme": "사용자 정의 테마",
  "user.settings.display.theme.describe": "내 테마 관리하기",
  "user.settings.display.theme.import": "Slack 테마 불러오기",
  "user.settings.display.theme.otherThemes": "다른 테마 보기",
  "user.settings.display.theme.themeColors": "테마 선택",
  "user.settings.display.theme.title": "테마",
  "user.settings.display.title": "화면 설정",
  "user.settings.general.checkEmail": "Check your email at {email} to verify the address.",
  "user.settings.general.checkEmailNoAddress": "Check your email to verify your new address",
  "user.settings.general.close": "닫기",
  "user.settings.general.confirmEmail": "보조 이메일",
  "user.settings.general.email": "이메일",
  "user.settings.general.emailGitlabCantUpdate": "Login occurs through GitLab. Email cannot be updated. Email address used for notifications is {email}.",
  "user.settings.general.emailGoogleCantUpdate": "Login occurs through GitLab. Email cannot be updated. Email address used for notifications is {email}.",
  "user.settings.general.emailHelp1": "Email is used for sign-in, notifications, and password reset. Email requires verification if changed.",
  "user.settings.general.emailHelp2": "이메일 기능이 시스템 관리자에 의해 비활성화 되었습니다. 활성화 되기 전까진 알림 메일이 발송되지 않습니다.",
  "user.settings.general.emailHelp3": "Email is used for sign-in, notifications, and password reset.",
  "user.settings.general.emailHelp4": "A verification email was sent to {email}.",
  "user.settings.general.emailLdapCantUpdate": "Login occurs through LDAP. Email cannot be updated. Email address used for notifications is {email}.",
  "user.settings.general.emailMatch": "The new emails you entered do not match.",
  "user.settings.general.emailOffice365CantUpdate": "Login occurs through GitLab. Email cannot be updated. Email address used for notifications is {email}.",
  "user.settings.general.emailSamlCantUpdate": "Login occurs through SAML. Email cannot be updated. Email address used for notifications is {email}.",
  "user.settings.general.emailUnchanged": "Your new email address is the same as your old email address.",
  "user.settings.general.emptyName": "'편집'을 클릭하여 본명을 설정",
  "user.settings.general.emptyNickname": "'편집'을 클릭하여 별명을 설정",
  "user.settings.general.field_handled_externally": "This field is handled through your login provider. If you want to change it, you need to do so through your login provider.",
  "user.settings.general.firstName": "이름",
  "user.settings.general.fullName": "본명",
  "user.settings.general.imageTooLarge": "Unable to upload profile image. File is too large.",
  "user.settings.general.imageUpdated": "Image last updated {date}",
  "user.settings.general.lastName": "성",
  "user.settings.general.loginGitlab": "Login done through GitLab ({email})",
  "user.settings.general.loginGoogle": "Login done through GitLab ({email})",
  "user.settings.general.loginLdap": "Login done through LDAP ({email})",
  "user.settings.general.loginOffice365": "Login done through GitLab ({email})",
  "user.settings.general.loginSaml": "Login done through SAML ({email})",
  "user.settings.general.newAddress": "New Address: {email}<br />Check your email to verify the above address.",
  "user.settings.general.nickname": "별명",
  "user.settings.general.nicknameExtra": "이름과 유저명과는 다르게 불리는 고유한 이름을 사용하세요. 비슷한 이름을 가진 사람들이 모여있을 때 자주 사용됩니다.",
  "user.settings.general.notificationsExtra": "기본적으로 이 곳에 설정된 이름으로 언급되었을 때 멘션 알림을 받게됩니다. {notify}에서 기본 설정을 변경하세요.",
  "user.settings.general.notificationsLink": "알림",
  "user.settings.general.primaryEmail": "주 이메일",
  "user.settings.general.profilePicture": "프로필 사진",
  "user.settings.general.title": "일반 설정",
  "user.settings.general.uploadImage": "'편집'을 클릭하여 사진 업로드",
  "user.settings.general.username": "사용자 이름",
  "user.settings.general.usernameInfo": "팀원들에게 불리기 쉬운 이름을 선택하세요.",
  "user.settings.general.usernameReserved": "예약된 사용자 이름입니다. 다른 이름을 선택하세요.",
  "user.settings.general.usernameRestrictions": "Username must begin with a letter, and contain between {min} to {max} lowercase characters made up of numbers, letters, and the symbols '.', '-', and '_'.",
  "user.settings.general.validEmail": "Please enter a valid email address",
  "user.settings.general.validImage": "Only JPG or PNG images may be used for profile pictures",
  "user.settings.import_theme.cancel": "취소",
  "user.settings.import_theme.importBody": "Slack 의 팀 메뉴에서 “Preferences -> Sidebar Theme”를 선택하세요. Custom theme 옵션을 선택 후, 테마 색상 값들을 복사하여 이 곳에 붙여넣으세요.",
  "user.settings.import_theme.importHeader": "Slack 테마 불러오기",
  "user.settings.import_theme.submit": "적용",
  "user.settings.import_theme.submitError": "Invalid format, please try copying and pasting in again.",
  "user.settings.languages.change": "언어 변경",
  "user.settings.languages.promote": "Select which language Mattermost displays in the user interface.<br /><br />Would like to help with translations? Join the <a href='http://translate.mattermost.com/' target='_blank'>Mattermost Translation Server</a> to contribute.",
  "user.settings.mfa.add": "Add MFA to your account",
  "user.settings.mfa.addHelp": "You can require a smartphone-based token, in addition to your password, to sign into Mattermost.<br/><br/>To enable, download Google Authenticator from <a target='_blank' href='https://itunes.apple.com/us/app/google-authenticator/id388497605?mt=8'>iTunes</a> or <a target='_blank' href='https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2&hl=en'>Google Play</a> for your phone, then<br/><br/>1. Click the <strong>Add MFA to your account</strong> button above.<br/>2. Use Google Authenticator to scan the QR code that appears.<br/>3. Type in the Token generated by Google Authenticator and click <strong>Save</strong>.<br/><br/>When logging in, you will be asked to enter a token from Google Authenticator in addition to your regular credentials.",
  "user.settings.mfa.addHelpQr": "Please scan the bar code with the Google Authenticator app on your smartphone and fill in the token with one provided by the app.",
  "user.settings.mfa.enterToken": "Token (numbers only)",
  "user.settings.mfa.qrCode": "Bar Code",
  "user.settings.mfa.remove": "Remove MFA from your account",
  "user.settings.mfa.removeHelp": "Removing multi-factor authentication means you will no longer require a phone-based passcode to sign-in to your account.",
  "user.settings.mfa.title": "Enable Multi-factor Authentication:",
  "user.settings.modal.advanced": "고급",
  "user.settings.modal.confirmBtns": "네, 취소합니다.",
  "user.settings.modal.confirmMsg": "You have unsaved changes, are you sure you want to discard them?",
  "user.settings.modal.confirmTitle": "변경을 취소하시겠습니까?",
  "user.settings.modal.display": "화면",
  "user.settings.modal.general": "일반",
  "user.settings.modal.notifications": "알림",
  "user.settings.modal.security": "보안",
  "user.settings.modal.title": "계정 설정",
  "user.settings.notifications.allActivity": "모든 활동",
  "user.settings.notifications.channelWide": "채널 전체 멘션 \"@channel\", \"@all\"",
  "user.settings.notifications.close": "닫기",
  "user.settings.notifications.comments": "답글 활동 알림",
  "user.settings.notifications.commentsAny": "내가 참여한 모든 글의 답글에 대한 알림 받기",
  "user.settings.notifications.commentsInfo": "내가 참여한 글의 답글에 대한 알림을 설정합니다.",
  "user.settings.notifications.commentsNever": "답글에 대한 알림을 받지 않기",
  "user.settings.notifications.commentsRoot": "내 글의 모든 답글에 대한 알림 받기",
  "user.settings.notifications.desktop": "데스크탑 알림 받기",
  "user.settings.notifications.desktopSounds": "데스크탑 알림 소리",
  "user.settings.notifications.emailInfo": "Email notifications are sent for mentions and direct messages after you’ve been offline for more than 60 seconds or away from {siteName} for more than 5 minutes.",
  "user.settings.notifications.emailNotifications": "이메일 알림",
  "user.settings.notifications.header": "알림",
  "user.settings.notifications.info": "데스크탑 알림은 Firefox, Safari, Chrome, Internet Explorer, Edge 에서 사용이 가능합니다.",
  "user.settings.notifications.never": "알림을 받지 않기",
  "user.settings.notifications.noWords": "설정한 단어가 없습니다",
  "user.settings.notifications.off": "끄기",
  "user.settings.notifications.on": "켜기",
  "user.settings.notifications.onlyMentions": "멘션과 직접 대화에 대한 알림만 받기",
  "user.settings.notifications.push": "모바일 푸시 알림",
  "user.settings.notifications.sensitiveName": "내 이름 \"{first_name}\" (대소문자 구별 안함)",
  "user.settings.notifications.sensitiveUsername": "내 사용자명 \"{username}\" (대소문자 구별 안함)",
  "user.settings.notifications.sensitiveWords": "다른 알림받을 단어들을 쉼표로 구분하여 입력: (대소문자 구별 안함)",
  "user.settings.notifications.soundConfig": "브라우저 설정에서 알림 소리를 변경하세요",
  "user.settings.notifications.sounds_info": "Desktop notifications sounds are available on Firefox, Safari, Chrome, Internet Explorer, and Edge.",
  "user.settings.notifications.teamWide": "팀 전체 멘션 \"@all\"",
  "user.settings.notifications.title": "알림 설정",
  "user.settings.notifications.usernameMention": "내 사용자명을 멘션 \"@{username}\"",
  "user.settings.notifications.wordsTrigger": "언급에 대한 알림",
  "user.settings.push_notification.allActivity": "For all activity",
  "user.settings.push_notification.disabled": "시스템 관리자에 의해 비활성화 됨",
  "user.settings.push_notification.disabled_long": "모바일 기기를 위한 푸시 알림 기능이 시스템 관리자에 의해 비활성화 되었습니다.",
  "user.settings.push_notification.info": "Notification alerts are pushed to your mobile device when there is activity in Mattermost.",
  "user.settings.push_notification.off": "Off",
  "user.settings.push_notification.onlyMentions": "For mentions and direct messages",
  "user.settings.security.close": "닫기",
  "user.settings.security.currentPassword": "현재 비밀번호",
  "user.settings.security.currentPasswordError": "현재 비밀번호를 입력해주세요",
  "user.settings.security.emailPwd": "이메일과 비밀번호",
  "user.settings.security.gitlab": "GitLab",
  "user.settings.security.google": "Google",
  "user.settings.security.lastUpdated": "{date} {time} 에 마지막으로 변경됨",
  "user.settings.security.ldap": "LDAP",
  "user.settings.security.loginGitlab": "Login done through Gitlab",
  "user.settings.security.loginLdap": "Login done through LDAP",
  "user.settings.security.logoutActiveSessions": "활성화 된 세션 보기/로그아웃 하기",
  "user.settings.security.method": "Sign-in Method",
  "user.settings.security.newPassword": "새로운 비밀번호",
  "user.settings.security.office365": "Office 365",
  "user.settings.security.oneSignin": "You may only have one sign-in method at a time. Switching sign-in method will send an email notifying you if the change was successful.",
  "user.settings.security.password": "비밀번호",
  "user.settings.security.passwordError": "비밀번호는 반드시 {min}개 이상의 글자를 포함해야 합니다.",
  "user.settings.security.passwordErrorLowercase": "Your password must contain at least {min} characters made up of at least one lowercase letter.",
  "user.settings.security.passwordErrorLowercaseNumber": "Your password must contain at least {min} characters made up of at least one lowercase letter and at least one number.",
  "user.settings.security.passwordErrorLowercaseNumberSymbol": "Your password must contain at least {min} characters made up of at least one lowercase letter, at least one number, and at least one symbol (e.g. \"~!@#$%^&*()\").",
  "user.settings.security.passwordErrorLowercaseSymbol": "Your password must contain at least {min} characters made up of at least one lowercase letter and at least one symbol (e.g. \"~!@#$%^&*()\").",
  "user.settings.security.passwordErrorLowercaseUppercase": "Your password must contain at least {min} characters made up of at least one lowercase letter and at least one uppercase letter.",
  "user.settings.security.passwordErrorLowercaseUppercaseNumber": "Your password must contain at least {min} characters made up of at least one lowercase letter, at least one uppercase letter, and at least one number.",
  "user.settings.security.passwordErrorLowercaseUppercaseNumberSymbol": "Your password must contain at least {min} characters made up of at least one lowercase letter, at least one uppercase letter, at least one number, and at least one symbol (e.g. \"~!@#$%^&*()\").",
  "user.settings.security.passwordErrorLowercaseUppercaseSymbol": "Your password must contain at least {min} characters made up of at least one lowercase letter, at least one uppercase letter, and at least one symbol (e.g. \"~!@#$%^&*()\").",
  "user.settings.security.passwordErrorNumber": "Your password must contain at least {min} characters made up of at least one number.",
  "user.settings.security.passwordErrorNumberSymbol": "Your password must contain at least {min} characters made up of at least one number and at least one symbol (e.g. \"~!@#$%^&*()\").",
  "user.settings.security.passwordErrorSymbol": "Your password must contain at least {min} characters made up of at least one symbol (e.g. \"~!@#$%^&*()\").",
  "user.settings.security.passwordErrorUppercase": "Your password must contain at least {min} characters made up of at least one uppercase letter.",
  "user.settings.security.passwordErrorUppercaseNumber": "Your password must contain at least {min} characters made up of at least one uppercase letter and at least one number.",
  "user.settings.security.passwordErrorUppercaseNumberSymbol": "Your password must contain at least {min} characters made up of at least one uppercase letter, at least one number, and at least one symbol (e.g. \"~!@#$%^&*()\").",
  "user.settings.security.passwordErrorUppercaseSymbol": "Your password must contain at least {min} characters made up of at least one uppercase letter and at least one symbol (e.g. \"~!@#$%^&*()\").",
  "user.settings.security.passwordGitlabCantUpdate": "Login occurs through GitLab. Password cannot be updated.",
  "user.settings.security.passwordLdapCantUpdate": "Login occurs through LDAP. Password cannot be updated.",
  "user.settings.security.passwordMatchError": "다시 입력한 새로운 비밀번호가 일치하지 않습니다.",
  "user.settings.security.passwordMinLength": "Invalid minimum length, cannot show preview.",
  "user.settings.security.retypePassword": "비밀번호 재입력",
  "user.settings.security.saml": "SAML",
  "user.settings.security.switchEmail": "Switch to using email and password",
  "user.settings.security.switchGitlab": "Switch to using GitLab SSO",
  "user.settings.security.switchGoogle": "Switch to using Google SSO",
  "user.settings.security.switchLdap": "Switch to using LDAP",
  "user.settings.security.switchOffice365": "Switch to using Office 365 SSO",
  "user.settings.security.switchSaml": "Switch to using SAML SSO",
  "user.settings.security.title": "보안 설정",
  "user.settings.security.viewHistory": "접속 내역 보기",
  "user_list.notFound": "사용자를 찾을 수 없습니다 :(",
  "view_image.loading": "Loading ",
  "view_image_popover.download": "다운로드",
  "view_image_popover.file": "File {count} of {total}",
  "view_image_popover.publicLink": "Get Public Link",
  "web.footer.about": "알아보기",
  "web.footer.help": "도움말",
  "web.footer.privacy": "정책",
  "web.footer.terms": "서비스 약관",
  "web.header.back": "돌아가기",
  "web.root.signup_info": "모든 팀 커뮤니케이션을 한 곳에서 확인하고, 검색하고, 접근할 수 있습니다.",
  "youtube_video.notFound": "비밀번호를 찾을 수 없습니다."
}