-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathlocale.yml.example
More file actions
1607 lines (1513 loc) · 40.2 KB
/
locale.yml.example
File metadata and controls
1607 lines (1513 loc) · 40.2 KB
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
# ==============================================
# Embeds Locale
# ==============================================
# NOTE: While configuring embed options, you can leave it as an empty string to not use the option or set it to anything you want.
# Options such as color and description may fallback to a default value since otherwise an error would be generated in some cases.
# By deleting an option entirely from this part of the config, the bot will try to fallback to a default value otherwise it will skip the option.
# For example, if you remove the thumbnail option, the bot will use the default thumbnail if available, otherwise no thumbnail will be added.
# The embed that is sent when the ticket creation is blocked due to being outside the working hours
workingHoursEmbed:
color: "#FF0000"
title: "Working Hours"
description: "Tickets are only open between {openingTime} and {closingTime}.\nThe current time now is {now}." # The message displayed when the ticket creation is blocked, use {openingTime} for the opening time, {closingTime} for the closing time and {now} for the current time
timestamp: true
URL: ""
image: ""
thumbnail: ""
footer:
text: ""
iconURL: ""
author:
name: ""
iconURL: ""
url: ""
# The embed that is sent when a ticket is created outside the working hours
outsideWorkingHoursEmbed:
color: "#FF0000"
title: "Outside Working Hours"
description: "You created a ticket outside of our working hours. Please be aware that our response time may be delayed.\nOur working hours for today are from {openingTime} to {closingTime}." # Use {openingTime} for the opening time, {closingTime} for the closing time
timestamp: true
URL: ""
image: ""
thumbnail: ""
footer:
text: ""
iconURL: ""
author:
name: ""
iconURL: ""
url: ""
# The embed that is sent when a new ticket is created, with the questions included
# For this embed, the options that you do not find here are most likely unique to each category and configured in the category settings in config.yml
ticketOpenEmbed:
title: "" # Keep it empty to use the author field as the title based on your configured title in the category settings
timestamp: true
URL: ""
image: ""
# thumbnail: ""
# footer:
# text: ""
# iconURL: ""
useMenu: false # Enable or disable using a select menu instead of buttons
menuPlaceholder: "Select an option" # The placeholder of the select menu if it's enabled
closeDescription: "Close this ticket." # The description of the close select menu option
claimDescription: "Claim this ticket." # The description of the claim select menu option
unclaimDescription: "Unclaim this ticket." # The description of the unclaim select menu option
# Log embed for newly created tickets
logTicketOpenEmbed:
color: "#2FF200"
title: "Ticket Logs | Ticket Created"
description: ""
timestamp: true
URL: ""
image: ""
# thumbnail: ""
# footer:
# text: ""
# iconURL: ""
author:
name: ""
iconURL: ""
url: ""
field_creator: "• Ticket Creator"
field_ticket: "• Ticket"
field_creation: "• Creation Time"
# New ticket embed that is sent to the user when they open a new ticket, directing them to it
newTicketEmbed:
color: "#2FF200"
title: "Ticket Created!"
description: "Your new ticket ({channel}) has been created, **{user}**!" # Use {channel} for the name of the new created ticket and {user} for the name of the user who created the ticket
timestamp: true
URL: ""
image: ""
thumbnail: ""
# footer:
# text: ""
# iconURL: ""
author:
name: ""
iconURL: ""
url: ""
# Blacklist command embed when it fails to blacklist a user or role
blacklistFailedEmbed:
color: "#2FF200"
title: ""
description: "**{target} ({target.tag})** is already in the blacklist." # Use {target} for the user or role such as @User, @Role and {target.tag} for the name of the user or role without it being mentioned such as User, Role.
timestamp: false
URL: ""
image: ""
thumbnail: ""
footer:
text: ""
iconURL: ""
author:
name: ""
iconURL: ""
url: ""
# Blacklist command embed when it is successful in blacklisting a user or role
blacklistSuccessEmbed:
color: "#2FF200"
title: ""
description: "**{target} ({target.tag})** has been added to the blacklist.\nReason: **{reason}**\nDuration: **{duration}**" # Use {target} for the user or role such as @User, @Role and {target.tag} for the name of the user or role without it being mentioned such as User, Role and {reason} for the reason, {duration} for the duration
timestamp: false
URL: ""
image: ""
thumbnail: ""
footer:
text: ""
iconURL: ""
author:
name: ""
iconURL: ""
url: ""
# Log embed for User and role blacklist command
logBlacklistEmbed:
color: "#2FF200"
title: "Ticket Logs | Target Blacklisted"
description: ""
timestamp: true
URL: ""
image: ""
# thumbnail: ""
# footer:
# text: ""
# iconURL: ""
author:
name: ""
iconURL: ""
url: ""
field_staff: "• Staff"
field_target: "• Target"
field_reason: "• Reason"
field_duration: "• Duration"
# Unblacklist command embed when it fails to unblacklist a user or role
unblacklistFailedEmbed:
color: "#2FF200"
title: ""
description: "**{target} ({target.tag})** is not currently in the blacklist." # Use {target} for the user or role such as @User, @Role and {target.tag} for the name of the user or role without it being mentioned such as User, Role.
timestamp: false
URL: ""
image: ""
thumbnail: ""
footer:
text: ""
iconURL: ""
author:
name: ""
iconURL: ""
url: ""
# Unblacklist command embed when it is successful in unblacklisting a user or role
unblacklistSuccessEmbed:
color: "#2FF200"
title: ""
description: "**{target} ({target.tag})** has been removed from the blacklist.\nReason: **{reason}**" # Use {target} for the user or role such as @User, @Role and {target.tag} for the name of the user or role without it being mentioned such as User, Role and {reason} for the reason
timestamp: false
URL: ""
image: ""
thumbnail: ""
footer:
text: ""
iconURL: ""
author:
name: ""
iconURL: ""
url: ""
# Log embed for User and role unblacklist command
logUnblacklistEmbed:
color: "#2FF200"
title: "Ticket Logs | Target Unblacklisted"
description: ""
timestamp: true
URL: ""
image: ""
# thumbnail: ""
# footer:
# text: ""
# iconURL: ""
author:
name: ""
iconURL: ""
url: ""
field_staff: "• Staff"
field_target: "• Target"
field_reason: "• Reason"
# Blacklist list command embed
blacklistListEmbed:
color: "#2FF200"
title: "Blacklisted {type} - Page {page}"
# Description is the content of the blacklist list command, so this option will not work for this embed.
# description: ""
timestamp: false
URL: ""
image: ""
thumbnail: ""
footer:
text: ""
iconURL: ""
author:
name: ""
iconURL: ""
url: ""
# User and role add embed
addEmbed:
ephemeral: false
color: "#2FF200"
title: ""
description: "Added **{target} ({target.tag})** to the ticket.\nReason: **{reason}**" # Use {target} for the user or role such as @User, @Role and {target.tag} for the name of the user or role without it being mentioned such as User, Role & {reason} for the reason.
timestamp: false
URL: ""
image: ""
thumbnail: ""
footer:
text: ""
iconURL: ""
author:
name: ""
iconURL: ""
url: ""
# Log embed for User and role add command
logAddEmbed:
color: "#2FF200"
title: "Ticket Logs | Target Added"
description: ""
timestamp: true
URL: ""
image: ""
# thumbnail: ""
# footer:
# text: ""
# iconURL: ""
author:
name: ""
iconURL: ""
url: ""
field_staff: "• Staff"
field_target: "• Target"
field_ticket: "• Ticket"
field_reason: "• Reason"
# Alert reply embed that will be sent in the ticket if the ticket creator is active and answered, when the alertReply feature is enabled
alertReplyEmbed:
color: "#2FF200"
title: "Alert Reply Notification"
description: "The user replied to the alert and seems to be available."
timestamp: true
URL: ""
image: ""
thumbnail: ""
footer:
text: ""
iconURL: ""
author:
name: ""
iconURL: ""
url: ""
# Alert command embed
alertEmbed:
color: "#2FF200"
title: "Ticket Close Notification"
description: "This ticket will be closed soon if no response has been received." # You can use {time} for the time (uses a discord timestamp in the format: in X time, such as "in 10 minutes") until the ticket gets automatically closed or deleted depending on how you configured the alertReply options at the top of the configuration.
timestamp: true
URL: ""
image: ""
thumbnail: ""
footer:
text: ""
iconURL: ""
author:
name: ""
iconURL: ""
url: ""
# Log embed for ticket alerts
logAlertEmbed:
color: "#FF2400"
title: "Ticket Logs | Ticket Alert"
description: ""
timestamp: true
URL: ""
image: ""
# thumbnail: ""
# footer:
# text: ""
# iconURL: ""
author:
name: ""
iconURL: ""
url: ""
field_staff: "• Alert Sent By"
field_user: "• Alert Sent To"
field_creator: "• Ticket Creator"
field_ticket: "• Ticket"
field_time: "• Time"
# Remind command embed
remindEmbed:
color: "#2FF200"
title: "Ticket Reminder"
description: "This is a friendly reminder regarding your open ticket. Please provide an update when you are available so we may assist you further." # You can use {user} for the name of the user who is being reminded
timestamp: true
URL: ""
image: ""
thumbnail: ""
footer:
text: ""
iconURL: ""
author:
name: ""
iconURL: ""
url: ""
# Log embed for ticket reminders
logRemindEmbed:
color: "#2FF200"
title: "Ticket Logs | Ticket Reminder"
description: ""
timestamp: true
URL: ""
image: ""
# thumbnail: ""
# footer:
# text: ""
# iconURL: ""
author:
name: ""
iconURL: ""
url: ""
field_staff: "• Reminder Sent By"
field_user: "• Reminder Sent To"
field_creator: "• Ticket Creator"
field_ticket: "• Ticket"
# User and role remove embed
removeEmbed:
ephemeral: false
color: "#FF0000"
title: ""
description: "Removed **{target} ({target.tag})** from the ticket.\nReason: **{reason}**" # Use {target} for the user or role such as @User, @Role and {target.tag} for the name of the user or role without it being mentioned such as User, Role & {reason} for the reason.
timestamp: false
URL: ""
image: ""
thumbnail: ""
footer:
text: ""
iconURL: ""
author:
name: ""
iconURL: ""
url: ""
# Log embed for User and role remove command
logRemoveEmbed:
color: "#FF0000"
title: "Ticket Logs | Target Removed"
description: ""
timestamp: true
URL: ""
image: ""
# thumbnail: ""
# footer:
# text: ""
# iconURL: ""
author:
name: ""
iconURL: ""
url: ""
field_staff: "• Staff"
field_target: "• Target"
field_ticket: "• Ticket"
field_reason: "• Reason"
# Embed that gets sent in a ticket if the ticket creator left the discord server
userLeftEmbed:
color: "#FF0000"
title: "User left the server"
description: "The user **{user}** left the server." # You can use {user} as a placeholder for the username of the member who left & \n for a new line
timestamp: true
URL: ""
image: ""
thumbnail: ""
# Keep those options commented out if you want to use the default values which are the name of the user who left and their icon URL.
# footer:
# text: ""
# iconURL: ""
author:
name: ""
iconURL: ""
url: ""
# Log embed for when a user left the server while having tickets open
logUserLeftEmbed:
color: "#FF0000"
title: "Ticket Logs | User Left"
description: ""
timestamp: true
URL: ""
image: ""
# thumbnail: ""
# footer:
# text: ""
# iconURL: ""
author:
name: ""
iconURL: ""
url: ""
field_user: "• Ticket Creator"
field_ticket: "• Ticket"
field_creation: "• Creation Time"
field_action: "• Automated Action"
field_claimedBy: "• Claimed By"
# Move command embed
moveEmbed:
ephemeral : false
color: "2FF200"
title: ""
description: "Moved this ticket to the **{category}** category." # Use {category} for the name of the category
timestamp: false
URL: ""
image: ""
thumbnail: ""
footer:
text: ""
iconURL: ""
author:
name: ""
iconURL: ""
url: ""
# Log embed for move command
logMoveEmbed:
color: "2FF200"
title: "Ticket Logs | Ticket Moved"
description: ""
timestamp: true
URL: ""
image: ""
# thumbnail: ""
# footer:
# text: ""
# iconURL: ""
author:
name: ""
iconURL: ""
url: ""
field_staff: "• Staff"
field_ticket: "• Ticket"
field_category: "• Category"
# Pin command embed
pinEmbed:
ephemeral : false
color: "2FF200"
title: ""
description: "This ticket has been pinned."
timestamp: false
URL: ""
image: ""
thumbnail: ""
footer:
text: ""
iconURL: ""
author:
name: ""
iconURL: ""
url: ""
# Log embed for pin command
logPinEmbed:
color: "#2FF200"
title: "Ticket Logs | Ticket Pinned"
description: ""
timestamp: true
URL: ""
image: ""
# thumbnail: ""
# footer:
# text: ""
# iconURL: ""
author:
name: ""
iconURL: ""
url: ""
field_staff: "• Staff"
field_ticket: "• Ticket"
# Priority add command embed
priorityAddEmbed:
ephemeral: false
color: "2FF200"
title: ""
description: "The priority of this ticket has been set to **{priority}**.\nReason: **{reason}**" # Use {priority} for the name of the priority, {reason} for the reason
timestamp: false
URL: ""
image: ""
thumbnail: ""
footer:
text: ""
iconURL: ""
author:
name: ""
iconURL: ""
url: ""
# Log embed for priority add command
logPriorityAddEmbed:
color: "#2FF200"
title: "Ticket Logs | Ticket Priority Added"
description: ""
timestamp: true
URL: ""
image: ""
# thumbnail: ""
# footer:
# text: ""
# iconURL: ""
author:
name: ""
iconURL: ""
url: ""
field_staff: "• Staff"
field_ticket: "• Ticket"
field_priority: "• Priority"
field_reason: "• Reason"
# Priority remove command embed
priorityRemoveEmbed:
ephemeral: false
color: "FF2400"
title: ""
description: "The priority of this ticket has been removed."
timestamp: false
URL: ""
image: ""
thumbnail: ""
footer:
text: ""
iconURL: ""
author:
name: ""
iconURL: ""
url: ""
# Log embed for priority remove command
logPriorityRemoveEmbed:
color: "#2FF200"
title: "Ticket Logs | Ticket Priority Removed"
description: ""
timestamp: true
URL: ""
image: ""
# thumbnail: ""
# footer:
# text: ""
# iconURL: ""
author:
name: ""
iconURL: ""
url: ""
field_staff: "• Staff"
field_ticket: "• Ticket"
# Rename command embed
renameEmbed:
ephemeral: false
color: "#2FF200"
title: ""
description: "This ticket has been renamed to **{name}**!" # Use {name} for the new channel name
timestamp: false
URL: ""
image: ""
thumbnail: ""
footer:
text: ""
iconURL: ""
author:
name: ""
iconURL: ""
url: ""
# Log embed for rename command
logRenameEmbed:
color: "#2FF200"
title: "Ticket Logs | Ticket Renamed"
description: ""
timestamp: true
URL: ""
image: ""
# thumbnail: ""
# footer:
# text: ""
# iconURL: ""
author:
name: ""
iconURL: ""
url: ""
field_staff: "• Staff"
field_oldname: "• Ticket Old Name"
field_newname: "• Ticket New Name"
# Topic command embed
topicEmbed:
ephemeral: false
color: "#2FF200"
title: ""
description: "The topic of this ticket has been changed to **{topic}**" # Use {topic} for the new channel topic
timestamp: false
URL: ""
image: ""
thumbnail: ""
footer:
text: ""
iconURL: ""
author:
name: ""
iconURL: ""
url: ""
# Log embed for topic command
logTopicEmbed:
color: "#2FF200"
title: "Ticket Logs | Ticket Topic Changed"
description: ""
timestamp: true
URL: ""
image: ""
# thumbnail: ""
# footer:
# text: ""
# iconURL: ""
author:
name: ""
iconURL: ""
url: ""
field_staff: "• Staff"
field_oldtopic: "• Ticket Old Topic"
field_newtopic: "• Ticket New Topic"
# Slowmode command embed
slowmodeEmbed:
ephemeral: false
color: "#2FF200"
title: ""
description: "A slowmode of **{time}** has been added to this ticket." # Use {time} for the time in hh mm ss format, example: 1h 5m 7s
timestamp: false
URL: ""
image: ""
thumbnail: ""
footer:
text: ""
iconURL: ""
author:
name: ""
iconURL: ""
url: ""
# Log embed for slowmode command
logSlowmodeEmbed:
color: "#2FF200"
title: "Ticket Logs | Ticket Slowmode"
description: ""
timestamp: true
URL: ""
image: ""
# thumbnail: ""
# footer:
# text: ""
# iconURL: ""
author:
name: ""
iconURL: ""
url: ""
field_staff: "• Staff"
field_ticket: "• Ticket"
field_slowmode: "• Slowmode"
# Transfer command embed
transferEmbed:
ephemeral: false
color: "#2FF200"
title: ""
description: "The ownership of this ticket has been transferred to **{user} ({user.tag})**." # Use {user} for the user such as @User and {user.tag} for the name of the user without it being mentioned such as User
timestamp: false
URL: ""
image: ""
thumbnail: ""
footer:
text: ""
iconURL: ""
author:
name: ""
iconURL: ""
url: ""
# Log embed for transfer command
logTransferEmbed:
color: "#2FF200"
title: "Ticket Logs | Ticket Creator Transferred"
description: ""
timestamp: true
URL: ""
image: ""
# thumbnail: ""
# footer:
# text: ""
# iconURL: ""
author:
name: ""
iconURL: ""
url: ""
field_staff: "• Staff"
field_ticket: "• Ticket"
field_transfer: "• Transfer Details"
# Claimed ticket embed
claimedEmbed:
color: "#2FF200"
title: "Ticket Claimed"
description: "This ticket has been claimed by {user}.\nThey will be assisting you shortly!" # Use {user} for the user such as @User
timestamp: true
URL: ""
image: ""
thumbnail: ""
# footer:
# text: ""
# iconURL: ""
author:
name: ""
iconURL: ""
url: ""
# The embed that is sent when a ticket is assigned to a staff member
assignedEmbed:
color: "#2FF200"
title: "Ticket Assigned"
description: "This ticket has been assigned to {user}.\nReason: **{reason}**\n\nThey will be assisting you shortly!" # Use {user} for the staff member being assigned the ticket, {reason} for the reason of the assignment and {assigner} for the name of the staff who assigned it.
timestamp: true
# Log embed for claiming tickets
logClaimedEmbed:
color: "#2FF200"
title: "Ticket Logs | Ticket Claimed"
description: ""
timestamp: true
URL: ""
image: ""
# thumbnail: ""
# footer:
# text: ""
# iconURL: ""
author:
name: ""
iconURL: ""
url: ""
field_staff: "• Staff"
field_ticket: "• Ticket"
# Log embed for assigned tickets
logAssignedEmbed:
color: "#2FF200"
title: "Ticket Logs | Ticket Assigned"
description: ""
timestamp: true
author:
name: ""
iconURL: ""
url: ""
field_staff: "• Staff"
field_ticket: "• Ticket"
field_assigner: "• Assigned By"
field_reason: "• Reason"
# Unclaimed ticket embed
unclaimedEmbed:
color: "#FF2400"
title: "Ticket Unclaimed"
description: "This ticket has been unclaimed by {user}." # Use {user} for the user such as @User
timestamp: true
URL: ""
image: ""
thumbnail: ""
# footer:
# text: ""
# iconURL: ""
author:
name: ""
iconURL: ""
url: ""
# The embed that is sent when a ticket gets unclaimed forcefully by a manager
unclaimedForcedEmbed:
color: "#FF2400"
title: "Ticket Unclaimed (Forced)"
description: "This ticket has been unclaimed from {user} by {unclaimer}.\nReason: **{reason}**" # Use {user} for the staff member being unclaimed from the ticket, {reason} for the reason of the unclaim and {unclaimer} for the name of the staff who unclaimed it.
timestamp: true
# Log embed for unclaiming tickets
logUnclaimedEmbed:
color: "#FF2400"
title: "Ticket Logs | Ticket Unclaimed"
description: ""
timestamp: true
URL: ""
image: ""
# thumbnail: ""
# footer:
# text: ""
# iconURL: ""
author:
name: ""
iconURL: ""
url: ""
field_staff: "• Staff"
field_ticket: "• Ticket"
# Close ticket embed
closeEmbed:
color: "#FF2400"
title: "Ticket Closed"
description: "This ticket was closed by **{user} ({user.tag})**\nReason: **{reason}**" # Use {user} for the username of the staff, {user.tag} to have the staff tagged and {reason} for the reason
timestamp: true
URL: ""
image: ""
thumbnail: ""
# footer:
# text: ""
# iconURL: ""
author:
name: ""
iconURL: ""
url: ""
reOpenButton: true # Enable or disable the re-open button/select menu option
transcriptButton: true # Enable or disable the transcript button/select menu option
deleteButton: true # Enable or disable the delete button/select menu option
useMenu: false # Enable or disable using a select menu instead of buttons
menuPlaceholder: "Select an option" # The placeholder of the select menu if it's enabled
reopenDescription: "Reopen this ticket." # The description of the re-open select menu option if it's enabled
transcriptDescription: "Generate a transcript of this ticket." # The description of the transcript select menu option if it's enabled
deleteDescription: "Delete this ticket." # The description of the delete select menu option if it's enabled
# Auto Close ticket embed
# Note that the settings from the above closeEmbed for buttons and menus are shared with the below autoCloseEmbed
autoCloseEmbed:
color: "#FF2400"
title: "Ticket Automatically Closed"
description: "This ticket was automatically closed by **{user} ({user.tag})**" # Use {user} for the username of the bot and {user.tag} to have the bot tagged
timestamp: true
URL: ""
image: ""
thumbnail: ""
# footer:
# text: ""
# iconURL: ""
author:
name: ""
iconURL: ""
url: ""
# Log embed for closing tickets
logCloseEmbed:
color: "#FF2400"
title: "Ticket Logs | Ticket Closed"
description: ""
timestamp: true
URL: ""
image: ""
# thumbnail: ""
# footer:
# text: ""
# iconURL: ""
author:
name: ""
iconURL: ""
url: ""
field_staff: "• Closed By"
field_user: "• Ticket Creator"
field_ticket: "• Ticket"
field_reason: "• Reason"
field_claimedBy: "Claimed By"
# Log embed for automatically closed tickets
logAutoCloseEmbed:
color: "#FF2400"
title: "Ticket Logs | Ticket Auto Closed"
description: ""
timestamp: true
URL: ""
image: ""
# thumbnail: ""
# footer:
# text: ""
# iconURL: ""
author:
name: ""
iconURL: ""
url: ""
field_staff: "• Auto Closed By"
field_user: "• Ticket Creator"
field_ticket: "• Ticket"
field_claimedBy: "Claimed By"
# Close request command embed
closeRequestEmbed:
color: "#FF2400"
title: "Ticket Close Request"
description: "**{user} ({user.tag})** has requested to have their ticket closed.\nReason: **{reason}**" # Use {user} for the username of the user, {user.tag} to have the user tagged and {reason} for the reason
timestamp: true
URL: ""
image: ""
thumbnail: ""
# footer:
# text: ""
# iconURL: ""
author:
name: ""
iconURL: ""
url: ""
# Reopen ticket embed
reopenEmbed:
color: "#2FF200"
title: "Ticket Re-Opened"
description: "This ticket has been re-opened by **{user} ({user.tag})**" # Use {user} for the username of the staff and {user.tag} to have the staff tagged
timestamp: true
URL: ""
image: ""
thumbnail: ""
# footer:
# text: ""
# iconURL: ""
author:
name: ""
iconURL: ""
url: ""
# Log embed for reopening tickets
logReopenEmbed:
color: "#2FF200"
title: "Ticket Logs | Ticket Re-Opened"
description: ""
timestamp: true
URL: ""
image: ""
# thumbnail: ""
# footer:
# text: ""
# iconURL: ""
author:
name: ""
iconURL: ""
url: ""
field_staff: "• Re-Opened By"
field_user: "• Ticket Creator"
field_ticket: "• Ticket"
# Delete ticket embed
deleteEmbed:
color: "#FF0000"
title: ""
description: "Deleting ticket in {time} seconds" # Use {time} for the time in seconds and {reason} for the reason
timestamp: false
URL: ""
image: ""
thumbnail: ""
footer:
text: ""
iconURL: ""
author:
name: ""
iconURL: ""
url: ""
# Auto Delete ticket embed
autoDeleteEmbed:
color: "#FF0000"