-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocalization.json
2796 lines (2796 loc) · 95.6 KB
/
localization.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
{
"slashCommands": {
"add": {
"description": {
"de": "Addiert zwei Zahlen",
"en": "Get the sum of two numbers"
},
"number1": {
"de": "Erste Zahl",
"en": "First number"
},
"number2": {
"de": "Zweite Zahl",
"en": "Second number"
}
},
"adminbewerbung": {
"description": {
"de": "Du willst auch eine coole rote Rolle? Hier kannst du dich bewerben!",
"en": "You want a cool red role too? Apply here!"
}
},
"allsky": {
"description": {
"de": "✨Beobachte den Himmel✨",
"en": "✨Observe the sky✨"
}
},
"avatar": {
"description": {
"de": "Zeigt dir den supercoolen Avatar eines Users",
"en": "Shows the profile picture of a user"
},
"user": {
"de": "Der Nutzer, dessen Avatar du sehen möchtest",
"en": "The user whose avatar you want to see"
}
},
"bettereval": {
"description": {
"de": "Führt Shell-Befehle aus",
"en": "Executes shell commands"
},
"code": {
"de": "Der Code, den du ausführen möchtest",
"en": "The code you want to execute"
}
},
"blacklist": {
"description": {
"de": "Gibt die Blacklist aus / fügt einen User hinzu",
"en": "Shows the blacklist / adds a user"
},
"user": {
"de": "Der User, den du zur Blacklist hinzufügen möchtest",
"en": "The user you want to add to the blacklist"
}
},
"caesar": {
"description": {
"de": "Verschlüsselt / Entschlüsselt eine Nachricht mit dem Caesar-Verschlüsselungsverfahren",
"en": "Encrypts / Decrypts a message using the Caesar cipher"
},
"text": {
"de": "Der Text, den du verschlüsseln möchtest",
"en": "The text you want to encrypt"
},
"key": {
"de": "Die Anzahl der Stellen, um die der Text verschoben werden",
"en": "The number of positions by which the text should be shifted"
},
"decrypt": {
"de": "Entschlüsseln?",
"en": "Decrypt?"
},
"specialchars": {
"de": "Dürfen Sonderzeichen verwendet werden? (Standard: Nein)",
"en": "May special characters be used? (Default: No)"
}
},
"clear": {
"description": {
"de": "Löscht die angegebene Anzahl an Nachrichten",
"en": "Deletes the specified number of messages"
},
"number": {
"de": "Die Anzahl der Nachrichten, die gelöscht werden sollen",
"en": "The number of messages to be deleted"
}
},
"close": {
"description": {
"de": "Schließt ein Ticket",
"en": "Closes a ticket"
}
},
"dm": {
"description": {
"de": "Sendet eine Nachricht an einen User",
"en": "Sends a message to a user"
},
"user": {
"de": "Der User, dem du schreiben möchtest",
"en": "The user you want to write to"
},
"content": {
"de": "Die Nachricht, die du senden möchtest",
"en": "The message you want to send"
}
},
"error": {
"description": {
"de": "Zugriff auf Fehlermeldungen",
"en": "Access to error messages"
},
"list": {
"description": {
"de": "Listet die letzten n Fehlermeldungen auf",
"en": "Lists the last n error messages"
},
"amount": {
"de": "Die Anzahl der Fehlermeldungen, die du sehen möchtest",
"en": "The number of error messages you want to see"
},
"id": {
"de": "Die ID der Fehlermeldung, die du sehen möchtest",
"en": "The ID of the error message you want to see"
}
},
"insert": {
"description": {
"de": "Fügt eine Fehlermeldung hinzu",
"en": "Adds an error message"
},
"message": {
"de": "Die Fehlermeldung, die du hinzufügen möchtest",
"en": "The error message you want to add"
},
"origin": {
"de": "Der Ursprung der Fehlermeldung",
"en": "The origin of the error message"
}
}
},
"eval": {
"description": {
"de": "Führt JavaScript-Code aus",
"en": "Executes JavaScript code"
},
"code": {
"de": "Der Code, den du ausführen möchtest",
"en": "The code you want to execute"
}
},
"games": {
"description": {
"de": "Spiele ein Spiel",
"en": "Play a game"
},
"game": {
"de": "Das Spiel, das du spielen möchtest",
"en": "The game you want to play"
}
},
"hackerman": {
"description": {
"de": "😎👨🏽💻",
"en": "😎👨🏽💻"
},
"text": {
"de": "Der Text, den du verschlüsseln möchtest",
"en": "The text you want to encrypt"
}
},
"help": {
"description": {
"de": "Öffnet das Hilfemenü",
"en": "Opens the help menu"
},
"command": {
"description": {
"de": "Zeigt Informationen zu einem bestimmten Befehl",
"en": "Shows information about a specific command"
},
"command": {
"de": "Der Befehl, zu dem du Informationen sehen möchtest",
"en": "The command you want to see information about"
}
},
"about": {
"description": {
"de": "Zeigt Informationen und Credits über den Bot",
"en": "Shows information and credits about the bot"
}
}
},
"kick": {
"description": {
"de": "Kickt einen User",
"en": "Kicks a user"
},
"user": {
"de": "Der User, den du kicken möchtest",
"en": "The user you want to kick"
},
"reason": {
"de": "Der Grund für den Kick",
"en": "The reason for the kick"
}
},
"lego": {
"description": {
"de": "Alle möglichen Infos zu LEGO-bezogenen Themen",
"en": "All kinds of information about LEGO-related topics"
},
"set": {
"description": {
"de": "Zeigt Informationen zu einem LEGO-Set",
"en": "Shows information about a LEGO set"
},
"query": {
"de": "Suchanfrage (z. B. die Setnummer, Begriffe & Themen, etc.",
"en": "Search query (e.g. the set number, keywords & themes, etc."
}
},
"theme": {
"description": {
"de": "Zeigt Informationen zu einem LEGO-Theme",
"en": "Shows information about a LEGO theme"
},
"theme": {
"de": "Theme (z. B. Star Wars, Technic, etc.",
"en": "Theme (e.g. Star Wars, Technic, etc.)"
}
},
"subtheme": {
"description": {
"de": "Alle Subthemes eines bestimmten Themes",
"en": "All subthemes of a specific theme"
},
"theme": {
"de": "Theme (z. B. Star Wars, Technic, etc.) - Anzeigen aller Themes mit /lego themes",
"en": "Theme (e.g. Star Wars, Technic, etc.) - Show all themes with /lego themes"
}
},
"instructions": {
"description": {
"de": "Zeigt Bauanleitungen zu einem LEGO-Set",
"en": "Shows building instructions for a LEGO set"
},
"setnumber": {
"de": "Setnummer (z. B. 75292)",
"en": "Set number (e.g. 75292)"
}
},
"images": {
"description": {
"de": "Zeigt Bilder zu einem LEGO-Set",
"en": "Shows images of a LEGO set"
},
"setnumber": {
"de": "Setnummer (z. B. 75292)",
"en": "Set number (e.g. 75292)"
}
},
"year": {
"description": {
"de": "Infos darüber, welche Sets eines Themes wie oft erschienen sind",
"en": "Information about how often sets of a theme have been released"
},
"theme": {
"de": "Theme (z. B. Star Wars, Technic, etc.) - Anzeigen aller Themes mit /lego themes",
"en": "Theme (e.g. Star Wars, Technic, etc.) - Show all themes with /lego themes"
}
},
"review": {
"description": {
"de": "Rezensionen von Brickset.com Nutzern zu einem spezifischen Set",
"en": "Reviews from Brickset.com users for a specific set"
},
"setnumber": {
"de": "Setnummer (z. B. 75292)",
"en": "Set number (e.g. 75292)"
}
},
"api": {
"description": {
"de": "Statistik für den API-Key des Bots",
"en": "Statistics for the bot's API key"
}
}
},
"log": {
"description": {
"de": "Zugriff auf Logeinträge",
"en": "Access to log entries"
},
"list": {
"description": {
"de": "Listet die letzten n Logeinträge auf",
"en": "Lists the last n log entries"
},
"amount": {
"de": "Die Anzahl der Logeinträge, die du sehen möchtest",
"en": "The number of log entries you want to see"
},
"id": {
"de": "Die ID des Logeintrags, den du sehen möchtest",
"en": "The ID of the log entry you want to see"
}
},
"insert": {
"description": {
"de": "Fügt einen Logeintrag hinzu",
"en": "Adds a log entry"
},
"message": {
"de": "Der Logeintrag, den du hinzufügen möchtest",
"en": "The log entry you want to add"
},
"modlog": {
"de": "Soll der Logeintrag im Modlog erscheinen?",
"en": "Should the log entry appear in the modlog?"
},
"origin": {
"de": "Der Ursprung des Logeintrags",
"en": "The origin of the log entry"
}
}
},
"lyrics": {
"description": {
"de": "Zeigt den Text eines Songs",
"en": "Shows the lyrics of a song"
},
"song": {
"de": "Der Song, dessen Text du sehen möchtest",
"en": "The song whose lyrics you want to see"
}
},
"maintenance": {
"description": {
"de": "Schaltet den Wartungsmodus ein / aus",
"en": "Turns maintenance mode on / off"
},
"maintenance": {
"de": "Soll der Wartungsmodus eingeschaltet werden?",
"en": "Should maintenance mode be turned on?"
},
"reason": {
"de": "Grund",
"en": "Reason"
}
},
"mc": {
"description": {
"de": "Zeigt Informationen zu einem Minecraft-Server",
"en": "Shows information about a Minecraft server"
},
"ip": {
"de": "Die IP-Adresse des Servers",
"en": "The IP address of the server"
},
"port": {
"de": "Der Port des Servers",
"en": "The port of the server"
}
},
"mute": {
"description": {
"de": "Mutet einen User",
"en": "Mutes a user"
},
"user": {
"de": "Der User, den du muten möchtest",
"en": "The user you want to mute"
},
"duration": {
"description": {
"de": "Die Dauer des Mutes",
"en": "The duration of the mute"
},
"choices": {
"permanent": {
"de": "Permanent",
"en": "Permanently"
},
"1min": {
"de": "1 Minute",
"en": "1 minute"
},
"5min": {
"de": "5 Minuten",
"en": "5 minutes"
},
"10min": {
"de": "10 Minuten",
"en": "10 minutes"
},
"30min": {
"de": "30 Minuten",
"en": "30 minutes"
},
"1h": {
"de": "1 Stunde",
"en": "1 hour"
},
"2h": {
"de": "2 Stunden",
"en": "2 hours"
},
"4h": {
"de": "4 Stunden",
"en": "4 hours"
},
"12h": {
"de": "12 Stunden",
"en": "12 hours"
},
"1d": {
"de": "1 Tag",
"en": "1 day"
},
"2d": {
"de": "2 Tage",
"en": "2 days"
},
"1w": {
"de": "1 Woche",
"en": "1 week"
},
"2w": {
"de": "2 Wochen",
"en": "2 weeks"
},
"1m": {
"de": "1 Monat",
"en": "1 month"
}
}
},
"reason": {
"de": "Der Grund für den Mute",
"en": "The reason for the mute"
}
},
"neko": {
"description": {
"de": "Zeigt dir ein zufälliges Katzenbild. Nur im Neko-Channel verfügbar!",
"en": "Shows you a random cat picture. Only available in the Neko channel!"
},
"type": {
"description": {
"de": "Der Typ des Bildes",
"en": "The type of the image"
},
"choices": {
"Hug": {
"de": "Umarmung",
"en": "Hug"
},
"Smug": {
"de": "Angeberisch",
"en": "Smug"
},
"Slap": {
"de": "Hauen",
"en": "Slap"
},
"Pat": {
"de": "Streicheln",
"en": "Pat"
},
"Waifu": {
"de": "Waifu",
"en": "Waifu"
},
"Feed": {
"de": "Füttern",
"en": "Feed"
},
"Cuddle": {
"de": "Kuscheln",
"en": "Cuddle"
}
}
}
},
"niceone": {
"description": {
"de": "Schaltet die Nice One Rolle eines Nutzers um",
"en": "Toggles a user's Nice One role"
},
"user": {
"de": "Der User, dessen Nice One Rolle du umschalten möchtest",
"en": "The user whose Nice One role you want to toggle"
}
},
"packages": {
"description": {
"de": "Zeigt alle installierten npm-Packages an",
"en": "Shows all installed npm packages"
}
},
"photo": {
"description": {
"de": "Sucht nach Fotos im Internet",
"en": "Searches for photos on the internet"
},
"query": {
"de": "Die Suchanfrage",
"en": "The search query"
},
"orientation": {
"description": {
"de": "Die Ausrichtung des Fotos",
"en": "The orientation of the images"
},
"choices": {
"Landscape": {
"de": "Querformat",
"en": "Landscape"
},
"Portrait": {
"de": "Hochformat",
"en": "Portrait"
},
"Square": {
"de": "Quadratisch",
"en": "Square"
}
}
},
"size": {
"description": {
"de": "Minimalgröße des Fotos",
"en": "Minimum size of the image"
},
"choices": {
"Large": {
"de": "Groß (24 MP)",
"en": "Large (24 MP)"
},
"Medium": {
"de": "Mittel (12 MP)",
"en": "Medium (12 MP)"
},
"Small": {
"de": "Klein (4 MP)",
"en": "Small (4 MP)"
}
}
},
"color": {
"description": {
"de": "Durchschnittliche Farbe des Fotos",
"en": "Average color of the image"
},
"choices": {
"red": {
"de": "Rot",
"en": "Red"
},
"orange": {
"de": "Orange",
"en": "Orange"
},
"yellow": {
"de": "Gelb",
"en": "Yellow"
},
"green": {
"de": "Grün",
"en": "Green"
},
"turquoise": {
"de": "Türkis",
"en": "Turquoise"
},
"blue": {
"de": "Blau",
"en": "Blue"
},
"violet": {
"de": "Violett",
"en": "Violet"
},
"pink": {
"de": "Rosa",
"en": "Pink"
},
"white": {
"de": "Weiß",
"en": "White"
},
"gray": {
"de": "Grau",
"en": "Gray"
},
"black": {
"de": "Schwarz",
"en": "Black"
},
"brown": {
"de": "Braun",
"en": "Brown"
}
}
},
"locale": {
"description": {
"de": "Sprache der Suchanfrage",
"en": "Language of the search query"
},
"choices": {
"English": {
"de": "Englisch",
"en": "English"
},
"Deutsch": {
"de": "Deutsch",
"en": "German"
},
"Francais": {
"de": "Französisch",
"en": "French"
},
"Italiano": {
"de": "Italienisch",
"en": "Italian"
},
"Espanol": {
"de": "Spanisch",
"en": "Spanish"
},
"Portugues": {
"de": "Portugiesisch",
"en": "Portuguese"
},
"Polski": {
"de": "Polnisch",
"en": "Polish"
},
"Dansk": {
"de": "Dänisch",
"en": "Danish"
}
}
}
},
"pi": {
"description": {
"de": "Zeigt die ersten n Stellen von Pi",
"en": "Shows the first n digits of Pi"
},
"start": {
"de": "Die Startstelle",
"en": "The starting position"
},
"digits": {
"de": "Die Anzahl der Stellen, die du sehen möchtest",
"en": "The number of digits you want to see"
},
"hexadecimal": {
"de": "Hexadezimal ausgeben?",
"en": "Output in hexadecimal?"
}
},
"ping": {
"description": {
"de": "Uptime, Ping, etc.",
"en": "Uptime, ping, etc."
}
},
"qr": {
"description": {
"de": "Generiert oder scannt einen QR-Code",
"en": "Generates or scans a QR code"
},
"generate": {
"description": {
"de": "Generiert einen QR-Code",
"en": "Generates a QR code"
},
"data": {
"de": "Der Text oder URL, der / die in den QR-Code geschrieben werden soll",
"en": "The text or URL to be written in the QR code"
}
},
"scan": {
"description": {
"de": "Scannt einen QR-Code",
"en": "Scans a QR code"
},
"qrcode": {
"de": "Der QR-Code, den du scannen möchtest",
"en": "The QR code you want to scan"
}
}
},
"rasus": {
"description": {
"de": "Rasus! 😳",
"en": "Rasus! 😳"
},
"user": {
"de": "Der User, den du rasusen möchtest",
"en": "The user to rasus"
}
},
"restart": {
"description": {
"de": "Startet den Bot neu",
"en": "Restarts the bot"
}
},
"rotateText": {
"description": {
"de": "Rotiert einen Text",
"en": "Rotates a text"
},
"text": {
"de": "Der Text, den du rotieren möchtest",
"en": "The text you want to rotate"
}
},
"server": {
"description": {
"de": "Zeigt Informationen über den Server",
"en": "Shows information about the server"
}
},
"serverlist": {
"description": {
"de": "Zeigt alle Server, in denen der Bot ist",
"en": "Shows all servers the bot is in"
}
},
"skin": {
"description": {
"de": "Zeigt den Skin eines Minecraft-Spielers",
"en": "Shows the skin of a Minecraft player"
},
"player": {
"de": "Spielername oder UUID",
"en": "Player name or UUID"
}
},
"spotify": {
"description": {
"de": "Infos darüber, was jemand gerade auf Spotify hört",
"en": "Information about what someone is currently listening to on Spotify"
},
"user": {
"de": "Der User, dessen Spotify-Status du sehen möchtest",
"en": "The user whose Spotify status you want to see"
}
},
"status": {
"description": {
"de": "Setzt einen Bot-Status",
"en": "Sets a bot status"
},
"presence": {
"description": {
"de": "Der Status-Typ",
"en": "Presence type"
},
"choices": {
"Online": {
"de": "Online",
"en": "Online"
},
"Idle": {
"de": "Abwesend",
"en": "Idle"
},
"DND": {
"de": "Bitte nicht stören",
"en": "Do not disturb"
},
"Invisible": {
"de": "Unsichtbar",
"en": "Invisible"
},
"Streaming": {
"de": "Streaming",
"en": "Streaming"
}
}
},
"text": {
"de": "Der Text, der im Status angezeigt werden soll",
"en": "The text to be displayed in the status"
},
"activity": {
"description": {
"de": "Status-Aktivität",
"en": "Status activity"
},
"choices": {
"Playing": {
"de": "Spielt xxx",
"en": "Playing"
},
"Listening": {
"de": "Hört xxx zu",
"en": "Listening to xxx"
},
"Watching": {
"de": "Schaut xxx",
"en": "Watching"
},
"Competing": {
"de": "Tritt an in xxx",
"en": "Competing in xxx"
}
}
}
},
"test": {
"description": {
"de": "Testbefehl (nur für Entwickler)",
"en": "Test command (only for developers)"
}
},
"text": {
"description": {
"de": "Lässt den Bot einen Text senden",
"en": "Lets the bot send a text"
},
"text": {
"de": "Der Text, den der Bot senden soll",
"en": "The text the bot should send"
},
"channel": {
"de": "Der Kanal, in dem der Bot den Text senden soll",
"en": "The channel in which the bot should send the text"
}
},
"tp": {
"description": {
"de": "Infos zu meinem Texture Pack",
"en": "Information about my texture pack"
}
},
"unmute": {
"description": {
"de": "Unmutet einen User",
"en": "Unmutes a user"
},
"user": {
"de": "Der User, den du unmuten möchtest",
"en": "The user you want to unmute"
},
"reason": {
"de": "Der Grund für den Unmute",
"en": "The reason for the unmute"
}
},
"user": {
"description": {
"de": "Zeigt Informationen über einen User",
"en": "Shows information about a user"
},
"user": {
"de": "Der User, über den du Informationen sehen möchtest",
"en": "The user you want to see information about"
}
}
},
"content": {
"add": {
"nan": {
"de": "Das Ergebnis ist keine Zahl!",
"en": "The result is not a number!"
},
"sum": {
"de": "Die Summe ist: `{sum}`",
"en": "The sum is: `{sum}`"
}
},
"adminbewerbung": {
"embed": {
"title": {
"de": "Adminbewerbung",
"en": "Admin application"
},
"description": {
"de": "Bitte sende [hier]({link}) deine Bewerbung ein und wir werden sie schnellstmöglich bearbeiten.",
"en": "Please submit your application [here]({link}) and we will process it as soon as possible."
}
}
},
"allsky": {
"embed": {
"title": {
"de": "Allsky",
"en": "Allsky"
},
"fields": {
"location": {
"name": {
"de": "Standort:",
"en": "Location:"
},
"value": {
"de": "Sonneberg, Thüringen",
"en": "Sonneberg, Thuringia"
}
},
"source": {
"name": {
"de": "Bilder von:",
"en": "Images from:"
},
"value": {
"de": "[AllSky7.net](https://allsky7.net/)",
"en": "[AllSky7.net](https://allsky7.net/)"
}
}
}
},
"preventOthers": {
"de": "Nur `{user}` kann diesen Button verwenden!",
"en": "Only `{user}` can use this button!"
},
"editEmbed": {
"title": {
"de": "Allsky X={x} Y={y}",
"en": "Allsky X={x} Y={y}"
}
}
},
"avatar": {
"error": {
"de": "Es gab einen Fehler beim Abrufen des Avatars.",
"en": "There was an error while fetching the avatar."
}
},
"bettereval": {
"exitCode": {
"de": "Beendet mit Code",
"en": "Exited with code"
}
},
"blacklist": {
"noEntries": {
"de": "Es sind keine Nutzer auf der Blacklist.",
"en": "There are no users on the blacklist."
},
"embed": {
"title": {
"de": "Blacklist",
"en": "Blacklist"
}
},
"error": {
"de": "Es ist ein Fehler aufgetreten.",
"en": "An error occurred."
},
"removed": {
"de": "{user} wurde durch {executor} von der Blacklist entfernt.",
"en": "{user} was removed from the blacklist by {executor}."
},
"replyRemoved": {
"de": "`{user}` wurde von der Blacklist entfernt.",
"en": "`{user}` was removed from the blacklist."
},
"added": {
"de": "{user} wurde durch {executor} zur Blacklist hinzugefügt.",
"en": "{user} was added to the blacklist by {executor}."
},
"replyAdded": {
"de": "`{user}` wurde zur Blacklist hinzugefügt.",
"en": "`{user}` was added to the blacklist."
},
"notAllowed": {
"de": "`{user}` kann nicht zur Blacklist hinzugefügt werden.",
"en": "`{user}` cannot be added to the blacklist."
}
},
"caesar": {},
"clear": {
"wrongAmount": {
"de": "Bitte gib eine Zahl von `1` - `100` an.",
"en": "Please specify a number from `1` - `100`."
},
"modLog": {
"singular": {
"de": "{user} hat {amount} Nachricht in {channel} gelöscht.",
"en": "{user} deleted {amount} message in {channel}."
},
"plural": {
"de": "{user} hat {amount} Nachrichten in {channel} gelöscht.",
"en": "{user} deleted {amount} messages in {channel}."
}
},
"error": {
"singular": {