summaryrefslogtreecommitdiffstats
path: root/webapp/i18n/en.json
blob: 76383b2a74650a86307e646592acfdc946c97b43 (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
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
{
  "about.close": "Close",
  "about.copyright": "Copyright 2016 Mattermost, Inc. All rights reserved",
  "about.database": "Database:",
  "about.date": "Build Date:",
  "about.enterpriseEditionLearn": "Learn more about Enterprise Edition at ",
  "about.enterpriseEditionSt": "Modern communication from behind your firewall.",
  "about.enterpriseEditione1": "Enterprise Edition",
  "about.hash": "Build Hash:",
  "about.hashee": "EE Build Hash:",
  "about.licensed": "Licensed to:",
  "about.number": "Build Number:",
  "about.teamEditionLearn": "Join the Mattermost community at ",
  "about.teamEditionSt": "All your team communication in one place, instantly searchable and accessible anywhere.",
  "about.teamEditiont0": "Team Edition",
  "about.teamEditiont1": "Enterprise Edition",
  "about.title": "About Mattermost",
  "about.version": "Version:",
  "access_history.title": "Access History",
  "activity_log.activeSessions": "Active Sessions",
  "activity_log.browser": "Browser: {browser}",
  "activity_log.firstTime": "First time active: {date}, {time}",
  "activity_log.lastActivity": "Last activity: {date}, {time}",
  "activity_log.logout": "Logout",
  "activity_log.moreInfo": "More info",
  "activity_log.os": "OS: {os}",
  "activity_log.sessionId": "Session ID: {id}",
  "activity_log.sessionsDescription": "Sessions are created when you log in to a new browser on a device. Sessions let you use Mattermost without having to log in again for a time period specified by the System Admin. If you want to log out sooner, use the 'Logout' button below to end a session.",
  "activity_log_modal.android": "Android",
  "activity_log_modal.androidNativeApp": "Android Native App",
  "activity_log_modal.desktop": "Native Desktop App",
  "activity_log_modal.iphoneNativeApp": "iPhone Native App",
  "add_command.autocomplete": "Autocomplete",
  "add_command.autocomplete.help": "(Optional) Show slash command in autocomplete list.",
  "add_command.autocompleteDescription": "Autocomplete Description",
  "add_command.autocompleteDescription.help": "(Optional) Short description of slash command for the autocomplete list.",
  "add_command.autocompleteDescription.placeholder": "Example: \"Returns search results for patient records\"",
  "add_command.autocompleteHint": "Autocomplete Hint",
  "add_command.autocompleteHint.help": "(Optional) Arguments associated with your slash command, displayed as help in the autocomplete list.",
  "add_command.autocompleteHint.placeholder": "Example: [Patient Name]",
  "add_command.cancel": "Cancel",
  "add_command.description": "Description",
  "add_command.description.help": "Description for your incoming webhook.",
  "add_command.displayName": "Display Name",
  "add_command.displayName.help": "Display name for your slash command made of up to 64 characters.",
  "add_command.doneHelp": "Your slash command has been set up. The following token will be sent in the outgoing payload. Please use it to verify the request came from your Mattermost team (see <a href=\"https://docs.mattermost.com/developer/slash-commands.html\">documentation</a> for further details).",
  "add_command.iconUrl": "Response Icon",
  "add_command.iconUrl.help": "(Optional) 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": "Request 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": "Save",
  "add_command.token": "<b>Token</b>: {token}",
  "add_command.trigger": "Command Trigger Word",
  "add_command.trigger.help": "Trigger word must be unique, and cannot begin with a slash or contain any spaces.",
  "add_command.trigger.helpExamples": "Examples: client, employee, patient, weather",
  "add_command.trigger.helpReserved": "Reserved: {link}",
  "add_command.trigger.helpReservedLinkText": "see list of built-in slash commands",
  "add_command.trigger.placeholder": "Command trigger e.g. \"hello\"",
  "add_command.triggerInvalidLength": "A trigger word must contain between {min} and {max} characters",
  "add_command.triggerInvalidSlash": "A trigger word cannot begin with a /",
  "add_command.triggerInvalidSpace": "A trigger word must not contain spaces",
  "add_command.triggerRequired": "A trigger word is required",
  "add_command.url": "Request 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": "Must start with http:// or https://",
  "add_command.urlRequired": "A request URL is required",
  "add_command.username": "Response Username",
  "add_command.username.help": "(Optional) 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": "Username",
  "add_emoji.cancel": "Cancel",
  "add_emoji.header": "Add",
  "add_emoji.image": "Image",
  "add_emoji.image.button": "Select",
  "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 1 MB. Dimensions will automatically resize to fit 128 by 128 pixels but keeping aspect ratio.",
  "add_emoji.imageRequired": "An image is required for the emoji",
  "add_emoji.name": "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": "A name is required for the emoji",
  "add_emoji.nameTaken": "This name is already in use by a system emoji. Please choose another name.",
  "add_emoji.preview": "Preview",
  "add_emoji.preview.sentence": "This is a sentence with {image} in it.",
  "add_emoji.save": "Save",
  "add_incoming_webhook.cancel": "Cancel",
  "add_incoming_webhook.channel": "Channel",
  "add_incoming_webhook.channel.help": "Public or private channel that receives the webhook payloads. You must belong to the private channel when setting up the webhook.",
  "add_incoming_webhook.channelRequired": "A valid channel is required",
  "add_incoming_webhook.description": "Description",
  "add_incoming_webhook.description.help": "Description for your incoming webhook.",
  "add_incoming_webhook.displayName": "Display Name",
  "add_incoming_webhook.displayName.help": "Display name for your incoming webhook made of up to 64 characters.",
  "add_incoming_webhook.doneHelp": "Your incoming webhook has been set up. Please send data to the following URL (see <a href=\"https://docs.mattermost.com/developer/webhooks-incoming.html\">documentation</a> for further details).",
  "add_incoming_webhook.name": "Name",
  "add_incoming_webhook.save": "Save",
  "add_incoming_webhook.url": "<b>URL</b>: {url}",
  "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.clientId": "<b>Client ID</b>: {id}",
  "add_oauth_app.clientSecret": "<b>Client Secret</b>: {secret}",
  "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.doneHelp": "Your OAuth 2.0 application has been set up. Please use the following Client ID and Client Secret when requesting authorization for your application (see <a href=\"https://docs.mattermost.com/developer/oauth-2-0-applications.html\">documentation</a> for further details).",
  "add_oauth_app.doneUrlHelp": "The following are your authorized redirect URL(s).",
  "add_oauth_app.header": "Add",
  "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_oauth_app.url": "<b>URL(s)</b>: {url}",
  "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": "Cancel",
  "add_outgoing_webhook.channel": "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": "Content Type",
  "add_outgoing_webhook.description": "Description",
  "add_outgoing_webhook.description.help": "Description for your outgoing webhook.",
  "add_outgoing_webhook.displayName": "Display Name",
  "add_outgoing_webhook.displayName.help": "Display name for your outgoing webhook made of up to 64 characters.",
  "add_outgoing_webhook.doneHelp": "Your outgoing webhook has been set up. The following token will be sent in the outgoing payload. Please use it to verify the request came from your Mattermost team (see <a href=\"https://docs.mattermost.com/developer/webhooks-outgoing.html\">documentation</a> for further details).",
  "add_outgoing_webhook.name": "Name",
  "add_outgoing_webhook.save": "Save",
  "add_outgoing_webhook.token": "<b>Token</b>: {token}",
  "add_outgoing_webhook.triggerWords": "Trigger Words (One Per Line)",
  "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": "A valid channel or a list of trigger words is required",
  "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",
  "add_users_to_team.title": "Add New Members To {teamName} Team",
  "admin.advance.cluster": "High Availability (Beta)",
  "admin.advance.metrics": "Performance Monitoring",
  "admin.audits.reload": "Reload User Activity Logs",
  "admin.audits.title": "User Activity Logs",
  "admin.authentication.email": "Email Auth",
  "admin.authentication.gitlab": "GitLab",
  "admin.authentication.ldap": "AD/LDAP",
  "admin.authentication.oauth": "OAuth 2.0",
  "admin.authentication.saml": "SAML",
  "admin.banner.heading": "Note:",
  "admin.cluster.enableDescription": "When true, Mattermost will run in High Availability mode. Please see <a href=\"http://docs.mattermost.com/deployment/cluster.html\" target='_blank'>documentation</a> to learn more about configuring High Availability for Mattermost.",
  "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": "E.g.: \":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": "E.g.: \"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": "Status",
  "admin.cluster.status_table.url": "Inter-Node URL",
  "admin.cluster.status_table.version": "Version",
  "admin.compliance.directoryDescription": "Directory to which compliance reports are written. If blank, will be set to ./data/.",
  "admin.compliance.directoryExample": "E.g.: \"./data/\"",
  "admin.compliance.directoryTitle": "Compliance Report Directory:",
  "admin.compliance.enableDailyDesc": "When true, Mattermost will generate a daily compliance report.",
  "admin.compliance.enableDailyTitle": "Enable Daily Report:",
  "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": "false",
  "admin.compliance.noLicense": "<h4 class=\"banner__heading\">Note:</h4><p>Compliance is an enterprise feature. Your current license does not support Compliance. Click <a href=\"http://mattermost.com\" target='_blank'>here</a> for information and pricing on enterprise licenses.</p>",
  "admin.compliance.save": "Save",
  "admin.compliance.saving": "Saving Config...",
  "admin.compliance.title": "Compliance Settings",
  "admin.compliance.true": "true",
  "admin.compliance_reports.desc": "Job Name:",
  "admin.compliance_reports.desc_placeholder": "E.g. \"Audit 445 for HR\"",
  "admin.compliance_reports.emails": "Emails:",
  "admin.compliance_reports.emails_placeholder": "E.g. \"bill@example.com, bob@example.com\"",
  "admin.compliance_reports.from": "From:",
  "admin.compliance_reports.from_placeholder": "E.g. \"2016-03-11\"",
  "admin.compliance_reports.keywords": "Keywords:",
  "admin.compliance_reports.keywords_placeholder": "E.g. \"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": "To:",
  "admin.compliance_reports.to_placeholder": "E.g. \"2016-03-15\"",
  "admin.compliance_table.desc": "Description",
  "admin.compliance_table.download": "Download",
  "admin.compliance_table.params": "Params",
  "admin.compliance_table.records": "Records",
  "admin.compliance_table.status": "Status",
  "admin.compliance_table.timestamp": "Timestamp",
  "admin.compliance_table.type": "Type",
  "admin.compliance_table.userId": "Requested By",
  "admin.connectionSecurityNone": "None",
  "admin.connectionSecurityNoneDescription": "Mattermost will connect over an insecure connection.",
  "admin.connectionSecurityPlain": "PLAIN",
  "admin.connectionSecurityPlainDescription": "Mattermost will connect and authenticate over an insecure connection.",
  "admin.connectionSecurityStart": "STARTTLS",
  "admin.connectionSecurityStartDescription": "Takes an existing insecure connection and attempts to upgrade it to a secure connection using TLS.",
  "admin.connectionSecurityTest": "Test Connection",
  "admin.connectionSecurityTitle": "Connection Security:",
  "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": "Android App Download Link:",
  "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": "Custom Branding",
  "admin.customization.customEmoji": "Custom Emoji",
  "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": "Enable Custom Emoji:",
  "admin.customization.enableLinkPreviewsDesc": "Enable users to display a preview of website content below the message, if available. When true, website previews can be enabled from Account Settings > Advanced > Preview pre-release features.",
  "admin.customization.enableLinkPreviewsTitle": "Enable Link Previews:",
  "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 App Download Link:",
  "admin.customization.linkPreviews": "Link Previews",
  "admin.customization.nativeAppLinks": "Mattermost App Links",
  "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": "Database Settings",
  "admin.developer.title": "Developer Settings",
  "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": "When true, Mattermost allows users to sign in using their email and password.",
  "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 AD/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": "Test Connection",
  "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": "Connection unsuccessful: {error}",
  "admin.email.emailSuccess": "No errors were reported while sending an email.  Please check your inbox to make sure.",
  "admin.email.enableEmailBatching.clusterEnabled": "Email batching cannot be enabled when High Availability mode is enabled.",
  "admin.email.enableEmailBatching.siteURL": "Email batching cannot be enabled unless the SiteURL is configured in <b>Configuration > SiteURL</b>.",
  "admin.email.enableEmailBatchingDesc": "When true, users can have email notifications for multiple direct messages and mentions combined into a single email, configurable in <b>Account Settings > Notifications</b>.",
  "admin.email.enableEmailBatchingTitle": "Enable Email Batching:",
  "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": "E.g.: \"bjlSR4QqkXFBr7TP4oDzlfZmcNuH9Yo\"",
  "admin.email.inviteSaltTitle": "Email Invite Salt:",
  "admin.email.mhpns": "Use encrypted, production-quality HPNS connection to iOS and Android apps",
  "admin.email.mhpnsHelp": "Download <a href=\"https://itunes.apple.com/us/app/mattermost/id984966508?mt=8\" target='_blank'>Mattermost iOS app</a> from iTunes. Download <a href=\"https://play.google.com/store/apps/details?id=com.mattermost.mattermost&hl=en\" target='_blank'>Mattermost Android app</a> from Google Play. Learn more about <a href=\"http://docs.mattermost.com/deployment/push.html#hosted-push-notifications-service-hpns\" target='_blank'>HPNS</a>.",
  "admin.email.mtpns": "Use iOS and Android apps on iTunes and Google Play with TPNS",
  "admin.email.mtpnsHelp": "Download <a href=\"https://itunes.apple.com/us/app/mattermost/id984966508?mt=8\" target='_blank'>Mattermost iOS app</a> from iTunes. Download <a href=\"https://play.google.com/store/apps/details?id=com.mattermost.mattermost&hl=en\" target='_blank'>Mattermost Android app</a> from Google Play. Learn more about <a href=\"http://docs.mattermost.com/deployment/push.html#test-push-notifications-service-tpns\" target='_blank'>TPNS</a>.",
  "admin.email.nofificationOrganizationExample": "E.g.: \"© 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": "E.g.: \"Mattermost Notification\", \"System\", \"No-Reply\"",
  "admin.email.notificationDisplayTitle": "Notification Display Name:",
  "admin.email.notificationEmailDescription": "Email address displayed on email account used when sending notification emails from Mattermost.",
  "admin.email.notificationEmailExample": "E.g.: \"mattermost@yourcompany.com\", \"admin@yourcompany.com\"",
  "admin.email.notificationEmailTitle": "Notification From Address:",
  "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.notificationOrganizationExample": "E.g.: \"© ABC Corporation, 565 Knight Way, Palo Alto, California, 94305, USA\"",
  "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": "E.g.: \"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.skipServerCertificateVerification.description": "When true, Mattermost will not verify the email server certificate.",
  "admin.email.skipServerCertificateVerification.title": "Skip Server Certificate Verification: ",
  "admin.email.smtpPasswordDescription": " Obtain this credential from administrator setting up your email server.",
  "admin.email.smtpPasswordExample": "E.g.: \"yourpassword\", \"jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY\"",
  "admin.email.smtpPasswordTitle": "SMTP Server Password:",
  "admin.email.smtpPortDescription": "Port of SMTP email server.",
  "admin.email.smtpPortExample": "E.g.: \"25\", \"465\", \"587\"",
  "admin.email.smtpPortTitle": "SMTP Server Port:",
  "admin.email.smtpServerDescription": "Location of SMTP email server.",
  "admin.email.smtpServerExample": "E.g.: \"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": "E.g.: \"admin@yourcompany.com\", \"AKIADTOVBGERKLCBV\"",
  "admin.email.smtpUsernameTitle": "SMTP Server Username:",
  "admin.email.testing": "Testing...",
  "admin.false": "false",
  "admin.file_upload.chooseFile": "Choose File",
  "admin.file_upload.noFile": "No file uploaded",
  "admin.file_upload.uploadFile": "Upload",
  "admin.files.images": "Images",
  "admin.files.storage": "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). If you’re manually adding new languages, the <strong>Default Client Language</strong> must be added before saving this setting.<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.availableLocalesNoResults": "No results found",
  "admin.general.localization.availableLocalesNotPresent": "The default client language must be included in the available list",
  "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": "Logging",
  "admin.general.policy": "Policy",
  "admin.general.policy.allowEditPostAlways": "Any time",
  "admin.general.policy.allowEditPostDescription": "Set policy on the length of time authors have to edit their messages after posting.",
  "admin.general.policy.allowEditPostNever": "Never",
  "admin.general.policy.allowEditPostTimeLimit": "seconds after posting",
  "admin.general.policy.allowEditPostTitle": "Allow users to edit their messages:",
  "admin.general.policy.permissionsAdmin": "Team and System Admins",
  "admin.general.policy.permissionsAll": "All team members",
  "admin.general.policy.permissionsAllChannel": "All channel members",
  "admin.general.policy.permissionsChannelAdmin": "Channel, Team and System Admins",
  "admin.general.policy.permissionsDeletePostAdmin": "Team Admins and System Admins",
  "admin.general.policy.permissionsDeletePostAll": "Message authors can delete their own messages, and Administrators can delete any message",
  "admin.general.policy.permissionsDeletePostSystemAdmin": "System Admins",
  "admin.general.policy.permissionsSystemAdmin": "System Admins",
  "admin.general.policy.restrictPostDeleteDescription": "Set policy on who has permission to delete messages.",
  "admin.general.policy.restrictPostDeleteTitle": "Allow which users to delete messages:",
  "admin.general.policy.restrictPrivateChannelCreationDescription": "Set policy on who can create private channels.",
  "admin.general.policy.restrictPrivateChannelCreationTitle": "Enable private channel creation for:",
  "admin.general.policy.restrictPrivateChannelDeletionCommandLineToolLink": "command line tool",
  "admin.general.policy.restrictPrivateChannelDeletionDescription": "Set policy on who can delete private channels. Deleted channels can be recovered from the database using a {commandLineToolLink}.",
  "admin.general.policy.restrictPrivateChannelDeletionTitle": "Enable private channel deletion for:",
  "admin.general.policy.restrictPrivateChannelManagementDescription": "Set policy on who can rename and set the header or purpose for private channels.",
  "admin.general.policy.restrictPrivateChannelManagementTitle": "Enable private channel renaming for:",
  "admin.general.policy.restrictPrivateChannelManageMembersDescription": "Set policy on who can add and remove members from private channels.",
  "admin.general.policy.restrictPrivateChannelManageMembersTitle": "Enable managing of private channel members for:",
  "admin.general.policy.restrictPublicChannelCreationDescription": "Set policy on who can create public channels.",
  "admin.general.policy.restrictPublicChannelCreationTitle": "Enable public channel creation for:",
  "admin.general.policy.restrictPublicChannelDeletionCommandLineToolLink": "command line tool",
  "admin.general.policy.restrictPublicChannelDeletionDescription": "Set policy on who can delete public channels. Deleted channels can be recovered from the database using a {commandLineToolLink}.",
  "admin.general.policy.restrictPublicChannelDeletionTitle": "Enable public channel deletion for:",
  "admin.general.policy.restrictPublicChannelManagementDescription": "Set policy on who can rename and set the header or purpose for public channels.",
  "admin.general.policy.restrictPublicChannelManagementTitle": "Enable public channel renaming for:",
  "admin.general.policy.teamInviteDescription": "Set policy on who can invite others to a team using <b>Send Email Invite</b> to invite new users by email, or the <b>Get Team Invite Link</b> and <b>Add Members to Team</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": "E.g.: \"https://<your-gitlab-url>/oauth/authorize\"",
  "admin.gitlab.authTitle": "Auth Endpoint:",
  "admin.gitlab.clientIdDescription": "Obtain this value via the instructions above for logging into GitLab",
  "admin.gitlab.clientIdExample": "E.g.: \"jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY\"",
  "admin.gitlab.clientIdTitle": "Application ID:",
  "admin.gitlab.clientSecretExample": "E.g.: \"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": "Enter https://<your-gitlab-url>/oauth/token.   Make sure you use HTTP or HTTPS in your URL depending on your server configuration.",
  "admin.gitlab.tokenExample": "E.g.: \"https://<your-gitlab-url>/oauth/token\"",
  "admin.gitlab.tokenTitle": "Token Endpoint:",
  "admin.gitlab.userDescription": "Enter https://<your-gitlab-url>/api/v3/user.   Make sure you use HTTP or HTTPS in your URL depending on your server configuration.",
  "admin.gitlab.userExample": "E.g.: \"https://<your-gitlab-url>/api/v3/user\"",
  "admin.gitlab.userTitle": "User API Endpoint:",
  "admin.google.EnableHtmlDesc": "<ol><li><a target='_blank' href='https://accounts.google.com/login'>Log in</a> to your Google account.</li><li>Go to <a target='_blank' 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 target='_blank' 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": "E.g.: \"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": "E.g.: \"H8sz0Az-dDs2p15-7QzD231\"",
  "admin.google.clientSecretTitle": "Client Secret:",
  "admin.google.tokenTitle": "Token Endpoint:",
  "admin.google.userTitle": "User API Endpoint:",
  "admin.image.amazonS3BucketDescription": "Name you selected for your S3 bucket in AWS.",
  "admin.image.amazonS3BucketExample": "E.g.: \"mattermost-media\"",
  "admin.image.amazonS3BucketTitle": "Amazon S3 Bucket:",
  "admin.image.amazonS3EndpointDescription": "Hostname of your S3 Compatible Storage provider. Defaults to `s3.amazonaws.com`.",
  "admin.image.amazonS3EndpointExample": "E.g.: \"s3.amazonaws.com\"",
  "admin.image.amazonS3EndpointTitle": "Amazon S3 Endpoint:",
  "admin.image.amazonS3IdDescription": "Obtain this credential from your Amazon EC2 administrator.",
  "admin.image.amazonS3IdExample": "E.g.: \"AKIADTOVBGERKLCBV\"",
  "admin.image.amazonS3IdTitle": "Amazon S3 Access Key ID:",
  "admin.image.amazonS3RegionDescription": "AWS region you selected for creating your S3 bucket.",
  "admin.image.amazonS3RegionExample": "E.g.: \"us-east-1\"",
  "admin.image.amazonS3RegionTitle": "Amazon S3 Region:",
  "admin.image.amazonS3SSLDescription": "When false, allow insecure connections to Amazon S3. Defaults to secure connections only.",
  "admin.image.amazonS3SSLTitle": "Enable Secure Amazon S3 Connections:",
  "admin.image.amazonS3SecretDescription": "Obtain this credential from your Amazon EC2 administrator.",
  "admin.image.amazonS3SecretExample": "E.g.: \"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": "E.g.: \"./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": "E.g.: \"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": "E.g.: \"1024\"",
  "admin.image.previewWidthTitle": "Image Preview Width:",
  "admin.image.profileHeightDescription": "Height of profile picture.",
  "admin.image.profileHeightExample": "E.g.: \"0\"",
  "admin.image.profileHeightTitle": "Profile Picture Height:",
  "admin.image.profileWidthDescription": "Width of profile picture.",
  "admin.image.profileWidthExample": "E.g.: \"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": "E.g.: \"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": "E.g.: \"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": "E.g.: \"120\"",
  "admin.image.thumbWidthTitle": "Attachment Thumbnail Width:",
  "admin.integrations.custom": "Custom Integrations",
  "admin.integrations.external": "External Services",
  "admin.integrations.webrtc": "Mattermost WebRTC",
  "admin.ldap.baseDesc": "The Base DN is the Distinguished Name of the location where Mattermost should start its search for users in the AD/LDAP tree.",
  "admin.ldap.baseEx": "E.g.: \"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 AD/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 AD/LDAP tree specified in the BaseDN field.",
  "admin.ldap.bindUserTitle": "Bind Username:",
  "admin.ldap.emailAttrDesc": "The attribute in the AD/LDAP server that will be used to populate the email addresses of users in Mattermost.",
  "admin.ldap.emailAttrEx": "E.g.: \"mail\" or \"userPrincipalName\"",
  "admin.ldap.emailAttrTitle": "Email Attribute:",
  "admin.ldap.enableDesc": "When true, Mattermost allows login using AD/LDAP",
  "admin.ldap.enableTitle": "Enable sign-in with AD/LDAP:",
  "admin.ldap.firstnameAttrDesc": "(Optional) The attribute in the AD/LDAP server that will be used to populate the first name of users in Mattermost. When set, users will not be able to edit their first name, since it is synchronized with the LDAP server. When left blank, users can set their own first name in Account Settings.",
  "admin.ldap.firstnameAttrEx": "E.g.: \"givenName\"",
  "admin.ldap.firstnameAttrTitle": "First Name Attribute",
  "admin.ldap.idAttrDesc": "The attribute in the AD/LDAP server that will be used as a unique identifier in Mattermost. It should be an AD/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 \"AD/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 AD/LDAP, you may choose to put domain\\\\username in this field to maintain consistency between sites.",
  "admin.ldap.idAttrEx": "E.g.: \"sAMAccountName\"",
  "admin.ldap.idAttrTitle": "ID Attribute: ",
  "admin.ldap.lastnameAttrDesc": "(Optional) The attribute in the AD/LDAP server that will be used to populate the last name of users in Mattermost. When set, users will not be able to edit their last name, since it is synchronized with the LDAP server. When left blank, users can set their own last name in Account Settings.",
  "admin.ldap.lastnameAttrEx": "E.g.: \"sn\"",
  "admin.ldap.lastnameAttrTitle": "Last Name Attribute:",
  "admin.ldap.ldap_test_button": "AD/LDAP Test",
  "admin.ldap.loginNameDesc": "The placeholder text that appears in the login field on the login page. Defaults to \"AD/LDAP Username\".",
  "admin.ldap.loginNameEx": "E.g.: \"AD/LDAP Username\"",
  "admin.ldap.loginNameTitle": "Login Field Name:",
  "admin.ldap.maxPageSizeEx": "E.g.: \"2000\"",
  "admin.ldap.maxPageSizeHelpText": "The maximum number of users the Mattermost server will request from the AD/LDAP server at one time. 0 is unlimited.",
  "admin.ldap.maxPageSizeTitle": "Maximum Page Size:",
  "admin.ldap.nicknameAttrDesc": "(Optional) The attribute in the AD/LDAP server that will be used to populate the nickname of users in Mattermost. When set, users will not be able to edit their nickname, since it is synchronized with the LDAP server. When left blank, users can set their own nickname in Account Settings.",
  "admin.ldap.nicknameAttrEx": "E.g.: \"nickname\"",
  "admin.ldap.nicknameAttrTitle": "Nickname Attribute:",
  "admin.ldap.noLicense": "<h4 class=\"banner__heading\">Note:</h4><p>AD/LDAP is an enterprise feature. Your current license does not support AD/LDAP. Click <a href=\"http://mattermost.com\" target='_blank'>here</a> for information and pricing on enterprise licenses.</p>",
  "admin.ldap.portDesc": "The port Mattermost will use to connect to the AD/LDAP server. Default is 389.",
  "admin.ldap.portEx": "E.g.: \"389\"",
  "admin.ldap.portTitle": "AD/LDAP Port:",
  "admin.ldap.positionAttrDesc": "(Optional) The attribute in the AD/LDAP server that will be used to populate the position field in Mattermost.",
  "admin.ldap.positionAttrEx": "E.g.: \"title\"",
  "admin.ldap.positionAttrTitle": "Position Attribute:",
  "admin.ldap.queryDesc": "The timeout value for queries to the AD/LDAP server. Increase if you are getting timeout errors caused by a slow AD/LDAP server.",
  "admin.ldap.queryEx": "E.g.: \"60\"",
  "admin.ldap.queryTitle": "Query Timeout (seconds):",
  "admin.ldap.serverDesc": "The domain or IP address of AD/LDAP server.",
  "admin.ldap.serverEx": "E.g.: \"10.0.0.23\"",
  "admin.ldap.serverTitle": "AD/LDAP Server:",
  "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": "AD/LDAP Synchronization updates Mattermost user information to reflect updates on the AD/LDAP server. For example, when a user’s name changes on the AD/LDAP server, the change updates in Mattermost when synchronization is performed. Accounts removed from or disabled in the AD/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 AD/LDAP synchronization immediately.",
  "admin.ldap.sync_button": "AD/LDAP Synchronize Now",
  "admin.ldap.testFailure": "AD/LDAP Test Failure: {error}",
  "admin.ldap.testHelpText": "Tests if the Mattermost server can connect to the AD/LDAP server specified. See log file for more detailed error messages.",
  "admin.ldap.testSuccess": "AD/LDAP Test Successful",
  "admin.ldap.uernameAttrDesc": "The attribute in the AD/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 AD/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": "E.g.: \"(objectClass=user)\"",
  "admin.ldap.userFilterTitle": "User Filter:",
  "admin.ldap.usernameAttrEx": "E.g.: \"sAMAccountName\"",
  "admin.ldap.usernameAttrTitle": "Username Attribute:",
  "admin.license.choose": "Choose File",
  "admin.license.chooseFile": "Choose File",
  "admin.license.edition": "Edition: ",
  "admin.license.key": "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": "License: ",
  "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.enableDiagnostics": "Enable Diagnostics and Error Reporting:",
  "admin.log.enableDiagnosticsDescription": "Enable this feature to improve the quality and performance of Mattermost by sending error reporting and diagnostic information to Mattermost, Inc. Read our <a href=\"https://about.mattermost.com/default-privacy-policy/\" target='_blank'>privacy policy</a> to learn more.",
  "admin.log.enableWebhookDebugging": "Enable Webhook Debugging:",
  "admin.log.enableWebhookDebuggingDescription": "You can set this to false to disable the debug logging of all incoming webhook request bodies.",
  "admin.log.fileDescription": "Typically set to true in production. When true, logged events are written to the mattermost.log file in the directory specified in the File Log Directory field. The logs are rotated at 10,000 lines and archived to a file in the same directory, and given a name with a datestamp and serial number. For example, mattermost.2017-03-31.001.",
  "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": "Message",
  "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": "The location of the log files. If blank, they are stored in the ./logs directory. The path that you set must exist and Mattermost must have write permissions in it.",
  "admin.log.locationPlaceholder": "Enter your file location",
  "admin.log.locationTitle": "File Log Directory:",
  "admin.log.logSettings": "Log Settings",
  "admin.logs.reload": "Reload",
  "admin.logs.title": "Server Logs",
  "admin.metrics.enableDescription": "When true, Mattermost will enable performance monitoring collection and profiling. Please see <a href=\"http://docs.mattermost.com/deployment/metrics.html\" target='_blank'>documentation</a> to learn more about configuring performance monitoring for Mattermost.",
  "admin.metrics.enableTitle": "Enable Performance Monitoring:",
  "admin.metrics.listenAddressDesc": "The address the server will listen on to expose performance metrics.",
  "admin.metrics.listenAddressEx": "E.g.: \":8067\"",
  "admin.metrics.listenAddressTitle": "Listen Address:",
  "admin.mfa.bannerDesc": "<a href='https://docs.mattermost.com/deployment/auth.html' target='_blank'>Multi-factor authentication</a> is available for accounts with AD/LDAP or email login. If other login methods are used, MFA should be configured with the authentication provider.",
  "admin.mfa.cluster": "High",
  "admin.mfa.title": "Multi-factor Authentication",
  "admin.nav.help": "Help",
  "admin.nav.logout": "Logout",
  "admin.nav.report": "Report a Problem",
  "admin.nav.switch": "Team Selection",
  "admin.notifications.email": "Email",
  "admin.notifications.push": "Mobile Push",
  "admin.notifications.title": "Notification Settings",
  "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 (Beta)",
  "admin.oauth.providerDescription": "When true, Mattermost can act as an OAuth 2.0 service provider allowing Mattermost to authorize API requests from external applications. See <a target='_blank' href=\"https://docs.mattermost.com/developer/oauth-2-0-applications.html\">documentation</a> to learn more.",
  "admin.oauth.providerTitle": "Enable OAuth 2.0 Service Provider: ",
  "admin.oauth.select": "Select OAuth 2.0 service provider:",
  "admin.office365.EnableHtmlDesc": "<ol><li><a target='_blank' 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 target='_blank' 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 target='_blank' href='https://apps.dev.microsoft.com'>https://apps.dev.microsoft.com</a>, click <strong>Go to app list</strong> > <strong>Add an app</strong> and use \"Mattermost - your-company-name\" as the <strong>Application Name</strong>.</li><li>Under <strong>Application Secrets</strong>, click <strong>Generate New Password</strong> and paste it to the <strong>Application Secret Password</strong> 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 then paste the <strong>Application ID</strong> 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": "E.g.: \"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": "E.g.: \"shAieM47sNBfgl20f8ci294\"",
  "admin.office365.clientSecretTitle": "Application Secret Password:",
  "admin.office365.tokenTitle": "Token Endpoint:",
  "admin.office365.userTitle": "User API Endpoint:",
  "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": "E.g.: \"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 the email address of members from everyone except System Administrators.",
  "admin.privacy.showEmailTitle": "Show Email Address: ",
  "admin.privacy.showFullNameDescription": "When false, hides the full name of members from everyone except System Administrators. Username is shown in place of full name.",
  "admin.privacy.showFullNameTitle": "Show Full Name: ",
  "admin.purge.button": "Purge All Caches",
  "admin.purge.loading": " Loading...",
  "admin.purge.purgeDescription": "This will purge all the in-memory caches for things like sessions, accounts, channels, etc. Deployments using High Availability will attempt to purge all the servers in the cluster.  Purging the caches may adversly impact performance.",
  "admin.purge.purgeFail": "Purging unsuccessful: {error}",
  "admin.rate.enableLimiterDescription": "When true, APIs are throttled at rates specified below.",
  "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": "E.g.: \"X-Real-IP\", \"X-Forwarded-For\"",
  "admin.rate.httpHeaderTitle": "Vary rate limit by HTTP header:",
  "admin.rate.maxBurst": "Maximum Burst Size:",
  "admin.rate.maxBurstDescription": "Maximum number of requests allowed beyond the per second query limit.",
  "admin.rate.maxBurstExample": "E.g.: \"100\"",
  "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": "E.g.: \"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": "Throttles API at this number of requests per second.",
  "admin.rate.queriesExample": "E.g.: \"10\"",
  "admin.rate.queriesTitle": "Maximum Queries per Second:",
  "admin.rate.remoteDescription": "When true, rate limit API access by IP address.",
  "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": "Recycling unsuccessful: {error}",
  "admin.regenerate": "Regenerate",
  "admin.reload.button": "Reload Configuration From Disk",
  "admin.reload.loading": " 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": "Reloading unsuccessful: {error}",
  "admin.reset_password.close": "Close",
  "admin.reset_password.newPassword": "New Password",
  "admin.reset_password.select": "Select",
  "admin.reset_password.submit": "Please enter at least {chars} characters.",
  "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": "E.g.: \"https://<your-mattermost-url>/login/sso/saml\"",
  "admin.saml.assertionConsumerServiceURLTitle": "Service Provider Login URL:",
  "admin.saml.bannerDesc": "User attributes in SAML server, including user deactivation or removal, are updated in Mattermost during user login. Learn more at: <a href=\"https://docs.mattermost.com/deployment/sso-saml.html\">https://docs.mattermost.com/deployment/sso-saml.html</a>",
  "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": "E.g.: \"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": "(Optional) The attribute in the SAML Assertion that will be used to populate the first name of users in Mattermost.",
  "admin.saml.firstnameAttrEx": "E.g.: \"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": "E.g.: \"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": "E.g.: \"https://idp.example.org/SAML2/SSO/Login\"",
  "admin.saml.idpUrlTitle": "SAML SSO URL:",
  "admin.saml.lastnameAttrDesc": "(Optional) The attribute in the SAML Assertion that will be used to populate the last name of users in Mattermost.",
  "admin.saml.lastnameAttrEx": "E.g.: \"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": "E.g.: \"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": "E.g.: \"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": "E.g.: \"Nickname\"",
  "admin.saml.nicknameAttrTitle": "Nickname Attribute:",
  "admin.saml.positionAttrDesc": "(Optional) The attribute in the SAML Assertion that will be used to populate the position of users in Mattermost.",
  "admin.saml.positionAttrEx": "E.g.: \"Role\"",
  "admin.saml.positionAttrTitle": "Position 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": "E.g.: \"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": "Save",
  "admin.saving": "Saving Config...",
  "admin.security.connection": "Connections",
  "admin.security.inviteSalt.disabled": "Invite salt cannot be changed while sending emails is disabled.",
  "admin.security.login": "Login",
  "admin.security.password": "Password",
  "admin.security.passwordResetSalt.disabled": "Password reset salt cannot be changed while sending emails is disabled.",
  "admin.security.public_links": "Public Links",
  "admin.security.requireEmailVerification.disabled": "Email verification cannot be changed while sending emails is disabled.",
  "admin.security.session": "Sessions",
  "admin.security.signup": "Signup",
  "admin.select_team.close": "Close",
  "admin.select_team.select": "Select",
  "admin.select_team.selectTeam": "Select Team",
  "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": "E.g.: \"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": "Enable Custom Slash Commands: ",
  "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 purple bar at the top of the user interface. Not recommended for use in production. ",
  "admin.service.developerTitle": "Enable Developer Mode: ",
  "admin.service.enforcMfaTitle": "Enforce Multi-factor Authentication:",
  "admin.service.enforceMfaDesc": "When true, <a href='https://docs.mattermost.com/deployment/auth.html' target='_blank'>multi-factor authentication</a> is required for login. New users will be required to configure MFA on signup. Logged in users without MFA configured are redirected to the MFA setup page until configuration is complete.<br/><br/>If your system has users with login methods other than AD/LDAP and email, MFA must be enforced with the authentication provider outside of Mattermost.",
  "admin.service.forward80To443": "Forward port 80 to 443:",
  "admin.service.forward80To443Description": "Forwards all insecure traffic from port 80 to secure port 443",
  "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": "E.g.: \"7rAh6iwQCkV4cA1Gsg3fgGOXJAQ43QV\"",
  "admin.service.googleTitle": "Google API Key:",
  "admin.service.iconDescription": "When true, webhooks, slash commands and other integrations, such as <a href=\"https://docs.mattermost.com/integrations/zapier.html\" target='_blank'>Zapier</a>, will be allowed to change the profile picture they post with. Note: Combined with allowing integrations to override usernames, users may be able to perform phishing attacks by attempting to impersonate other users.",
  "admin.service.iconTitle": "Enable integrations to override profile picture icons:",
  "admin.service.insecureTlsDesc": "When true, any outgoing HTTPS requests will accept unverified, self-signed certificates. For example, outgoing webhooks to a server with a self-signed TLS certificate, using any domain, will be allowed. Note that this makes these connections susceptible to man-in-the-middle attacks.",
  "admin.service.insecureTlsTitle": "Enable Insecure Outgoing Connections: ",
  "admin.service.integrationAdmin": "Restrict managing integrations to Admins:",
  "admin.service.integrationAdminDesc": "When true, webhooks and slash commands can only be created, edited and viewed by Team and System Admins, and OAuth 2.0 applications by System Admins. Integrations are available to all users after they have been created by the Admin.",
  "admin.service.letsEncryptCertificateCacheFile": "Let's Encrypt Certificate Cache File:",
  "admin.service.letsEncryptCertificateCacheFileDescription": "Certificates retrieved and other data about the Let's Encrypt service will be stored in this file.",
  "admin.service.listenAddress": "Listen Address:",
  "admin.service.listenDescription": "The address and port to which to bind and listen. Specifying \":8065\" will bind to all network interfaces. Specifying \"127.0.0.1:8065\" will only bind to the network interface having that IP address. If you choose a port of a lower level (called \"system ports\" or \"well-known ports\", in the range of 0-1023), you must have permissions to bind to that port. On Linux you can use: \"sudo setcap cap_net_bind_service=+ep ./bin/platform\" to allow Mattermost to bind to well-known ports.",
  "admin.service.listenExample": "E.g.: \":8065\"",
  "admin.service.mfaDesc": "When true, users with AD/LDAP or email login can add multi-factor authentication to their account using Google Authenticator.",
  "admin.service.mfaTitle": "Enable Multi-factor Authentication:",
  "admin.service.mobileSessionDays": "Session length mobile (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": "Enable Outgoing Webhooks: ",
  "admin.service.overrideDescription": "When true, webhooks, slash commands and other integrations, such as <a href=\"https://docs.mattermost.com/integrations/zapier.html\" target='_blank'>Zapier</a>, will be allowed to change the username they are posting as. Note: Combined with allowing integrations to override profile picture icons, users may be able to perform phishing attacks by attempting to impersonate other users.",
  "admin.service.overrideTitle": "Enable integrations to override usernames:",
  "admin.service.readTimeout": "Read Timeout:",
  "admin.service.readTimeoutDescription": "Maximum time allowed from when the connection is accepted to when the request body is fully read.",
  "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.sessionCache": "Session Cache (minutes):",
  "admin.service.sessionCacheDesc": "The number of minutes to cache a session in memory.",
  "admin.service.sessionDaysEx": "E.g.: \"30\"",
  "admin.service.siteURL": "Site URL:",
  "admin.service.siteURLDescription": "The URL, including port number and protocol, that users will use to access Mattermost. This setting is required.",
  "admin.service.siteURLExample": "E.g.: \"https://mattermost.example.com:1234\"",
  "admin.service.ssoSessionDays": "Session length SSO (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": "When true, /loadtest slash command is enabled to load test accounts, data and text formatting. Changing this requires a server restart before taking effect.",
  "admin.service.testingTitle": "Enable Testing Commands: ",
  "admin.service.tlsCertFile": "TLS Certificate File:",
  "admin.service.tlsCertFileDescription": "The certificate file to use.",
  "admin.service.tlsKeyFile": "TLS Key File:",
  "admin.service.tlsKeyFileDescription": "The private key file to use.",
  "admin.service.useLetsEncrypt": "Use Let's Encrypt:",
  "admin.service.useLetsEncryptDescription": "Enable the automatic retreval of certificates from the Let's Encrypt. The certificate will be retrieved when a client attempts to connect from a new domain. This will work with multiple domains.",
  "admin.service.webSessionDays": "Session length AD/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": "Enable Incoming Webhooks: ",
  "admin.service.writeTimeout": "Write Timeout:",
  "admin.service.writeTimeoutDescription": "If using HTTP (insecure), this is the maximum time allowed from the end of reading the request headers until the response is written. If using HTTPS, it is the total time from when the connection is accepted until the response is written.",
  "admin.sidebar.addTeamSidebar": "Add team from sidebar menu",
  "admin.sidebar.advanced": "Advanced",
  "admin.sidebar.audits": "Compliance and Auditing",
  "admin.sidebar.authentication": "Authentication",
  "admin.sidebar.cluster": "High Availability (Beta)",
  "admin.sidebar.compliance": "Compliance",
  "admin.sidebar.configuration": "Configuration",
  "admin.sidebar.connections": "Connections",
  "admin.sidebar.customBrand": "Custom Branding",
  "admin.sidebar.customEmoji": "Custom Emoji",
  "admin.sidebar.customIntegrations": "Custom Integrations",
  "admin.sidebar.customization": "Customization",
  "admin.sidebar.database": "Database",
  "admin.sidebar.developer": "Developer",
  "admin.sidebar.email": "Email",
  "admin.sidebar.external": "External Services",
  "admin.sidebar.files": "Files",
  "admin.sidebar.general": "General",
  "admin.sidebar.gitlab": "GitLab",
  "admin.sidebar.images": "Images",
  "admin.sidebar.integrations": "Integrations",
  "admin.sidebar.ldap": "AD/LDAP",
  "admin.sidebar.legalAndSupport": "Legal and Support",
  "admin.sidebar.license": "Edition and License",
  "admin.sidebar.linkPreviews": "Link Previews",
  "admin.sidebar.localization": "Localization",
  "admin.sidebar.logging": "Logging",
  "admin.sidebar.login": "Login",
  "admin.sidebar.logs": "Logs",
  "admin.sidebar.metrics": "Performance Monitoring",
  "admin.sidebar.nativeAppLinks": "Mattermost App Links",
  "admin.sidebar.notifications": "Notifications",
  "admin.sidebar.oauth": "OAuth 2.0",
  "admin.sidebar.other": "OTHER",
  "admin.sidebar.password": "Password",
  "admin.sidebar.policy": "Policy",
  "admin.sidebar.privacy": "Privacy",
  "admin.sidebar.publicLinks": "Public Links",
  "admin.sidebar.push": "Mobile Push",
  "admin.sidebar.rateLimiting": "Rate Limiting",
  "admin.sidebar.reports": "REPORTING",
  "admin.sidebar.rmTeamSidebar": "Remove team from sidebar menu",
  "admin.sidebar.saml": "SAML",
  "admin.sidebar.security": "Security",
  "admin.sidebar.sessions": "Sessions",
  "admin.sidebar.settings": "SETTINGS",
  "admin.sidebar.signUp": "Sign Up",
  "admin.sidebar.sign_up": "Sign Up",
  "admin.sidebar.statistics": "Team Statistics",
  "admin.sidebar.storage": "Storage",
  "admin.sidebar.support": "Legal and Support",
  "admin.sidebar.teams": "TEAMS ({count, number})",
  "admin.sidebar.users": "Users",
  "admin.sidebar.usersAndTeams": "Users and Teams",
  "admin.sidebar.view_statistics": "Site Statistics",
  "admin.sidebar.webrtc": "WebRTC (Beta)",
  "admin.sidebarHeader.systemConsole": "System Console",
  "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": "E.g.: \"gxHVDcKUyP2y1eiyW8S8na1UYQAfq6J6\"",
  "admin.sql.keyTitle": "At Rest Encrypt Key:",
  "admin.sql.maxConnectionsDescription": "Maximum number of idle connections held open to the database.",
  "admin.sql.maxConnectionsExample": "E.g.: \"10\"",
  "admin.sql.maxConnectionsTitle": "Maximum Idle Connections:",
  "admin.sql.maxOpenDescription": "Maximum number of open connections held open to the database.",
  "admin.sql.maxOpenExample": "E.g.: \"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": "All team communication in one place, searchable and accessible anywhere",
  "admin.team.brandDescriptionHelp": "Description of service shown in login screens and UI. When not specified, \"All team communication in one place, searchable and accessible anywhere\" is displayed.",
  "admin.team.brandDescriptionTitle": "Site Description: ",
  "admin.team.brandImageTitle": "Custom Brand Image:",
  "admin.team.brandTextDescription": "Text that will appear below your custom brand image on your login screen. Supports Markdown-formatted text. Maximum 500 characters allowed.",
  "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.maxChannelsDescription": "Maximum total number of channels per team, including both active and deleted channels.",
  "admin.team.maxChannelsExample": "E.g.: \"100\"",
  "admin.team.maxChannelsTitle": "Max Channels Per Team:",
  "admin.team.maxNotificationsPerChannelDescription": "Maximum total number of users in a channel before users typing messages, @all, @here, and @channel no longer send notifications because of performance.",
  "admin.team.maxNotificationsPerChannelExample": "E.g.: \"1000\"",
  "admin.team.maxNotificationsPerChannelTitle": "Max Notifications Per Channel:",
  "admin.team.maxUsersDescription": "Maximum total number of users per team, including both active and inactive users.",
  "admin.team.maxUsersExample": "E.g.: \"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": "E.g.: \"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": "E.g.: \"Mattermost\"",
  "admin.team.siteNameTitle": "Site Name:",
  "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. Recommended maximum image size is less than 2 MB.",
  "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": "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 roles system_admin {username}",
  "admin.user_item.emailTitle": "<strong>Email:</strong> {email}",
  "admin.user_item.inactive": "Inactive",
  "admin.user_item.makeActive": "Make Active",
  "admin.user_item.makeInactive": "Make Inactive",
  "admin.user_item.makeMember": "Make Member",
  "admin.user_item.makeSysAdmin": "Make System Admin",
  "admin.user_item.makeTeamAdmin": "Make Team Admin",
  "admin.user_item.manageTeams": "Manage Teams",
  "admin.user_item.member": "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": "System Admin",
  "admin.user_item.teamAdmin": "Team Admin",
  "admin.user_item.sysAdmin": "System Admin",
  "admin.webrtc.enableDescription": "When true, Mattermost allows making <strong>one-on-one</strong> video calls. WebRTC calls are available on Chrome, Firefox and Mattermost Desktop Apps.",
  "admin.webrtc.enableTitle": "Enable Mattermost WebRTC: ",
  "admin.webrtc.gatewayAdminSecretDescription": "Enter your admin secret password to access the Gateway Admin URL.",
  "admin.webrtc.gatewayAdminSecretExample": "E.g.: \"PVRzWNN1Tg6szn7IQWvhpAvLByScWxdy\"",
  "admin.webrtc.gatewayAdminSecretTitle": "Gateway Admin Secret:",
  "admin.webrtc.gatewayAdminUrlDescription": "Enter https://<mattermost-webrtc-gateway-url>:<port>/admin. Make sure you use HTTP or HTTPS in your URL depending on your server configuration. Mattermost WebRTC uses this URL to obtain valid tokens for each peer to establish the connection.",
  "admin.webrtc.gatewayAdminUrlExample": "E.g.: \"https://webrtc.mattermost.com:7089/admin\"",
  "admin.webrtc.gatewayAdminUrlTitle": "Gateway Admin URL:",
  "admin.webrtc.gatewayWebsocketUrlDescription": "Enter wss://<mattermost-webrtc-gateway-url>:<port>. Make sure you use WS or WSS in your URL depending on your server configuration. This is the WebSocket used to signal and establish communication between the peers.",
  "admin.webrtc.gatewayWebsocketUrlExample": "E.g.: \"wss://webrtc.mattermost.com:8189\"",
  "admin.webrtc.gatewayWebsocketUrlTitle": "Gateway WebSocket URL:",
  "admin.webrtc.stunUriDescription": "Enter your STUN URI as stun:<your-stun-url>:<port>. STUN is a standardized network protocol to allow an end host to assist devices to access its public IP address if it is located behind a NAT.",
  "admin.webrtc.stunUriExample": "E.g.: \"stun:webrtc.mattermost.com:5349\"",
  "admin.webrtc.stunUriTitle": "STUN URI:",
  "admin.webrtc.turnSharedKeyDescription": "Enter your TURN Server Shared Key. This is used to created dynamic passwords to establish the connection. Each password is valid for a short period of time.",
  "admin.webrtc.turnSharedKeyExample": "E.g.: \"bXdkOWQxc3d0Ynk3emY5ZmsxZ3NtazRjaWg=\"",
  "admin.webrtc.turnSharedKeyTitle": "TURN Shared Key:",
  "admin.webrtc.turnUriDescription": "Enter your TURN URI as turn:<your-turn-url>:<port>. TURN is a standardized network protocol to allow an end host to assist devices to establish a connection by using a relay public IP address if it is located behind a symmetric NAT.",
  "admin.webrtc.turnUriExample": "E.g.: \"turn:webrtc.mattermost.com:5349\"",
  "admin.webrtc.turnUriTitle": "TURN URI:",
  "admin.webrtc.turnUsernameDescription": "Enter your TURN Server Username.",
  "admin.webrtc.turnUsernameExample": "E.g.: \"myusername\"",
  "admin.webrtc.turnUsernameTitle": "TURN Username:",
  "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.",
  "admin.webserverModeTitle": "Webserver Mode:",
  "admin.webserverModeUncompressed": "Uncompressed",
  "admin.webserverModeUncompressedDescription": "The Mattermost server will serve static files uncompressed.",
  "analytics.chart.loading": "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.dailyActiveUsers": "Daily Active Users",
  "analytics.system.monthlyActiveUsers": "Monthly Active Users",
  "analytics.system.postTypes": "Posts, Files and Hashtags",
  "analytics.system.privateGroups": "Private Channels",
  "analytics.system.publicChannels": "Public Channels",
  "analytics.system.skippedIntensiveQueries": "To maximize performance, some statistics are disabled. You can re-enable them in config.json. See: <a href='https://docs.mattermost.com/administration/statistics.html' target='_blank'>https://docs.mattermost.com/administration/statistics.html</a>",
  "analytics.system.textPosts": "Posts with Text-only",
  "analytics.system.title": "System Statistics",
  "analytics.system.totalChannels": "Total Channels",
  "analytics.system.totalCommands": "Total Commands",
  "analytics.system.totalFilePosts": "Posts with Files",
  "analytics.system.totalHashtagPosts": "Posts with Hashtags",
  "analytics.system.totalIncomingWebhooks": "Incoming Webhooks",
  "analytics.system.totalMasterDbConnections": "Master DB Conns",
  "analytics.system.totalOutgoingWebhooks": "Outgoing Webhooks",
  "analytics.system.totalPosts": "Total Posts",
  "analytics.system.totalReadDbConnections": "Replica DB Conns",
  "analytics.system.totalSessions": "Total Sessions",
  "analytics.system.totalTeams": "Total Teams",
  "analytics.system.totalUsers": "Total Users",
  "analytics.system.totalWebsockets": "WebSocket Conns",
  "analytics.team.activeUsers": "Active Users With Posts",
  "analytics.team.newlyCreated": "Newly Created Users",
  "analytics.team.privateGroups": "Private Channels",
  "analytics.team.publicChannels": "Public Channels",
  "analytics.team.recentActive": "Recent Active Users",
  "analytics.team.recentUsers": "Recent Active Users",
  "analytics.team.title": "Team Statistics for {team}",
  "analytics.team.totalPosts": "Total Posts",
  "analytics.team.totalUsers": "Total Users",
  "api.channel.add_member.added": "{addedUsername} added to the channel by {username}",
  "api.channel.delete_channel.archived": "{username} has archived the channel.",
  "api.channel.join_channel.post_and_forget": "{username} has joined the channel.",
  "api.channel.leave.left": "{username} has left the channel.",
  "api.channel.post_update_channel_displayname_message_and_forget.updated_from": "{username} updated the channel display name from: {old} to: {new}",
  "api.channel.post_update_channel_header_message_and_forget.removed": "{username} removed the channel header (was: {old})",
  "api.channel.post_update_channel_header_message_and_forget.updated_from": "{username} updated the channel header from: {old} to: {new}",
  "api.channel.post_update_channel_header_message_and_forget.updated_to": "{username} updated the channel header to: {new}",
  "api.channel.remove_member.removed": "{removedUsername} was removed from the channel",
  "app.channel.post_update_channel_purpose_message.removed": "{username} removed the channel purpose (was: {old})",
  "app.channel.post_update_channel_purpose_message.updated_from": "{username} updated the channel purpose from: {old} to: {new}",
  "app.channel.post_update_channel_purpose_message.updated_to": "{username} updated the channel purpose to: {new}",
  "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",
  "audit_table.channelDeleted": "Deleted the channel 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 header",
  "audit_table.ip": "IP Address",
  "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": "member",
  "audit_table.nameUpdated": "Updated the {channelName} channel 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": "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",
  "audit_table.userId": "User ID",
  "audit_table.userRemoved": "Removed {username} to the {channelName} channel",
  "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": "Search",
  "backstage_navbar.backToMattermost": "Back to {siteName}",
  "backstage_sidebar.emoji": "Custom Emoji",
  "backstage_sidebar.integrations": "Integrations",
  "backstage_sidebar.integrations.commands": "Slash Commands",
  "backstage_sidebar.integrations.incoming_webhooks": "Incoming Webhooks",
  "backstage_sidebar.integrations.oauthApps": "OAuth 2.0 Applications",
  "backstage_sidebar.integrations.outgoing_webhooks": "Outgoing Webhooks",
  "calling_screen": "Calling",
  "center_panel.recent": "Click here to jump to recent messages. ",
  "change_url.close": "Close",
  "change_url.endWithLetter": "URL must end with a letter or number.",
  "change_url.invalidUrl": "Invalid URL",
  "change_url.longer": "URL must be two or more characters.",
  "change_url.noUnderscore": "URL can not contain two underscores in a row.",
  "change_url.startWithLetter": "URL must start with a letter or number.",
  "channelHeader.addToFavorites": "Add to Favorites",
  "channelHeader.removeFromFavorites": "Remove from Favorites",
  "channel_flow.alreadyExist": "A channel with that URL already exists",
  "channel_flow.changeUrlDescription": "Some characters are not allowed in URLs and may be removed.",
  "channel_flow.changeUrlTitle": "Change Channel URL",
  "channel_flow.create": "Create Channel",
  "channel_flow.handleTooShort": "Channel URL must be 2 or more lowercase alphanumeric characters",
  "channel_flow.invalidName": "Invalid Channel Name",
  "channel_flow.set_url_title": "Set Channel URL",
  "channel_header.addMembers": "Add Members",
  "channel_header.addToFavorites": "Add to Favorites",
  "channel_header.channel": "Channel",
  "channel_header.channelHeader": "Edit Channel Header",
  "channel_header.delete": "Delete Channel",
  "channel_header.flagged": "Flagged Posts",
  "channel_header.leave": "Leave Channel",
  "channel_header.manageMembers": "Manage Members",
  "channel_header.notificationPreferences": "Notification Preferences",
  "channel_header.recentMentions": "Recent Mentions",
  "channel_header.removeFromFavorites": "Remove from Favorites",
  "channel_header.rename": "Rename Channel",
  "channel_header.setHeader": "Edit Channel Header",
  "channel_header.setPurpose": "Edit Channel Purpose",
  "channel_header.viewInfo": "View Info",
  "channel_header.viewMembers": "View Members",
  "channel_header.webrtc.call": "Start Video Call",
  "channel_header.webrtc.offline": "The user is offline",
  "channel_header.webrtc.unavailable": "New call unavailable until your existing call ends",
  "channel_info.about": "About",
  "channel_info.close": "Close",
  "channel_info.header": "Header:",
  "channel_info.id": "ID: ",
  "channel_info.name": "Name:",
  "channel_info.notFound": "No Channel Found",
  "channel_info.purpose": "Purpose:",
  "channel_info.url": "URL:",
  "channel_invite.add": " Add",
  "channel_invite.addNewMembers": "Add New Members to ",
  "channel_invite.close": "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_dropdown.channel_admin": "Channel Admin",
  "channel_members_dropdown.channel_member": "Channel Member",
  "channel_members_dropdown.make_channel_admin": "Make Channel Admin",
  "channel_members_dropdown.make_channel_member": "Make Channel Member",
  "channel_members_dropdown.remove_from_channel": "Remove From Channel",
  "channel_members_dropdown.remove_member": "Remove Member",
  "channel_members_modal.addNew": " Add New Members",
  "channel_members_modal.members": " Members",
  "channel_modal.cancel": "Cancel",
  "channel_modal.createNew": "Create New Channel",
  "channel_modal.descriptionHelp": "Describe how this channel should be used.",
  "channel_modal.displayNameError": "Channel name must be 2 or more characters",
  "channel_modal.edit": "Edit",
  "channel_modal.header": "Header",
  "channel_modal.headerEx": "E.g.: \"[Link Title](http://example.com)\"",
  "channel_modal.headerHelp": "Set text that will appear in the header of the channel beside the channel name. For example, include frequently used links by typing [Link Title](http://example.com).",
  "channel_modal.modalTitle": "New Channel",
  "channel_modal.name": "Name",
  "channel_modal.nameEx": "E.g.: \"Bugs\", \"Marketing\", \"客户支持\"",
  "channel_modal.optional": "(optional)",
  "channel_modal.privateGroup1": "Create a new private channel with restricted membership. ",
  "channel_modal.privateGroup2": "Create a private channel",
  "channel_modal.publicChannel1": "Create a public channel",
  "channel_modal.publicChannel2": "Create a new public channel anyone can join. ",
  "channel_modal.purpose": "Purpose",
  "channel_modal.purposeEx": "E.g.: \"A channel to file bugs and improvements\"",
  "channel_notification.push": "Send mobile push notifications",
  "channel_notifications.allActivity": "For all activity",
  "channel_notifications.allUnread": "For all unread messages",
  "channel_notifications.globalDefault": "Global default ({notifyLevel})",
  "channel_notifications.markUnread": "Mark Channel Unread",
  "channel_notifications.never": "Never",
  "channel_notifications.onlyMentions": "Only for mentions",
  "channel_notifications.override": "Selecting an option other than \"Default\" will override the global notification settings. Desktop notifications are available on Firefox, Safari, and Chrome.",
  "channel_notifications.overridePush": "Selecting an option other than \"Global default\" will override the global notification settings for mobile push notifications in account settings. Push notifications must be enabled by the System Admin.",
  "channel_notifications.preferences": "Notification Preferences for ",
  "channel_notifications.sendDesktop": "Send desktop notifications",
  "channel_notifications.unreadInfo": "The channel name is bolded in the sidebar when there are unread messages. Selecting \"Only for mentions\" will bold the channel only when you are mentioned.",
  "channel_select.placeholder": "--- Select a channel ---",
  "channel_switch_modal.dm": "(Direct Message)",
  "channel_switch_modal.failed_to_open": "Failed to open channel.",
  "channel_switch_modal.help": "Type channel name. Use ↑↓ to browse, TAB to select, ↵ to confirm, ESC to dismiss",
  "channel_switch_modal.not_found": "No matches found.",
  "channel_switch_modal.submit": "Switch",
  "channel_switch_modal.title": "Switch Channels",
  "claim.account.noEmail": "No email specified",
  "claim.email_to_ldap.enterLdapPwd": "Enter the ID and password for your AD/LDAP account",
  "claim.email_to_ldap.enterPwd": "Enter the password for your {site} email account",
  "claim.email_to_ldap.ldapId": "AD/LDAP ID",
  "claim.email_to_ldap.ldapIdError": "Please enter your AD/LDAP ID.",
  "claim.email_to_ldap.ldapPasswordError": "Please enter your AD/LDAP password.",
  "claim.email_to_ldap.ldapPwd": "AD/LDAP Password",
  "claim.email_to_ldap.pwd": "Password",
  "claim.email_to_ldap.pwdError": "Please enter your password.",
  "claim.email_to_ldap.ssoNote": "You must already have a valid AD/LDAP account",
  "claim.email_to_ldap.ssoType": "Upon claiming your account, you will only be able to login with AD/LDAP",
  "claim.email_to_ldap.switchTo": "Switch account to AD/LDAP",
  "claim.email_to_ldap.title": "Switch Email/Password Account to AD/LDAP",
  "claim.email_to_oauth.enterPwd": "Enter the password for your {site} account",
  "claim.email_to_oauth.pwd": "Password",
  "claim.email_to_oauth.pwdError": "Please enter your password.",
  "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": "Switch Email/Password Account to {uiType}",
  "claim.ldap_to_email.confirm": "Confirm Password",
  "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": "Please enter your AD/LDAP password.",
  "claim.ldap_to_email.ldapPwd": "AD/LDAP Password",
  "claim.ldap_to_email.pwd": "Password",
  "claim.ldap_to_email.pwdError": "Please enter your password.",
  "claim.ldap_to_email.pwdNotMatch": "Passwords do not match.",
  "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 AD/LDAP Account to Email/Password",
  "claim.oauth_to_email.confirm": "Confirm Password",
  "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": "Please enter a password.",
  "claim.oauth_to_email.newPwd": "New Password",
  "claim.oauth_to_email.pwdNotMatch": "Password do not match.",
  "claim.oauth_to_email.switchTo": "Switch {type} to email and password",
  "claim.oauth_to_email.title": "Switch {type} Account to Email",
  "confirm_modal.cancel": "Cancel",
  "connecting_screen": "Connecting",
  "create_comment.addComment": "Add a comment...",
  "create_comment.comment": "Add 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": "Comment",
  "create_post.error_message": "Your message is too long. Character count: {length}/{limit}",
  "create_post.post": "Post",
  "create_post.shortcutsNotSupported": "Keyboard shortcuts are not supported on your device.",
  "create_post.tutorialTip": "<h4>Sending Messages</h4><p>Type here to write a message and press <strong>ENTER</strong> to post it.</p><p>Click the <strong>Attachment</strong> button to upload an image or a file.</p>",
  "create_post.write": "Write a message...",
  "create_team.agreement": "By proceeding to create your account and use {siteName}, you agree to our <a href={TermsOfServiceLink}>Terms of Service</a> and <a href={PrivacyPolicyLink}>Privacy Policy</a>. If you do not agree, you cannot use {siteName}.",
  "create_team.display_name.charLength": "Name must be {min} or more characters up to a maximum of {max}. You can add a longer team description later.",
  "create_team.display_name.nameHelp": "Name your team in any language. Your team name shows in menus and headings.",
  "create_team.display_name.next": "Next",
  "create_team.display_name.required": "This field is required",
  "create_team.display_name.teamName": "Team Name",
  "create_team.team_url.back": "Back to previous step",
  "create_team.team_url.charLength": "Name must be {min} or more characters up to a maximum of {max}",
  "create_team.team_url.creatingTeam": "Creating team...",
  "create_team.team_url.finish": "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": "This field is required",
  "create_team.team_url.taken": "This URL <a href=\"https://docs.mattermost.com/help/getting-started/creating-teams.html#team-url\" target=\"_blank\">starts with a reserved word</a> or is unavailable. Please try another.",
  "create_team.team_url.teamUrl": "Team URL",
  "create_team.team_url.unavailable": "This URL is taken or unavailable. Please try another.",
  "create_team.team_url.webAddress": "Choose the web address of your new team:",
  "custom_emoji.empty": "No custom emoji found",
  "custom_emoji.header": "Custom Emoji",
  "custom_emoji.search": "Search Custom Emoji",
  "default_channel.purpose": "Post messages here that you want everyone to see. Everyone automatically becomes a permanent member of this channel when they join the team.",
  "delete_channel.cancel": "Cancel",
  "delete_channel.confirm": "Confirm DELETE Channel",
  "delete_channel.del": "Delete",
  "delete_channel.question": "This will delete the channel from the team and make its contents inaccessible for all users. Are you sure you wish to delete the {display_name} channel?",
  "delete_post.cancel": "Cancel",
  "delete_post.comment": "Comment",
  "delete_post.confirm": "Confirm {term} Delete",
  "delete_post.del": "Delete",
  "delete_post.post": "Post",
  "delete_post.question": "Are you sure you want to delete this {term}?",
  "delete_post.warning": "This post has {count} comment(s) on it.",
  "edit_channel_header_modal.cancel": "Cancel",
  "edit_channel_header_modal.description": "Edit the text appearing next to the channel name in the channel header.",
  "edit_channel_header_modal.error": "This channel header is too long, please enter a shorter one",
  "edit_channel_header_modal.save": "Save",
  "edit_channel_header_modal.title": "Edit Header for {channel}",
  "edit_channel_header_modal.title_dm": "Edit Header",
  "edit_channel_purpose_modal.body": "Describe how this channel should be used. This text appears in the channel list in the \"More...\" menu and helps others decide whether to join.",
  "edit_channel_purpose_modal.cancel": "Cancel",
  "edit_channel_purpose_modal.error": "This channel purpose is too long, please enter a shorter one",
  "edit_channel_purpose_modal.save": "Save",
  "edit_channel_purpose_modal.title1": "Edit Purpose",
  "edit_channel_purpose_modal.title2": "Edit Purpose for ",
  "edit_command.save": "Update",
  "edit_post.cancel": "Cancel",
  "edit_post.edit": "Edit {title}",
  "edit_post.editPost": "Edit the post...",
  "edit_post.save": "Save",
  "email_signup.address": "Email Address",
  "email_signup.createTeam": "Create Team",
  "email_signup.emailError": "Please enter a valid email address.",
  "email_signup.find": "Find my teams",
  "email_verify.almost": "{siteName}: You are almost done",
  "email_verify.failed": " Failed to send verification email.",
  "email_verify.notVerifiedBody": "Please verify your email address. Check your inbox for an email.",
  "email_verify.resend": "Resend Email",
  "email_verify.sent": " Verification email sent.",
  "email_verify.verified": "{siteName} Email Verified",
  "email_verify.verifiedBody": "<p>Your email has been verified! Click <a href={url}>here</a> to log in.</p>",
  "email_verify.verifyFailed": "Failed to verify your email.",
  "emoji_list.actions": "Actions",
  "emoji_list.add": "Add Custom Emoji",
  "emoji_list.creator": "Creator",
  "emoji_list.delete": "Delete",
  "emoji_list.delete.confirm.button": "Delete",
  "emoji_list.delete.confirm.msg": "This action permanently deletes the custom emoji. Are you sure you want to delete it?",
  "emoji_list.delete.confirm.title": "Delete Custom Emoji",
  "emoji_list.empty": "No Custom Emoji Found",
  "emoji_list.header": "Custom Emoji",
  "emoji_list.help": "Custom emoji are available to everyone on your server. Type ':' in a message box to bring up the emoji selection menu. Other users may need to refresh the page before new emojis appear.",
  "emoji_list.help2": "Tip: If you add #, ##, or ### as the first character on a new line containing emoji, you can use larger sized emoji. To try it out, send a message such as: '# :smile:'.",
  "emoji_list.image": "Image",
  "emoji_list.name": "Name",
  "emoji_list.search": "Search Custom Emoji",
  "emoji_list.somebody": "Somebody on another team",
  "emoji_picker.activity": "Activity",
  "emoji_picker.custom": "Custom",
  "emoji_picker.emojiPicker": "Emoji Picker",
  "emoji_picker.flags": "Flags",
  "emoji_picker.food": "Food",
  "emoji_picker.nature": "Nature",
  "emoji_picker.objects": "Objects",
  "emoji_picker.people": "People",
  "emoji_picker.recent": "Recently Used",
  "emoji_picker.search": "Search",
  "emoji_picker.symbols": "Symbols",
  "emoji_picker.travel": "Travel",
  "error.local_storage.help1": "Enable cookies",
  "error.local_storage.help2": "Turn off private browsing",
  "error.local_storage.help3": "Use a supported browser (IE 11, Chrome 43+, Firefox 38+, Safari 9, Edge)",
  "error.local_storage.message": "Mattermost was unable to load because a setting in your browser prevents the use of its local storage features. To allow Mattermost to load, try the following actions:",
  "error.not_found.link_message": "Back to Mattermost",
  "error.not_found.message": "The page you were trying to reach does not exist",
  "error.not_found.title": "Page not found",
  "error_bar.expired": "Enterprise license is expired and some features may be disabled. <a href='{link}' target='_blank'>Please renew.</a>",
  "error_bar.expiring": "Enterprise license expires on {date}. <a href='{link}' target='_blank'>Please renew.</a>",
  "error_bar.past_grace": "Enterprise license is expired and some features may be disabled. Please contact your System Administrator for details.",
  "error_bar.preview_mode": "Preview Mode: Email notifications have not been configured",
  "error_bar.site_url": "{docsLink} is now a required setting. Please configure it in {link}.",
  "error_bar.site_url.docsLink": "Site URL",
  "error_bar.site_url.link": "the System Console",
  "error_bar.site_url_gitlab": "{docsLink} is now a required setting. Please configure it in the System Console or in gitlab.rb if you're using GitLab Mattermost.",
  "file_attachment.download": "Download",
  "file_info_preview.size": "Size ",
  "file_info_preview.type": "File 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_channels_list.count": "{count} {count, plural, =0 {0 channels} one {channel} other {channels}}",
  "filtered_channels_list.countTotal": "{count} {count, plural, =0 {0 channels} one {channel} other {channels}} of {total} total",
  "filtered_channels_list.search": "Search channels",
  "filtered_user_list.any_team": "All Users",
  "filtered_user_list.count": "{count} {count, plural, =0 {0 members} one {member} other {members}}",
  "filtered_user_list.countTotal": "{count} {count, plural, =0 {0 members} one {member} other {members}} of {total} total",
  "filtered_user_list.countTotalPage": "{startCount, number} - {endCount, number} {count, plural, =0 {0 members} one {member} other {members}} of {total} total",
  "filtered_user_list.member": "Member",
  "filtered_user_list.next": "Next",
  "filtered_user_list.prev": "Previous",
  "filtered_user_list.search": "Search users",
  "filtered_user_list.searchButton": "Search",
  "filtered_user_list.show": "Filter:",
  "filtered_user_list.team_only": "Members of this Team",
  "find_team.email": "Email",
  "find_team.findDescription": "An email was sent with links to any teams to which you are a member.",
  "find_team.findTitle": "Find Your Team",
  "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": "Send",
  "find_team.submitError": "Please enter a valid email address",
  "flag_post.flag": "Flag for follow up",
  "flag_post.unflag": "Unflag",
  "general_tab.chooseDescription": "Please choose a new description for your team",
  "general_tab.codeDesc": "Click 'Edit' to regenerate Invite Code.",
  "general_tab.codeLongDesc": "The Invite Code is used as part of the URL in the team invitation link created by {getTeamInviteLink} in the main menu. Regenerating creates a new team invitation link and invalidates the previous link.",
  "general_tab.codeTitle": "Invite Code",
  "general_tab.emptyDescription": "Click 'Edit' to add a team description.",
  "general_tab.getTeamInviteLink": "Get Team Invite Link",
  "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.no": "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": "Allow any user with an account on this server to join this team",
  "general_tab.regenerate": "Regenerate",
  "general_tab.required": "This field is required",
  "general_tab.teamDescription": "Team Description",
  "general_tab.teamDescriptionInfo": "Team description provides additional information to help users select the right team. Maximum of 50 characters.",
  "general_tab.teamName": "Team Name",
  "general_tab.teamNameInfo": "Set the name of the team as it appears on your sign-in screen and at the top of the left-hand sidebar.",
  "general_tab.title": "General Settings",
  "general_tab.yes": "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": " Link copied",
  "get_link.close": "Close",
  "get_link.copy": "Copy Link",
  "get_post_link_modal.help": "The link below allows authorized users to see your post.",
  "get_post_link_modal.title": "Copy Permalink",
  "get_public_link_modal.help": "The link below allows anyone to see this file without being registered on this server.",
  "get_public_link_modal.title": "Copy Public Link",
  "get_team_invite_link_modal.help": "Send teammates the link below for them to sign-up to this team site. The Team Invite Link can be shared with multiple teammates as it does not change unless it's regenerated in Team Settings by a Team Admin.",
  "get_team_invite_link_modal.helpDisabled": "User creation has been disabled for your team. Please ask your Team Administrator for details.",
  "get_team_invite_link_modal.title": "Team Invite Link",
  "help.attaching.downloading": "#### Downloading Files\nDownload an attached file by clicking the download icon next to the file thumbnail or by opening the file previewer and clicking **Download**.",
  "help.attaching.dragdrop": "#### Drag and Drop\nUpload a file or selection of files by dragging the files from your computer into the right-hand sidebar or center pane. Dragging and dropping attaches the files to the message input box, then you can optionally type a message and press **ENTER** to post.",
  "help.attaching.icon": "#### Attachment Icon\nAlternatively, upload files by clicking the grey paperclip icon inside the message input box. This opens up your system file viewer where you can navigate to the desired files and then click **Open** to upload the files to the message input box. Optionally type a message and then press **ENTER** to post.",
  "help.attaching.limitations": "## File Size Limitations\nMattermost supports a maximum of five attached files per post, each with a maximum file size of 50Mb.",
  "help.attaching.methods": "## Attachment Methods\nAttach a file by drag and drop or by clicking the attachment icon in the message input box.",
  "help.attaching.notSupported": "Document preview (Word, Excel, PPT) is not yet supported.",
  "help.attaching.pasting": "#### Pasting Images\nOn Chrome and Edge browsers, it is also possible to upload files by pasting them from the clipboard. This is not yet supported on other browsers.",
  "help.attaching.previewer": "## File Previewer\nMattermost has a built in file previewer that is used to view media, download files and share public links. Click the thumbnail of an attached file to open it in the file previewer.",
  "help.attaching.publicLinks": "#### Sharing Public Links\nPublic links allow you to share file attachments with people outside your Mattermost team. Open the file previewer by clicking on the thumbnail of an attachment, then click **Get Public Link**. This opens a dialog box with a link to copy. When the link is shared and opened by another user, the file will automatically download.",
  "help.attaching.publicLinks2": "If **Get Public Link** is not visible in the file previewer and you prefer the feature enabled, you can request that your System Admin enable the feature from the System Console under **Security** > **Public Links**.",
  "help.attaching.supported": "#### Supported Media Types\nIf you are trying to preview a media type that is not supported, the file previewer will open a standard media attachment icon. Supported media formats depend heavily on your browser and operating system, but the following formats are supported by Mattermost on most browsers:",
  "help.attaching.supportedList": "- Images: BMP, GIF, JPG, JPEG, PNG\n- Video: MP4\n- Audio: MP3, M4A\n- Documents: PDF",
  "help.attaching.title": "# Attaching Files\n_____",
  "help.commands.builtin": "## Built-in Commands\nThe following slash commands are available on all Mattermost installations:",
  "help.commands.builtin2": "Begin by typing `/` and a list of slash command options appears above the text input box. The autocomplete suggestions help by providing a format example in black text and a short description of the slash command in grey text.",
  "help.commands.custom": "## Custom Commands\nCustom slash commands integrate with external applications. For example, a team might configure a custom slash command to check internal health records with `/patient joe smith` or check the weekly weather forecast in a city with `/weather toronto week`. Check with your System Admin or open the autocomplete list by typing `/` to determine if your team configured any custom slash commands.",
  "help.commands.custom2": "Custom slash commands are disabled by default and can be enabled by the System Admin in the **System Console** > **Integrations** > **Webhooks and Commands**. Learn about configuring custom slash commands on the [developer slash command documentation page](http://docs.mattermost.com/developer/slash-commands.html).",
  "help.commands.intro": "Slash commands perform operations in Mattermost by typing into the text input box. Enter a `/` followed by a command and some arguments to perform actions.\n\nBuilt-in slash commands come with all Mattermost installations and custom slash commands are configurable to interact with external applications. Learn about configuring custom slash commands on the [developer slash command documentation page](http://docs.mattermost.com/developer/slash-commands.html).",
  "help.commands.title": "# Executing Commands\n___",
  "help.composing.deleting": "## Deleting a message\nDelete a message by clicking the **[...]** icon next to any message text that you’ve composed, then click **Delete**. System and Team Admins can delete any message on their system or team.",
  "help.composing.editing": "## Editing a Message\nEdit a message by clicking the **[...]** icon next to any message text that you’ve composed, then click **Edit**. After making modifications to the message text, press **ENTER** to save the modifications. Message edits do not trigger new @mention notifications, desktop notifications or notification sounds.",
  "help.composing.linking": "## Linking to a message\nThe **Permalink** feature creates a link to any message. Sharing this link with other users in the channel lets them view the linked message in the Message Archives. Users who are not a member of the channel where the message was posted cannot view the permalink. Get the permalink to any message by clicking the **[...]** icon next to the message text > **Permalink** > **Copy Link**.",
  "help.composing.posting": "## Posting a Message\nWrite a message by typing into the text input box, then press ENTER to send it. Use SHIFT+ENTER to create a new line without sending a message. To send messages by pressing CTRL+ENTER go to **Main Menu > Account Settings > Send messages on CTRL+ENTER**.",
  "help.composing.posts": "#### Posts\nPosts can be considered parent messages. They are the messages that often start a thread of replies. Posts are composed and sent from the text input box at the bottom of the center pane.",
  "help.composing.replies": "#### Replies\nReply to a message by clicking the reply icon next to any message text. This action opens the right-hand sidebar where you can see the message thread, then compose and send your reply. Replies are indented slightly in the center pane to indicate that they are child messages of a parent post.\n\nWhen composing a reply in the right-hand side, click the expand/collapse icon with two arrows at the top of the sidebar to make things easier to read.",
  "help.composing.title": "# Sending Messages\n_____",
  "help.composing.types": "## Message Types\nReply to posts to keep conversations organized in threads.",
  "help.formatting.checklist": "Make a task list by including square brackets:",
  "help.formatting.checklistExample": "- [ ] Item one\n- [ ] Item two\n- [x] Completed item",
  "help.formatting.code": "## Code Block\n\nCreate a code block by indenting each line by four spaces, or by placing ``` on the line above and below your code.",
  "help.formatting.codeBlock": "Code block",
  "help.formatting.emojiExample": ":smile: :+1: :sheep:",
  "help.formatting.emojis": "## Emojis\n\nOpen the emoji autocomplete by typing `:`. A full list of emojis can be found [here](http://www.emoji-cheat-sheet.com/). It is also possible to create your own [Custom Emoji](http://docs.mattermost.com/help/settings/custom-emoji.html) if the emoji you want to use doesn't exist.",
  "help.formatting.example": "Example:",
  "help.formatting.githubTheme": "**GitHub Theme**",
  "help.formatting.headings": "## Headings\n\nMake a heading by typing # and a space before your title. For smaller headings, use more #’s.",
  "help.formatting.headings2": "Alternatively, you can underline the text using `===` or `---` to create headings.",
  "help.formatting.headings2Example": "Large Heading\n-------------",
  "help.formatting.headingsExample": "## Large Heading\n### Smaller Heading\n#### Even Smaller Heading",
  "help.formatting.images": "## In-line Images\n\nCreate in-line images using an `!` followed by the alt text in square brackets and the link in normal brackets. Add hover text by placing it in quotes after the link.",
  "help.formatting.imagesExample": "![alt text](link \"hover text\")\n\nand\n\n[![Build Status](https://travis-ci.org/mattermost/platform.svg?branch=master)](https://travis-ci.org/mattermost/platform) [![Github](https://assets-cdn.github.com/favicon.ico)](https://github.com/mattermost/platform)",
  "help.formatting.inline": "## In-line Code\n\nCreate in-line monospaced font by surrounding it with backticks.",
  "help.formatting.intro": "Markdown makes it easy to format messages. Type a message as you normally would, and use these rules to render it with special formatting.",
  "help.formatting.lines": "## Lines\n\nCreate a line by using three `*`, `_`, or `-`.",
  "help.formatting.linkEx": "[Check out Mattermost!](https://about.mattermost.com/)",
  "help.formatting.links": "## Links\n\nCreate labeled links by putting the desired text in square brackets and the associated link in normal brackets.",
  "help.formatting.listExample": "* list item one\n* list item two\n    * item two sub-point",
  "help.formatting.lists": "## Lists\n\nCreate a list by using `*` or `-` as bullets. Indent a bullet point by adding two spaces in front of it.",
  "help.formatting.monokaiTheme": "**Monokai Theme**",
  "help.formatting.ordered": "Make it an ordered list by using numbers instead:",
  "help.formatting.orderedExample": "1. Item one\n2. Item two",
  "help.formatting.quotes": "## Block quotes\n\nCreate block quotes using `>`.",
  "help.formatting.quotesExample": "`> block quotes` renders as:",
  "help.formatting.quotesRender": "> block quotes",
  "help.formatting.renders": "Renders as:",
  "help.formatting.solirizedDarkTheme": "**Solarized Dark Theme**",
  "help.formatting.solirizedLightTheme": "**Solarized Light Theme**",
  "help.formatting.style": "## Text Style\n\nYou can use either `_` or `*` around a word to make it italic. Use two to make it bold.\n\n* `_italics_` renders as _italics_\n* `**bold**` renders as **bold**\n* `**_bold-italic_**` renders as **_bold-italics_**\n* `~~strikethrough~~` renders as ~~strikethrough~~",
  "help.formatting.supportedSyntax": "Supported languages are:\n`as`, `applescript`, `osascript`, `scpt`, `bash`, `sh`, `zsh`, `clj`, `boot`, `cl2`, `cljc`, `cljs`, `cljs.hl`, `cljscm`, `cljx`, `hic`, `coffee`, `_coffee`, `cake`, `cjsx`, `cson`, `iced`, `cpp`, `c`, `cc`, `h`, `c++`, `h++`, `hpp`, `cs`, `csharp`, `css`, `d`, `di`, `dart`, `delphi`, `dpr`, `dfm`, `pas`, `pascal`, `freepascal`, `lazarus`, `lpr`, `lfm`, `diff`, `django`, `jinja`, `dockerfile`, `docker`, `erl`, `f90`, `f95`, `fsharp`, `fs`, `gcode`, `nc`, `go`, `groovy`, `handlebars`, `hbs`, `html.hbs`, `html.handlebars`, `hs`, `hx`, `java`, `jsp`, `js`, `jsx`, `json`, `jl`, `kt`, `ktm`, `kts`, `less`, `lisp`, `lua`, `mk`, `mak`, `md`, `mkdown`, `mkd`, `matlab`, `m`, `mm`, `objc`, `obj-c`, `ml`, `perl`, `pl`, `php`, `php3`, `php4`, `php5`, `php6`, `ps`, `ps1`, `pp`, `py`, `gyp`, `r`, `ruby`, `rb`, `gemspec`, `podspec`, `thor`, `irb`, `rs`, `scala`, `scm`, `sld`, `scss`, `st`, `sql`, `swift`, `tex`, `vbnet`, `vb`, `bas`, `vbs`, `v`, `veo`, `xml`, `html`, `xhtml`, `rss`, `atom`, `xsl`, `plist`, `yaml`",
  "help.formatting.syntax": "### Syntax Highlighting\n\nTo add syntax highlighting, type the language to be highlighted after the ``` at the beginning of the code block. Mattermost also offers four different code themes (GitHub, Solarized Dark, Solarized Light, Monokai) that can be changed in **Account Settings** > **Display** > **Theme** > **Custom Theme** > **Center Channel Styles**",
  "help.formatting.syntaxEx": "    package main\n    import \"fmt\"\n    func main() {\n        fmt.Println(\"Hello, 世界\")\n    }",
  "help.formatting.tableExample": "| Left-Aligned  | Center Aligned  | Right Aligned |\n| :------------ |:---------------:| -----:|\n| Left column 1 | this text       |  $100 |\n| Left column 2 | is              |   $10 |\n| Left column 3 | centered        |    $1 |",
  "help.formatting.tables": "## Tables\n\nCreate a table by placing a dashed line under the header row and separating the columns with a pipe `|`. (The columns don’t need to line up exactly for it to work). Choose how to align table columns by including colons `:` within the header row.",
  "help.formatting.title": "# Formatting Text\n_____",
  "help.learnMore": "Learn more about:",
  "help.link.attaching": "Attaching Files",
  "help.link.commands": "Executing Commands",
  "help.link.composing": "Composing Messages and Replies",
  "help.link.formatting": "Formatting Messages using Markdown",
  "help.link.mentioning": "Mentioning Teammates",
  "help.link.messaging": "Basic Messaging",
  "help.mentioning.channel": "#### @Channel\nYou can mention an entire channel by typing `@channel`. All members of the channel will receive a mention notification that behaves the same way as if the members had been mentioned personally.",
  "help.mentioning.channelExample": "@channel great work on interviews this week. I think we found some excellent potential candidates!",
  "help.mentioning.mentions": "## @Mentions\nUse @mentions to get the attention of specific team members.",
  "help.mentioning.recent": "## Recent Mentions\nClick `@` next to the search box to query for your most recent @mentions and words that trigger mentions. Click **Jump** next to a search result in the right-hand sidebar to jump the center pane to the channel and location of the message with the mention.",
  "help.mentioning.title": "# Mentioning Teammates\n_____",
  "help.mentioning.triggers": "## Words That Trigger Mentions\nIn addition to being notified by @username and @channel, you can customize words that trigger mention notifications in **Account Settings** > **Notifications** > **Words that trigger mentions**. By default, you will receive mention notifications on your first name, and you can add more words by typing them into the input box separated by commas. This is useful if you want to be notified of all posts on certain topics, for example, “interviewing” or “marketing”.",
  "help.mentioning.username": "#### @Username\nYou can mention a teammate by using the `@` symbol plus their username to send them a mention notification.\n\nType `@` to bring up a list of team members who can be mentioned. To filter the list, type the first few letters of any username, first name, last name, or nickname. The **Up** and **Down** arrow keys can then be used to scroll through entries in the list, and pressing **ENTER** will select which user to mention. Once selected, the username will automatically replace the full name or nickname.\nThe following example sends a special mention notification to **alice** that alerts her of the channel and message where she has been mentioned. If **alice** is away from Mattermost and has [email notifications](http://docs.mattermost.com/help/getting-started/configuring-notifications.html#email-notifications) turned on, then she will receive an email alert of her mention along with the message text.",
  "help.mentioning.usernameCont": "If the user you mentioned does not belong to the channel, a System Message will be posted to let you know. This is a temporary message only seen by the person who triggered it. To add the mentioned user to the channel, go to the dropdown menu beside the channel name and select **Add Members**.",
  "help.mentioning.usernameExample": "@alice how did your interview go with the new candidate?",
  "help.messaging.attach": "**Attach files** by dragging and dropping into Mattermost or clicking the attachment icon in the text input box.",
  "help.messaging.emoji": "**Quickly add emoji** by typing \":\", which will open an emoji autocomplete. If the existing emoji don't cover what you want to express, you can also create your own [Custom Emoji](http://docs.mattermost.com/help/settings/custom-emoji.html).",
  "help.messaging.format": "**Format your messages** using Markdown that supports text styling, headings, links, emoticons, code blocks, block quotes, tables, lists and in-line images.",
  "help.messaging.notify": "**Notify teammates** when they are needed by typing `@username`.",
  "help.messaging.reply": "**Reply to messages** by clicking the reply arrow next to the message text.",
  "help.messaging.title": "# Messaging Basics\n_____",
  "help.messaging.write": "**Write messages** using the text input box at the bottom of Mattermost. Press ENTER to send a message. Use SHIFT+ENTER to create a new line without sending a message.",
  "installed_command.header": "Slash Commands",
  "installed_commands.add": "Add Slash Command",
  "installed_commands.delete.confirm": "This action permanently deletes the slash command and breaks any integrations using it. Are you sure you want to delete it?",
  "installed_commands.empty": "No commands found",
  "installed_commands.header": "Slash Commands",
  "installed_commands.help": "Create slash commands for use in external integrations. Please see the {link} to learn more.",
  "installed_commands.helpLink": "documentation",
  "installed_commands.search": "Search Slash Commands",
  "installed_commands.unnamed_command": "Unnamed Slash Command",
  "installed_incoming_webhooks.add": "Add Incoming Webhook",
  "installed_incoming_webhooks.delete.confirm": "This action permanently deletes the incoming webhook and breaks any integrations using it. Are you sure you want to delete it?",
  "installed_incoming_webhooks.empty": "No incoming webhooks found",
  "installed_incoming_webhooks.header": "Incoming Webhooks",
  "installed_incoming_webhooks.help": "Create incoming webhook URLs for use in external integrations. Please see the {link} to learn more.",
  "installed_incoming_webhooks.helpLink": "documentation",
  "installed_incoming_webhooks.search": "Search Incoming Webhooks",
  "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": "Delete",
  "installed_integrations.edit": "Edit",
  "installed_integrations.hideSecret": "Hide Secret",
  "installed_integrations.regenSecret": "Regenerate Secret",
  "installed_integrations.regenToken": "Regenerate Token",
  "installed_integrations.showSecret": "Show Secret",
  "installed_integrations.token": "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": "Cancel",
  "installed_oauth_apps.delete.confirm": "This action permanently deletes the OAuth 2.0 application and breaks any integrations using it. Are you sure you want to delete it?",
  "installed_oauth_apps.description": "Description",
  "installed_oauth_apps.empty": "No OAuth 2.0 Applications found",
  "installed_oauth_apps.header": "OAuth 2.0 Applications",
  "installed_oauth_apps.help": "Create OAuth 2.0 applications to securely integrate bots and third-party applications with Mattermost. Please see {link} to learn more.",
  "installed_oauth_apps.helpLink": "documentation",
  "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": "Display Name",
  "installed_oauth_apps.save": "Save",
  "installed_oauth_apps.search": "Search OAuth 2.0 Applications",
  "installed_oauth_apps.trusted": "Is Trusted",
  "installed_oauth_apps.trusted.no": "No",
  "installed_oauth_apps.trusted.yes": "Yes",
  "installed_outgoing_webhooks.add": "Add Outgoing Webhook",
  "installed_outgoing_webhooks.delete.confirm": "This action permanently deletes the outgoing webhook and breaks any integrations using it. Are you sure you want to delete it?",
  "installed_outgoing_webhooks.empty": "No outgoing webhooks found",
  "installed_outgoing_webhooks.header": "Outgoing Webhooks",
  "installed_outgoing_webhooks.help": "Create outgoing webhook URLs for use in external integrations. Please see the {link} to learn more.",
  "installed_outgoing_webhooks.helpLink": "documentation",
  "installed_outgoing_webhooks.search": "Search Outgoing Webhooks",
  "installed_outgoing_webhooks.unknown_channel": "A Private Webhook",
  "integrations.add": "Add",
  "integrations.command.description": "Slash commands send events to external integrations",
  "integrations.command.title": "Slash Command",
  "integrations.delete.confirm.button": "Delete",
  "integrations.delete.confirm.title": "Delete Integration",
  "integrations.done": "Done",
  "integrations.edit": "Edit",
  "integrations.header": "Integrations",
  "integrations.incomingWebhook.description": "Incoming webhooks allow external integrations to send messages",
  "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 webhooks allow external integrations to receive and respond to messages",
  "integrations.outgoingWebhook.title": "Outgoing Webhook",
  "integrations.successful": "Setup Successful",
  "intro_messages.DM": "This is the start of your direct message history with {teammate}.<br />Direct messages and files shared here are not shown to people outside this area.",
  "intro_messages.anyMember": " Any member can join and read this channel.",
  "intro_messages.beginning": "Beginning of {name}",
  "intro_messages.channel": "channel",
  "intro_messages.creator": "This is the start of the {name} {type}, created by {creator} on {date}.",
  "intro_messages.default": "<h4 class='channel-intro__title'>Beginning of {display_name}</h4><p class='channel-intro__content'><strong>Welcome to {display_name}!</strong><br/><br/>Post messages here that you want everyone to see. Everyone automatically becomes a permanent member of this channel when they join the team.</p>",
  "intro_messages.group": "private channel",
  "intro_messages.invite": "Invite others to this {type}",
  "intro_messages.inviteOthers": "Invite others to this team",
  "intro_messages.noCreator": "This is the start of the {name} {type}, created on {date}.",
  "intro_messages.offTopic": "<h4 class=\"channel-intro__title\">Beginning of {display_name}</h4><p class=\"channel-intro__content\">This is the start of {display_name}, a channel for non-work-related conversations.<br/></p>",
  "intro_messages.onlyInvited": " Only invited members can see this private channel.",
  "intro_messages.purpose": " This {type}'s purpose is: {purpose}.",
  "intro_messages.setHeader": "Set a Header",
  "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": "Add another",
  "invite_member.autoJoin": "People invited automatically join the <strong>{channel}</strong> channel.",
  "invite_member.cancel": "Cancel",
  "invite_member.content": "Email is currently disabled for your team, and email invitations cannot be sent. Contact your System Administrator to enable email and email invitations.",
  "invite_member.disabled": "User creation has been disabled for your team. Please ask your Team Administrator for details.",
  "invite_member.emailError": "Please enter a valid email address",
  "invite_member.firstname": "First name",
  "invite_member.inviteLink": "Team Invite Link",
  "invite_member.lastname": "Last name",
  "invite_member.modalButton": "Yes, Discard",
  "invite_member.modalMessage": "You have unsent invitations, are you sure you want to discard them?",
  "invite_member.modalTitle": "Discard Invitations?",
  "invite_member.newMember": "Send Email Invite",
  "invite_member.send": "Send Invitation",
  "invite_member.send2": "Send Invitations",
  "invite_member.sending": " Sending",
  "invite_member.teamInviteLink": "You can also invite people using the {link}.",
  "ldap_signup.find": "Find my teams",
  "ldap_signup.ldap": "Create team with AD/LDAP Account",
  "ldap_signup.length_error": "Name must be 3 or more characters up to a maximum of 15",
  "ldap_signup.teamName": "Enter name of new team",
  "ldap_signup.team_error": "Please enter a team name",
  "leave_team_modal.desc": "You will be removed from all public and private channels.  If the team is private you will not be able to rejoin the team.  Are you sure?",
  "leave_team_modal.no": "No",
  "leave_team_modal.title": "Leave the team?",
  "leave_team_modal.yes": "Yes",
  "loading_screen.loading": "Loading",
  "login.changed": " Sign-in method changed successfully",
  "login.create": "Create one now",
  "login.createTeam": "Create a new team",
  "login.createTeamAdminOnly": "This option is only available for System Administrators, and does not show up for other users.",
  "login.email": "Email",
  "login.find": "Find your other teams",
  "login.forgot": "I forgot my password",
  "login.gitlab": "GitLab",
  "login.google": "Google Apps",
  "login.invalidPassword": "Your password is incorrect.",
  "login.ldapUsername": "AD/LDAP Username",
  "login.ldapUsernameLower": "AD/LDAP username",
  "login.noAccount": "Don't have an account? ",
  "login.noEmail": "Please enter your email",
  "login.noEmailLdapUsername": "Please enter your email or {ldapUsername}",
  "login.noEmailUsername": "Please enter your email or username",
  "login.noEmailUsernameLdapUsername": "Please enter your email, username or {ldapUsername}",
  "login.noLdapUsername": "Please enter your {ldapUsername}",
  "login.noMethods": "No sign-in methods are enabled. Please contact your System Administrator.",
  "login.noPassword": "Please enter your password",
  "login.noUsername": "Please enter your username",
  "login.noUsernameLdapUsername": "Please enter your username or {ldapUsername}",
  "login.office365": "Office 365",
  "login.on": "on {siteName}",
  "login.or": "or",
  "login.password": "Password",
  "login.passwordChanged": " Password updated successfully",
  "login.session_expired": " Your session has expired. Please login again.",
  "login.signIn": "Sign in",
  "login.signInLoading": "Signing in...",
  "login.signInWith": "Sign in with:",
  "login.userNotFound": "We couldn't find an account matching your login credentials.",
  "login.username": "Username",
  "login.verified": " Email Verified",
  "login_mfa.enterToken": "To complete the sign in process, please enter a token from your smartphone's authenticator",
  "login_mfa.submit": "Submit",
  "login_mfa.token": "MFA Token",
  "login_mfa.tokenReq": "Please enter an MFA token",
  "member_item.makeAdmin": "Make Admin",
  "member_item.member": "Member",
  "member_list.noUsersAdd": "No users to add.",
  "members_popover.manageMembers": "Manage Members",
  "members_popover.msg": "Message",
  "members_popover.title": "Members",
  "members_popover.viewMembers": "View Members",
  "mfa.confirm.complete": "<strong>Set up complete!</strong>",
  "mfa.confirm.okay": "Okay",
  "mfa.confirm.secure": "Your account is now secure. Next time you sign in, you will be asked to enter a code from the Google Authenticator app on your phone.",
  "mfa.setup.badCode": "Invalid code. If this issue persists, contact your System Administrator.",
  "mfa.setup.code": "MFA Code",
  "mfa.setup.codeError": "Please enter the code from Google Authenticator.",
  "mfa.setup.required": "<strong>Multi-factor authentication is required on {siteName}.</strong>",
  "mfa.setup.save": "Save",
  "mfa.setup.secret": "Secret: {secret}",
  "mfa.setup.step1": "<strong>Step 1: </strong>On your phone, 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>",
  "mfa.setup.step2": "<strong>Step 2: </strong>Use Google Authenticator to scan this QR code, or manually type in the secret key",
  "mfa.setup.step3": "<strong>Step 3: </strong>Enter the code generated by Google Authenticator",
  "mfa.setupTitle": "Multi-factor Authentication Setup",
  "mobile.about.appVersion": "App Version: {version} (Build {number})",
  "mobile.about.copyright": "Copyright 2015-{currentYear} Mattermost, Inc. All rights reserved",
  "mobile.about.database": "Database: {type}",
  "mobile.about.serverVersion": "Server Version: {version} (Build {number})",
  "mobile.about.serverVersionNoBuild": "Server Version: {version}",
  "mobile.account.notifications.email.footer": "When offline or away for more than five minutes",
  "mobile.account_notifications.mentions_footer": "Your username (\"@{username}\") will always trigger mentions.",
  "mobile.account_notifications.non-case_sensitive_words": "Other non-case sensitive words...",
  "mobile.account_notifications.reply.header": "Send reply notifications for",
  "mobile.account_notifications.threads_mentions": "Mentions in threads",
  "mobile.account_notifications.threads_start": "Threads that I start",
  "mobile.account_notifications.threads_start_participate": "Threads that I start or participate in",
  "mobile.channel_info.alertMessageDeleteChannel": "Are you sure you want to delete the {term} with {name}?",
  "mobile.channel_info.alertMessageLeaveChannel": "Are you sure you want to leave the {term} {name}?",
  "mobile.channel_info.alertNo": "No",
  "mobile.channel_info.alertTitleDeleteChannel": "Delete {term}",
  "mobile.channel_info.alertTitleLeaveChannel": "Leave {term}",
  "mobile.channel_info.alertYes": "Yes",
  "mobile.channel_info.privateChannel": "Private Channel",
  "mobile.channel_info.publicChannel": "Public Channel",
  "mobile.channel_list.alertMessageLeaveChannel": "Are you sure you want to leave the {term} {name}?",
  "mobile.channel_list.alertNo": "No",
  "mobile.channel_list.alertTitleLeaveChannel": "Leave {term}",
  "mobile.channel_list.alertYes": "Yes",
  "mobile.channel_list.closeDM": "Close Direct Message",
  "mobile.channel_list.closeGM": "Close Group Message",
  "mobile.channel_list.dm": "Direct Message",
  "mobile.channel_list.gm": "Group Message",
  "mobile.channel_list.open": "Open {term}",
  "mobile.channel_list.openDM": "Open Direct Message",
  "mobile.channel_list.openGM": "Open Group Message",
  "mobile.channel_list.privateChannel": "Private Channel",
  "mobile.channel_list.publicChannel": "Public Channel",
  "mobile.components.channels_list_view.yourChannels": "Your channels:",
  "mobile.components.error_list.dismiss_all": "Dismiss All",
  "mobile.components.select_server_view.continue": "Continue",
  "mobile.components.select_server_view.enterServerUrl": "Enter Server URL",
  "mobile.components.select_server_view.proceed": "Proceed",
  "mobile.components.select_server_view.siteUrlPlaceholder": "https://mattermost.example.com",
  "mobile.create_channel": "Create",
  "mobile.create_channel.private": "New Private Group",
  "mobile.create_channel.public": "New Public Channel",
  "mobile.custom_list.no_results": "No Results",
  "mobile.edit_post.title": "Editing Message",
  "mobile.file_upload.camera": "Take Photo or Video",
  "mobile.file_upload.library": "Photo Library",
  "mobile.file_upload.more": "More",
  "mobile.loading_channels": "Loading Channels...",
  "mobile.loading_members": "Loading Members...",
  "mobile.loading_posts": "Loading Messages...",
  "mobile.login_options.choose_title": "Choose your login method",
  "mobile.post.cancel": "Cancel",
  "mobile.post.delete_question": "Are you sure you want to delete this post?",
  "mobile.post.delete_title": "Delete Post",
  "mobile.request.invalid_response": "Received invalid response from the server.",
  "mobile.routes.channelInfo": "Info",
  "mobile.routes.channelInfo.createdBy": "Created by {creator} on ",
  "mobile.routes.channelInfo.delete_channel": "Delete Channel",
  "mobile.routes.channelInfo.favorite": "Favorite",
  "mobile.routes.channel_members.action": "Remove Members",
  "mobile.routes.channel_members.action_message": "You must select at least one member to remove from the channel.",
  "mobile.routes.channel_members.action_message_confirm": "Are you sure you want to remove the selected members from the channel?",
  "mobile.routes.channels": "Channels",
  "mobile.routes.enterServerUrl": "Enter Server URL",
  "mobile.routes.login": "Login",
  "mobile.routes.loginOptions": "Login Chooser",
  "mobile.routes.mfa": "Multi-factor Authentication",
  "mobile.routes.postsList": "Posts List",
  "mobile.routes.saml": "Single SignOn",
  "mobile.routes.selectTeam": "Select Team",
  "mobile.routes.settings": "Settings",
  "mobile.routes.thread": "{channelName} Thread",
  "mobile.routes.thread_dm": "Direct Message Thread",
  "mobile.routes.user_profile": "Profile",
  "mobile.routes.user_profile.send_message": "Send Message",
  "mobile.server_ping_failed": "Cannot connect to the server. Please check your server URL and internet connection.",
  "mobile.server_url.invalid_format": "URL must start with http:// or https://",
  "mobile.settings.team_selection": "Team Selection",
  "more_channels.close": "Close",
  "more_channels.create": "Create New Channel",
  "more_channels.createClick": "Click 'Create New Channel' to make a new one",
  "more_channels.join": "Join",
  "more_channels.next": "Next",
  "more_channels.noMore": "No more channels to join",
  "more_channels.prev": "Previous",
  "more_channels.title": "More Channels",
  "more_direct_channels.close": "Close",
  "more_direct_channels.message": "Message",
  "more_direct_channels.new_convo_note": "This will start a new conversation. If you’re adding a lot of people, consider creating a private channel instead.",
  "more_direct_channels.new_convo_note.full": "You’ve reached the maximum number of people for this conversation. Consider creating a private channel instead.",
  "more_direct_channels.title": "Direct Messages",
  "msg_typing.areTyping": "{users} and {last} are typing...",
  "msg_typing.isTyping": "{user} is typing...",
  "msg_typing.someone": "Someone",
  "multiselect.go": "Go",
  "multiselect.instructions": "Use up/down arrows to navigate and enter to select",
  "multiselect.numPeopleRemaining": "You can add {num, number} more {num, plural, =0 {people} one {person} other {people}}. ",
  "multiselect.numRemaining": "You can add {num, number} more",
  "multiselect.placeholder": "Search and add members",
  "navbar.addMembers": "Add Members",
  "navbar.click": "Click here",
  "navbar.delete": "Delete Channel...",
  "navbar.leave": "Leave Channel",
  "navbar.manageMembers": "Manage Members",
  "navbar.noHeader": "No channel header yet.{newline}{link} to add one.",
  "navbar.preferences": "Notification Preferences",
  "navbar.rename": "Rename Channel...",
  "navbar.setHeader": "Set Channel Header...",
  "navbar.setPurpose": "Set Channel Purpose...",
  "navbar.toggle1": "Toggle sidebar",
  "navbar.toggle2": "Toggle sidebar",
  "navbar.viewInfo": "View Info",
  "navbar.viewPinnedPosts": "View Pinned Posts",
  "navbar_dropdown.about": "About Mattermost",
  "navbar_dropdown.accountSettings": "Account Settings",
  "navbar_dropdown.addMemberToTeam": "Add Members to Team",
  "navbar_dropdown.console": "System Console",
  "navbar_dropdown.create": "Create a New Team",
  "navbar_dropdown.emoji": "Custom Emoji",
  "navbar_dropdown.help": "Help",
  "navbar_dropdown.integrations": "Integrations",
  "navbar_dropdown.inviteMember": "Send Email Invite",
  "navbar_dropdown.join": "Join Another Team",
  "navbar_dropdown.leave": "Leave Team",
  "navbar_dropdown.logout": "Logout",
  "navbar_dropdown.manageMembers": "Manage Members",
  "navbar_dropdown.nativeApps": "Download Apps",
  "navbar_dropdown.report": "Report a Problem",
  "navbar_dropdown.switchTeam": "Switch to {team}",
  "navbar_dropdown.switchTo": "Switch to ",
  "navbar_dropdown.teamLink": "Get Team Invite Link",
  "navbar_dropdown.teamSettings": "Team Settings",
  "navbar_dropdown.viewMembers": "View Members",
  "notification.dm": "Direct Message",
  "passwordRequirements": "Password Requirements:",
  "password_form.change": "Change my password",
  "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": "Please enter at least {chars} characters.",
  "password_form.pwd": "Password",
  "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": "Email",
  "password_send.error": "Please enter a valid email address.",
  "password_send.link": "If the account exists, a password reset email will be sent to: <br/><b>{email}</b><br/><br/>",
  "password_send.reset": "Reset my password",
  "password_send.title": "Password Reset",
  "pdf_preview.max_pages": "Download to read more pages",
  "pending_post_actions.cancel": "Cancel",
  "pending_post_actions.retry": "Retry",
  "permalink.error.access": "Permalink belongs to a deleted message or to a channel to which you do not have access.",
  "permalink.error.title": "Message Not Found",
  "post_attachment.collapse": "Show less...",
  "post_attachment.more": "Show more...",
  "post_body.commentedOn": "Commented on {name}{apostrophe} message: ",
  "post_body.deleted": "(message 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": "Okay",
  "post_delete.someone": "Someone deleted the message on which you tried to post a comment.",
  "post_focus_view.beginning": "Beginning of Channel Archives",
  "post_info.del": "Delete",
  "post_info.edit": "Edit",
  "post_info.mobile.flag": "Flag",
  "post_info.mobile.unflag": "Unflag",
  "post_info.permalink": "Permalink",
  "post_info.pin": "Pin to channel",
  "post_info.pinned": "Pinned",
  "post_info.reply": "Reply",
  "post_info.system": "System",
  "post_info.unpin": "Un-pin from channel",
  "post_message_view.edited": "(edited)",
  "posts_view.loadMore": "Load more messages",
  "posts_view.newMsg": "New Messages",
  "posts_view.newMsgBelow": "New {count, plural, one {message} other {messages}} below",
  "reaction.clickToAdd": "(click to add)",
  "reaction.clickToRemove": "(click to remove)",
  "reaction.othersReacted": "{otherUsers, number} {otherUsers, plural, one {user} other {users}}",
  "reaction.reacted": "{users} {reactionVerb} with {emoji}",
  "reaction.reactionVerb.user": "reacted",
  "reaction.reactionVerb.users": "reacted",
  "reaction.reactionVerb.you": "reacted",
  "reaction.reactionVerb.youAndUsers": "reacted",
  "reaction.usersAndOthersReacted": "{users} and {otherUsers, number} other {otherUsers, plural, one {user} other {users}}",
  "reaction.usersReacted": "{users} and {lastUser}",
  "reaction.you": "You",
  "removed_channel.channelName": "the channel",
  "removed_channel.from": "Removed from ",
  "removed_channel.okay": "Okay",
  "removed_channel.remover": "{remover} removed you from {channel}",
  "removed_channel.someone": "Someone",
  "rename_channel.cancel": "Cancel",
  "rename_channel.defaultError": " - Cannot be changed for the default channel",
  "rename_channel.displayName": "Display Name",
  "rename_channel.displayNameHolder": "Enter display name",
  "rename_channel.handleHolder": "lowercase alphanumeric characters",
  "rename_channel.lowercase": "Must be lowercase alphanumeric characters",
  "rename_channel.maxLength": "This field must be less than 22 characters",
  "rename_channel.required": "This field is required",
  "rename_channel.save": "Save",
  "rename_channel.title": "Rename Channel",
  "rename_channel.url": "URL",
  "rhs_comment.comment": "Comment",
  "rhs_comment.del": "Delete",
  "rhs_comment.edit": "Edit",
  "rhs_comment.mobile.flag": "Flag",
  "rhs_comment.mobile.unflag": "Unflag",
  "rhs_comment.permalink": "Permalink",
  "rhs_header.backToCallTooltip": "Back to Call",
  "rhs_header.backToFlaggedTooltip": "Back to Flagged Posts",
  "rhs_header.backToResultsTooltip": "Back to Search Results",
  "rhs_header.closeSidebarTooltip": "Close Sidebar",
  "rhs_header.closeTooltip": "Close Sidebar",
  "rhs_header.details": "Message Details",
  "rhs_header.expandSidebarTooltip": "Expand Sidebar",
  "rhs_header.expandTooltip": "Shrink Sidebar",
  "rhs_header.shrinkSidebarTooltip": "Shrink Sidebar",
  "rhs_root.del": "Delete",
  "rhs_root.direct": "Direct Message",
  "rhs_root.edit": "Edit",
  "rhs_root.mobile.flag": "Flag",
  "rhs_root.mobile.unflag": "Unflag",
  "rhs_root.permalink": "Permalink",
  "rhs_root.pin": "Pin to channel",
  "rhs_root.unpin": "Un-pin from channel",
  "search_bar.search": "Search",
  "search_bar.usage": "<h4>Search Options</h4><ul><li><span>Use </span><b>\"quotation marks\"</b><span> to search for phrases</span></li><li><span>Use </span><b>from:</b><span> to find posts from specific users and </span><b>in:</b><span> to find posts in specific channels</span></li></ul>",
  "search_header.results": "Search Results",
  "search_header.title2": "Recent Mentions",
  "search_header.title3": "Flagged Posts",
  "search_header.title4": "Pinned posts in {channelDisplayName}",
  "search_item.direct": "Direct Message (with {username})",
  "search_item.jump": "Jump",
  "search_results.because": "<ul><li>If you're searching a partial phrase (ex. searching \"rea\", looking for \"reach\" or \"reaction\"), append a * to your search term.</li><li>Two letter searches and common words like \"this\", \"a\" and \"is\" won't appear in search results due to excessive results returned.</li></ul>",
  "search_results.noResults": "No results found. Try again?",
  "search_results.usage": "<ul><li>Use <b>\"quotation marks\"</b> to search for phrases</li><li>Use <b>from:</b> to find posts from specific users and <b>in:</b> to find posts in specific channels</li></ul>",
  "search_results.usageFlag1": "You haven't flagged any messages yet.",
  "search_results.usageFlag2": "You can add a flag to messages and comments by clicking the ",
  "search_results.usageFlag3": " icon next to the timestamp.",
  "search_results.usageFlag4": "Flags are a way to mark messages for follow up. Your flags are personal, and cannot be seen by other users.",
  "search_results.usagePin1": "There are no pinned messages yet.",
  "search_results.usagePin2": "All members of this channel can pin important or useful messages.",
  "search_results.usagePin3": "Pinned messages are visible to all channel members.",
  "search_results.usagePin4": "To pin a message: Go to the message that you want to pin and click [...] > \"Pin to channel\".",
  "setting_item_max.cancel": "Cancel",
  "setting_item_max.save": "Save",
  "setting_item_min.edit": "Edit",
  "setting_picture.cancel": "Cancel",
  "setting_picture.help": "Upload a profile picture in BMP, JPG, JPEG or PNG format, at least {width}px in width and {height}px height.",
  "setting_picture.save": "Save",
  "setting_picture.select": "Select",
  "setting_upload.import": "Import",
  "setting_upload.noFile": "No file selected.",
  "setting_upload.select": "Select file",
  "sidebar.channels": "Channels",
  "sidebar.createChannel": "Create new public channel",
  "sidebar.createGroup": "Create new private channel",
  "sidebar.direct": "Direct Messages",
  "sidebar.favorite": "Favorites",
  "sidebar.more": "More",
  "sidebar.moreElips": "More...",
  "sidebar.otherMembers": "Outside this team",
  "sidebar.pg": "Private Channels",
  "sidebar.removeList": "Remove from list",
  "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 Channel</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 by clicking the <strong>\"+\" symbol</strong> next to the public or private channel 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": "Account Settings",
  "sidebar_right_menu.addMemberToTeam": "Add Members to Team",
  "sidebar_right_menu.console": "System Console",
  "sidebar_right_menu.flagged": "Flagged Posts",
  "sidebar_right_menu.help": "Help",
  "sidebar_right_menu.inviteNew": "Send Email Invite",
  "sidebar_right_menu.logout": "Logout",
  "sidebar_right_menu.manageMembers": "Manage Members",
  "sidebar_right_menu.nativeApps": "Download Apps",
  "sidebar_right_menu.recentMentions": "Recent Mentions",
  "sidebar_right_menu.report": "Report a Problem",
  "sidebar_right_menu.teamLink": "Get Team Invite Link",
  "sidebar_right_menu.teamSettings": "Team Settings",
  "sidebar_right_menu.viewMembers": "View Members",
  "signup.email": "Email and Password",
  "signup.gitlab": "GitLab Single-Sign-On",
  "signup.google": "Google Account",
  "signup.ldap": "AD/LDAP Credentials",
  "signup.office365": "Office 365",
  "signup.title": "Create an account with:",
  "signup_team.createTeam": "Or Create a Team",
  "signup_team.disabled": "Team creation has been disabled.  Please contact an administrator for access.",
  "signup_team.join_open": "Teams you can join: ",
  "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": "Sign up Complete",
  "signup_team_system_console": "Go to System Console",
  "signup_user_completed.choosePwd": "Choose your password",
  "signup_user_completed.chooseUser": "Choose your username",
  "signup_user_completed.create": "Create Account",
  "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": "or",
  "signup_user_completed.passwordLength": "Please enter at least {min} characters",
  "signup_user_completed.required": "This field is required",
  "signup_user_completed.reserved": "This username is reserved, please choose a new one.",
  "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 AD/LDAP credentials",
  "sso_signup.find": "Find my teams",
  "sso_signup.gitlab": "Create team with GitLab Account",
  "sso_signup.google": "Create team with Google Apps Account",
  "sso_signup.length_error": "Name must be 3 or more characters up to a maximum of 15",
  "sso_signup.teamName": "Enter name of new team",
  "sso_signup.team_error": "Please enter a team name",
  "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.channels": "My Channels",
  "suggestion.mention.here": "Notifies everyone in the channel and online",
  "suggestion.mention.members": "Channel Members",
  "suggestion.mention.morechannels": "Other Channels",
  "suggestion.mention.nonmembers": "Not in Channel",
  "suggestion.mention.special": "Special Mentions",
  "suggestion.search.private": "Private Channels",
  "suggestion.search.public": "Public Channels",
  "team_export_tab.download": "download",
  "team_export_tab.export": "Export",
  "team_export_tab.exportTeam": "Export your team",
  "team_export_tab.exporting": " Exporting...",
  "team_export_tab.ready": " Ready for ",
  "team_export_tab.unable": " Unable to export: {error}",
  "team_import_tab.failure": " Import failure: ",
  "team_import_tab.import": "Import",
  "team_import_tab.importHelpDocsLink": "documentation",
  "team_import_tab.importHelpExportInstructions": "Slack > Team Settings > Import/Export Data > Export > Start Export",
  "team_import_tab.importHelpExporterLink": "Slack Advanced Exporter",
  "team_import_tab.importHelpLine1": "Slack import to Mattermost supports importing of messages in your Slack team's public channels.",
  "team_import_tab.importHelpLine2": "To import a team from Slack, go to {exportInstructions}. See {uploadDocsLink} to learn more.",
  "team_import_tab.importHelpLine3": "To import posts with attached files, see {slackAdvancedExporterLink} for details.",
  "team_import_tab.importSlack": "Import from Slack (Beta)",
  "team_import_tab.importing": " Importing...",
  "team_import_tab.successful": " Import successful: ",
  "team_import_tab.summary": "View Summary",
  "team_member_modal.close": "Close",
  "team_member_modal.members": "{team} Members",
  "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 roles system_admin {username}",
  "team_members_dropdown.inactive": "Inactive",
  "team_members_dropdown.leave_team": "Remove From Team",
  "team_members_dropdown.makeActive": "Make Active",
  "team_members_dropdown.makeAdmin": "Make Team Admin",
  "team_members_dropdown.makeInactive": "Make Inactive",
  "team_members_dropdown.makeMember": "Make Member",
  "team_members_dropdown.member": "Member",
  "team_members_dropdown.systemAdmin": "System Admin",
  "team_members_dropdown.teamAdmin": "Team Admin",
  "team_settings_modal.exportTab": "Export",
  "team_settings_modal.generalTab": "General",
  "team_settings_modal.importTab": "Import",
  "team_settings_modal.title": "Team Settings",
  "team_sidebar.join": "Other teams you can join.",
  "textbox.bold": "**bold**",
  "textbox.edit": "Edit message",
  "textbox.help": "Help",
  "textbox.inlinecode": "`inline code`",
  "textbox.italic": "_italic_",
  "textbox.preformatted": "```preformatted```",
  "textbox.preview": "Preview",
  "textbox.quote": ">quote",
  "textbox.strike": "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": "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>How Mattermost works:</h3><p>Communication happens in public discussion channels, private channels and direct messages.</p><p>Everything is archived and searchable from any web-enabled desktop, laptop or phone.</p>",
  "tutorial_intro.skip": "Skip tutorial",
  "tutorial_intro.support": "Need anything, just email us at ",
  "tutorial_intro.teamInvite": "Invite teammates",
  "tutorial_intro.whenReady": " when you’re ready.",
  "tutorial_tip.next": "Next",
  "tutorial_tip.ok": "Okay",
  "tutorial_tip.out": "Opt out of these tips.",
  "tutorial_tip.seen": "Seen this before? ",
  "update_command.cancel": "Cancel",
  "update_command.confirm": "Edit Slash Command",
  "update_command.question": "Your changes may break the existing slash command. Are you sure you would like to update it?",
  "update_command.update": "Update",
  "update_incoming_webhook.update": "Update",
  "update_outgoing_webhook.confirm": "Edit Outgoing Webhook",
  "update_outgoing_webhook.question": "Your changes may break the existing outgoing webhook. Are you sure you would like to update it?",
  "update_outgoing_webhook.update": "Update",
  "upload_overlay.info": "Drop a file to upload it.",
  "user.settings.advance.embed_preview": "For the first web link in a message, display a preview of website content below the message, if available",
  "user.settings.advance.embed_toggle": "Show toggle for all embed previews",
  "user.settings.advance.emojipicker": "Enable emoji picker for reactions and message input box",
  "user.settings.advance.enabledFeatures": "{count, number} {count, plural, one {Feature} other {Features}} Enabled",
  "user.settings.advance.formattingDesc": "If enabled, posts will be formatted to create links, show emoji, style the text, and add line breaks. By default, this setting is enabled. Changing this setting requires the page to be refreshed.",
  "user.settings.advance.formattingTitle": "Enable Post Formatting",
  "user.settings.advance.joinLeaveDesc": "When \"On\", System Messages saying a user has joined or left a channel will be visible. When \"Off\", the System Messages about joining or leaving a channel will be hidden. A message will still show up when you are added to a channel, so you can receive a notification.",
  "user.settings.advance.joinLeaveTitle": "Enable Join/Leave Messages",
  "user.settings.advance.markdown_preview": "Show markdown preview option in message input box",
  "user.settings.advance.off": "Off",
  "user.settings.advance.on": "On",
  "user.settings.advance.preReleaseDesc": "Check any pre-released features you'd like to preview.  You may also need to refresh the page before the setting will take effect.",
  "user.settings.advance.preReleaseTitle": "Preview pre-release features",
  "user.settings.advance.sendDesc": "If enabled ENTER inserts a new line and CTRL+ENTER submits the message.",
  "user.settings.advance.sendTitle": "Send messages on CTRL+ENTER",
  "user.settings.advance.slashCmd_autocmp": "Enable external application to offer slash command autocomplete",
  "user.settings.advance.title": "Advanced Settings",
  "user.settings.advance.webrtc_preview": "Enable the ability to make and receive one-on-one WebRTC calls",
  "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": "Center Channel Styles",
  "user.settings.custom_theme.codeTheme": "Code Theme",
  "user.settings.custom_theme.copyPaste": "Copy and paste to share theme colors:",
  "user.settings.custom_theme.linkButtonTitle": "Link and Button Styles",
  "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": "Sidebar Styles",
  "user.settings.custom_theme.sidebarUnreadText": "Sidebar Unread Text",
  "user.settings.display.channelDisplayTitle": "Channel Display Mode",
  "user.settings.display.channeldisplaymode": "Select the width of the center channel.",
  "user.settings.display.clockDisplay": "Clock Display",
  "user.settings.display.collapseDesc": "Set whether previews of image links show as expanded or collapsed by default. This setting can also be controlled using the slash commands /expand and /collapse.",
  "user.settings.display.collapseDisplay": "Default appearance of image link previews",
  "user.settings.display.collapseOff": "Collapsed",
  "user.settings.display.collapseOn": "Expanded",
  "user.settings.display.fixedWidthCentered": "Fixed width, centered",
  "user.settings.display.fontDesc": "Select the font displayed in the Mattermost user interface.",
  "user.settings.display.fontTitle": "Display Font",
  "user.settings.display.fullScreen": "Full width",
  "user.settings.display.language": "Language",
  "user.settings.display.messageDisplayClean": "Standard",
  "user.settings.display.messageDisplayCleanDes": "Easy to scan and read.",
  "user.settings.display.messageDisplayCompact": "Compact",
  "user.settings.display.messageDisplayCompactDes": "Fit as many messages on the screen as we can.",
  "user.settings.display.messageDisplayDescription": "Select how messages in a channel should be displayed.",
  "user.settings.display.messageDisplayTitle": "Message Display",
  "user.settings.display.militaryClock": "24-hour clock (example: 16:00)",
  "user.settings.display.nameOptsDesc": "Set how to display other user's names in posts and the Direct Messages list.",
  "user.settings.display.normalClock": "12-hour clock (example: 4:00 PM)",
  "user.settings.display.preferTime": "Select how you prefer time displayed.",
  "user.settings.display.showFullname": "Show first and last name",
  "user.settings.display.showNickname": "Show nickname if one exists, otherwise show first and last name",
  "user.settings.display.showUsername": "Show username (default)",
  "user.settings.display.teammateDisplay": "Teammate Name Display",
  "user.settings.display.theme.applyToAllTeams": "Apply new theme to all my teams",
  "user.settings.display.theme.customTheme": "Custom Theme",
  "user.settings.display.theme.describe": "Open to manage your theme",
  "user.settings.display.theme.import": "Import theme colors from Slack",
  "user.settings.display.theme.otherThemes": "See other themes",
  "user.settings.display.theme.themeColors": "Theme Colors",
  "user.settings.display.theme.title": "Theme",
  "user.settings.display.title": "Display Settings",
  "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": "Close",
  "user.settings.general.confirmEmail": "Confirm Email",
  "user.settings.general.email": "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 Google. 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": "Email has been disabled by your System Administrator. No notification emails will be sent until it is enabled.",
  "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 AD/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 Office 365. 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": "Click 'Edit' to add your full name",
  "user.settings.general.emptyNickname": "Click 'Edit' to add a nickname",
  "user.settings.general.emptyPosition": "Click 'Edit' to add your job title / position",
  "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": "First Name",
  "user.settings.general.fullName": "Full Name",
  "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": "Last Name",
  "user.settings.general.loginGitlab": "Login done through GitLab ({email})",
  "user.settings.general.loginGoogle": "Login done through Google ({email})",
  "user.settings.general.loginLdap": "Login done through AD/LDAP ({email})",
  "user.settings.general.loginOffice365": "Login done through Office 365 ({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": "Nickname",
  "user.settings.general.nicknameExtra": "Use Nickname for a name you might be called that is different from your first name and username. This is most often used when two or more people have similar sounding names and usernames.",
  "user.settings.general.notificationsExtra": "By default, you will receive mention notifications when someone types your first name. Go to {notify} settings to change this default.",
  "user.settings.general.notificationsLink": "Notifications",
  "user.settings.general.position": "Position",
  "user.settings.general.positionExtra": "Use Position for your role or job title. This will be shown in your profile popover.",
  "user.settings.general.primaryEmail": "Primary Email",
  "user.settings.general.profilePicture": "Profile Picture",
  "user.settings.general.title": "General Settings",
  "user.settings.general.uploadImage": "Click 'Edit' to upload an image.",
  "user.settings.general.username": "Username",
  "user.settings.general.usernameInfo": "Pick something easy for teammates to recognize and recall.",
  "user.settings.general.usernameReserved": "This username is reserved, please choose a new one.",
  "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": "Cancel",
  "user.settings.import_theme.importBody": "To import a theme, go to a Slack team and look for “Preferences -> Sidebar Theme”. Open the custom theme option, copy the theme color values and paste them here:",
  "user.settings.import_theme.importHeader": "Import Slack Theme",
  "user.settings.import_theme.submit": "Submit",
  "user.settings.import_theme.submitError": "Invalid format, please try copying and pasting in again.",
  "user.settings.languages.change": "Change interface language",
  "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": "Adding multi-factor authentication will make your account more secure by requiring a code from your mobile phone each time you sign in.",
  "user.settings.mfa.addHelpQr": "Please scan the QR code with the Google Authenticator app on your smartphone and fill in the token with one provided by the app. If you are unable to scan the code, you can manually enter the secret provided.",
  "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.requiredHelp": "Multi-factor authentication is required on this server. Resetting is only recommended when you need to switch code generation to a new mobile device. You will be required to set it up again immediately.",
  "user.settings.mfa.reset": "Reset MFA on your account",
  "user.settings.mfa.secret": "Secret",
  "user.settings.mfa.title": "Multi-factor Authentication",
  "user.settings.modal.advanced": "Advanced",
  "user.settings.modal.confirmBtns": "Yes, Discard",
  "user.settings.modal.confirmMsg": "You have unsaved changes, are you sure you want to discard them?",
  "user.settings.modal.confirmTitle": "Discard Changes?",
  "user.settings.modal.display": "Display",
  "user.settings.modal.general": "General",
  "user.settings.modal.notifications": "Notifications",
  "user.settings.modal.security": "Security",
  "user.settings.modal.title": "Account Settings",
  "user.settings.notifications.allActivity": "For all activity",
  "user.settings.notifications.channelWide": "Channel-wide mentions \"@channel\", \"@all\"",
  "user.settings.notifications.close": "Close",
  "user.settings.notifications.comments": "Reply notifications",
  "user.settings.notifications.commentsAny": "Trigger notifications on messages in reply threads that I start or participate in",
  "user.settings.notifications.commentsInfo": "In addition to notifications for when you're mentioned, select if you would like to receive notifications on reply threads.",
  "user.settings.notifications.commentsNever": "Do not trigger notifications on messages in reply threads unless I'm mentioned",
  "user.settings.notifications.commentsRoot": "Trigger notifications on messages in threads that I start",
  "user.settings.notifications.desktop": "Send desktop notifications",
  "user.settings.notifications.desktop.allFirefoxForever": "For all activity, shown indefinitely",
  "user.settings.notifications.desktop.allFirefoxTimed": "For all activity, shown for {seconds} seconds",
  "user.settings.notifications.desktop.allNoSoundForever": "For all activity, without sound, shown indefinitely",
  "user.settings.notifications.desktop.allNoSoundTimed": "For all activity, without sound, shown for {seconds} seconds",
  "user.settings.notifications.desktop.allSoundForever": "For all activity, with sound, shown indefinitely",
  "user.settings.notifications.desktop.allSoundTimed": "For all activity, with sound, shown for {seconds} seconds",
  "user.settings.notifications.desktop.duration": "Notification duration",
  "user.settings.notifications.desktop.durationInfo": "Sets how long desktop notifications will remain on screen when using Firefox or Chrome. Desktop notifications in Edge and Safari can only stay on screen for a maximum of 5 seconds.",
  "user.settings.notifications.desktop.mentionsFirefoxForever": "For mentions and direct messages, shown indefinitely",
  "user.settings.notifications.desktop.mentionsFirefoxTimed": "For mentions and direct messages, shown for {seconds} seconds",
  "user.settings.notifications.desktop.mentionsNoSoundForever": "For mentions and direct messages, without sound, shown indefinitely",
  "user.settings.notifications.desktop.mentionsNoSoundTimed": "For mentions and direct messages, without sound, shown for {seconds} seconds",
  "user.settings.notifications.desktop.mentionsSoundForever": "For mentions and direct messages, with sound, shown indefinitely",
  "user.settings.notifications.desktop.mentionsSoundTimed": "For mentions and direct messages, with sound, shown for {seconds} seconds",
  "user.settings.notifications.desktop.seconds": "{seconds} seconds",
  "user.settings.notifications.desktop.sound": "Notification sound",
  "user.settings.notifications.desktop.title": "Desktop notifications",
  "user.settings.notifications.desktop.unlimited": "Unlimited",
  "user.settings.notifications.desktopSounds": "Desktop notification sounds",
  "user.settings.notifications.email.disabled": "Disabled by System Administrator",
  "user.settings.notifications.email.disabled_long": "Email notifications have been disabled by your System Administrator.",
  "user.settings.notifications.email.everyHour": "Every hour",
  "user.settings.notifications.email.everyXMinutes": "Every {count, plural, one {minute} other {{count, number} minutes}}",
  "user.settings.notifications.email.immediately": "Immediately",
  "user.settings.notifications.email.never": "Never",
  "user.settings.notifications.email.send": "Send email notifications",
  "user.settings.notifications.emailBatchingInfo": "Notifications received over the time period selected are combined and sent in a single email.",
  "user.settings.notifications.emailInfo": "Email notifications are sent for mentions and direct messages when you are offline or away from {siteName} for more than 5 minutes.",
  "user.settings.notifications.emailNotifications": "Email notifications",
  "user.settings.notifications.header": "Notifications",
  "user.settings.notifications.info": "Desktop notifications are available on Edge, Firefox, Safari, Chrome and Mattermost Desktop Apps.",
  "user.settings.notifications.mentionsInfo": "Mentions trigger when someone sends a message that includes your username (\"@{username}\") or any of the options selected above.",
  "user.settings.notifications.never": "Never",
  "user.settings.notifications.noWords": "No words configured",
  "user.settings.notifications.off": "Off",
  "user.settings.notifications.on": "On",
  "user.settings.notifications.onlyMentions": "Only for mentions and direct messages",
  "user.settings.notifications.push": "Mobile push notifications",
  "user.settings.notifications.push_notification.status": "Trigger push notifications when",
  "user.settings.notifications.sensitiveName": "Your case sensitive first name \"{first_name}\"",
  "user.settings.notifications.sensitiveUsername": "Your non-case sensitive username \"{username}\"",
  "user.settings.notifications.sensitiveWords": "Other non-case sensitive words, separated by commas:",
  "user.settings.notifications.soundConfig": "Please configure notification sounds in your browser settings",
  "user.settings.notifications.sounds_info": "Notification sounds are available on IE11, Edge, Safari, Chrome and Mattermost Desktop Apps.",
  "user.settings.notifications.teamWide": "Team-wide mentions \"@all\"",
  "user.settings.notifications.title": "Notification Settings",
  "user.settings.notifications.wordsTrigger": "Words that trigger mentions",
  "user.settings.push_notification.allActivity": "For all activity",
  "user.settings.push_notification.allActivityAway": "For all activity when away or offline",
  "user.settings.push_notification.allActivityOffline": "For all activity when offline",
  "user.settings.push_notification.allActivityOnline": "For all activity when online, away or offline",
  "user.settings.push_notification.away": "Away or offline",
  "user.settings.push_notification.disabled": "Disabled by System Administrator",
  "user.settings.push_notification.disabled_long": "Push notifications for mobile devices have been disabled by your System Administrator.",
  "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.offline": "Offline",
  "user.settings.push_notification.online": "Online, away or offline",
  "user.settings.push_notification.onlyMentions": "For mentions and direct messages",
  "user.settings.push_notification.onlyMentionsAway": "For mentions and direct messages when away or offline",
  "user.settings.push_notification.onlyMentionsOffline": "For mentions and direct messages when offline",
  "user.settings.push_notification.onlyMentionsOnline": "For mentions and direct messages when online, away or offline",
  "user.settings.push_notification.send": "Send mobile push notifications",
  "user.settings.push_notification.status": "Trigger push notifications when",
  "user.settings.push_notification.status_info": "Notification alerts are only pushed to your mobile device when your online status matches the selection above.",
  "user.settings.security.active": "Active",
  "user.settings.security.close": "Close",
  "user.settings.security.currentPassword": "Current Password",
  "user.settings.security.currentPasswordError": "Please enter your current password.",
  "user.settings.security.deauthorize": "Deauthorize",
  "user.settings.security.emailPwd": "Email and Password",
  "user.settings.security.gitlab": "GitLab",
  "user.settings.security.google": "Google",
  "user.settings.security.inactive": "Inactive",
  "user.settings.security.lastUpdated": "Last updated {date} at {time}",
  "user.settings.security.ldap": "AD/LDAP",
  "user.settings.security.loginGitlab": "Login done through GitLab",
  "user.settings.security.loginGoogle": "Login done through Google Apps",
  "user.settings.security.loginLdap": "Login done through AD/LDAP",
  "user.settings.security.loginOffice365": "Login done through Office 365",
  "user.settings.security.loginSaml": "Login done through SAML",
  "user.settings.security.logoutActiveSessions": "View and Logout of Active Sessions",
  "user.settings.security.method": "Sign-in Method",
  "user.settings.security.newPassword": "New Password",
  "user.settings.security.noApps": "No OAuth 2.0 Applications are authorized.",
  "user.settings.security.oauthApps": "OAuth 2.0 Applications",
  "user.settings.security.oauthAppsDescription": "Click 'Edit' to manage your OAuth 2.0 Applications",
  "user.settings.security.oauthAppsHelp": "Applications act on your behalf to access your data based on the permissions you grant them.",
  "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": "Password",
  "user.settings.security.passwordError": "Your password must contain at least {min} characters.",
  "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.passwordGoogleCantUpdate": "Login occurs through Google Apps. Password cannot be updated.",
  "user.settings.security.passwordLdapCantUpdate": "Login occurs through AD/LDAP. Password cannot be updated.",
  "user.settings.security.passwordMatchError": "The new passwords you entered do not match.",
  "user.settings.security.passwordMinLength": "Invalid minimum length, cannot show preview.",
  "user.settings.security.passwordOffice365CantUpdate": "Login occurs through Office 365. Password cannot be updated.",
  "user.settings.security.passwordSamlCantUpdate": "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.security.retypePassword": "Retype New Password",
  "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 AD/LDAP",
  "user.settings.security.switchOffice365": "Switch to using Office 365 SSO",
  "user.settings.security.switchSaml": "Switch to using SAML SSO",
  "user.settings.security.title": "Security Settings",
  "user.settings.security.viewHistory": "View Access History",
  "user_list.notFound": "No users found",
  "user_profile.send.dm": "Send Message",
  "user_profile.webrtc.call": "Start Video Call",
  "user_profile.webrtc.offline": "The user is offline",
  "user_profile.webrtc.unavailable": "New call unavailable until your existing call ends",
  "view_image.loading": "Loading ",
  "view_image_popover.download": "Download",
  "view_image_popover.file": "File {count} of {total}",
  "view_image_popover.publicLink": "Get Public Link",
  "web.footer.about": "About",
  "web.footer.help": "Help",
  "web.footer.privacy": "Privacy",
  "web.footer.terms": "Terms",
  "web.header.back": "Back",
  "web.header.logout": "Logout",
  "web.root.signup_info": "All team communication in one place, searchable and accessible anywhere",
  "webrtc.busy": "{username} is busy.",
  "webrtc.call": "Call",
  "webrtc.callEnded": "Call with {username} ended.",
  "webrtc.cancel": "Cancel call",
  "webrtc.cancelled": "{username} cancelled the call.",
  "webrtc.declined": "Your call has been declined by {username}.",
  "webrtc.disabled": "{username} has WebRTC disabled, and cannot receive calls. To enable the feature, they must go to Account Settings > Advanced > Preview pre-release features and turn on WebRTC.",
  "webrtc.failed": "There was a problem connecting the video call.",
  "webrtc.hangup": "Hangup",
  "webrtc.header": "Call with {username}",
  "webrtc.inProgress": "You have a call in progress. Please hangup first.",
  "webrtc.mediaError": "Unable to access camera or microphone.",
  "webrtc.mute_audio": "Mute microphone",
  "webrtc.noAnswer": "{username} is not answering the call.",
  "webrtc.notification.answer": "Answer",
  "webrtc.notification.decline": "Decline",
  "webrtc.notification.incoming_call": "{username} is calling you.",
  "webrtc.notification.returnToCall": "Return to ongoing call with {username}",
  "webrtc.offline": "{username} is offline.",
  "webrtc.pause_video": "Turn off camera",
  "webrtc.unmute_audio": "Unmute microphone",
  "webrtc.unpause_video": "Turn on camera",
  "webrtc.unsupported": "{username} client does not support video calls.",
  "youtube_video.notFound": "Video not found"
}