summaryrefslogtreecommitdiffstats
path: root/i18n/en.json
blob: 48f6a99a560b4ad6148c4f2e0a450430044e7fe2 (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
[
  {
    "id": "April",
    "translation": "April"
  },
  {
    "id": "August",
    "translation": "August"
  },
  {
    "id": "December",
    "translation": "December"
  },
  {
    "id": "February",
    "translation": "February"
  },
  {
    "id": "January",
    "translation": "January"
  },
  {
    "id": "July",
    "translation": "July"
  },
  {
    "id": "June",
    "translation": "June"
  },
  {
    "id": "March",
    "translation": "March"
  },
  {
    "id": "May",
    "translation": "May"
  },
  {
    "id": "November",
    "translation": "November"
  },
  {
    "id": "October",
    "translation": "October"
  },
  {
    "id": "September",
    "translation": "September"
  },
  {
    "id": "api.admin.file_read_error",
    "translation": "Error reading log file"
  },
  {
    "id": "api.admin.init.debug",
    "translation": "Initializing admin api routes"
  },
  {
    "id": "api.admin.test_email.body",
    "translation": "<br/><br/><br/>It appears your Mattermost email is setup correctly!"
  },
  {
    "id": "api.admin.test_email.subject",
    "translation": "Mattermost - Testing Email Settings"
  },
  {
    "id": "api.api.init.parsing_templates.debug",
    "translation": "Parsing server templates at %v"
  },
  {
    "id": "api.api.init.parsing_templates.error",
    "translation": "Failed to parse server templates %v"
  },
  {
    "id": "api.api.render.error",
    "translation": "Error rendering template %v err=%v"
  },
  {
    "id": "api.channel.add_member.added",
    "translation": "%v added to the channel by %v"
  },
  {
    "id": "api.channel.add_member.find_channel.app_error",
    "translation": "Failed to find channel"
  },
  {
    "id": "api.channel.add_member.find_user.app_error",
    "translation": "Failed to find user to be added"
  },
  {
    "id": "api.channel.add_member.user_adding.app_error",
    "translation": "Failed to find user doing the adding"
  },
  {
    "id": "api.channel.add_user.to.channel.failed.app_error",
    "translation": "Failed to add user to channel"
  },
  {
    "id": "api.channel.add_user_to_channel.deleted.app_error",
    "translation": "The channel has been archived or deleted"
  },
  {
    "id": "api.channel.add_user_to_channel.type.app_error",
    "translation": "Can not add user to this channel type"
  },
  {
    "id": "api.channel.create_channel.direct_channel.app_error",
    "translation": "Must use createDirectChannel api service for direct message channel creation"
  },
  {
    "id": "api.channel.create_channel.invalid_character.app_error",
    "translation": "Invalid character '__' in channel name for non-direct channel"
  },
  {
    "id": "api.channel.create_default_channels.off_topic",
    "translation": "Off-Topic"
  },
  {
    "id": "api.channel.create_default_channels.town_square",
    "translation": "Town Square"
  },
  {
    "id": "api.channel.create_direct_channel.invalid_user.app_error",
    "translation": "Invalid other user id "
  },
  {
    "id": "api.channel.delete_channel.archived",
    "translation": "%v has archived the channel."
  },
  {
    "id": "api.channel.delete_channel.cannot.app_error",
    "translation": "Cannot delete the default channel {{.Channel}}"
  },
  {
    "id": "api.channel.delete_channel.deleted.app_error",
    "translation": "The channel has been archived or deleted"
  },
  {
    "id": "api.channel.delete_channel.failed_post.error",
    "translation": "Failed to post archive message %v"
  },
  {
    "id": "api.channel.delete_channel.failed_send.app_error",
    "translation": "Failed to send archive message"
  },
  {
    "id": "api.channel.delete_channel.incoming_webhook.error",
    "translation": "Encountered error deleting incoming webhook, id=%v"
  },
  {
    "id": "api.channel.delete_channel.outgoing_webhook.error",
    "translation": "Encountered error deleting outgoing webhook, id=%v"
  },
  {
    "id": "api.channel.delete_channel.permissions.app_error",
    "translation": "You do not have the appropriate permissions"
  },
  {
    "id": "api.channel.get_channel_counts.app_error",
    "translation": "Unable to get channel counts from the database"
  },
  {
    "id": "api.channel.get_channel_extra_info.deleted.app_error",
    "translation": "The channel has been archived or deleted"
  },
  {
    "id": "api.channel.get_channel_extra_info.member_limit.app_error",
    "translation": "Failed to parse member limit"
  },
  {
    "id": "api.channel.get_channels.error",
    "translation": "Error in getting users profile for id=%v forcing logout"
  },
  {
    "id": "api.channel.init.debug",
    "translation": "Initializing channel api routes"
  },
  {
    "id": "api.channel.join_channel.permissions.app_error",
    "translation": "You do not have the appropriate permissions"
  },
  {
    "id": "api.channel.join_channel.post_and_forget",
    "translation": "%v has joined the channel."
  },
  {
    "id": "api.channel.leave.default.app_error",
    "translation": "Cannot leave the default channel {{.Channel}}"
  },
  {
    "id": "api.channel.leave.direct.app_error",
    "translation": "Cannot leave a direct message channel"
  },
  {
    "id": "api.channel.leave.left",
    "translation": "%v has left the channel."
  },
  {
    "id": "api.channel.post_update_channel_header_message_and_forget.join_leave.error",
    "translation": "Failed to post join/leave message %v"
  },
  {
    "id": "api.channel.post_update_channel_header_message_and_forget.removed",
    "translation": "%s removed the channel header (was: %s)"
  },
  {
    "id": "api.channel.post_update_channel_header_message_and_forget.retrieve_user.error",
    "translation": "Failed to retrieve user while trying to save update channel header message %v"
  },
  {
    "id": "api.channel.post_update_channel_header_message_and_forget.updated_from",
    "translation": "%s updated the channel header from: %s to: %s"
  },
  {
    "id": "api.channel.post_update_channel_header_message_and_forget.updated_to",
    "translation": "%s updated the channel header to: %s"
  },
  {
    "id": "api.channel.post_user_add_remove_message_and_forget.error",
    "translation": "Failed to post join/leave message %v"
  },
  {
    "id": "api.channel.remove_member.permissions.app_error",
    "translation": "You do not have the appropriate permissions "
  },
  {
    "id": "api.channel.remove_member.unable.app_error",
    "translation": "Unable to remove user."
  },
  {
    "id": "api.channel.remove_user_from_channel.deleted.app_error",
    "translation": "The channel has been archived or deleted"
  },
  {
    "id": "api.channel.update_channel.deleted.app_error",
    "translation": "The channel has been archived or deleted"
  },
  {
    "id": "api.channel.update_channel.permission.app_error",
    "translation": "You do not have the appropriate permissions"
  },
  {
    "id": "api.channel.update_channel.tried.app_error",
    "translation": "Tried to perform an invalid update of the default channel {{.Channel}}"
  },
  {
    "id": "api.command.check_command.start.app_error",
    "translation": "Command must start with /"
  },
  {
    "id": "api.command.echo_command.create.error",
    "translation": "Unable to create /echo post, err=%v"
  },
  {
    "id": "api.command.echo_command.description",
    "translation": "Echo back text from your account, /echo \"message\" [delay in seconds]"
  },
  {
    "id": "api.command.echo_command.high_volume.app_error",
    "translation": "High volume of echo request, cannot process request"
  },
  {
    "id": "api.command.echo_command.under.app_error",
    "translation": "Delays must be under 10000 seconds"
  },
  {
    "id": "api.command.init.debug",
    "translation": "Initializing command api routes"
  },
  {
    "id": "api.command.load_test_channels_command.channel.description",
    "translation": "Add a specified number of random channels to current team <MinChannels> <MaxChannels>"
  },
  {
    "id": "api.command.load_test_channels_command.fuzz.description",
    "translation": "Add a specified number of random channels with fuzz text to current team <Min Channels> <Max Channels>"
  },
  {
    "id": "api.command.load_test_command.description",
    "translation": "Debug Load Testing"
  },
  {
    "id": "api.command.load_test_posts_command.fuzz.description",
    "translation": "Add some random posts with fuzz text to current channel <Min Posts> <Max Posts> <Min Images> <Max Images>"
  },
  {
    "id": "api.command.load_test_posts_command.posts.description",
    "translation": "Add some random posts to current channel <Min Posts> <Max Posts> <Min Images> <Max Images>"
  },
  {
    "id": "api.command.load_test_setup_command.create.error",
    "translation": "Failed to create testing environment"
  },
  {
    "id": "api.command.load_test_setup_command.created.info",
    "translation": "Team Created: %v"
  },
  {
    "id": "api.command.load_test_setup_command.description",
    "translation": "Creates a testing environment in current team. [teams] [fuzz] <Num Channels> <Num Users> <NumPosts>"
  },
  {
    "id": "api.command.load_test_setup_command.login.info",
    "translation": "\t User to login: %v, %v"
  },
  {
    "id": "api.command.load_test_url_command.create.error",
    "translation": "Unable to create post, err=%v"
  },
  {
    "id": "api.command.load_test_url_command.description",
    "translation": "Add a post containing the text from a given url to current channel <Url>"
  },
  {
    "id": "api.command.load_test_url_command.file.app_error",
    "translation": "Unable to get file"
  },
  {
    "id": "api.command.load_test_url_command.reading.app_error",
    "translation": "Encountered error reading file"
  },
  {
    "id": "api.command.load_test_url_command.url.app_error",
    "translation": "Command must contain a url"
  },
  {
    "id": "api.command.load_test_users_command.fuzz.description",
    "translation": "Add a specified number of random users with fuzz text to current team <Min Users> <Max Users>"
  },
  {
    "id": "api.command.load_test_users_command.users.description",
    "translation": "Add a specified number of random users to current team <Min Users> <Max Users>"
  },
  {
    "id": "api.command.logout_command.description",
    "translation": "Logout"
  },
  {
    "id": "api.command.me_command.create.error",
    "translation": "Unable to create /me post post, err=%v"
  },
  {
    "id": "api.command.me_command.description",
    "translation": "Do an action, /me [message]"
  },
  {
    "id": "api.command.no_implemented.app_error",
    "translation": "Command not implemented"
  },
  {
    "id": "api.command.shrug_command.create.error",
    "translation": "Unable to create /shrug post post, err=%v"
  },
  {
    "id": "api.command.shrug_command.description",
    "translation": "Adds ¯\\_(ツ)_/¯ to your message, /shrug [message]"
  },
  {
    "id": "api.commmand.join_command.description",
    "translation": "Join the open channel"
  },
  {
    "id": "api.context.404.app_error",
    "translation": "Sorry, we could not find the page."
  },
  {
    "id": "api.context.invalid_param.app_error",
    "translation": "Invalid {{.Name}} parameter"
  },
  {
    "id": "api.context.invalid_team_url.debug",
    "translation": "TeamURL accessed when not valid. Team URL should not be used in api functions or those that are team independent"
  },
  {
    "id": "api.context.invalid_token.error",
    "translation": "Invalid session token=%v, err=%v"
  },
  {
    "id": "api.context.last_activity_at.error",
    "translation": "Failed to update LastActivityAt for user_id=%v and session_id=%v, err=%v"
  },
  {
    "id": "api.context.log.error",
    "translation": "%v:%v code=%v rid=%v uid=%v ip=%v %v [details: %v]"
  },
  {
    "id": "api.context.permissions.app_error",
    "translation": "You do not have the appropriate permissions"
  },
  {
    "id": "api.context.session_expired.app_error",
    "translation": "Invalid or expired session, please login again."
  },
  {
    "id": "api.context.system_permissions.app_error",
    "translation": "You do not have the appropriate permissions (system)"
  },
  {
    "id": "api.context.token_provided.app_error",
    "translation": "Session is not OAuth but token was provided in the query string"
  },
  {
    "id": "api.context.unknown.app_error",
    "translation": "An unknown error has occured. Please contact support."
  },
  {
    "id": "api.export.json.app_error",
    "translation": "Unable to convert to json"
  },
  {
    "id": "api.export.open.app_error",
    "translation": "Unable to open file"
  },
  {
    "id": "api.export.open_dir.app_error",
    "translation": "Unable to open directory"
  },
  {
    "id": "api.export.open_file.app_error",
    "translation": "Unable to open file for export"
  },
  {
    "id": "api.export.options.create.app_error",
    "translation": "Unable to create options file"
  },
  {
    "id": "api.export.options.write.app_error",
    "translation": "Unable to write to options file"
  },
  {
    "id": "api.export.read_dir.app_error",
    "translation": "Unable to read directory"
  },
  {
    "id": "api.export.s3.app_error",
    "translation": "S3 is not supported for local storage export."
  },
  {
    "id": "api.export.write_file.app_error",
    "translation": "Unable to write to export file"
  },
  {
    "id": "api.file.file_upload.exceeds",
    "translation": "File exceeds max image size."
  },
  {
    "id": "api.file.get_export.retrieve.app_error",
    "translation": "Unable to retrieve exported file. Please re-export"
  },
  {
    "id": "api.file.get_export.team_admin.app_error",
    "translation": "Only a team admin can retrieve exported data."
  },
  {
    "id": "api.file.get_file.not_found.app_error",
    "translation": "Could not find file."
  },
  {
    "id": "api.file.get_file.public_expired.app_error",
    "translation": "The public link has expired"
  },
  {
    "id": "api.file.get_file.public_invalid.app_error",
    "translation": "The public link does not appear to be valid"
  },
  {
    "id": "api.file.get_public_link.disabled.app_error",
    "translation": "Public links have been disabled"
  },
  {
    "id": "api.file.handle_images_forget.decode.error",
    "translation": "Unable to decode image channelId=%v userId=%v filename=%v err=%v"
  },
  {
    "id": "api.file.handle_images_forget.encode_jpeg.error",
    "translation": "Unable to encode image as jpeg channelId=%v userId=%v filename=%v err=%v"
  },
  {
    "id": "api.file.handle_images_forget.encode_preview.error",
    "translation": "Unable to encode image as preview jpg channelId=%v userId=%v filename=%v err=%v"
  },
  {
    "id": "api.file.handle_images_forget.upload_preview.error",
    "translation": "Unable to upload preview channelId=%v userId=%v filename=%v err=%v"
  },
  {
    "id": "api.file.handle_images_forget.upload_thumb.error",
    "translation": "Unable to upload thumbnail channelId=%v userId=%v filename=%v err=%v"
  },
  {
    "id": "api.file.init.debug",
    "translation": "Initializing file api routes"
  },
  {
    "id": "api.file.open_file_write_stream.configured.app_error",
    "translation": "File storage not configured properly. Please configure for either S3 or local server file storage."
  },
  {
    "id": "api.file.open_file_write_stream.creating_dir.app_error",
    "translation": "Encountered an error creating the directory for the new file"
  },
  {
    "id": "api.file.open_file_write_stream.local_server.app_error",
    "translation": "Encountered an error writing to local server storage"
  },
  {
    "id": "api.file.open_file_write_stream.s3.app_error",
    "translation": "S3 is not supported."
  },
  {
    "id": "api.file.read_file.configured.app_error",
    "translation": "File storage not configured properly. Please configure for either S3 or local server file storage."
  },
  {
    "id": "api.file.read_file.get.app_error",
    "translation": "Unable to get file from S3"
  },
  {
    "id": "api.file.read_file.reading_local.app_error",
    "translation": "Encountered an error reading from local server storage"
  },
  {
    "id": "api.file.upload_file.image.app_error",
    "translation": "Unable to upload image file."
  },
  {
    "id": "api.file.upload_file.large_image.app_error",
    "translation": "Unable to upload image file. File is too large."
  },
  {
    "id": "api.file.upload_file.storage.app_error",
    "translation": "Unable to upload file. Image storage is not configured."
  },
  {
    "id": "api.file.upload_file.too_large.app_error",
    "translation": "Unable to upload file. File is too large."
  },
  {
    "id": "api.file.write_file.configured.app_error",
    "translation": "File storage not configured properly. Please configure for either S3 or local server file storage."
  },
  {
    "id": "api.file.write_file.s3.app_error",
    "translation": "Encountered an error writing to S3"
  },
  {
    "id": "api.file.write_file_locally.create_dir.app_error",
    "translation": "Encountered an error creating the directory for the new file"
  },
  {
    "id": "api.file.write_file_locally.writing.app_error",
    "translation": "Encountered an error writing to local server storage"
  },
  {
    "id": "api.import.import_post.saving.debug",
    "translation": "Error saving post. user=%v, message=%v"
  },
  {
    "id": "api.import.import_user.joining_default.error",
    "translation": "Encountered an issue joining default channels user_id=%s, team_id=%s, err=%v"
  },
  {
    "id": "api.import.import_user.saving.error",
    "translation": "Error saving user. err=%v"
  },
  {
    "id": "api.import.import_user.set_email.error",
    "translation": "Failed to set email verified err=%v"
  },
  {
    "id": "api.license.add_license.array.app_error",
    "translation": "Empty array under 'license' in request"
  },
  {
    "id": "api.license.add_license.expired.app_error",
    "translation": "License is either expired or has not yet started."
  },
  {
    "id": "api.license.add_license.invalid.app_error",
    "translation": "Invalid license file."
  },
  {
    "id": "api.license.add_license.no_file.app_error",
    "translation": "No file under 'license' in request"
  },
  {
    "id": "api.license.add_license.open.app_error",
    "translation": "Could not open license file"
  },
  {
    "id": "api.license.add_license.save.app_error",
    "translation": "License did not save properly."
  },
  {
    "id": "api.license.init.debug",
    "translation": "Initializing license api routes"
  },
  {
    "id": "api.license.remove_license.remove.app_error",
    "translation": "License did not remove properly."
  },
  {
    "id": "api.oauth.allow_oauth.bad_client.app_error",
    "translation": "invalid_request: Bad client_id"
  },
  {
    "id": "api.oauth.allow_oauth.bad_redirect.app_error",
    "translation": "invalid_request: Missing or bad redirect_uri"
  },
  {
    "id": "api.oauth.allow_oauth.bad_response.app_error",
    "translation": "invalid_request: Bad response_type"
  },
  {
    "id": "api.oauth.allow_oauth.database.app_error",
    "translation": "server_error: Error accessing the database"
  },
  {
    "id": "api.oauth.allow_oauth.redirect_callback.app_error",
    "translation": "invalid_request: Supplied redirect_uri did not match registered callback_url"
  },
  {
    "id": "api.oauth.allow_oauth.turn_off.app_error",
    "translation": "The system admin has turned off OAuth service providing."
  },
  {
    "id": "api.oauth.get_auth_data.find.error",
    "translation": "Couldn't find auth code for code=%s"
  },
  {
    "id": "api.oauth.init.debug",
    "translation": "Initializing oauth api routes"
  },
  {
    "id": "api.oauth.register_oauth_app.turn_off.app_error",
    "translation": "The system admin has turned off OAuth service providing."
  },
  {
    "id": "api.oauth.revoke_access_token.del_code.app_error",
    "translation": "Error deleting authorization code from DB"
  },
  {
    "id": "api.oauth.revoke_access_token.del_session.app_error",
    "translation": "Error deleting session from DB"
  },
  {
    "id": "api.oauth.revoke_access_token.del_token.app_error",
    "translation": "Error deleting access token from DB"
  },
  {
    "id": "api.oauth.revoke_access_token.get.app_error",
    "translation": "Error getting access token from DB before deletion"
  },
  {
    "id": "api.post.create_post.bad_filename.error",
    "translation": "Bad filename discarded, filename=%v"
  },
  {
    "id": "api.post.create_post.channel_root_id.app_error",
    "translation": "Invalid ChannelId for RootId parameter"
  },
  {
    "id": "api.post.create_post.last_viewed.error",
    "translation": "Encountered error updating last viewed, channel_id=%s, user_id=%s, err=%v"
  },
  {
    "id": "api.post.create_post.parent_id.app_error",
    "translation": "Invalid ParentId parameter"
  },
  {
    "id": "api.post.create_post.root_id.app_error",
    "translation": "Invalid RootId parameter"
  },
  {
    "id": "api.post.create_webhook_post.creating.app_error",
    "translation": "Error creating post"
  },
  {
    "id": "api.post.delete_post.permissions.app_error",
    "translation": "You do not have the appropriate permissions"
  },
  {
    "id": "api.post.get_post.permissions.app_error",
    "translation": "You do not have the appropriate permissions"
  },
  {
    "id": "api.post.handle_post_events_and_forget.channel.error",
    "translation": "Encountered error getting channel, channel_id=%s, err=%v"
  },
  {
    "id": "api.post.handle_post_events_and_forget.team.error",
    "translation": "Encountered error getting team, team_id=%s, err=%v"
  },
  {
    "id": "api.post.handle_post_events_and_forget.user.error",
    "translation": "Encountered error getting user, user_id=%s, err=%v"
  },
  {
    "id": "api.post.handle_webhook_events_and_forget.create_post.error",
    "translation": "Failed to create response post, err=%v"
  },
  {
    "id": "api.post.handle_webhook_events_and_forget.event_post.error",
    "translation": "Event POST failed, err=%s"
  },
  {
    "id": "api.post.handle_webhook_events_and_forget.getting.error",
    "translation": "Encountered error getting webhooks by team, err=%v"
  },
  {
    "id": "api.post.init.debug",
    "translation": "Initializing post api routes"
  },
  {
    "id": "api.post.make_direct_channel_visible.get_2_members.error",
    "translation": "Failed to get 2 members for a direct channel channel_id=%v"
  },
  {
    "id": "api.post.make_direct_channel_visible.get_members.error",
    "translation": "Failed to get channel members channel_id=%v err=%v"
  },
  {
    "id": "api.post.make_direct_channel_visible.save_pref.error",
    "translation": "Failed to save direct channel preference user_id=%v other_user_id=%v err=%v"
  },
  {
    "id": "api.post.make_direct_channel_visible.update_pref.error",
    "translation": "Failed to update direct channel preference user_id=%v other_user_id=%v err=%v"
  },
  {
    "id": "api.post.send_notifications_and_forget.members.error",
    "translation": "Failed to get channel members channel_id=%v err=%v"
  },
  {
    "id": "api.post.send_notifications_and_forget.mention_body",
    "translation": "You have one new mention."
  },
  {
    "id": "api.post.send_notifications_and_forget.mention_subject",
    "translation": "New Mention"
  },
  {
    "id": "api.post.send_notifications_and_forget.message_body",
    "translation": "You have one new message."
  },
  {
    "id": "api.post.send_notifications_and_forget.message_subject",
    "translation": "New Direct Message"
  },
  {
    "id": "api.post.send_notifications_and_forget.push_mention",
    "translation": " mentioned you in "
  },
  {
    "id": "api.post.send_notifications_and_forget.push_message",
    "translation": " sent you a direct message"
  },
  {
    "id": "api.post.send_notifications_and_forget.push_notification.debug",
    "translation": "Sending push notification to %v wi msg of '%v'"
  },
  {
    "id": "api.post.send_notifications_and_forget.push_notification.error",
    "translation": "Failed to send push notificationid=%v, err=%v"
  },
  {
    "id": "api.post.send_notifications_and_forget.retrive_profiles.error",
    "translation": "Failed to retrieve user profiles team_id=%v, err=%v"
  },
  {
    "id": "api.post.send_notifications_and_forget.send.error",
    "translation": "Failed to send mention email successfully email=%v err=%v"
  },
  {
    "id": "api.post.send_notifications_and_forget.sent",
    "translation": "{{.Prefix}} {{.Filenames}} sent"
  },
  {
    "id": "api.post.send_notifications_and_forget.sessions.error",
    "translation": "Failed to retrieve sessions in notifications id=%v, err=%v"
  },
  {
    "id": "api.post.send_notifications_and_forget.user_id.error",
    "translation": "Post user_id not returned by GetProfiles user_id=%v"
  },
  {
    "id": "api.post.update_mention_count_and_forget.update_error",
    "translation": "Failed to update mention count for user_id=%v on channel_id=%v err=%v"
  },
  {
    "id": "api.post.update_post.find.app_error",
    "translation": "We couldn't find the existing post or comment to update."
  },
  {
    "id": "api.post.update_post.permissions.app_error",
    "translation": "You do not have the appropriate permissions"
  },
  {
    "id": "api.post.update_post.permissions_details.app_error",
    "translation": "Already delted id={{.PostId}}"
  },
  {
    "id": "api.post_get_post_by_id.get.app_error",
    "translation": "Unable to get post"
  },
  {
    "id": "api.preference.init.debug",
    "translation": "Initializing preference api routes"
  },
  {
    "id": "api.preference.save_preferences.decode.app_error",
    "translation": "Unable to decode preferences from request"
  },
  {
    "id": "api.preference.save_preferences.set.app_error",
    "translation": "Unable to set preferences for other user"
  },
  {
    "id": "api.preference.save_preferences.set_details.app_error",
    "translation": "session.user_id={{.SessionUserId}}, preference.user_id={{.PreferenceUserId}}"
  },
  {
    "id": "api.server.new_server.init.info",
    "translation": "Server is initializing..."
  },
  {
    "id": "api.server.start_server.listening.info",
    "translation": "Server is listening on %v"
  },
  {
    "id": "api.server.start_server.rate.info",
    "translation": "RateLimiter is enabled"
  },
  {
    "id": "api.server.start_server.rate.warn",
    "translation": "RateLimitSettings not configured properly using VaryByHeader and disabling VaryByRemoteAddr"
  },
  {
    "id": "api.server.start_server.starting.critical",
    "translation": "Error starting server, err:%v"
  },
  {
    "id": "api.server.start_server.starting.info",
    "translation": "Starting Server..."
  },
  {
    "id": "api.server.start_server.starting.panic",
    "translation": "Error starting server "
  },
  {
    "id": "api.server.stop_server.stopped.info",
    "translation": "Server stopped"
  },
  {
    "id": "api.server.stop_server.stopping.info",
    "translation": "Stopping Server..."
  },
  {
    "id": "api.slackimport.slack_add_channels.added",
    "translation": "\r\n Channels Added \r\n"
  },
  {
    "id": "api.slackimport.slack_add_channels.import_failed",
    "translation": "Failed to import: {{.DisplayName}}\r\n"
  },
  {
    "id": "api.slackimport.slack_add_channels.import_failed.debug",
    "translation": "Failed to import: %s"
  },
  {
    "id": "api.slackimport.slack_add_channels.merge",
    "translation": "Merged with existing channel: {{.DisplayName}}\r\n"
  },
  {
    "id": "api.slackimport.slack_add_posts.bot.warn",
    "translation": "Slack bot posts are not imported yet"
  },
  {
    "id": "api.slackimport.slack_add_posts.msg_no_usr.debug",
    "translation": "Message without user"
  },
  {
    "id": "api.slackimport.slack_add_posts.unsupported.warn",
    "translation": "Unsupported post type: %v, %v"
  },
  {
    "id": "api.slackimport.slack_add_posts.user_no_exists.debug",
    "translation": "User: %v does not exist!"
  },
  {
    "id": "api.slackimport.slack_add_posts.without_user.debug",
    "translation": "Message without user"
  },
  {
    "id": "api.slackimport.slack_add_users.created",
    "translation": "\r\n Users Created\r\n"
  },
  {
    "id": "api.slackimport.slack_add_users.email_pwd",
    "translation": "Email, Password: {{.Email}}, {{.Password}}\r\n"
  },
  {
    "id": "api.slackimport.slack_add_users.unable_import",
    "translation": "Unable to import user: {{.Username}}\r\n"
  },
  {
    "id": "api.slackimport.slack_convert_timestamp.bad.warn",
    "translation": "Bad timestamp detected"
  },
  {
    "id": "api.slackimport.slack_import.log",
    "translation": "Mattermost Slack Import Log\r\n"
  },
  {
    "id": "api.slackimport.slack_import.note1",
    "translation": "- Some posts may not have been imported because they where not supported by this importer.\r\n"
  },
  {
    "id": "api.slackimport.slack_import.note2",
    "translation": "- Slack bot posts are currently not supported.\r\n"
  },
  {
    "id": "api.slackimport.slack_import.notes",
    "translation": "\r\n Notes \r\n"
  },
  {
    "id": "api.slackimport.slack_import.open.app_error",
    "translation": "Unable to open: {{.Filename}}"
  },
  {
    "id": "api.slackimport.slack_import.zip.app_error",
    "translation": "Unable to open zip file"
  },
  {
    "id": "api.team.create_team.email_disabled.app_error",
    "translation": "Team sign-up with email is disabled."
  },
  {
    "id": "api.team.create_team_from_signup.email_disabled.app_error",
    "translation": "Team sign-up with email is disabled."
  },
  {
    "id": "api.team.create_team_from_signup.expired_link.app_error",
    "translation": "The signup link has expired"
  },
  {
    "id": "api.team.create_team_from_signup.invalid_link.app_error",
    "translation": "The signup link does not appear to be valid"
  },
  {
    "id": "api.team.create_team_from_signup.unavailable.app_error",
    "translation": "This URL is unavailable. Please try another."
  },
  {
    "id": "api.team.email_teams.sending.error",
    "translation": "An error occured while sending an email in emailTeams err=%v"
  },
  {
    "id": "api.team.export_team.admin.app_error",
    "translation": "Only a team admin can export data."
  },
  {
    "id": "api.team.import_team.admin.app_error",
    "translation": "Only a team admin can import data."
  },
  {
    "id": "api.team.import_team.array.app_error",
    "translation": "Empty array under 'file' in request"
  },
  {
    "id": "api.team.import_team.integer.app_error",
    "translation": "Filesize not an integer"
  },
  {
    "id": "api.team.import_team.no_file.app_error",
    "translation": "No file under 'file' in request"
  },
  {
    "id": "api.team.import_team.open.app_error",
    "translation": "Could not open file"
  },
  {
    "id": "api.team.import_team.parse.app_error",
    "translation": "Could not parse multipart form"
  },
  {
    "id": "api.team.import_team.unavailable.app_error",
    "translation": "Filesize unavilable"
  },
  {
    "id": "api.team.init.debug",
    "translation": "Initializing team api routes"
  },
  {
    "id": "api.team.invite_members.admin",
    "translation": "administrator"
  },
  {
    "id": "api.team.invite_members.already.app_error",
    "translation": "This person is already on your team"
  },
  {
    "id": "api.team.invite_members.member",
    "translation": "member"
  },
  {
    "id": "api.team.invite_members.no_one.app_error",
    "translation": "No one to invite."
  },
  {
    "id": "api.team.invite_members.send.error",
    "translation": "Failed to send invite email successfully err=%v"
  },
  {
    "id": "api.team.invite_members.sending.info",
    "translation": "sending invitation to %v %v"
  },
  {
    "id": "api.team.is_team_creation_allowed.disabled.app_error",
    "translation": "Team creation has been disabled. Please ask your systems administrator for details."
  },
  {
    "id": "api.team.is_team_creation_allowed.domain.app_error",
    "translation": "Email must be from a specific domain (e.g. @example.com). Please ask your systems administrator for details."
  },
  {
    "id": "api.team.permanent_delete_team.attempting.warn",
    "translation": "Attempting to permanently delete team %v id=%v"
  },
  {
    "id": "api.team.permanent_delete_team.deleted.warn",
    "translation": "Permanently deleted team %v id=%v"
  },
  {
    "id": "api.team.signup_team.email_disabled.app_error",
    "translation": "Team sign-up with email is disabled."
  },
  {
    "id": "api.team.update_team.permissions.app_error",
    "translation": "You do not have the appropriate permissions"
  },
  {
    "id": "api.templates.email_change_body.info",
    "translation": "You email address for {{.TeamDisplayName}} has been changed to {{.NewEmail}}.<br>If you did not make this change, please contact the system administrator."
  },
  {
    "id": "api.templates.email_change_body.title",
    "translation": "You updated your email"
  },
  {
    "id": "api.templates.email_change_subject",
    "translation": "Your email address has changed for {{.TeamDisplayName}}"
  },
  {
    "id": "api.templates.email_change_verify_body.button",
    "translation": "Verify Email"
  },
  {
    "id": "api.templates.email_change_verify_body.info",
    "translation": "To finish updating your email address for {{.TeamDisplayName}}, please click the link below to confirm this is the right address."
  },
  {
    "id": "api.templates.email_change_verify_body.title",
    "translation": "You updated your email"
  },
  {
    "id": "api.templates.email_change_verify_subject",
    "translation": "Verify new email address for {{.TeamDisplayName}}"
  },
  {
    "id": "api.templates.email_footer",
    "translation": "To change your notification preferences, log in to your team site and go to Account Settings > Notifications."
  },
  {
    "id": "api.templates.email_info",
    "translation": "Any questions at all, mail us any time: <a href='mailto:{{.FeedbackEmail}}' style='text-decoration: none; color:#2389D7;'>{{.FeedbackEmail}}</a>.<br>Best wishes,<br>The {{.SiteName}} Team<br>"
  },
  {
    "id": "api.templates.error.link",
    "translation": "Go back to team site"
  },
  {
    "id": "api.templates.error.title",
    "translation": "{{ .SiteName }} needs your help:"
  },
  {
    "id": "api.templates.find_teams_body.found",
    "translation": "Your request to find teams associated with your email found the following:"
  },
  {
    "id": "api.templates.find_teams_body.not_found",
    "translation": "We could not find any teams for the given email."
  },
  {
    "id": "api.templates.find_teams_body.title",
    "translation": "Finding teams"
  },
  {
    "id": "api.templates.find_teams_subject",
    "translation": "Your {{ .SiteName }} Teams"
  },
  {
    "id": "api.templates.invite_body.button",
    "translation": "Join Team"
  },
  {
    "id": "api.templates.invite_body.extra_info",
    "translation": "Mattermost lets you share messages and files from your PC or phone, with instant search and archiving. After you’ve joined <strong>{{.TeamDisplayName}}</strong>, you can sign-in to your new team and access these features anytime from the web address:<br/><br/><a href='{{.TeamURL}}'>{{.TeamURL}}</a>"
  },
  {
    "id": "api.templates.invite_body.info",
    "translation": "The team {{.SenderStatus}} <strong>{{.SenderName}}</strong>, has invited you to join <strong>{{.TeamDisplayName}}</strong>."
  },
  {
    "id": "api.templates.invite_body.title",
    "translation": "You've been invited"
  },
  {
    "id": "api.templates.invite_subject",
    "translation": "{{ .SenderName }} invited you to join {{ .TeamDisplayName }} Team on {{.SiteName}}"
  },
  {
    "id": "api.templates.password_change_body.info",
    "translation": "Your password has been updated for {{.TeamDisplayName}} on {{ .TeamURL }} by {{.Method}}.<br>If this change wasn't initiated by you, please contact your system administrator."
  },
  {
    "id": "api.templates.password_change_body.title",
    "translation": "You updated your password"
  },
  {
    "id": "api.templates.password_change_subject",
    "translation": "Your password has been updated for {{.TeamDisplayName}} on {{ .SiteName }}"
  },
  {
    "id": "api.templates.post_body.button",
    "translation": "Go To Channel"
  },
  {
    "id": "api.templates.post_body.info",
    "translation": "CHANNEL: {{.ChannelName}}<br>{{.SenderName}} - {{.Hour}}:{{.Minute}} {{.TimeZone}}, {{.Month}} {{.Day}}"
  },
  {
    "id": "api.templates.post_subject",
    "translation": "{{.SubjectText}} on {{.TeamDisplayName}} at {{.Month}} {{.Day}}, {{.Year}}"
  },
  {
    "id": "api.templates.reset_body.button",
    "translation": "Reset Password"
  },
  {
    "id": "api.templates.reset_body.info",
    "translation": "To change your password, click \"Reset Password\" below.<br>If you did not mean to reset your password, please ignore this email and your password will remain the same."
  },
  {
    "id": "api.templates.reset_body.title",
    "translation": "You requested a password reset"
  },
  {
    "id": "api.templates.reset_subject",
    "translation": "Reset your password"
  },
  {
    "id": "api.templates.signin_change_email.body.method_email",
    "translation": "email and password"
  },
  {
    "id": "api.templates.signin_change_email.body.title",
    "translation": "You updated your sign-in method"
  },
  {
    "id": "api.templates.signup_team_body.button",
    "translation": "Set up your team"
  },
  {
    "id": "api.templates.signup_team_body.info",
    "translation": "{{ .SiteName }} is one place for all your team communication, searchable and available anywhere.<br>You'll get more out of {{ .SiteName }} when your team is in constant communication--let's get them on board."
  },
  {
    "id": "api.templates.signup_team_body.title",
    "translation": "Thanks for creating a team!"
  },
  {
    "id": "api.templates.signup_team_subject",
    "translation": "{{ .SiteName }} Team Setup"
  },
  {
    "id": "api.templates.singin_change_email.body.info",
    "translation": "You updated your sign-in method for {{.TeamDisplayName}} on {{ .TeamURL }} to {{.Method}}.<br>If this change wasn't initiated by you, please contact your system administrator."
  },
  {
    "id": "api.templates.singin_change_email.subject",
    "translation": "You updated your sign-in method for {{.TeamDisplayName}} on {{ .SiteName }}"
  },
  {
    "id": "api.templates.verify_body.button",
    "translation": "Verify Email"
  },
  {
    "id": "api.templates.verify_body.info",
    "translation": "Please verify your email address by clicking below."
  },
  {
    "id": "api.templates.verify_body.title",
    "translation": "You've joined the {{ .TeamDisplayName }} team"
  },
  {
    "id": "api.templates.verify_subject",
    "translation": "[{{ .TeamDisplayName }} {{ .SiteName }}] Email Verification"
  },
  {
    "id": "api.templates.welcome_body.button",
    "translation": "Verify Email"
  },
  {
    "id": "api.templates.welcome_body.info",
    "translation": "Please verify your email address by clicking below."
  },
  {
    "id": "api.templates.welcome_body.info2",
    "translation": "You can sign-in to your new team from the web address:"
  },
  {
    "id": "api.templates.welcome_body.info3",
    "translation": "Mattermost lets you share messages and files from your PC or phone, with instant search and archiving."
  },
  {
    "id": "api.templates.welcome_body.title",
    "translation": "You've joined the {{ .TeamDisplayName }} team"
  },
  {
    "id": "api.templates.welcome_subject",
    "translation": "You joined {{ .TeamDisplayName }}"
  },
  {
    "id": "api.user.add_direct_channels_and_forget.failed.error",
    "translation": "Failed to add direct channel preferences for user user_id=%s, team_id=%s, err=%v"
  },
  {
    "id": "api.user.authorize_oauth_user.bad_response.app_error",
    "translation": "Bad response from token request"
  },
  {
    "id": "api.user.authorize_oauth_user.bad_token.app_error",
    "translation": "Bad token type"
  },
  {
    "id": "api.user.authorize_oauth_user.invalid_state.app_error",
    "translation": "Invalid state"
  },
  {
    "id": "api.user.authorize_oauth_user.invalid_state_team.app_error",
    "translation": "Invalid state; missing team name"
  },
  {
    "id": "api.user.authorize_oauth_user.missing.app_error",
    "translation": "Missing access token"
  },
  {
    "id": "api.user.authorize_oauth_user.service.app_error",
    "translation": "Token request to {{.Service}} failed"
  },
  {
    "id": "api.user.authorize_oauth_user.token_failed.app_error",
    "translation": "Token request failed"
  },
  {
    "id": "api.user.authorize_oauth_user.unsupported.app_error",
    "translation": "Unsupported OAuth service provider"
  },
  {
    "id": "api.user.check_user_login_attempts.too_many.app_error",
    "translation": "Your account is locked because of too many failed password attempts. Please reset your password."
  },
  {
    "id": "api.user.check_user_password.invalid.app_error",
    "translation": "Login failed because of invalid password"
  },
  {
    "id": "api.user.complete_switch_with_oauth.blank_email.app_error",
    "translation": "Blank email"
  },
  {
    "id": "api.user.complete_switch_with_oauth.parse.app_error",
    "translation": "Could not parse auth data out of {{.Service}} user object"
  },
  {
    "id": "api.user.complete_switch_with_oauth.unavailable.app_error",
    "translation": "{{.Service}} oauth not available on this server"
  },
  {
    "id": "api.user.create_oauth_user.already_attached.app_error",
    "translation": "Team {{.DisplayName}} already has a user with the email address attached to your {{.Service}} account"
  },
  {
    "id": "api.user.create_oauth_user.already_used.app_error",
    "translation": "This {{.Service}} account has already been used to sign up for team {{.DisplayName}}"
  },
  {
    "id": "api.user.create_oauth_user.create.app_error",
    "translation": "Could not create user out of {{.Service}} user object"
  },
  {
    "id": "api.user.create_oauth_user.not_available.app_error",
    "translation": "{{.Service}} oauth not avlailable on this server"
  },
  {
    "id": "api.user.create_profile_image.default_font.app_error",
    "translation": "Could not create default profile image font"
  },
  {
    "id": "api.user.create_profile_image.encode.app_error",
    "translation": "Could not encode default profile image"
  },
  {
    "id": "api.user.create_profile_image.initial.app_error",
    "translation": "Could not add user initial to default profile picture"
  },
  {
    "id": "api.user.create_user.accepted_domain.app_error",
    "translation": "The email you provided does not belong to an accepted domain. Please contact your administrator or sign up with a different email."
  },
  {
    "id": "api.user.create_user.joining.error",
    "translation": "Encountered an issue joining default channels user_id=%s, team_id=%s, err=%v"
  },
  {
    "id": "api.user.create_user.save.error",
    "translation": "Couldn't save the user err=%v"
  },
  {
    "id": "api.user.create_user.signup_email_disabled.app_error",
    "translation": "User sign-up with email is disabled."
  },
  {
    "id": "api.user.create_user.signup_link_expired.app_error",
    "translation": "The signup link has expired"
  },
  {
    "id": "api.user.create_user.signup_link_invalid.app_error",
    "translation": "The signup link does not appear to be valid"
  },
  {
    "id": "api.user.create_user.team_name.app_error",
    "translation": "Invalid team name"
  },
  {
    "id": "api.user.create_user.tutorial.error",
    "translation": "Encountered error saving tutorial preference, err=%v"
  },
  {
    "id": "api.user.create_user.verified.error",
    "translation": "Failed to set email verified err=%v"
  },
  {
    "id": "api.user.get_authorization_code.unsupported.app_error",
    "translation": "Unsupported OAuth service provider"
  },
  {
    "id": "api.user.get_me.getting.error",
    "translation": "Error in getting users profile for id=%v forcing logout"
  },
  {
    "id": "api.user.init.debug",
    "translation": "Initializing user api routes"
  },
  {
    "id": "api.user.login.blank_pwd.app_error",
    "translation": "Password field must not be blank"
  },
  {
    "id": "api.user.login.inactive.app_error",
    "translation": "Login failed because your account has been set to inactive.  Please contact an administrator."
  },
  {
    "id": "api.user.login.not_provided.app_error",
    "translation": "Either user id or team name and user email must be provided"
  },
  {
    "id": "api.user.login.not_verified.app_error",
    "translation": "Login failed because email address has not been verified"
  },
  {
    "id": "api.user.login.revoking.app_error",
    "translation": "Revoking sessionId=%v for userId=%v re-login with same device Id"
  },
  {
    "id": "api.user.login_by_email.sign_in.app_error",
    "translation": "Please sign in using {{.AuthService}}"
  },
  {
    "id": "api.user.login_by_oauth.not_available.app_error",
    "translation": "{{.Service}} oauth not avlailable on this server"
  },
  {
    "id": "api.user.login_by_oauth.parse.app_error",
    "translation": "Could not parse auth data out of {{.Service}} user object"
  },
  {
    "id": "api.user.login_ldap.blank_pwd.app_error",
    "translation": "Password field must not be blank"
  },
  {
    "id": "api.user.login_ldap.disabled.app_error",
    "translation": "LDAP not enabled on this server"
  },
  {
    "id": "api.user.login_ldap.need_id.app_error",
    "translation": "Need an ID"
  },
  {
    "id": "api.user.login_ldap.not_available.app_error",
    "translation": "LDAP not available on this server"
  },
  {
    "id": "api.user.permanent_delete_user.attempting.warn",
    "translation": "Attempting to permanently delete account %v id=%v"
  },
  {
    "id": "api.user.permanent_delete_user.deleted.warn",
    "translation": "Permanently deleted account %v id=%v"
  },
  {
    "id": "api.user.permanent_delete_user.system_admin.warn",
    "translation": "You are deleting %v that is a system administrator.  You may need to set another account as the system administrator using the command line tools."
  },
  {
    "id": "api.user.reset_password.invalid_link.app_error",
    "translation": "The reset password link does not appear to be valid"
  },
  {
    "id": "api.user.reset_password.link_expired.app_error",
    "translation": "The reset link has expired"
  },
  {
    "id": "api.user.reset_password.method",
    "translation": "using a reset password link"
  },
  {
    "id": "api.user.reset_password.sso.app_error",
    "translation": "Cannot reset password for SSO accounts"
  },
  {
    "id": "api.user.reset_password.wrong_team.app_error",
    "translation": "Trying to reset password for user on wrong team."
  },
  {
    "id": "api.user.send_email_change_email_and_forget.error",
    "translation": "Failed to send email change notification email successfully err=%v"
  },
  {
    "id": "api.user.send_email_change_verify_email_and_forget.error",
    "translation": "Failed to send email change verification email successfully err=%v"
  },
  {
    "id": "api.user.send_password_change_email_and_forget.error",
    "translation": "Failed to send update password email successfully err=%v"
  },
  {
    "id": "api.user.send_password_reset.find.app_error",
    "translation": "We couldn’t find an account with that address."
  },
  {
    "id": "api.user.send_password_reset.send.app_error",
    "translation": "Failed to send password reset email successfully"
  },
  {
    "id": "api.user.send_password_reset.sso.app_error",
    "translation": "Cannot reset password for SSO accounts"
  },
  {
    "id": "api.user.send_sign_in_change_email_and_forget.error",
    "translation": "Failed to send update password email successfully err=%v"
  },
  {
    "id": "api.user.send_verify_email_and_forget.failed.error",
    "translation": "Failed to send verification email successfully err=%v"
  },
  {
    "id": "api.user.send_welcome_email_and_forget.failed.error",
    "translation": "Failed to send welcome email successfully err=%v"
  },
  {
    "id": "api.user.switch_to_email.context.app_error",
    "translation": "Update password failed because context user_id did not match provided user's id"
  },
  {
    "id": "api.user.update_active.permissions.app_error",
    "translation": "You do not have the appropriate permissions"
  },
  {
    "id": "api.user.update_password.context.app_error",
    "translation": "Update password failed because context user_id did not match props user_id"
  },
  {
    "id": "api.user.update_password.failed.app_error",
    "translation": "Update password failed"
  },
  {
    "id": "api.user.update_password.incorrect.app_error",
    "translation": "The \"Current Password\" you entered is incorrect. Please check that Caps Lock is off and try again."
  },
  {
    "id": "api.user.update_password.menu",
    "translation": "using the settings menu"
  },
  {
    "id": "api.user.update_password.oauth.app_error",
    "translation": "Update password failed because the user is logged in through an OAuth service"
  },
  {
    "id": "api.user.update_password.valid_account.app_error",
    "translation": "Update password failed because we couldn't find a valid account"
  },
  {
    "id": "api.user.update_roles.one_admin.app_error",
    "translation": "There must be at least one active admin"
  },
  {
    "id": "api.user.update_roles.permissions.app_error",
    "translation": "You do not have the appropriate permissions"
  },
  {
    "id": "api.user.update_roles.system_admin_mod.app_error",
    "translation": "The system admin role can only by modified by another system admin"
  },
  {
    "id": "api.user.update_roles.system_admin_set.app_error",
    "translation": "The system admin role can only be set by another system admin"
  },
  {
    "id": "api.user.upload_profile_user.array.app_error",
    "translation": "Empty array under 'image' in request"
  },
  {
    "id": "api.user.upload_profile_user.decode.app_error",
    "translation": "Could not decode profile image"
  },
  {
    "id": "api.user.upload_profile_user.decode_config.app_error",
    "translation": "Could not decode profile image config."
  },
  {
    "id": "api.user.upload_profile_user.encode.app_error",
    "translation": "Could not encode profile image"
  },
  {
    "id": "api.user.upload_profile_user.no_file.app_error",
    "translation": "No file under 'image' in request"
  },
  {
    "id": "api.user.upload_profile_user.open.app_error",
    "translation": "Could not open image file"
  },
  {
    "id": "api.user.upload_profile_user.parse.app_error",
    "translation": "Could not parse multipart form"
  },
  {
    "id": "api.user.upload_profile_user.storage.app_error",
    "translation": "Unable to upload file. Image storage is not configured."
  },
  {
    "id": "api.user.upload_profile_user.too_large.app_error",
    "translation": "Unable to upload profile image. File is too large."
  },
  {
    "id": "api.web_conn.new_web_conn.last_activity.error",
    "translation": "Failed to update LastActivityAt for user_id=%v and session_id=%v, err=%v"
  },
  {
    "id": "api.web_conn.new_web_conn.last_ping.error",
    "translation": "Failed to update LastPingAt for user_id=%v, err=%v"
  },
  {
    "id": "api.web_hub.start.stopping.debug",
    "translation": "stopping %v connections"
  },
  {
    "id": "api.web_socket.connect.error",
    "translation": "websocket connect err: %v"
  },
  {
    "id": "api.web_socket.connect.upgrade.app_error",
    "translation": "Failed to upgrade websocket connection"
  },
  {
    "id": "api.web_socket.init.debug",
    "translation": "Initializing web socket api routes"
  },
  {
    "id": "api.web_team_hun.start.debug",
    "translation": "team hub stopping for teamId=%v"
  },
  {
    "id": "api.webhook.create_incoming.disabled.app_errror",
    "translation": "Incoming webhooks have been disabled by the system admin."
  },
  {
    "id": "api.webhook.create_outgoing.disabled.app_error",
    "translation": "Outgoing webhooks have been disabled by the system admin."
  },
  {
    "id": "api.webhook.create_outgoing.triggers.app_error",
    "translation": "Either trigger_words or channel_id must be set"
  },
  {
    "id": "api.webhook.delete_incoming.disabled.app_errror",
    "translation": "Incoming webhooks have been disabled by the system admin."
  },
  {
    "id": "api.webhook.delete_incoming.permissions.app_errror",
    "translation": "Inappropriate permissions to delete incoming webhook"
  },
  {
    "id": "api.webhook.delete_outgoing.disabled.app_error",
    "translation": "Outgoing webhooks have been disabled by the system admin."
  },
  {
    "id": "api.webhook.delete_outgoing.permissions.app_error",
    "translation": "Inappropriate permissions to delete outcoming webhook"
  },
  {
    "id": "api.webhook.get_incoming.disabled.app_error",
    "translation": "Incoming webhooks have been disabled by the system admin."
  },
  {
    "id": "api.webhook.get_outgoing.disabled.app_error",
    "translation": "Outgoing webhooks have been disabled by the system admin."
  },
  {
    "id": "api.webhook.init.debug",
    "translation": "Initializing webhook api routes"
  },
  {
    "id": "api.webhook.regen_outgoing_token.disabled.app_error",
    "translation": "Outgoing webhooks have been disabled by the system admin."
  },
  {
    "id": "api.webhook.regen_outgoing_token.permissions.app_error",
    "translation": "Inappropriate permissions to regenerate outcoming webhook token"
  },
  {
    "id": "mattermost.current_version",
    "translation": "Current version is %v (%v/%v/%v)"
  },
  {
    "id": "utils.i18n.loaded",
    "translation": "Loaded system translations for '%v' from '%v'"
  }
]