forked from Henrik-3/valorant-labs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtranslations.json
2049 lines (2049 loc) · 154 KB
/
translations.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
{
"de": {
"errors": {
"cmdundefined_title": "Befehl existiert nicht",
"cmdundefined_desc": "Benutze **/help** um alle Befehle zu sehen oder klicke unten auf den Link um alle Befehle einzusehen",
"cmdblacklist_title": "Ich habe keine Berechtigung hier zu schreiben",
"cmdblacklist_desc": "Wenn du denkst dies ist ein Fehler, kontaktiere den Server Administrator. Diese Nachricht wird in **7.5** Sekunden gelöscht",
"deprecation_title": "Dieser Befehl wird nicht mehr unterstützt",
"deprecation_desc": "Durch eine Discord Änderung [Genauere Infos hier](https://support-dev.discord.com/hc/en-us/articles/4404772028055-Message-Content-Access-Deprecation-for-Verified-Bots) wird <@702201518329430117> nach August 2022 keine Nachrichten mehr senden können. Um frühzeitig auf das Update vorbereitet zu sein, werden neue Features nur noch über die Slash Commands veröffentlich. Zudem wurden bereits einige Befehle auf Slash Commands limitiert, aktuell folgende:\n- v?agent\n- v?api\n- v?blacklist\n- v?botinfo\n- v?game\n- v?link\n- v?map\n- v?patch\n- v?status\n- v?settings\n- v?vote\n- v?weapon\n- v?weapons\n\nBitte nutze deswegen den Slash Command dieses Befehls"
},
"response": {
"501": {
"title": "Status 501 | API Version nicht implementiert",
"default": "Bei einer Abfrage wurde eine Anfrage an eine API gesendet, welche nicht implementiert ist. Wahrscheinlich ist das Problem bekannt, trotzdessen kannst du es gerne auf dem Support Server melden"
},
"404": {
"title": "Status 404 | Nicht gefunden",
"default": "Der angegebene Username und die angegebene Tagline wurden nicht gefunden. Solltest du deinen Account verlinkt haben, aktualisiere ihn mit `/link add`, ansonsten überprüfe on die RiotID korrekt eingegeben wurde",
"game": "Das angegebene Spiel wurde nicht gefunden",
"map": "Die angegebene Karte wurde nicht gefunden",
"agent": "Der angegebene Agent wurde nicht gefunden",
"patch": "Der angefragte Patch wurde nicht gefunden",
"weapon": "Die angegebene Waffe wurde nicht gefunden"
},
"503": {
"title": "Status 503 | Server temporär nicht verfügbar",
"default": "Der Ziel Server kann die Anfrage aktuell nicht verarbeiten, bitte versuche es später noch einmal"
},
"504": {
"title": "Status 504 | Server temporär nicht verfügbar",
"default": "Der Ziel Server kann die Anfrage aktuell nicht verarbeiten, bitte versuche es später noch einmal"
},
"429": {
"title": "Status 429 | Bot Anfragelimit",
"default": "Der Bot wird aktuell zu stark genutzt und hat nun einen Cooldown, bitte warte ein wenig und versuche es erneut"
},
"1015": {
"title": "Status 1015 | Bot Anfragelimit",
"default": "Der Bot wird aktuell zu stark genutzt und hat nun einen Cooldown, bitte warte ein wenig und versuche es erneut"
},
"403": {
"title": "Status 403 | Keine Berechtigung",
"default": "Der Bot hat keine Zugriff auf diese Datenquelle. Meistens tritt dieser Fehler bei Spielupdates auf wenn die Server heruntergefahren sind"
},
"400": {
"title": "Status 400 | Anfragefehler",
"default": "Bei der Anfrage ist ein Fehler aufgetreten, meistens liegt dies an der Formatierung der Anfrage"
},
"410": {
"title": "Status 410 | API nicht mehr verfügbar",
"default": "Der angefragte API Pfad ist nicht mehr verfügbar, dies ist ein Entwicklerfehler, bitte melde diesen fehler auf dem Support Server"
},
"409": {
"title": "Status 409 | Konflikt",
"default": "Bei der Anfrage ist ein Fehler aufgetreten, bitte versuche es später nocheinmal"
},
"408": {
"title": "Status 408 | Timeout",
"default": "Die Anfrage hat zu lange gedauert, bitte versuche es später nocheinmal"
},
"451": {
"title": "Status: 451 | Dieser Account ist privat",
"description": "Insofern dies dein Account ist, drücke auf den `Einloggen` Button unter dieser Nachricht um VALORANT LABS die Berechtigung zu geben Match Daten von dir sammeln, dafür musst du dich über RSO (Riot Sign On) einloggen. Nachdem du dich eingeloggt hast, sollte sich diese Nachricht automatisch aktualisieren. Insofern dies nicht der Fall ist, nutze einfach den `Aktualisieren` Button unter dieser Nachricht. Insofern du bereits Stats bei tracker.gg hast und dort eingeloggt bist wird der Bot Versuchen diese zu übernehmen.",
"component_login": "Einloggen",
"component_update": "Aktualisieren",
"component_rank": "MMR"
},
"500": {
"title": "Status 500 | Internal Server Error",
"default": "Es ist ein Interner Server Fehler aufgetreten, bitte versuche es später nocheinmal"
}
},
"agent": {
"agentunknown_title": "Agent nicht gefunden",
"agentunknown_desc": "Bitte stelle sicher das der Agent existiert. Solltest du denken dies ist ein Bug, melde dich bitte auf dem Support Server",
"agentrole": "Rolle"
},
"autorole": {
"send_desc": "Um deine Ingame Rolle zu erhalten, klicke auf den Button `Hinzufügen`. Dir wird daraufhin ein Link angezeigt, klicke dann auf diesen. Du wirst im Anschluss zu der Riot Games Login Seite weitergeleitet.\n\n**Wichtig:** <@702201518329430117> sieht deine Login Daten nicht, auf dem Server erhalten wir ausschließlich folgende Beispiel Daten:\n```{puuid: '000000000-000000000-0000000000000000000000000000000000000000000000000000000000', gameName: 'Henrik3', tagLine: 'VALO'}```\nMit dem Button `Aktualisieren` kannst du deine Rolle aktualisieren solltest du Beispielsweise aufgestiegen sein.\n\nMit dem Button `Entfernen` entfernst du deine Rolle wieder",
"created_title": "Deine AutoRole Nachricht wurde erstellt",
"created_desc": "Du kannst diese Nachricht beliebig bearbeiten, in dem du Rechtsklick auf die Nachricht machst, Apps auswählst und dann auf `Edit AutoRole` klickst. Im Anschluss öffnet sich ein Fenster mit welchem du die Nachricht bearbeiten kannst",
"correct": "✅ Korrekt Konfiguriert",
"wrong": "⛔ Noch nicht konfiguriert",
"member_error_title": "Keine Member Berechtigung",
"member_error_desc": "Der Bot hat keine Berechtigung dir diese Rollen geben zu können, bitte stelle sicher das der Bot ausreichend Berechtigungen hat um dir die Rolle geben zu können.",
"roles_error_title": "Keine Rollen Berechtigung",
"roles_error_desc": "Der Bot hat nicht genügend Rechte um die folgenden Rollen an User vergeben zu können. Bitte stelle sicher das die Rollen unter der Bot Rollen angeordnet sind",
"message_send_error_title": "Keine Channel Berechtigungen",
"message_send_error_desc": "Bitte stelle sicher das <@702201518329430117> die `SEND MESSAGES` Permission besitzt",
"message_edit_error_title": "Keine AutoRole Nachricht",
"message_edit_error_desc": "Dies ist keine AutoRole Nachricht, somit kann sie nicht bearbeitet werden",
"autorole_permission_title": "Keine Berechtigung",
"autorole_permission_desc": "Bitte stelle sicher das <@702201518329430117> die `MANAGE ROLES` Permission besitzt",
"role_given_title": "Rolle verteilt",
"role_given_desc": "Deine entsprechende Ingame Rolle wurde dir vergeben, eventuell kann es bis zu einer Minute dauern bis du deine Rolle erhältst aufgrund von Discord API Limitierungen",
"role_removed_title": "Rolle entfernt",
"role_removed_desc": "Deine Ingame Rolle wurde dir wieder entfernt. Solltest du sie wieder hinzufügen wollen klicke einfach auf `Aktualisieren`",
"add": "Hinzufügen",
"update": "Aktualisieren",
"remove": "Entfernen",
"modal_title": "Titel",
"modal_desc": "Beschreibung",
"modal_color": "Farbe",
"modal_edit_title": "Nachricht bearbeiten",
"message_edit_title": "Nachricht bearbeitet",
"message_edit_desc": "Die Nachricht wurde erfolgreich geändert"
},
"blacklist": {
"blacklistinactive_title": "Blacklist ist nicht aktiv",
"blacklistinactive_desc": "Aktiviere die Blacklist mit: /settings blacklist true",
"blacklistperms_title": "Du darfst diesen Befehl nicht nutzen",
"blacklistperms_desc": "Bitte stelle sicher dass du die `MANAGE_GUILD` Berechtigungen hast",
"blacklistoverview_title": "Kanal Blacklist Übersicht",
"blacklistoverview_desc": "Benutze einer der folgenden Befehle \n\n/blacklist add #channel \n/blacklist remove #channel \n\nGeblacklistede Channel: \n${cchannel ? cchannel : 'Keine Kanäle'}",
"blacklistalreadyadded_title": "Bereits auf der Liste",
"blacklistalreadyadded_desc": "Der angegebene Channel ist bereits in der Liste, du kannst ihn nicht nochmal hinzufügen",
"blacklistalreadyremoved_title": "Nicht auf der Liste",
"blacklistalreadyremoved_desc": "Der angegebene Channel befindet sich nicht in der Liste, du kannst ihn nicht nochmal entfernen",
"blacklistadded_title": "Channel zur Liste hinzugefügt",
"blacklistchannels": "Geblacklistete Channel: \n${uchannel ? uchannel : 'Keine Kanäle'}",
"blacklistremoved_title": "Channel aus der Liste entfernt"
},
"botinfo": {
"title": "Bot Informationen zu VALORANT LABS"
},
"feedback": {
"title": "Gebe dein Feedback ab",
"label": "Feedback",
"placeholder": "Bitte gebe hier dein Feedback ein",
"send_title": "Feedback gesendet",
"send_desc": "Vielen Dank für dein Feedback, dieses wurde dem Entwickler zugestellt und schnellstmöglich angeschaut"
},
"game": {
"unknown_title": "Unbekanntes Spiel",
"unknown_desc": "Bitte stelle sicher das der Game Key existiert und richtig eingegeben wurde",
"loading_title": "Bitte warten...",
"loading_desc": "Dein Ausgewähltes Spiel wird generiert, bitte warte einen Moment"
},
"link": {
"clink_title": "Deine Aktuelle Verlinkung",
"clink_desc": "Dein Verlinkter Account heißt wie folgt:",
"nolink_title": "Kein Verlinkter Account",
"nolink_desc": "Du hast aktuell noch keinen Verlinkten Account. Klicke auf den Button `Verknüpfen` unter dieser Nachricht, um deinen Discord Account mit einem VALORANT Account zu verlinken",
"removelink_title": "Verlinkung entfernt",
"removelink_desc": "Deine Verlinkung wurde erfolgreich entfernt",
"generate_link": "Verknüpfen",
"link_generated_title": "Dein Login Link wurde generiert",
"link_generated_desc": "Bitte klicke auf den Folgenden Link um den Prozess zu starten. Hinweis: Dieser Link ist nur eine Stunde gültig.\n\n"
},
"mmr": {
"429_title": "Top.gg Überprüfungslimit",
"429_desc": "Das Limit zur Vote Überprüfung bei top.gg wurde erreicht, bitte warte eine bis zwei Minuten und versuche es nocheinmal",
"500_title": "Fehler bei der Vote Überprüfung",
"500_desc": "Bei der Überprüfung ob du gevoted hast ist ein Fehler aufgetreten, bitte versuche es in Kürze nochmal...",
"not_voted_title": "Du hast noch nicht gevoted",
"not_voted_desc": "Bitte vote für den Bot auf top.gg (Klicke auf den Button unter dieser Nachricht um zu top.gg zu gelangen) um diesen Befehl für die nächsten 24h nutzen zu können",
"no_link_title": "Keine Riot ID angegeben oder du kein verlinkter Account",
"no_link_desc": "Hier sind alle verfügbaren Commands",
"base": "Zeigt deine MMR Daten insofern du deinen Discord Account mit deinem Riot Account über den /link Befehl verknüpft hast",
"options": "Zeigt die MMR Daten des angegebenen Accounts",
"loading_title": "Bitte warten...",
"loading_desc": "Die MMR Daten der ausgewählten Season werden geladen, bitte warte einen Moment",
"no_rank_title": "Aktuell hast du kein Rang",
"no_rank_desc": "Du hast aktuell keinen Rang oder dein letztes Ranked Game ist zu lange her. Bitte Spiele ein gewertetes Spiel und versuche es anschließend erneut."
},
"settings": {
"perms_title": "Keine Berechtigung",
"perms_desc": "Dir fehlt die `Manage Guild` Berechtigung. Falls du denkst dies ist ein Fehler kontaktiere den Server Administrator",
"imggeneration_title": "Bitte warte einen Moment",
"imggeneration_desc": "Das Beispielbild mit dem angegebenen Bild für den ausgewählten Bildtyp wird generiert, bitte warte einen Moment. Du kannst im Anschluss auswählen ob die Konfiguration gespeichert werden soll oder nicht.",
"imggenerated_title": "Bild erfolgreich generiert",
"imggenerated_desc": "Hier siehst du das fertige Bild so wie sie beim Benutzen des Befehles aussehen würde. Sollten das Bild wie in deiner Vorstellung aussehen, klicke unten auf den grünen Knopf. Sollten das Bild nicht so aussehen wie du es möchtest, klicke auf den Roten Knopf und lade ein anderes Bild hoch",
"imggenerated_label_accept": "Speichern",
"imggenerated_label_deny": "Abbrechen",
"not_set": "Nicht Konfiguriert"
},
"status": {
"noerrors": "Es wurden keine Fehler auf dem Cluster gefunden",
"postedat": "Erstellt am:",
"platforms": "Platformen betroffen:",
"type": "Problemtyp"
},
"stats": {
"missing_matches_title": "Einige Matches fehlen aktuell noch",
"missing_matches_desc": "Die fehlenden Matches werden im Hintergrund heruntergeladen und verarbeitet. Sobald dies abgeschlossen ist, wird das Bild aktualisiert",
"invalidriotid_title": "Fehlerhafte Riot ID",
"invalidriotid_desc": "Die angegebene Riot ID ist Fehlerhaft. Bitte stelle sicher das du ebenfalls deinen Tag und nicht nur den Namen angegeben hast.\n\nFehlerhafte Riot ID: Henrik3\nKorrekte Riot ID: Henrik3#VALO",
"noriotid_title": "Keine Riot ID angegeben",
"noriotid_desc": "Du hast sowohl keinen Verlinkten Account, als auch keinen namen angegeben. Bitte verlinke dich mit `/link add` oder gebe eine Riot ID an",
"game_select": "Wähle ein Spiel aus"
},
"vote": {
"title": "Vote für uns auf top.gg",
"desc": "Durch das Voten erhältst du unter anderem Zugriff auf den `/mmr` Befehl und unterstützt den Bot mit deinem Vote"
},
"weapon": {
"name": "Waffen",
"cost": "Preis",
"magazinsize": "Magazingröße",
"penetration": "Durchschussstärke",
"firerate": "Feuerrate",
"firerate_zoom": "Feuerrate (Zoom)",
"zoom": "Zoom",
"head": "Kopfschuss",
"body": "Körperschuss",
"leg": "Beinschuss",
"rangedamage": "Kopfschuss: ${String(cweapon.weaponStats.damageRanges[i].headDamage)} | Körperschuss: ${String(cweapon.weaponStats.damageRanges[i].bodyDamage)} | Beinschuss: ${String(cweapon.weaponStats.damageRanges[i].legDamage)}",
"mweapons": "Preis: ${weapons.shopData != null ? String(weapons.shopData.cost) : 'Free'}"
},
"cmdurl": "https://valorantlabs.xyz/?scrollto=commands&lang=de",
"cmd": "Befehle",
"help_title": "Hilfe Übersicht",
"help_desc": "Auf unserer neuen Website findest du in allem verfügbaren Übersetzungen die Hilfsübersicht",
"locale": "de_DE",
"moment": "de",
"patchurl": "https://api.henrikdev.xyz/valorant/v1/website/de-de?filter=patch_notes",
"statusurl": "https://api.henrikdev.xyz/valorant/v1/status/eu",
"support": "Support",
"valorant_api_lang": "de-DE",
"websiteurl": "https://api.henrikdev.xyz/valorant/v1/website/de-de"
},
"en-gb": {
"errors": {
"cmdundefined_title": "Command does not exist",
"cmdundefined_desc": "Use **/help** to see all commands or click on the link below to see all commands",
"cmdblacklist_title": "I do not have permission to write here",
"cmdblacklist_desc": "If you think this is an error, contact the server administrator. This message will be deleted in **7.5** seconds.",
"deprecation_title": "This command is no longer supported",
"deprecation_desc": "Due to a Discord change [More detailed info here](https://support-dev.discord.com/hc/en-us/articles/4404772028055-Message-Content-Access-Deprecation-for-Verified-Bots), <@702201518329430117> will no longer be able to send messages after August 2022. To be prepared early for the update, new features will only be released via Slash Commands. In addition, some commands have already been limited to slash commands, currently the following:\n- v?agent\n- v?api\n- v?blacklist\n- v?botinfo\n- v?game\n- v?link\n- v?map\n- v?patch\n- v?status\n- v?settings\n- v?vote\n- v?weapon\n- v?weapons\nPlease therefore use the slash command of this command"
},
"response": {
"501": {
"title": "Status 501 | API Version not implemented",
"default": "A query was sent to an API which is not implemented. Probably the problem is known, but you are welcome to report it on the support server."
},
"404": {
"title": "Status 404 | Not found",
"default": "The specified username and tagline were not found. If you have linked your account, update it with `/link add`, otherwise check if the RiotID was entered correctly.",
"game": "The requested game was not found",
"map": "The requested map was not found",
"agent": "The requested agent was not found",
"patch": "The requested patch was not found",
"weapon": "The requested weapon was not found"
},
"503": {
"title": "Status 503 | Server temporary not available",
"default": "The destination server cannot process the request at the moment, please try again later"
},
"504": {
"title": "Status 504 | Server temporary not available",
"default": "The destination server cannot process the request at the moment, please try again later"
},
"429": {
"title": "Status 429 | Bot Rate Limit",
"default": "The bot is currently overused and now has a cool down, please wait a bit and try again"
},
"1015": {
"title": "Status 1015 | Bot Rate Limit",
"default": "The bot is currently overused and now has a cool down, please wait a bit and try again"
},
"403": {
"title": "Status 403 | Missing Permission",
"default": "The bot does not have access to this data source. Most often this error occurs during game updates when the servers are down"
},
"400": {
"title": "Status 400 | Request error",
"default": "An error occurred during the request, usually this is due to the formatting of the request"
},
"410": {
"title": "Status 410 | API not available",
"default": "The requested API path is no longer available, this is a developer error, please report this error on the support server"
},
"409": {
"title": "Status 409 | Conflict",
"default": "An error occurred during the request, please try again later"
},
"408": {
"title": "Status 408 | Timeout",
"default": "The request took too long, please try again later"
},
"451": {
"title": "Status: 451 | This account is private",
"description": "If this is your account, press the `Log In` button below this message to give VALORANT LABS permission to collect match data from you, for which you will need to log in via RSO (Riot Sign On). After you have logged in, this message should update automatically. If it doesn't, just use the `Refresh` button below this message. If you already have stats at tracker.gg and are logged in there, the bot will try to take them over.",
"component_login": "Log In",
"component_update": "Refresh",
"component_rank": "MMR"
},
"500": {
"title": "Status 500 | Internal Server Error",
"default": "An internal server error has occurred, please try again later."
}
},
"agent": {
"agentunknown_title": "Agent not found",
"agentunknown_desc": "Please make sure that the agent exists. If you think this is a bug, please report to the support server",
"agentrole": "Role"
},
"autorole": {
"send_desc": "To get your ingame role, click on the `Add` button. You will be shown a link, click on it. You will be redirected to the Riot Games login page. \n\n**Important:** <@702201518329430117> does not see your login data, on the server we only get the following example data:\n```{puuid: '000000000-000000000-000000000000000000000000000000000000000000', gameName: 'Henrik3', tagLine: 'VALO'}```\nWith the button `Update` you can update your role if you should for example be promoted.\nUse the button `Remove` to remove your role again.",
"created_title": "Your AutoRole message was created",
"created_desc": "You can edit this message as you wish by right-clicking on the message, selecting Apps and then clicking on 'Edit AutoRole'. A window will then open where you can edit the message",
"correct": "✅ Correctly configured",
"wrong": "⛔ Not yet configured",
"member_error_title": "No member permission",
"member_error_desc": "The bot has no permission to give you these roles, please make sure the bot has enough permissions to give you the role.",
"message_send_error_title": "No channel permission",
"message_send_error_desc": "Please make sure that <@702201518329430117> has the `SEND MESSAGES` permission",
"roles_error_title": "No role permission",
"roles_error_desc": "The bot does not have enough rights to assign the following roles to users. Please make sure that the roles are arranged under the bot roles",
"message_edit_error_title": "No AutoRole message",
"message_edit_error_desc": "This is not an AutoRole message, so it cannot be edited",
"autorole_permission_title": "No permission",
"autorole_permission_desc": "Please make sure that <@702201518329430117> has the `MANAGE ROLES` permission.",
"role_given_title": "Role given",
"role_given_desc": "Your ingame role has been assigned to you, it may take up to a minute to receive your role due to Discord API limitations.",
"role_removed_title": "Role removed",
"role_removed_desc": "Your ingame role has been removed again. If you want to add it again just click on `Update`.",
"add": "Add",
"update": "Update",
"remove": "Remove",
"modal_title": "Title",
"modal_desc": "Description",
"modal_color": "Color",
"modal_edit_title": "Edit message",
"message_edit_title": "Message edited",
"message_edit_desc": "The message has been successfully modified"
},
"blacklist": {
"blacklistinactive_title": "Blacklist not active",
"blacklistinactive_desc": "Activate the blacklist with: /settings blacklist true",
"blacklistperms_title": "You are not allowed to use this command",
"blacklistperms_desc": "Please make sure that you have the `MANAGE_GUILD` permission",
"blacklistoverview_title": "Channel blacklist overview",
"blacklistoverview_desc": "Use one of the following commands:\n\n/blacklist add #channel \n/blacklist remove #channel \n\nBlacklisted Channel: \n${cchannel ? cchannel : 'No channels'}",
"blacklistalreadyadded_title": "Channel is already in the list",
"blacklistalreadyadded_desc": "The specified channel is already in the list, you cannot add it again",
"blacklistalreadyremoved_title": "Channel not in the list",
"blacklistalreadyremoved_desc": "The specified channel is not in the list, you cannot remove it again",
"blacklistadded_title": "Add channel to the list",
"blacklistchannels": "Blacklisted channel: \n${uchannel ? uchannel : 'No channels'}",
"blacklistremoved_title": "Removed channel from the list"
},
"botinfo": {
"title": "Bot information about VALORANT LABS"
},
"feedback": {
"title": "Give Feedback",
"label": "Feedback",
"placeholder": "Please enter your feedback here",
"send_title": "Feedback send",
"send_desc": "Thank you for your feedback, this was sent to the developer and looked at as soon as possible"
},
"game": {
"unknown_title": "Unknown game",
"unknown_desc": "Please make sure that the game key exists and has been entered correctly",
"loading_title": "Please wait...",
"loading_desc": "Your selected game is generated, please wait a moment"
},
"link": {
"clink_title": "Your Current Link",
"clink_desc": "Your linked account is named as follows:",
"nolink_title": "No linked account",
"nolink_desc": "You do not currently have a linked account. Click the `Link` button below this message to link your Discord account to a VALORANT account.",
"removelink_title": "Link removed",
"removelink_desc": "Your link was successfully removed",
"generate_link": "Link",
"link_generated_title": "Your login link was generated",
"link_generated_desc": "Please click on the following link to start the process. Note: This link is only valid for one hour.\n\n"
},
"mmr": {
"429_title": "Top.gg vote check limit",
"429_desc": "The limit for checking votes at top.gg has been reached, please wait one or two minutes and try again.",
"500_title": "Vote verification error",
"500_desc": "An error occurred while checking if you have voted, please try again shortly....",
"not_voted_title": "You have not voted yet",
"not_voted_desc": "Please vote for the bot on top.gg (click the button below this message to go to top.gg) to use this command for the next 24h",
"no_link_title": "No Riot ID specified or you do not have a linked account",
"no_link_desc": "Here are all available commands",
"base": "Shows your MMR data if you have linked your Discord account with your Riot account using the /link command.",
"options": "Shows the MMR data of the specified account",
"loading_title": "Please wait...",
"loading_desc": "The MMR data of the selected season will be loaded, please wait a moment",
"no_rank_title": "Currently you have no rank",
"no_rank_desc": "You currently have no rank or your last ranked game was too long ago. Please play a ranked game and then try again."
},
"settings": {
"perms_title": "No permission",
"perms_desc": "You are missing the `Manage Guild` permission. If you think this is an error contact the server administrator",
"imggeneration_title": "Please wait a moment",
"imggeneration_desc": "The sample image with the specified image for the selected image type is generated, please wait a moment. You can then select whether the configuration should be saved or not.",
"imggenerated_title": "Image successfully generated",
"imggenerated_desc": "Here you can see the finished image as it would look when using the command. If the image looks like you imagined, click on the green button below. If the image does not look the way you want it to, click the red button and upload another image.",
"imggenerated_label_accept": "Save",
"imggenerated_label_deny": "Cancel",
"not_set": "Not set"
},
"status": {
"noerrors": "No errors were found on the cluster",
"postedat": "Created at:",
"platforms": "Platforms affected:",
"type": "Problem type:"
},
"stats": {
"missing_matches_title": "Some matches are still missing",
"missing_matches_desc": "The missing matches are downloaded and processed in the background. Once this is complete, the image is updated",
"invalidriotid_title": "Incorrect Riot ID",
"invalidriotid_desc": "The given Riot ID is incorrect. Please make sure that you have also entered your tag and not only the name.\n\nWrong Riot ID: Henrik3\nCorrect Riot ID: Henrik3#VALO",
"noriotid_title": "No Riot ID specified",
"noriotid_desc": "You have both no linked account, and no name specified. Please link yourself with `/link add` or enter a Riot ID",
"game_select": "Select a game"
},
"vote": {
"title": "Vote for us on top.gg",
"desc": "By voting you get access to the `/mmr` command among other things and support the bot with your vote"
},
"weapon": {
"name": "Weapons",
"cost": "Price",
"magazinsize": "Magazine size",
"penetration": "Bullet strength",
"firerate": "Fire Rate",
"firerate_zoom": "Fire Rate (Zoom)",
"zoom": "Zoom",
"head": "Headshot",
"body": "Bodyshot",
"leg": "Legshot",
"rangedamage": "Headshot: ${String(cweapon.weaponStats.damageRanges[i].headDamage)} | Bodyshot: ${String(cweapon.weaponStats.damageRanges[i].bodyDamage)} | Legshot: ${String(cweapon.weaponStats.damageRanges[i].legDamage)}",
"mweapons": "Price: ${weapons.shopData != null ? String(weapons.shopData.cost) : 'Free'}"
},
"cmdurl": "https://valorantlabs.xyz/?scrollto=commands&lang=en",
"cmd": "Commands",
"help_title": "Help Overview",
"help_desc": "On our new website you will find in all available translations the help overview",
"locale": "en_GB",
"moment": "en-gb",
"patchurl": "https://api.henrikdev.xyz/valorant/v1/website/en-gb?filter=patch_notes",
"statusurl": "https://api.henrikdev.xyz/valorant/v1/status/eu",
"support": "Support",
"valorant_api_lang": "en-US",
"websiteurl": "https://api.henrikdev.xyz/valorant/v1/website/en-gb"
},
"en-us": {
"errors": {
"cmdundefined_title": "Command does not exist",
"cmdundefined_desc": "Use **/help** to see all commands or click on the link below to see all commands",
"cmdblacklist_title": "I do not have permission to write here",
"cmdblacklist_desc": "If you think this is an error, contact the server administrator. This message will be deleted in **7.5** seconds.",
"deprecation_title": "This command is no longer supported",
"deprecation_desc": "Due to a Discord change [More detailed info here](https://support-dev.discord.com/hc/en-us/articles/4404772028055-Message-Content-Access-Deprecation-for-Verified-Bots), <@702201518329430117> will no longer be able to send messages after August 2022. To be prepared early for the update, new features will only be released via Slash Commands. In addition, some commands have already been limited to slash commands, currently the following:\n- v?agent\n- v?api\n- v?blacklist\n- v?botinfo\n- v?game\n- v?link\n- v?map\n- v?patch\n- v?status\n- v?settings\n- v?vote\n- v?weapon\n- v?weapons\nPlease therefore use the slash command of this command"
},
"response": {
"501": {
"title": "Status 501 | API Version not implemented",
"default": "A query was sent to an API which is not implemented. Probably the problem is known, but you are welcome to report it on the support server."
},
"404": {
"title": "Status 404 | Not found",
"default": "The specified username and tagline were not found. If you have linked your account, update it with `/link add`, otherwise check if the RiotID was entered correctly.",
"game": "The requested game was not found",
"map": "The requested map was not found",
"agent": "The requested agent was not found",
"patch": "The requested patch was not found",
"weapon": "The requested weapon was not found"
},
"503": {
"title": "Status 503 | Server temporary not available",
"default": "The destination server cannot process the request at the moment, please try again later"
},
"504": {
"title": "Status 504 | Server temporary not available",
"default": "The destination server cannot process the request at the moment, please try again later"
},
"429": {
"title": "Status 429 | Bot Rate Limit",
"default": "The bot is currently overused and now has a cool down, please wait a bit and try again"
},
"1015": {
"title": "Status 1015 | Bot Rate Limit",
"default": "The bot is currently overused and now has a cool down, please wait a bit and try again"
},
"403": {
"title": "Status 403 | Missing Permission",
"default": "The bot does not have access to this data source. Most often this error occurs during game updates when the servers are down"
},
"400": {
"title": "Status 400 | Request error",
"default": "An error occurred during the request, usually this is due to the formatting of the request"
},
"410": {
"title": "Status 410 | API not available",
"default": "The requested API path is no longer available, this is a developer error, please report this error on the support server"
},
"409": {
"title": "Status 409 | Conflict",
"default": "An error occurred during the request, please try again later"
},
"408": {
"title": "Status 408 | Timeout",
"default": "The request took too long, please try again later"
},
"451": {
"title": "Status: 451 | This account is private",
"description": "If this is your account, press the `Log In` button below this message to give VALORANT LABS permission to collect match data from you, for which you will need to log in via RSO (Riot Sign On). After you have logged in, this message should update automatically. If it doesn't, just use the `Refresh` button below this message. If you already have stats at tracker.gg and are logged in there, the bot will try to take them over.",
"component_login": "Log In",
"component_update": "Refresh",
"component_rank": "MMR"
},
"500": {
"title": "Status 500 | Internal Server Error",
"default": "An internal server error has occurred, please try again later."
}
},
"agent": {
"agentunknown_title": "Agent not found",
"agentunknown_desc": "Please make sure that the agent exists. If you think this is a bug, please report to the support server",
"agentrole": "Role"
},
"autorole": {
"send_desc": "To get your ingame role, click on the `Add` button. You will be shown a link, click on it. You will be redirected to the Riot Games login page. \n\n**Important:** <@702201518329430117> does not see your login data, on the server we only get the following example data:\n```{puuid: '000000000-000000000-000000000000000000000000000000000000000000', gameName: 'Henrik3', tagLine: 'VALO'}```\nWith the button `Update` you can update your role if you should for example be promoted.\nUse the button `Remove` to remove your role again.",
"created_title": "Your AutoRole message was created",
"created_desc": "You can edit this message as you wish by right-clicking on the message, selecting Apps and then clicking on 'Edit AutoRole'. A window will then open where you can edit the message",
"correct": "✅ Correctly configured",
"wrong": "⛔ Not yet configured",
"member_error_title": "No member permission",
"member_error_desc": "The bot has no permission to give you these roles, please make sure the bot has enough permissions to give you the role.",
"roles_error_title": "No role permission",
"roles_error_desc": "The bot does not have enough rights to assign the following roles to users. Please make sure that the roles are arranged under the bot roles",
"message_send_error_title": "No channel permission",
"message_send_error_desc": "Please make sure that <@702201518329430117> has the `SEND MESSAGES` permission",
"message_edit_error_title": "No AutoRole message",
"message_edit_error_desc": "This is not an AutoRole message, so it cannot be edited",
"autorole_permission_title": "No permission",
"autorole_permission_desc": "Please make sure that <@702201518329430117> has the `MANAGE ROLES` permission.",
"role_given_title": "Role given",
"role_given_desc": "Your ingame role has been assigned to you, it may take up to a minute to receive your role due to Discord API limitations.",
"role_removed_title": "Role removed",
"role_removed_desc": "Your ingame role has been removed again. If you want to add it again just click on `Update`.",
"add": "Add",
"update": "Update",
"remove": "Remove",
"modal_title": "Title",
"modal_desc": "Description",
"modal_color": "Color",
"modal_edit_title": "Edit message",
"message_edit_title": "Message edited",
"message_edit_desc": "The message has been successfully modified"
},
"blacklist": {
"blacklistinactive_title": "Blacklist not active",
"blacklistinactive_desc": "Activate the blacklist with: /settings blacklist true",
"blacklistperms_title": "You are not allowed to use this command",
"blacklistperms_desc": "Please make sure that you have the `MANAGE_GUILD` permission",
"blacklistoverview_title": "Channel blacklist overview",
"blacklistoverview_desc": "Use one of the following commands:\n\n/blacklist add #channel \n/blacklist remove #channel \n\nBlacklisted Channel: \n${cchannel ? cchannel : 'No channels'}",
"blacklistalreadyadded_title": "Channel is already in the list",
"blacklistalreadyadded_desc": "The specified channel is already in the list, you cannot add it again",
"blacklistalreadyremoved_title": "Channel not in the list",
"blacklistalreadyremoved_desc": "The specified channel is not in the list, you cannot remove it again",
"blacklistadded_title": "Add channel to the list",
"blacklistchannels": "Blacklisted channel: \n${uchannel ? uchannel : 'No channels'}",
"blacklistremoved_title": "Removed channel from the list"
},
"botinfo": {
"title": "Bot information about VALORANT LABS"
},
"feedback": {
"title": "Give Feedback",
"label": "Feedback",
"placeholder": "Please enter your feedback here",
"send_title": "Feedback send",
"send_desc": "Thank you for your feedback, this was sent to the developer and looked at as soon as possible"
},
"game": {
"unknown_title": "Unknown game",
"unknown_desc": "Please make sure that the game key exists and has been entered correctly",
"loading_title": "Please wait...",
"loading_desc": "Your selected game is generated, please wait a moment"
},
"link": {
"clink_title": "Your Current Link",
"clink_desc": "Your linked account is named as follows:",
"nolink_title": "No linked account",
"nolink_desc": "You do not currently have a linked account. Click the `Link` button below this message to link your Discord account to a VALORANT account.",
"removelink_title": "Link removed",
"removelink_desc": "Your link was successfully removed",
"generate_link": "Link",
"link_generated_title": "Your login link was generated",
"link_generated_desc": "Please click on the following link to start the process. Note: This link is only valid for one hour.\n\n"
},
"mmr": {
"429_title": "Top.gg vote check limit",
"429_desc": "The limit for checking votes at top.gg has been reached, please wait one or two minutes and try again.",
"500_title": "Vote verification error",
"500_desc": "An error occurred while checking if you have voted, please try again shortly....",
"not_voted_title": "You have not voted yet",
"not_voted_desc": "Please vote for the bot on top.gg (click the button below this message to go to top.gg) to use this command for the next 24h",
"no_link_title": "No Riot ID specified or you do not have a linked account",
"no_link_desc": "Here are all available commands",
"base": "Shows your MMR data if you have linked your Discord account with your Riot account using the /link command.",
"options": "Shows the MMR data of the specified account",
"loading_title": "Please wait...",
"loading_desc": "The MMR data of the selected season will be loaded, please wait a moment",
"no_rank_title": "Currently you have no rank",
"no_rank_desc": "You currently have no rank or your last ranked game was too long ago. Please play a ranked game and then try again."
},
"settings": {
"perms_title": "No permission",
"perms_desc": "You are missing the `Manage Guild` permission. If you think this is an error contact the server administrator",
"imggeneration_title": "Please wait a moment",
"imggeneration_desc": "The sample image with the specified image for the selected image type is generated, please wait a moment. You can then select whether the configuration should be saved or not.",
"imggenerated_title": "Image successfully generated",
"imggenerated_desc": "Here you can see the finished image as it would look when using the command. If the image looks like you imagined, click on the green button below. If the image does not look the way you want it to, click the red button and upload another image.",
"imggenerated_label_accept": "Save",
"imggenerated_label_deny": "Cancel",
"not_set": "Not set"
},
"status": {
"noerrors": "No errors were found on the cluster",
"postedat": "Created at:",
"platforms": "Platforms affected:",
"type": "Problem type:"
},
"stats": {
"missing_matches_title": "Some matches are still missing",
"missing_matches_desc": "The missing matches are downloaded and processed in the background. Once this is complete, the image is updated",
"invalidriotid_title": "Incorrect Riot ID",
"invalidriotid_desc": "The given Riot ID is incorrect. Please make sure that you have also entered your tag and not only the name.\n\nWrong Riot ID: Henrik3\nCorrect Riot ID: Henrik3#VALO",
"noriotid_title": "No Riot ID specified",
"noriotid_desc": "You have both no linked account, and no name specified. Please link yourself with `/link add` or enter a Riot ID",
"game_select": "Select a game"
},
"vote": {
"title": "Vote for us on top.gg",
"desc": "By voting you get access to the `/mmr` command among other things and support the bot with your vote"
},
"weapon": {
"name": "Weapons",
"cost": "Price",
"magazinsize": "Magazine size",
"penetration": "Bullet strength",
"firerate": "Fire Rate",
"firerate_zoom": "Fire Rate (Zoom)",
"zoom": "Zoom",
"head": "Headshot",
"body": "Bodyshot",
"leg": "Legshot",
"rangedamage": "Headshot: ${String(cweapon.weaponStats.damageRanges[i].headDamage)} | Bodyshot: ${String(cweapon.weaponStats.damageRanges[i].bodyDamage)} | Legshot: ${String(cweapon.weaponStats.damageRanges[i].legDamage)}",
"mweapons": "Price: ${weapons.shopData != null ? String(weapons.shopData.cost) : 'Free'}"
},
"cmdurl": "https://valorantlabs.xyz/?scrollto=commands&lang=en",
"cmd": "Commands",
"help_title": "Help Overview",
"help_desc": "On our new website you will find in all available translations the help overview",
"locale": "en_US",
"moment": "en",
"patchurl": "https://api.henrikdev.xyz/valorant/v1/website/en-us?filter=patch_notes",
"statusurl": "https://api.henrikdev.xyz/valorant/v1/status/na",
"support": "Support",
"valorant_api_lang": "en-US",
"websiteurl": "https://api.henrikdev.xyz/valorant/v1/website/en-us"
},
"jp": {
"errors": {
"cmdundefined_title": "コマンドが存在しない",
"cmdundefined_desc": "すべてのコマンドを見るには、**/help** を使用するか、以下のリンクをクリックしてください。",
"cmdblacklist_title": "私はここに書く許可を得ていません。",
"cmdblacklist_desc": "エラーと思われる場合は、サーバー管理者にお問い合わせください。このメッセージは**7.5**秒後に削除されます。",
"deprecation_title": "このコマンドはサポートされなくなりました",
"deprecation_desc": "Discordの変更[詳細情報はこちら](https://support-dev.discord.com/hc/en-us/articles/4404772028055-Message-Content-Access-Deprecation-for-Verified-Bots)により、2022年8月以降<@702201518329430117>はメッセージを送信することができなくなる予定です。アップデートに早めに備えるため、新機能の公開はスラッシュコマンド経由のみとなります。また、一部のコマンドはすでにスラッシュコマンドに限定されており、現在は以下の通りです。 \n- v?agent\n- v?api\n- v?blacklist\n- v?botinfo\n- v?game\n- v?link\n- v?map\n- v?patch\n- v?statu\ns- v?settings\n- v?vote\n- v?weapon\n- v?weapons. Please use the slash command of this command"
},
"response": {
"501": {
"title": "ステータス 501 | APIバージョン未実装",
"default": "実装されていないAPIにクエリーを送信しました。おそらく問題は既知だと思いますが、サポートサーバーに報告してください。"
},
"404": {
"title": "ステータス 404 | 不明",
"default": "指定されたユーザー名とタグラインは見つかりませんでした。アカウントをリンクしている場合は、/link add で更新してください。そうでない場合は、RiotIDが正しく入力されているかどうか確認してください。",
"game": "要求されたゲームは見つかりませんでした",
"map": "要求されたマップが見つかりません",
"agent": "要求されたエージェントが見つかりませんでした",
"patch": "要求されたパッチは見つかりませんでした",
"weapon": "要求された武器は見つかりませんでした"
},
"503": {
"title": "ステータス 503 | サーバーが一時的に使用できない",
"default": "宛先サーバーは現在リクエストを処理できません。後でもう一度試してください。"
},
"504": {
"title": "ステータス 504 | サーバーが一時的に使用できない",
"default": "宛先サーバーは現在リクエストを処理できません。後でもう一度試してください。"
},
"429": {
"title": "ステータス 429 | ボットレートリミット",
"default": "ボットは現在酷使されており、現在クールダウンしています。"
},
"1015": {
"title": "ステータス 1015 | ボットレートリミット",
"default": "ボットは現在酷使されており、現在クールダウンしています。"
},
"403": {
"title": "ステータス 403 | パーミッションの欠落",
"default": "ボットはこのデータソースにアクセスすることができません。このエラーは、サーバーがダウンしているとき、ゲームのアップデート中に発生することがほとんどです。"
},
"400": {
"title": "ステータス 400 | リクエストエラー",
"default": "リクエスト中にエラーが発生しました。通常はリクエストのフォーマットによるものです。"
},
"410": {
"title": "ステータス 410 | APIは使用できません",
"default": "要求されたAPIパスはもう利用できません。これは開発者のエラーです。このエラーをサポートサーバーに報告してください。"
},
"409": {
"title": "ステータス 409 | コンフリクト",
"default": "リクエスト中にエラーが発生しました。"
},
"408": {
"title": "ステータス 408 | タイムアウト",
"default": "リクエストに時間がかかりすぎました。後でもう一度お試しください。"
},
"451": {
"title": "ステータス: 451 | このアカウントは非公開です",
"description": "もしこれがあなたのアカウントなら、このメッセージの下にある「ログイン」ボタンを押して、VALORANT LABSがあなたからマッチデータを収集することを許可してください、そのためにはRSO (Riot Sign On) を使ってログインする必要があります。ログイン後、このメッセージは自動的に更新されるはずです。もし更新されない場合は、このメッセージの下にある'更新'ボタンを使ってください。もしあなたが既にtracker.ggに統計情報を持っていて、そこにログインしている場合、このボットはそれを引き継ごうとします。",
"component_login": "ログイン",
"component_update": "リフレッシュ",
"component_rank": "MMR"
},
"500": {
"title": "ステータス 500 | 内部サーバーエラー",
"default": "内部サーバーエラーが発生しました。後でもう一度試してください。"
}
},
"agent": {
"agentunknown_title": "エージェントが見つかりません",
"agentunknown_desc": "エージェントが存在することを確認してください。バグと思われる場合は、サポートサーバーにご報告ください。",
"agentrole": "役割"
},
"autorole": {
"send_desc": "インゲームロールを取得するには、`Add`ボタンをクリックします。リンクが表示されますので、それをクリックします。Riot Gamesのログインページに移動します。\n-̫͡-ʔ̫͡- サーバー上では、以下の例のデータのみが取得されます。\n```{puuid: '000000000-000000000-000000000000000000000000000000000000000000', gameName: 'Henrik3', tagLine: 'VALO'}```\n更新]ボタンで、昇格などのために自分の役割を更新することができます。",
"created_title": "あなたのAutoRoleメッセージが作成されました",
"created_desc": "このメッセージは、メッセージ上で右クリックして、アプリを選択し、「オートロールの編集」をクリックすることで、自由に編集することができます。すると、メッセージを編集するためのウィンドウが表示されます。",
"correct": "✅ 正しく設定されている",
"wrong": "⛔ 未設定",
"member_error_title": "メンバーの許可なし",
"member_error_desc": "ボットにはこれらのロールを与える権限がありません。ボットにロールを与える十分な権限があることを確認してください。",
"roles_error_title": "ロールパーミットなし",
"roles_error_desc": "ボットには、次のロールをユーザーに割り当てるための十分な権限がありません。botのロールの下にロールが配置されていることを確認してください。",
"message_send_error_title": "チャネル許可なし",
"message_send_error_desc": "<@702201518329430117> に `SEND MESSAGES` のパーミッションがあることを確認してください。",
"message_edit_error_title": "AutoRoleメッセージなし",
"message_edit_error_desc": "これはAutoRoleメッセージではないので、編集することはできません",
"autorole_permission_title": "無許可",
"autorole_permission_desc": "<@702201518329430117> に `MANAGE ROLES` 権限があることを確認してください。",
"role_given_title": "ロールプレイング",
"role_given_desc": "あなたのインゲームロールが割り当てられました。Discord APIの制限により、ロールを受け取るまでに1分ほどかかる場合があります。",
"role_removed_title": "ロールの取り外し",
"role_removed_desc": "あなたのインゲームロールは再び削除されました。再び追加したい場合は、`Update`をクリックしてください。",
"add": "追加",
"update": "更新情報",
"remove": "削除",
"modal_title": "タイトル",
"modal_desc": "説明",
"modal_color": "色",
"modal_edit_title": "メッセージの編集",
"message_edit_title": "編集されたメッセージ",
"message_edit_desc": "メッセージは正常に変更されました"
},
"blacklist": {
"blacklistinactive_title": "ブラックリストが有効でない",
"blacklistinactive_desc": "でブラックリストを有効にする。: /settings blacklist true",
"blacklistperms_title": "このコマンドを使用することはできません",
"blacklistperms_desc": "`MANAGE_GUILD`のパーミッションがあることを確認してください。",
"blacklistoverview_title": "チャンネルブラックリストの概要",
"blacklistoverview_desc": "以下のコマンドのいずれかを使用します。:\n\n/blacklist add #channel \n/blacklist remove #channel \n\nブラックリストに登録されたチャンネル: \n${cchannel ? cchannel : 'チャネルなし'}",
"blacklistalreadyadded_title": "チャンネルはすでにリストに入っています",
"blacklistalreadyadded_desc": "指定されたチャンネルはすでにリストに含まれているため、再度追加することはできません",
"blacklistalreadyremoved_title": "リストにないチャンネル",
"blacklistalreadyremoved_desc": "指定されたチャンネルがリストにない場合、再度削除することはできません",
"blacklistadded_title": "チャンネルをリストに追加する",
"blacklistchannels": "ブラックリストに登録されたチャンネル: \n${uchannel ? uchannel : 'チャネルなし'}",
"blacklistremoved_title": "Removed channel from the list"
},
"botinfo": {
"title": "VALORANT LABSに関するボット情報"
},
"feedback": {
"title": "フィードバック",
"label": "フィードバック",
"placeholder": "ご意見・ご感想をご記入ください。",
"send_title": "フィードバック送信",
"send_desc": "ご意見ありがとうございます。"
},
"game": {
"unknown_title": "未知数なゲーム",
"unknown_desc": "ゲームキーが存在し、正しく入力されたことを確認してください。",
"loading_title": "お待ちください...",
"loading_desc": "選択されたゲームが生成されます、しばらくお待ちください"
},
"link": {
"clink_title": "現在のリンク",
"clink_desc": "リンク先のアカウント名は以下の通りです。:",
"nolink_title": "連携アカウントなし",
"nolink_desc": "あなたは現在、リンクされたアカウントを持っていません。このメッセージの下にある`リンク`ボタンをクリックして、あなたのDiscordアカウントとVALORANTアカウントをリンクさせてください。",
"removelink_title": "リンク削除",
"removelink_desc": "お客様のリンクは正常に削除されました",
"generate_link": "リンク",
"link_generated_title": "ログインリンクが生成されました",
"link_generated_desc": "以下のリンクをクリックして、手続きを開始してください。注意:このリンクは1時間しか有効ではありません。.\n\n"
},
"mmr": {
"429_title": "Top.ggの投票チェックの上限",
"429_desc": "top.ggの投票チェックの制限に達しました。1~2分待ってから、もう一度やり直してください。",
"500_title": "投票認証エラー",
"500_desc": "投票済みかどうかの確認中にエラーが発生しましたので、まもなく再試行してください...。",
"not_voted_title": "あなたはまだ投票していません。",
"not_voted_desc": "top.gg (このメッセージの下にあるボタンをクリックすると top.gg に移動します) で、今後 24 時間このコマンドを使用するボットに投票してください。",
"no_link_title": "Riot IDが指定されていない、または連携しているアカウントをお持ちでない場合",
"no_link_desc": "以下は、利用可能なすべてのコマンドです。",
"base": "DiscordアカウントとRiotアカウントを/linkコマンドでリンクしている場合、MMRデータが表示されます。",
"options": "指定されたアカウントのMMRデータを表示します。",
"loading_title": "お待ちください...",
"loading_desc": "選択したシーズンのMMRデータが読み込まれますので、しばらくお待ちください。",
"no_rank_title": "現在、ランクはありません",
"no_rank_desc": "あなたは現在ランクがないか、最後のランク戦があまりにも前に行われました。ランク戦のゲームをプレイしてから、再度お試しください。"
},
"settings": {
"perms_title": "無許可",
"perms_desc": "ギルドを管理する」パーミッションがありません。もしこれがエラーだと思うのであれば、サーバー管理者に連絡してください。",
"imggeneration_title": "しばらくお待ちください",
"imggeneration_desc": "選択された画像タイプに指定された画像を含むサンプル画像が生成されますので、しばらくお待ちください。その後、設定を保存するかどうかを選択することができます。",
"imggenerated_title": "画像の生成に成功",
"imggenerated_desc": "ここでは、コマンドを使用したときの完成イメージを見ることができます。イメージ通りであれば、下の緑色のボタンをクリックしてください。イメージと違う場合は、赤のボタンをクリックして、別の画像をアップロードしてください。",
"imggenerated_label_accept": "セーブ",
"imggenerated_label_deny": "キャンセル",
"not_set": "設定なし"
},
"status": {
"noerrors": "クラスタ上でエラーは見つかりませんでした",
"postedat": "で作成されました。:",
"platforms": "対象プラットフォーム:",
"type": "問題の種類:"
},
"stats": {
"missing_matches_title": "一部のマッチがまだ見つかっていません",
"missing_matches_desc": "一致しない部分はバックグラウンドでダウンロードされ、処理されます。これが完了すると、画像は更新されます",
"invalidriotid_title": "不正なライオットID",
"invalidriotid_desc": "ライオットIDが正しくありません。名前だけでなく、タグも入力されているか確認してください。間違ったライオットID Henrik3 / 正しいRiot ID: Henrik3#VALO",
"noriotid_title": "Riot IDの指定なし",
"noriotid_desc": "リンク先のアカウントも、名前も指定されていません。リンク追加 'をしていただくか、Riot IDを入力してください。",
"game_select": "ゲームを選択する"
},
"vote": {
"title": "top.ggで私たちに投票してください。",
"desc": "投票することで、`/mmr`コマンドなどにアクセスできるようになり、投票によってボットをサポートすることができます。"
},
"weapon": {
"name": "武器",
"cost": "価格",
"magazinsize": "雑誌のサイズ",
"penetration": "弾丸の強さ",
"firerate": "ファイアレート",
"firerate_zoom": "ファイアレート (ズーム)",
"zoom": "ズーム",
"head": "ヘッドショット",
"body": "ボディーショット",
"leg": "レッグショット",
"rangedamage": "ヘッドショット: ${String(cweapon.weaponStats.damageRanges[i].headDamage)} | ボディーショット: ${String(cweapon.weaponStats.damageRanges[i].bodyDamage)} | レッグショット: ${String(cweapon.weaponStats.damageRanges[i].legDamage)}",
"mweapons": "価格: ${weapons.shopData != null ? String(weapons.shopData.cost) : '無料'}"
},
"cmdurl": "https://valorantlabs.xyz/?scrollto=commands&lang=jp",
"cmd": "コマンド",
"help_title": "ヘルプの概要",
"help_desc": "新しいウェブサイトでは、すべての翻訳版で、ヘルプの概要をご覧いただけます。",
"locale": "ja_JP",
"moment": "ja",
"patchurl": "https://api.henrikdev.xyz/valorant/v1/website/ja-jp?filter=patch_notes",
"statusurl": "https://api.henrikdev.xyz/valorant/v1/status/kr",
"support": "サポート",
"valorant_api_lang": "ja-JP",
"websiteurl": "https://api.henrikdev.xyz/valorant/v1/website/ja-jp"
},
"pt-br": {
"errors": {
"cmdundefined_title": "O comando não existe",
"cmdundefined_desc": "Use **/help*** para ver todos os comandos ou clique no link abaixo para ver todos os comandos",
"cmdblacklist_title": "Não tenho permissão para escrever aqui",
"cmdblacklist_desc": "Se achar que se trata de um erro, contacte o administrador do servidor. Esta mensagem será apagada em **7,5*** segundos.",
"deprecation_title": "Este comando já não é suportado",
"deprecation_desc": "Devido a uma alteração da Discord [Mais informação aqui](https://support-dev.discord.com/hc/en-us/articles/4404772028055-Message-Content-Access-Deprecation-for-Verified-Bots), <@702201518329430117> deixará de poder enviar mensagens depois de Agosto de 2022. Para serem preparadas com antecedência para a actualização, as novas funcionalidades só serão lançadas através de Comandos Slash. Além disso, alguns comandos já foram limitados a comandos slash, actualmente os seguintes:\n- v?agent\n- v?api\n- v?blacklist\n- v?botinfo\n- v?game\n- v?link\n- v?map\n- v?patch\n- v?status\n- v?settings\n- v?vote\n- v?weapon\n- v?weapons\nPor favor, use o comando slash deste comando"
},
"response": {
"501": {
"title": "Estado 501 | Versão API não implementada",
"default": "Foi enviada uma consulta a uma API que não foi implementada. Provavelmente o problema é conhecido, mas é bem-vindo para o reportar no servidor de suporte."
},
"404": {
"title": "Estado 404 | Não encontrado",
"default": "O nome de utilizador e o slogan especificados não foram encontrados. Se tiver ligado a sua conta, actualize-a com `/link add`, caso contrário verifique se o RiotID foi introduzido correctamente.",
"game": "O jogo solicitado não foi encontrado",
"map": "O mapa solicitado não foi encontrado",
"agent": "O agente solicitado não foi encontrado",
"patch": "O adesivo solicitado não foi encontrado",
"weapon": "O arma solicitado não foi encontrado"
},
"503": {
"title": "Estado 503 | Servidor temporário não disponível",
"default": "O servidor de destino não pode processar o pedido neste momento, por favor tente novamente mais tarde"
},
"504": {
"title": "Estado 504 | Servidor temporário não disponível",
"default": "O servidor de destino não pode processar o pedido neste momento, por favor tente novamente mais tarde"
},
"429": {
"title": "Estado 429 | Limite da taxa do frasco",
"default": "O robot está actualmente demasiado utilizado e tem agora um arrefecimento, por favor aguarde um pouco e tente novamente"
},
"1015": {
"title": "Estado 1015 | Limite da taxa do frasco",
"default": "O robot está actualmente demasiado utilizado e tem agora um arrefecimento, por favor aguarde um pouco e tente novamente"
},
"403": {
"title": "Estado 403 | Permissão de Falta",
"default": "O bot não tem acesso a esta fonte de dados. Na maioria das vezes este erro ocorre durante as actualizações do jogo, quando os servidores estão em baixo"
},
"400": {
"title": "Estado 400 | Pedido de erro",
"default": "Ocorreu um erro durante o pedido, geralmente devido à formatação do pedido"
},
"410": {
"title": "Estado 410 | API não disponível",
"default": "O caminho API pedido já não está disponível, isto é um erro do desenvolvedor, por favor, informe este erro no servidor de suporte"
},
"409": {
"title": "Estado 409 | Conflito",
"default": "Ocorreu um erro durante o pedido, por favor tente novamente mais tarde"
},
"408": {
"title": "Estado 408 | Desconto de tempo",
"default": "O pedido demorou demasiado tempo, por favor tente novamente mais tarde"
},
"451": {
"title": "Estado: 451 | Esta conta é privada",
"description": "Se esta é a sua conta, prima o botão `Log In` abaixo desta mensagem para dar permissão ao VALORANT LABS para recolher os seus dados de correspondência, para os quais terá de iniciar sessão via RSO (Riot Sign On). Depois de ter iniciado sessão, esta mensagem deverá ser actualizada automaticamente. Se não o fizer, basta usar o botão `Refresh` abaixo desta mensagem. Se já tiver estatísticas no tracker.gg e estiver ligado, o bot tentará assumi-las.",
"component_login": "Iniciar Sessão",
"component_update": "Actualizar",
"component_rank": "MMR"
},
"500": {
"title": "Estado 500 | Erro do Servidor Interno",
"default": "Ocorreu um erro interno no servidor, por favor tente novamente mais tarde."
}
},
"agent": {
"agentunknown_title": "Agente não encontrado",
"agentunknown_desc": "Por favor, certifique-se de que o agente existe. Se achar que se trata de um bug, por favor informe o servidor de apoio",
"agentrole": "Papel"
},
"autorole": {
"send_desc": "Para obter o seu papel no jogo, clique no botão `Adicionar`. Ser-lhe-á mostrado um link, clique sobre ele. Será redireccionado para a página de início de sessão dos Jogos de Motim. \n\n**Importante:** <@702201518329430117> não vê os seus dados de login, no servidor apenas obtemos os seguintes dados de exemplo:\n```{puuid: '000000000-000000000-000000000000000000000000000000000000000000', gameName: 'Henrik3', tagLine: 'VALO'}```\nCom o botão `Actualizar` pode actualizar o seu papel se, por exemplo, deve ser promovido.\nUtilizar o botão `Remover` para remover o seu papel novamente.",
"created_title": "A sua mensagem AutoRole foi criada",
"created_desc": "Pode editar esta mensagem como desejar, clicando com o botão direito do rato na mensagem, seleccionando Apps e depois clicando em 'Editar AutoRole'. Abre-se então uma janela onde pode editar a mensagem",
"correct": "✅ Correctamente configurado",
"wrong": "⛔ Ainda não configurado",
"member_error_title": "Nenhuma permissão de membro",
"member_error_desc": "O bot não tem permissão para lhe dar estes papéis, por favor certifique-se de que o bot tem permissões suficientes para lhe dar o papel.",
"roles_error_title": "Sem permissão de papéis",
"roles_error_desc": "O bot não tem direitos suficientes para atribuir os seguintes papéis aos utilizadores. Por favor, certifique-se de que os papéis são organizados sob os papéis do bot",
"message_send_error_title": "Sem permissão de canal",
"message_send_error_desc": "Por favor certifique-se que <@702201518329430117> tem a permissão de `SEND MESSAGES`.",
"message_edit_error_title": "Nenhuma mensagem AutoRole",
"message_edit_error_desc": "Esta não é uma mensagem AutoRole, por isso não pode ser editada",
"autorole_permission_title": "Sem permissão",
"autorole_permission_desc": "Por favor certifique-se que <@702201518329430117> tem a permissão de `MANAGE ROLES`",
"role_given_title": "Papel dado",
"role_given_desc": "O seu papel no jogo foi-lhe atribuído, pode demorar até um minuto a receber o seu papel devido a limitações do API da Discord.",
"role_removed_title": "Rolos removidos",
"role_removed_desc": "O seu papel no jogo foi novamente retirado. Se quiser adicioná-lo novamente, basta clicar em `Actualizar`",
"add": "Acrescentar",
"update": "Actualização",
"remove": "Remover",
"modal_title": "Título",
"modal_desc": "Descrição",
"modal_color": "Cor",
"modal_edit_title": "Editar mensagem",
"message_edit_title": "Mensagem editada",
"message_edit_desc": "A mensagem foi modificada com sucesso"
},
"blacklist": {
"blacklistinactive_title": "Lista negra não activa",
"blacklistinactive_desc": "Activar a lista negra com: /settings blacklist true",
"blacklistperms_title": "Não está autorizado a utilizar este comando",
"blacklistperms_desc": "Por favor, certifique-se de que tem a permissão `MANAGE_GUILD`",
"blacklistoverview_title": "Visão geral da lista negra de canais",
"blacklistoverview_desc": "Use um dos seguintes comandos:\n\n/blacklist add #channel \n/blacklist remove #channel \n\nCanal na lista negra: \n${cchannel ? cchannel : 'Nenhum canal'}",
"blacklistalreadyadded_title": "O canal já está na lista",
"blacklistalreadyadded_desc": "O canal especificado já está na lista, não é possível adicioná-lo novamente",
"blacklistalreadyremoved_title": "Canal não incluído na lista",
"blacklistalreadyremoved_desc": "O canal especificado não está na lista, não o pode remover novamente",
"blacklistadded_title": "Acrescentar canal à lista",
"blacklistchannels": "Canal na lista negra: \n${uchannel ? uchannel : 'Nenhum canal'}",