-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEnglish.json
2019 lines (2018 loc) · 101 KB
/
English.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "English",
"time_format": "01/02/2006",
"discord_flag_emoji_name": "🇺🇸",
"fonts": [],
"embeds": {
"system": {
"noperm": {
"title": "Missing Permissions",
"description": "You seem to be missing permissions to run this command. Please contact a server administrator for further assistance.",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "",
"embed_color": "00EEA4",
"fields": []
},
"ping": {
"title": "Ping..!",
"description": "PINGGG.... PONGGGG",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .author_icon }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"invite": {
"title": "Invite Levely",
"description": "Loving Levely? Invite it to your server!\nQuick and easily invite it to your server by clicking [[HERE]]({{ .invite_url }})!",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .author_icon }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"wiki": {
"title": "Levely Wiki",
"description": "Having problems figuring out how to setup a feature? [Use the wiki]({{ .wiki_url }}).",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .author_icon }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"dashboard": {
"title": "Levely Dashboard",
"description": "[Edit Levely via our web dashboard quick and easy manage the bots configurations]({{ .dashboard_url }}).",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .author_icon }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"support": {
"title": "Levely Support Server",
"description": "Having problems with Levely?\nJoin our discord support server for assistance. [[Support]]({{ .support_url }})!",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"premium": {
"title": "Get Premium",
"description": "Purchase premium to benefit yourself or your discord server.\nQuickly unlock additional Levely features within seconds.\n\n[Interested?]({{ .premium_url }})\n[Want to preview premium perks?]({{ .premiumperks_url }})",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"application": {
"title": "Support Applications",
"description": "[Interested in becoming a Levely Support Member?]({{ .application_url }})\n\n**Applications Status**: `Opened`",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"team": {
"title": "Levely Team",
"description": "Thank you for supporting Levely!\n\n**Team**:\n- Adam (CEO)\n- Sif (Manager)\n\n**Applications Status**: `Opened`\n[Apply Here]({{ .application_url }})",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"join": {
"title": "Thanks for Inviting me! :partying_face:",
"description": "To get started you can click the setup icon below or type **/setup**.\nView additional Levly commands by typing **/help**.\n\n[Needing further assistance? Join our support server!]({{ .support_url }})",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "",
"author_url": "",
"author_icon_url": "",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"cancelled": {
"title": "Configuration Cancelled",
"description": "The configuration has been cancelled.",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "",
"author_url": "",
"author_icon_url": "",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"language": {
"title": "Bot Language",
"description": "The current bots language is set to **{{ .language_current }}**.",
"description_admin": "Want to change the language? Type **/language** to select a new language.\n\n[Language is missing? Open a request in our server!]({{ .support_url }})",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"language_change": {
"title": "Language Changed",
"description": "The bots language has been changed to **{{ .language_current }}**.",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"language_reset": {
"title": "Language Reset",
"description": "You have reset this servers Levely bot language to default(English)!\n\n[Language is missing? Open a request in our server!]({{ .support_url }})",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"opt": {
"title": "Opt Status",
"description": "You are currently Opt `{{ .opt_status }}` with Levely.\n\nIf you would like to change this type `/opt {{ .opt_old_status }}` to change your status!\n\n[Needing further assistance? Join our support server]({{ .support_url }})",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"opt_change": {
"title": "Opt Status",
"description": "You are now Opt `{{ .opt_status }}` with Levely.",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"opt_set": {
"title": "Oops!",
"description": "You're already opted {{ .opt_status }} with Levely.",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"upvote": {
"title": "Upvote",
"description": "Upvote Levely to learn exclusive perks only granted when upvoting.\n[Upvote here]({{ .upvote_url }})\nThe next time you can vote is {{ .next_vote }}.\n\nTo claim your perks, check out the `/credit` command!\n\n[Having a problem? Join our support server.]({{ .support_url }})",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"levelup": {
"title": "Levely Up",
"description": "{{ .target_mention }} has leveled up to level {{ .target_levelup_level }}",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"profile": {
"title": "Profile",
"profile_description": "> **Rank**: `{{ .target_rank }}`\n> **Level**: `{{ .target_level }}`\n> **XP**: `{{ .target_xp }}`\n > **Progress**: `{{ .target_xp }}/{{ .target_xp_levelup_required }}`\n> **Messages Amount**: `{{ .target_message_total }}`\n> **Voice Minutes**: `{{ .target_voice_minutes }}`\n> **Voice XP**: `{{ .target_overall_voice_xp }}`\n\n**Date Joined**: `{{ .target_date_joined }}`\n",
"profile_footer": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"difficulty": {
"title": "Difficulty",
"description": "**Current Set Difficulty**: {{ .server_difficulty_level }}\n\nTo change the current set difficulty use `/difficulty {{ .server_difficulty_options }}`",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"difficulty_max": {
"title": "Difficulty Invalid",
"description": "Difficulty `{{ .difficulty_invalid }}` is an invalid option please choose `{{ .server_difficulty_options }}` difficulty.\n\nUsing `/difficulty {{ .server_difficulty_options }}` will change the servers current set difficulty.",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"difficulty_duplicate": {
"title": "Difficulty",
"description": "This servers difficulty is already set to difficulty `{{ .difficulty_duplicate }}`.\n\nIf you would like to change use that use `/difficulty {{ .server_difficulty_options }}`",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"difficulty_updated": {
"title": "Difficulty Updated",
"description": "**New Difficulty**: `{{ .server_difficulty_level }}`\n**Old Difficulty**: `{{ .difficulty_before }}`\n\nUsing `/difficulty {{ .server_difficulty_options }}` will change the servers current set difficulty.",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"premium_required": {
"title": "Premium Required",
"description": "[Premium is required, purchase premium to access this command.]({{ .premium_url }})\n\n**Command Executed**:\n `{{ .premium_requirement_command }}`\n\n[If you believe this is an error please contact support through our support server!]({{ .support_url }})",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"rewards_nicknameformat_not_specified": {
"title": "Nickname format not specified",
"description": "You have not specified a Nickname format.",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"rewards_leaderboard_rank_not_specified": {
"title": "Rank not specified",
"description": "You have not specified a leaderboard rank position.",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"rewards_emoji_set": {
"title": "Emoji Restrictions Updated",
"description": "**Emojis Updated**: {{ .rewards_emoji_set }}\n **Role**: {{ .rewards_emoji_role_set }}\n\nTo reset this restriction use `/rewards emoji clear {{rewards_emojis_role_set }}`",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"rewards_emoji_clear": {
"title": "Emoji(s) Restrictions Cleared",
"description": "You have cleared all set restrictions for {{ .rewards_emoji_role_cleared }}.\n\nSetup new restrictions with `/rewards emoji set [@RoleExample] [:Emoji:]`.\nDo not include [] in the command executed.",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"rewards_emoji_remove": {
"title": "Emoji(s) Restriction Removed",
"description": "**Emoji**: {{ .rewards_emoji_removed }} **removed from** {{ .rewards_emoji_role_removed }}.\n\nSetup new restrictions with `/rewards emoji set [@RoleExample] [:Emoji:]`.\nDo not include [] in the command executed.",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"rewards_emoji_not_specified": {
"title": "Emoji not specified",
"description": "You have not specified a restricted emoji please select a minimum 1.",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"rewards_role_set": {
"title": "Role Set",
"description": "**Role**: {{ .rewards_role_set }} **set to** {{ .rewards_role_level_set }}.\n\nAdd additional role rewards with `/rewards role set [PUT-LEVEL] [@RoleExample]`.\nDo not include [] in the command executed.",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"rewards_role_clear": {
"title": "Role Cleared",
"description": "You have cleared {{ .rewards_role_cleared }}\n\nTo setup role rewards use `/rewards role set [PUT-LEVEL] [@RoleExample]`.\nDo not include [] in the command executed.",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"rewards_role_remove": {
"rewards_role_remove_title": "Role Removed",
"description": "You have removed {{ .rewards_role_removed }}\n\nTo setup role rewards use `/rewards role set [PUT-LEVEL] [@RoleExample]`.\nDo not include [] in the command executed.",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"rewards_role_not_specified": {
"title": "Role not specified",
"description": "The role reward has not been set due to not being specified.\n\nCommand Example: `/rewards role set` [PUT-LEVEL] [@RoleExample]`.\nDo not include [] in the command executed.",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"rewards_role_doesnt_exist": {
"title": "Role doesn't exist",
"description": "The role/level reward does not seem to excist please try again.\n[If this is an issue that can not be resolved contact support.]{{ .support_url }}\n\nCommand Example: `/rewards role set` [PUT-LEVEL] [@RoleExample]`.\nDo not include [] in the command executed.",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"rewards_role_override": {
"title": "Role alread in use",
"descriptions": "{{ .reward_role_override }} has been already set to level {{ .rewards_role_level_override }}.\nYou may override this by clicking the confirm button below else click cancel.\nPlease choose another role or clear the set reward.",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"rewards_role_override_confirmed": {
"title": "Role override confirmed",
"description": "You have confirmed {{ .reward_role_override }} override being set to level **{{ .rewards_role_level_override }**.",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"rewards_role_canceled": {
"title": "Role override canceled",
"description": "You have canceled {{ .reward_role_override }} override being set to level **{{ .rewards_role_level_override }**.",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"manage_give": {
"title": "Manage Give",
"description": "{{ .managed_give_user }} was given {{ .managed_given_amount }} {{ .managed_give_type }}.",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"manage_remove": {
"title": "Manage Remove",
"description": "{{ .managed_removed_amount }} {{ .managed_type }} was taken from{{ .target_mention }}.",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"manage_set": {
"title": "Manage Set",
"description": "{{ .target_mention }} {{ .managed_type }} was set to {{ .manage_set_amount }}.",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"manage_reset": {
"title": "Manage Reset {{ .manage_reset_type }}",
"description": "{{ .manage_reset_target }} progression has been reset to default!",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"manage_reset_confirm": {
"title": "Manage Reset Confirmation",
"description": "Please confirm your reset confirmation for {{ .manage_reset_type }}.",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"setup_reward_roles": {
"title": "Welcome to Levely!",
"description": "Would you like for Levely to generate role rewards for you? If so, you'll notice 3 new roles in your server: Level 5, Level 10 and Level 20. If you'd rather set this up yourself, you can skip this step.",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"setup_difficulty_selection": {
"title": "Welcome to Levely!",
"description": "Set a difficulty level for experience (EXP for short) gained by your community members. Lower the number, the easier it is to level-up and the higher the number, the harder it would be to level up. This can be changed any time with /settings difficulty.",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"setup_announcement_selection": {
"title": "Welcome to Levely!",
"description": "Setup a dedicated channel for level-up messages and reward roles being given out by providing a channel ID or mentioning the channel. Otherwise the messages will be sent to the latest channel the user leveled up in and will automatically delete within 30 seconds after. If you would like to disable this please select the disable button below, otherwise click the Provide Channel button for further instructions.",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"setup_logging_selection": {
"title": "Welcome to Levely!",
"description": "Audit logs are provided for things not shown set it up by providing a channel ID or mentioning a channel. If you would like to disable this please select the disable button below, otherwise click the Provide Channel button for further instructions.",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"setup_complete": {
"title": "Welcome to Levely!",
"description": "Levely has been successfully set up! You won't regret adding Levely. 😎\n\n:information_source: Did you know we can import from Mee6 and Arcane? Try it out by clicking any of the 3 buttons below and let Levely take over from there. *If you'd rather start fresh, then you don't need to click anything.*",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"difficulty_information": {
"title": "Difficulty Information",
"description": "The difficulty is used to determine the amount of XP you'll need to level up. Would you like to `Change` the current difficulty for the server or `Reset` it back to default (3)?",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
}
},
"logging": {
"info": {
"title": "Server Logging",
"description": "Levely has the ability to log anything internal related, from commands executed to users changed and rewards given out. What would you like to do with this module?",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
}
},
"admin_information": {
"base": {
"title": "Admin Information",
"description": "Levely Admins refer to certain roles in your server that \"act\" as if they have administrator permissions but don't. This is a safer approach if you'd like to trust a certain handful of members with changing important settings or modifying users within Levely.\nWould you like to `Add` a role to the administrator list or `remove` one from it?",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"add": {
"title": "Admin Information",
"description": "Please respond by mentioning the role (not advised) or providing a Role ID. If you don't know how to get the ID and would like to avoid pure chaos from ensuing over a mention, [read this helpful guide](https://support.discord.com/hc/en-us/articles/206346498-Where-can-I-find-my-User-Server-Message-ID-) provided by Discord.",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"remove": {
"title": "Admin Information",
"description": "Select a role you'd like to no longer have as a Levely Administrator.",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"post_save": {
"title": "Admin Information",
"description": "{{ .role }} has been {{ .action }} the list of Administrators for managing Levely settings in this server.",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"error": {
"title": "Admin Information",
"description": "Something went wrong when adding the role as a Levely Administrator.\n{{ .error }}",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
}
},
"announcements": {
"prompt": {
"title": "Server Announcements",
"description": "Levely can send messages to a dedicated channel with level up messages, reward messages, or if you'd prefer.. you can split it up between different channels! Would you like to configure `Level Up` messages or `Reward` messages? You can also configure `Both` at the same time.",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"where_send": {
"title": "Server Announcements",
"description": "Would you still like for Levely to send to a dedicated channel, or reply to the message that caused the user to Level Up/earn a reward?\nIf you'd prefer, you can click `Toggle Mentions` now to enable/disable the mention for either option.",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"channel_prompt": {
"title": "Server Announcements",
"description": "Please mention the channel or provide an ID for the channel where Levely will send the announcements.",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"post_save": {
"title": "Server Announcements",
"description": "Success! Your new configuration has been saved and is already in effect. Announcements will now be sent to {{ .new_data }}.",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"error": {
"title": "Server Announcements",
"description": "Something went wrong when configuring the announcements.\n{{ .error }}",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
}
},
"difficulty": {
"set": {
"title": "Server Difficulty",
"description": "Select a difficulty beteween 1-5 (1-10 if you're a premium server), 1 being the easiest, 5 being the hardest for free servers, medium for premium servers and 10 being the hardest.",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"save": {
"title": "Server Difficulty",
"description": "Success! The difficulty for the server has been set as {{ .new }} and is already in effect.",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
}
},
"logging": {
"info": {
"title": "Server Logging",
"description": "Levely has the ability to log anything internal related, from commands executed to users changed and rewards given out. What would you like to do with this module?",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"cprompt": {
"title": "Server Logging",
"description": "Please provide a channel for this server that Levely has access to send messages and embed links in. Without those two permissions, logs may fail to send.\nYou can provide a direct mention to the channel or a channel ID.",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"save": {
"title": "Server Logging",
"description": "Success! The logging for the server has been saved and is now in effect.",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"toggle": {
"title": "Server Logging",
"description": "Using the buttons below, click one of them to set your logging preferences. Once done, you may click **Save** to continue.",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
}
},
"multipliers": {
"info": {
"title": "Server Multipliers",
"description": "Levely gives you the ability to multiply the amount of XP given out with certain roles. Useful for rewarding donators and server boosters. What would you like to do with this module?",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"add": {
"title": "Server Multipliers",
"description": "Please provide a role that Levely should bind the multiplier out to.\nYou can provide a direct mention to the role or a role ID.",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []
},
"set": {
"title": "Server Multipliers",
"description": "Please provide a multiplier for the role you provided.\nThe multiplier should be a number between 1 and 10, 1 being the lowest and 10 being the highest. If you'd like a mulitplier over 3, you must be in a premium server.",
"footer_text": "Levely Official Bot • {{ .date }}",
"footer_image_url": "{{ .levely_icon }}",
"author_name": "{{ .author_name }}",
"author_url": "",
"author_icon_url": "{{ .executor_avatar }}",
"url": "",
"image_url": "",
"thumbnail_url": "{{ .levely_icon }}",
"embed_color": "00EEA4",
"fields": []