-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtranslations.py
More file actions
1177 lines (1176 loc) · 71.3 KB
/
translations.py
File metadata and controls
1177 lines (1176 loc) · 71.3 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
# RedX Tools - Language Translations
# Version: 1.0.0
# Author: Scriptez1
LANGUAGES = {
"tr": {
"menu_title": "ANA MENÜ",
"token_generator": "Token Generator",
"token_checker": "Token Checker",
"gen_check": "Gen & Check",
"server_joiner": "Server Joiner",
"server_leaver": "Server Leaver",
"message_spammer": "Message Spammer",
"account_nuker": "Account Nuker",
"token_onliner": "Token Onliner",
"token_info": "Token Info",
"proxy_manager": "Proxy Manager",
"account_login": "Account Login",
"token_offliner": "Token Offliner",
"statistics": "İstatistikler",
"settings": "Ayarlar ",
"exit": "Çıkış",
"continue_enter": "Devam etmek için Enter'a basın...",
"how_many_tokens": "Kaç token üretmek istiyorsunuz: ",
"how_many_create": "Kaç token oluşturmak istiyorsunuz? ",
"thread_count_input": "Thread sayısı (1-{max}):",
"thread_count_gen": "Thread sayısı (1-{max}):",
"invalid_number": "Geçersiz sayı!",
"invalid_value": "Geçersiz değer!",
"invalid_input": "Geçersiz giriş!",
"invalid_format": "Geçersiz sayı formatı!",
"invalid_choice": "Geçersiz seçim!",
"error": "Hata:",
"token_generation_starting": "Token üretimi başlıyor...",
"token_generation_completed": "✓ Token üretimi tamamlandı!",
"token_generated": "Token üretildi:",
"tokens_to_generate": "Üretilecek Token Sayısı:",
"thread_count": "Thread Sayısı:",
"total_generated": "Toplam üretilen:",
"saved_file": "Kaydedilen dosya:",
"generation_cancelled": "Token üretimi iptal edildi!",
"token_file_not_found": "Token dosyası bulunamadı:",
"token_file_empty": "Token dosyası boş!",
"token_check_starting": "Token kontrolü başlıyor...",
"tokens_to_check": "Kontrol edilecek Token Sayısı:",
"valid": "Geçerli:",
"invalid": "Geçersiz:",
"valid_tokens_saved": "Geçerli tokenlar kaydedildi:",
"check_cancelled": "Token kontrolü iptal edildi!",
"tokens_creating_checking": "Token'lar oluşturuluyor ve kontrol ediliyor...",
"total_threads": "Thread sayısı:",
"total_tokens": "Toplam token:",
"process_completed": "✓ İşlem tamamlandı!",
"created": "Oluşturulan:",
"checked": "Kontrol edilen:",
"discord_app_closed": "⚠ ÖNEMLİ: Discord masaüstü uygulaması KAPALI olmalıdır!",
"discord_app_conflict": "Discord uygulaması açıkken WebSocket bağlantısı çakışır.",
"continue_enter_discord": "Devam etmek için Enter'a basın...",
"valid_token_file_not_found": "Geçerli token dosyası bulunamadı!",
"create_valid_tokens_first": "Önce Token Generator & Checker ile geçerli token'lar oluşturun.",
"example_invite": "Örnek: https://discord.gg/x5XSGGWrMA",
"discord_invite_input": "Discord davet bağlantısı veya kodu:",
"invalid_invite": "Geçersiz davet!",
"invalid_invite_format": "Geçersiz davet formatı!",
"server_join_starting": "Sunucuya katılım başlatılıyor...",
"invite_code": "Davet Kodu:",
"valid_token_count": "Geçerli Token Sayısı:",
"total_joined": "✓ Toplam {count} token sunucuya katıldı!",
"server_id_input": "Sunucu ID:",
"invalid_server_id": "Geçersiz sunucu ID!",
"server_leave_starting": "Sunucudan ayrılma başlatılıyor...",
"server_id": "Sunucu ID:",
"total_left": "✓ Toplam {count} token sunucudan ayrıldı!",
"channel_id_input": "Kanal ID:",
"message_input": "Mesaj:",
"how_many_messages": "Kaç mesaj gönderilsin:",
"invalid_input_spam": "Geçersiz giriş!",
"message_spam_starting": "Mesaj spam başlatılıyor...",
"channel_id": "Kanal ID:",
"message": "Mesaj:",
"message_count": "Mesaj Sayısı:",
"total_sent": "✓ Toplam {count} mesaj gönderildi!",
"account_nuker_warning": "⚠️ UYARI: Bu işlem geri alınamaz!",
"account_nuker_warning2": "⚠️ Tüm sunuculardan ayrılacak ve DM'leri silecek!",
"confirm_nuke": "Devam etmek istediğinizden emin misiniz? (EVET):",
"operation_cancelled": "İşlem iptal edildi.",
"account_nuke_starting": "Account nuke başlatılıyor...",
"total_nuked": "✓ Toplam {count} hesap nuke edildi!",
"token_onliner_starting": "Token'lar Selenium ile online yapılıyor...",
"token_count": "Token Sayısı:",
"statuses": "Durumlar: Online → Boşta → Rahatsız Etme",
"press_ctrl_c": "Çıkmak için Ctrl+C basın",
"token_onliner_stopped": "Token onliner durduruldu!",
"token_info_starting": "Token bilgileri alınıyor...",
"token_info_getting": "Token bilgisi alınıyor:",
"token_info_success": "✓ Token Bilgileri:",
"username": "Username:",
"user_id": "User ID:",
"email": "Email:",
"phone": "Phone:",
"verified": "Verified:",
"mfa": "2FA:",
"nitro": "Nitro:",
"badges": "Badges:",
"creation_date": "Oluşturulma:",
"avatar": "Avatar:",
"token_info_failed": "✗ Token bilgisi alınamadı!",
"proxy_list": "Proxy listesini görüntüle",
"proxy_add": "Proxy ekle",
"proxy_test": "Proxy test et",
"proxy_clear": "Proxy temizle",
"proxy_auto": "Otomatik proxy topla",
"back": "Geri",
"choice": "Seçiminiz:",
"proxy_list_title": "Proxy Listesi ({count} adet):",
"proxy_list_empty": "Proxy listesi boş!",
"proxy_input": "Proxy (ip:port veya user:pass@ip:port):",
"proxy_added": "✓ Proxy eklendi!",
"invalid_proxy": "Geçersiz proxy!",
"no_proxy_test": "Test edilecek proxy yok!",
"proxy_testing": "Proxy test ediliyor:",
"proxy_working": "✓ Proxy çalışıyor!",
"proxy_not_working": "✗ Proxy çalışmıyor!",
"proxy_cleared": "✓ Proxy listesi temizlendi!",
"proxy_file_not_found": "Proxy dosyası bulunamadı!",
"auto_proxy_soon": "Otomatik proxy toplama özelliği yakında eklenecek!",
"invalid_choice_proxy": "Geçersiz seçim!",
"account_login_title": "ACCOUNT LOGIN",
"available_accounts": "Mevcut hesaplar:",
"login_account_number": "Giriş yapmak istediğiniz hesap numarası:",
"logging_in": "hesabına giriş yapılıyor...",
"account_info_failed": "Hesap bilgisi alınamadı!",
"invalid_choice_account": "Geçersiz seçim!",
"invalid_number_format": "Geçersiz sayı formatı!",
"token_offliner_starting": "Token'lar Selenium ile headless modda offline yapılıyor...",
"token_offline_processing": "Token offline yapılıyor:",
"token_offline_success": "✓ Token offline yapıldı:",
"token_load_failed": "✗ Token yüklenemedi:",
"page_load_timeout": "✗ Sayfa yüklenme timeout:",
"selenium_error": "✗ Selenium hatası:",
"selenium_not_installed": "✗ Selenium kurulu değil! pip install selenium",
"token_offliner_error": "✗ Token offliner hatası:",
"token_offline_completed": "✓ Token offline işlemi tamamlandı!",
"settings_title": "AYARLAR",
"clear_token_file": "Token dosyasını temizle",
"clear_valid_token_file": "Geçerli token dosyasını temizle",
"set_thread_count": "Thread sayısını ayarla",
"set_delay": "Gecikme süresini ayarla",
"reset_statistics": "İstatistikleri sıfırla",
"token_file_cleared": "✓ Token dosyası temizlendi!",
"token_file_not_found_settings": "Token dosyası bulunamadı!",
"valid_token_file_cleared": "✓ Geçerli token dosyası temizlendi!",
"valid_token_file_not_found_settings": "Geçerli token dosyası bulunamadı!",
"new_thread_count": "Yeni thread sayısı (1-50):",
"thread_count_set": "✓ Thread sayısı {count} olarak ayarlandı!",
"invalid_thread_value": "Geçersiz değer! 1-50 arası olmalı.",
"invalid_thread_input": "Geçersiz giriş!",
"new_delay": "Yeni gecikme süresi (saniye):",
"delay_set": "✓ Gecikme süresi {delay} saniye olarak ayarlandı!",
"invalid_delay_value": "Geçersiz değer! 0.1-5.0 arası olmalı.",
"invalid_delay_input": "Geçersiz giriş!",
"statistics_reset": "✓ İstatistikler sıfırlandı!",
"invalid_choice_settings": "Geçersiz seçim!",
"closing": "RedX Discord Tools kapatılıyor...",
"thanks": "Developer by. {author}",
"program_terminated": "Program kullanıcı tarafından sonlandırıldı.",
"unexpected_error": "Beklenmeyen hata:",
"generated": "Oluşturulan Token:",
"checked_stats": "Kontrol Edilen:",
"valid_stats": "Geçerli Token:",
"invalid_stats": "Geçersiz Token:",
"joined": "Katılan Sunucu:",
"left": "Ayrılan Sunucu:",
"spammed": "Gönderilen Mesaj:",
"nuked": "Nuke Edilen Hesap:",
"language_selection": "LANGUAGE SELECTION",
"turkish": "Türkçe (Turkish)",
"english": "English",
"back": "Back",
"invalid_choice_lang": "Invalid choice!",
"language_changed_turkish": "✓ Language changed to Turkish!",
"language_changed_english": "✓ Language changed to English!",
"websocket_connecting": "WebSocket bağlantısı kuruluyor...",
"session_id_error": "Session ID alınamadı:",
"solution_close_discord": "💡 Çözüm: Discord masaüstü uygulamasını kapatın ve tekrar deneyin!",
"fingerprint_error": "Fingerprint alınamadı:",
"captcha_solve_error": "Captcha çözme hatası:",
"requests_token_login": "Requests ile token girişi yapılıyor...",
"connecting_discord": "Discord'a bağlanılıyor...",
"connected_discord": "✓ Discord'a bağlandı!",
"token_login": "Token ile giriş yapılıyor...",
"token_valid_account": "✓ Token geçerli! Giriş yapılan hesap:",
"auto_server_join": "Sunucuya otomatik katılım yapılıyor...",
"session_id_received": "Session ID alındı:",
"successfully_joined": "✓ Başarıyla sunucuya katıldı:",
"captcha_required_browser": "⚠ Captcha gerekli, tarayıcıda açılıyor...",
"server_join_completed": "✓ Sunucuya katılım tamamlandı!",
"unauthorized_token": "✗ 401 Unauthorized - Token geçersiz veya yetkisiz!",
"token_no_join_permission": "Token'ın sunucuya katılma yetkisi olmayabilir.",
"forbidden_access": "✗ 403 Forbidden - Erişim engellendi!",
"token_cannot_join": "Token bu sunucuya katılamıyor olabilir.",
"rate_limited_many_requests": "⚠ 429 Rate Limited - Çok fazla istek!",
"failed_to_join_server": "✗ Sunucuya katılamadı:",
"error_message": "Hata mesajı:",
"session_id_not_received": "✗ Session ID alınamadı!",
"invalid_server_invite": "✗ Sunucu daveti geçersiz:",
"invite_code_not_found": "✗ Davet kodu bulunamadı!",
"invalid_token_error": "✗ Token geçersiz! Hata:",
"discord_connection_failed": "✗ Discord'a bağlanılamadı! Hata:",
"requests_login_error": "✗ Requests giriş hatası:",
"invalid_invite_code": "✗ Geçersiz davet kodu:",
"json_error": "✗ JSON hatası:",
"session_id_not_received_token": "✗ Session ID alınamadı:",
"successfully_joined_token": "✓ Başarıyla katıldı:",
"captcha_solved_joined": "✓ Captcha çözüldü, başarıyla katıldı:",
"captcha_not_solved": "✗ Captcha çözülemedi veya katılım başarısız:",
"captcha_process_error": "✗ Captcha işlemi hatası:",
"valid_token_file_not_found_leave": "Geçerli token dosyası bulunamadı!",
"create_valid_tokens_first_leave": "Önce Token Generator & Checker ile geçerli token'lar oluşturun.",
"invalid_server_id_leave": "Geçersiz sunucu ID!",
"server_leave_starting_leave": "Sunucudan ayrılma başlatılıyor...",
"server_id_leave": "Sunucu ID:",
"valid_token_count_leave": "Geçerli Token Sayısı:",
"thread_count_leave": "Thread Sayısı:",
"total_left_leave": "✓ Toplam {count} token sunucudan ayrıldı!",
"successfully_left": "✓ Başarıyla ayrıldı:",
"invalid_token_leave": "✗ Geçersiz token:",
"not_in_server": "⚠ Sunucuda değil:",
"valid_token_file_not_found_spam": "Geçerli token dosyası bulunamadı!",
"invalid_input_spam": "Geçersiz giriş!",
"message_spam_starting_spam": "Mesaj spam başlatılıyor...",
"channel_id_spam": "Kanal ID:",
"message_count_spam": "Mesaj Sayısı:",
"token_count_spam": "Token Sayısı:",
"total_sent_spam": "✓ Toplam {count} mesaj gönderildi!",
"message_sent": "✓ Mesaj gönderildi:",
"invalid_token_spam": "✗ Geçersiz token:",
"account_nuker_warning_spam": "⚠️ UYARI: Bu işlem geri alınamaz!",
"account_nuker_warning2_spam": "⚠️ Tüm sunuculardan ayrılacak ve DM'leri silecek!",
"operation_cancelled_spam": "İşlem iptal edildi.",
"valid_token_file_not_found_nuke": "Geçerli token dosyası bulunamadı!",
"account_nuke_starting_nuke": "Account nuke başlatılıyor...",
"token_count_nuke": "Token Sayısı:",
"thread_count_nuke": "Thread Sayısı:",
"left_from_server": "✓ Sunucudan ayrıldı:",
"token_online_processing": "Token online yapılıyor:",
"token_successfully_loaded": "✓ Token başarıyla yüklendi:",
"status_change_mode": "Durum değiştirme moduna geçiliyor...",
"status_changed": "✓ Durum değiştirildi:",
"webdriver_error_reconnecting": "✗ WebDriver hatası, yeniden bağlanılıyor:",
"token_load_failed_online": "✗ Token yüklenemedi:",
"page_load_timeout_online": "✗ Sayfa yüklenme timeout:",
"selenium_error_online": "✗ Selenium hatası:",
"selenium_not_installed_online": "✗ Selenium kurulu değil! pip install selenium",
"token_onliner_error_online": "✗ Token onliner hatası:",
"selenium_discord_opening": "Selenium ile Discord açılıyor...",
"discord_opened_browser": "✓ Discord tarayıcıda açıldı!",
"token_successfully_loaded_login": "✓ Token başarıyla yüklendi!",
"account_logged_in_close_browser": "Hesabınıza giriş yapıldı. Tarayıcıyı kapatabilirsiniz.",
"token_load_failed_login": "✗ Token yüklenemedi!",
"page_load_timeout_login": "✗ Sayfa yüklenme timeout!",
"selenium_error_login": "✗ Selenium hatası:",
"selenium_not_installed_login": "✗ Selenium kurulu değil! pip install selenium",
"login_error": "✗ Giriş hatası:",
"token_onliner_title": "TOKEN ONLINER",
"valid_token_file_not_found_online": "Geçerli token dosyası bulunamadı!",
"tokens_selenium_online": "Token'lar Selenium ile online yapılıyor...",
"token_count_online": "Token Sayısı:",
"statuses_online": "Durumlar: Online → Boşta → Rahatsız Etme",
"press_ctrl_c_online": "Çıkmak için Ctrl+C basın",
"invalid_token_online": "✗ Geçersiz token:",
"token_verified": "Token doğrulandı:",
"status_updated": "✓ Durum güncellendi:",
"status_update_failed": "⚠ Durum güncellenemedi:",
"status_update_error": "⚠ Durum güncelleme hatası:",
"token_info_title": "TOKEN INFO VIEWER",
"valid_token_file_not_found_info": "Geçerli token dosyası bulunamadı!",
"token_info_getting_info": "Token bilgileri alınıyor...",
"token_count_info": "Token Sayısı:",
"token_info_getting_single": "Token bilgisi alınıyor:",
"user_id_info": "User ID:",
"verified_yes_no": "Verified:",
"mfa_enabled_disabled": "2FA:",
"creation_date_info": "Oluşturulma:",
"token_info_failed_info": "✗ Token bilgisi alınamadı!",
"proxy_list_empty_info": "Proxy listesi boş!",
"invalid_proxy_info": "Geçersiz proxy!",
"proxy_working_info": "✓ Proxy çalışıyor!",
"proxy_not_working_info": "✗ Proxy çalışmıyor!",
"proxy_file_not_found_info": "Proxy dosyası bulunamadı!",
"auto_proxy_soon_info": "Otomatik proxy toplama özelliği yakında eklenecek!",
"invalid_choice_info": "Geçersiz seçim!",
"account_login_title_info": "ACCOUNT LOGIN",
"valid_token_file_not_found_login": "Geçerli token dosyası bulunamadı!",
"token_count_login": "Token Sayısı:",
"token_info_not_available": "Bilgi alınamadı",
"server_join_completed": "✓ Sunucuya katılım tamamlandı!",
"unauthorized_token_401": "✗ 401 Unauthorized - Token geçersiz veya yetkisiz!",
"token_no_join_permission": "Token'ın sunucuya katılma yetkisi olmayabilir.",
"forbidden_access_403": "✗ 403 Forbidden - Erişim engellendi!",
"token_cannot_join": "Token bu sunucuya katılamıyor olabilir.",
"rate_limited_many_requests": "⚠ 429 Rate Limited - Çok fazla istek!",
"failed_to_join_server": "✗ Sunucuya katılamadı:",
"error_message": "Hata mesajı:",
"session_id_not_received": "✗ Session ID alınamadı!",
"invalid_server_invite": "✗ Sunucu daveti geçersiz:",
"invite_code_not_found": "✗ Davet kodu bulunamadı!",
"invalid_token_error": "✗ Token geçersiz! Hata:",
"discord_connection_failed": "✗ Discord'a bağlanılamadı! Hata:",
"requests_login_error": "✗ Requests giriş hatası:",
"invalid_invite_code": "✗ Geçersiz davet kodu:",
"json_error": "✗ JSON hatası:",
"session_id_not_received_token": "✗ Session ID alınamadı:",
"successfully_joined_token": "✓ Başarıyla katıldı:",
"captcha_solved_joined": "✓ Captcha çözüldü, başarıyla katıldı:",
"captcha_not_solved": "✗ Captcha çözülemedi veya katılım başarısız:",
"captcha_process_error": "✗ Captcha işlemi hatası:",
"valid_token_file_not_found_leave": "Geçerli token dosyası bulunamadı!",
"create_valid_tokens_first_leave": "Önce Token Generator & Checker ile geçerli token'lar oluşturun.",
"invalid_server_id_leave": "Geçersiz sunucu ID!",
"server_leave_starting_leave": "Sunucudan ayrılma başlatılıyor...",
"server_id_leave": "Sunucu ID:",
"valid_token_count_leave": "Geçerli Token Sayısı:",
"thread_count_leave": "Thread Sayısı:",
"total_left_leave": "✓ Toplam {count} token sunucudan ayrıldı!",
"successfully_left": "✓ Başarıyla ayrıldı:",
"invalid_token_leave": "✗ Geçersiz token:",
"not_in_server": "⚠ Sunucuda değil:",
"valid_token_file_not_found_spam": "Geçerli token dosyası bulunamadı!",
"invalid_input_spam": "Geçersiz giriş!",
"message_spam_starting_spam": "Mesaj spam başlatılıyor...",
"channel_id_spam": "Kanal ID:",
"message_count_spam": "Mesaj Sayısı:",
"token_count_spam": "Token Sayısı:",
"total_sent_spam": "✓ Toplam {count} mesaj gönderildi!",
"message_sent": "✓ Mesaj gönderildi:",
"invalid_token_spam": "✗ Geçersiz token:",
"account_nuker_warning_spam": "⚠️ UYARI: Bu işlem geri alınamaz!",
"account_nuker_warning2_spam": "⚠️ Tüm sunuculardan ayrılacak ve DM'leri silecek!",
"operation_cancelled_spam": "İşlem iptal edildi.",
"valid_token_file_not_found_nuke": "Geçerli token dosyası bulunamadı!",
"account_nuke_starting_nuke": "Account nuke başlatılıyor...",
"token_count_nuke": "Token Sayısı:",
"thread_count_nuke": "Thread Sayısı:",
"left_from_server": "✓ Sunucudan ayrıldı:",
"token_online_processing": "Token online yapılıyor:",
"token_successfully_loaded": "✓ Token başarıyla yüklendi:",
"status_change_mode": "Durum değiştirme moduna geçiliyor...",
"status_changed": "✓ Durum değiştirildi:",
"webdriver_error_reconnecting": "✗ WebDriver hatası, yeniden bağlanılıyor:",
"token_load_failed_online": "✗ Token yüklenemedi:",
"page_load_timeout_online": "✗ Sayfa yüklenme timeout:",
"selenium_error_online": "✗ Selenium hatası:",
"selenium_not_installed_online": "✗ Selenium kurulu değil! pip install selenium",
"token_onliner_error_online": "✗ Token onliner hatası:",
"selenium_discord_opening": "Selenium ile Discord açılıyor...",
"discord_opened_browser": "✓ Discord tarayıcıda açıldı!",
"token_successfully_loaded_login": "✓ Token başarıyla yüklendi!",
"account_logged_in_close_browser": "Hesabınıza giriş yapıldı. Tarayıcıyı kapatabilirsiniz.",
"token_load_failed_login": "✗ Token yüklenemedi!",
"page_load_timeout_login": "✗ Sayfa yüklenme timeout!",
"selenium_error_login": "✗ Selenium hatası:",
"selenium_not_installed_login": "✗ Selenium kurulu değil! pip install selenium",
"login_error": "✗ Giriş hatası:",
"token_onliner_title": "TOKEN ONLINER",
"valid_token_file_not_found_online": "Geçerli token dosyası bulunamadı!",
"tokens_selenium_online": "Token'lar Selenium ile online yapılıyor...",
"token_count_online": "Token Sayısı:",
"statuses_online": "Durumlar: Online → Boşta → Rahatsız Etme",
"press_ctrl_c_online": "Çıkmak için Ctrl+C basın",
"invalid_token_online": "✗ Geçersiz token:",
"token_verified": "Token doğrulandı:",
"status_updated": "✓ Durum güncellendi:",
"status_update_failed": "⚠ Durum güncellenemedi:",
"status_update_error": "⚠ Durum güncelleme hatası:",
"token_info_title": "TOKEN INFO VIEWER",
"valid_token_file_not_found_info": "Geçerli token dosyası bulunamadı!",
"token_info_getting_info": "Token bilgileri alınıyor...",
"token_count_info": "Token Sayısı:",
"token_info_getting_single": "Token bilgisi alınıyor:",
"user_id_info": "User ID:",
"verified_yes_no": "Verified:",
"mfa_enabled_disabled": "2FA:",
"creation_date_info": "Oluşturulma:",
"token_info_failed_info": "✗ Token bilgisi alınamadı!",
"proxy_list_empty_info": "Proxy listesi boş!",
"invalid_proxy_info": "Geçersiz proxy!",
"proxy_working_info": "✓ Proxy çalışıyor!",
"proxy_not_working_info": "✗ Proxy çalışmıyor!",
"proxy_file_not_found_info": "Proxy dosyası bulunamadı!",
"auto_proxy_soon_info": "Otomatik proxy toplama özelliği yakında eklenecek!",
"invalid_choice_info": "Geçersiz seçim!",
"account_login_title_info": "ACCOUNT LOGIN",
"valid_token_file_not_found_login": "Geçerli token dosyası bulunamadı!",
"token_count_login": "Token Sayısı:",
"account_logging_in": "hesabına giriş yapılıyor...",
"account_info_failed": "Hesap bilgisi alınamadı!",
"invalid_choice_account": "Geçersiz seçim!",
"invalid_number_format": "Geçersiz sayı formatı!",
"token_offliner_title": "TOKEN OFFLINER",
"valid_token_file_not_found_offline": "Geçerli token dosyası bulunamadı!",
"tokens_selenium_offline": "Token'lar Selenium ile headless modda offline yapılıyor...",
"token_count_offline": "Token Sayısı:",
"token_offline_processing": "Token offline yapılıyor:",
"token_offline_success": "✓ Token offline yapıldı:",
"token_load_failed_offline": "✗ Token yüklenemedi:",
"page_load_timeout_offline": "✗ Sayfa yüklenme timeout:",
"selenium_error_offline": "✗ Selenium hatası:",
"selenium_not_installed_offline": "✗ Selenium kurulu değil! pip install selenium",
"token_offliner_error_offline": "✗ Token offliner hatası:",
"token_offline_completed": "✓ Token offline işlemi tamamlandı!",
"yes": "Evet",
"no": "Hayır",
"enabled": "Açık",
"disabled": "Kapalı",
"token_generator_title": "TOKEN GENERATOR",
"token_checker_title": "TOKEN CHECKER",
"token_gen_check_title": "TOKEN GENERATOR & CHECKER",
"server_joiner_title": "SERVER JOINER",
"server_leaver_title": "SERVER LEAVER",
"message_spammer_title": "MESSAGE SPAMMER",
"account_nuker_title": "ACCOUNT NUKER",
"token_onliner_title_main": "TOKEN ONLINER",
"token_info_title_main": "TOKEN INFO",
"proxy_manager_title": "PROXY MANAGER",
"account_login_title_main": "ACCOUNT LOGIN",
"token_offliner_title_main": "TOKEN OFFLINER",
"statistics_title": "STATISTICS",
"settings_title_main": "SETTINGS",
"error_hata": "Hata:",
"total_checked": "Toplam kontrol edilen:",
"server_found": "✓ Sunucu bulundu:",
"captcha_detected": "⚠ Captcha tespit edildi!",
"rate_limited_waiting": "⚠ Rate limited! Waiting {wait_time} seconds...",
"captcha_required": "⚠ Captcha gerekli:",
"choose_language": "Dil seçin",
"and_more": "... ve {count} tane daha",
"token_injected": "✓ Token enjekte edildi!",
"token_injecting": "Token enjekte ediliyor...",
"dm_deleted": "✓ DM silindi:",
"account_nuked": "✓ Hesap nuke edildi:",
"page_refreshing": "Sayfa yenileniyor...",
"press_enter_continue": "Devam etmek için Enter'a basın...",
"unknown_server": "Bilinmeyen Sunucu",
"unknown": "Bilinmiyor",
"choose": "Seçin: ",
"language": "Dil ",
"discord_tools": "Discord Tools",
"tools": "Araçlar",
"duplicate_remover": "Duplicate Remover",
"hotmail_checker": "Hotmail Checker",
"hotmail_checker_title": "HOTMAIL CHECKER",
"combo_file_path": "Combo dosya yolu:",
"proxy_file_path": "Proxy dosya yolu (opsiyonel):",
"discord_webhook_url": "Discord webhook URL (opsiyonel):",
"no_combo_file": "Combo dosyası belirtilmedi!",
"starting_login_attempts": "Giriş denemeleri başlatılıyor...",
"login_attempts_finished": "Giriş denemeleri tamamlandı.",
"statistics": "İstatistikler:",
"total_processed": "Toplam işlenen:",
"valid_accounts": "Geçerli hesaplar:",
"invalid_accounts": "Geçersiz hesaplar:",
"success_rate": "Başarı oranı:",
"sending_to_discord": "Sonuçlar Discord'a gönderiliyor...",
"skipping_discord": "Webhook URL sağlanmadığı için Discord bildirimi atlanıyor.",
"valid_hits_saved": "Geçerli sonuçlar kaydedildi:",
"valid_account": "Geçerli",
"invalid_account": "Geçersiz",
"error_logging": "Giriş hatası",
"invalid_format_line": "Geçersiz format satırda:",
"error_processing": "Combo dosyası işleme hatası:",
"file_empty": "Dosya boş. Geçerli sonuç bulunamadı.",
"successfully_sent_discord": "Dosya Discord'a başarıyla gönderildi!",
"failed_send_discord": "Dosya Discord'a gönderilemedi. Durum kodu:",
"error_sending_file": "Dosya gönderilirken hata oluştu:",
"combo_file_not_exist": "Combo dosyası mevcut değil:",
"proxy_file_not_exist": "Proxy dosyası mevcut değil:",
"combo_file_label": "Combo dosyası:",
"proxy_file_label": "Proxy dosyası:",
"discord_webhook_label": "Discord webhook:",
"unexpected_error": "Beklenmeyen hata oluştu:",
"no_combo_file_specified": "Combo dosyası belirtilmedi!",
"enter_combo_file": "Combo dosyası yolunu girin:",
"enter_proxy_file": "Proxy dosyası yolunu girin (opsiyonel):",
"enter_webhook_url": "Discord webhook URL'ini girin (opsiyonel):",
"press_enter_continue": "Devam etmek için Enter'a basın...",
"duplicate_remover_title": "DUPLICATE REMOVER",
"file_not_found": "Dosya bulunamadı:",
"processing_file": "İşleniyor:",
"original_line_count": "Orijinal satır sayısı:",
"backup_created": "Yedek oluşturuldu:",
"process_completed": "İşlem tamamlandı!",
"lines_removed": "Temizlenen satır sayısı:",
"lines_remaining": "Kalan satır sayısı:",
"error_occurred": "Hata:",
"multi_file_processing": "Çoklu Dosya İşleme",
"file_paths_input": "Dosya yollarını virgülle ayırarak girin:",
"no_file_path": "Dosya yolu girilmedi!",
"files_processed": "dosya başarıyla işlendi!",
"directory_processing": "Klasör İşleme",
"directory_path": "Klasör yolu:",
"directory_not_found": "Klasör bulunamadı!",
"file_comparison": "Dosya Karşılaştırma",
"first_file_path": "İlk dosya yolu:",
"second_file_path": "İkinci dosya yolu:",
"one_file_not_found": "Dosyalardan biri bulunamadı!",
"comparison_results": "Karşılaştırma Sonuçları:",
"unique_lines": "benzersiz satır",
"common_lines": "Ortak satırlar:",
"only_in_file": "Sadece",
"common_lines_saved": "Ortak satırlar kaydedildi:",
"statistics": "İstatistikler",
"analyze_directory": "Analiz edilecek klasör yolu:",
"general_statistics": "Genel İstatistikler:",
"total_files": "Toplam dosya:",
"total_lines": "Toplam satır:",
"total_duplicates": "Toplam duplicate:",
"duplicate_ratio": "Duplicate oranı:",
"top_duplicate_files": "En Çok Duplicate Olan Dosyalar:",
"original": "Orijinal:",
"unique": "Benzersiz:",
"duplicate": "Duplicate:",
"supported_file_types": "Desteklenen Dosya Türleri:",
"text_files": "Metin dosyaları",
"csv_files": "Virgülle ayrılmış değerler",
"log_files": "Log dosyaları",
"json_files": "JSON dosyaları",
"settings": "Ayarlar:",
"case_sensitivity": "Büyük/küçük harf duyarlılığı",
"order_preservation": "Sıra korunması",
"auto_backup": "Otomatik yedekleme",
"tips": "İpuçları:",
"auto_backup_tip": "İşlem öncesi otomatik yedek oluşturulur",
"empty_lines_tip": "Boş satırlar da temizlenir",
"large_files_tip": "Büyük dosyalar için sabırlı olun",
"warnings": "Uyarılar:",
"backup_warning": "Yedek dosyalarınızı koruyun",
"test_warning": "Önemli dosyalar üzerinde test yapın",
"irreversible_warning": "İşlem geri alınamaz",
"help": "YARDIM",
"features": "Özellikler",
"single_file_processing": "Tek dosyadan duplicate temizleme",
"multi_file_processing": "Çoklu dosya işleme",
"directory_processing": "Klasör bazlı işleme",
"file_comparison": "Dosya karşılaştırma",
"statistics": "Detaylı istatistikler",
"auto_backup": "Otomatik yedekleme",
"supported_file_types": "Desteklenen Dosya Türleri",
"text_files": "Metin dosyaları",
"csv_files": "Virgülle ayrılmış değerler",
"log_files": "Log dosyaları",
"json_files": "JSON dosyaları",
"settings": "Ayarlar",
"case_sensitivity": "Büyük/küçük harf duyarlılığı",
"order_preservation": "Sıra korunması",
"tips": "İpuçları",
"auto_backup_tip": "İşlem öncesi otomatik yedek oluşturulur",
"empty_lines_tip": "Boş satırlar da temizlenir",
"large_files_tip": "Büyük dosyalar için sabırlı olun",
"warnings": "Uyarılar",
"backup_warning": "Yedek dosyalarınızı koruyun",
"test_warning": "Önemli dosyalar üzerinde test yapın",
"file_path": "Dosya yolu:",
"settings_coming_soon": "Özel ayarlar yakında eklenecek...",
"program_closing": "Program kapatılıyor...",
"thank_you": "Teşekkürler!",
"program_terminated": "Program kullanıcı tarafından sonlandırıldı.",
"duplicate_remover_menu": "DUPLICATE REMOVER MENU",
"single_file_clean": "Tek dosyadan duplicate temizle",
"multi_file_process": "Çoklu dosya işle",
"directory_process": "Klasör işle",
"custom_settings": "Özel ayarlar",
"file_compare": "Dosya karşılaştır",
"statistics_menu": "İstatistikler",
"help_menu": "Yardım",
"exit_menu": "Çıkış",
"main_menu_title": "ANA MENÜ",
"takipcilekazan": "Takipçilekazan",
"takipcilekazan_title": "TAKİPÇİLEKAZAN",
"login_elements_not_found": "Login elementleri bulunamadı veya işleme sokulamadı",
"press_ctrl_c_to_stop": "İşlemi sonlandırmak için CTRL + C basınız.",
"video_watched": "Video",
"watched": "izlendi!",
"total_points_earned": "Toplam Kazanılan Puan",
"points_from_this_video": "Bu Videodan Kazanılan Puan",
"operations_terminated": "İşlemler sonlandırıldı!",
"username": "Kullanıcı Adı",
"password": "Şifre",
"username_required": "Kullanıcı adı gerekli!",
"password_required": "Şifre gerekli!"
},
"en": {
"menu_title": "MAIN MENU",
"token_generator": "Token Generator",
"token_checker": "Token Checker",
"gen_check": "Gen & Check",
"server_joiner": "Server Joiner",
"server_leaver": "Server Leaver",
"message_spammer": "Message Spammer",
"account_nuker": "Account Nuker",
"token_onliner": "Token Onliner",
"token_info": "Token Info",
"proxy_manager": "Proxy Manager",
"account_login": "Account Login",
"token_offliner": "Token Offliner",
"statistics": "Statistics ",
"settings": "Settings",
"exit": "Exit ",
"continue_enter": "Press Enter to continue...",
"how_many_tokens": "How many tokens do you want to generate: ",
"how_many_create": "How many tokens do you want to create? ",
"thread_count_input": "Thread count (1-{max}):",
"thread_count_gen": "Thread count (1-{max}):",
"invalid_number": "Invalid number!",
"invalid_value": "Invalid value!",
"invalid_input": "Invalid input!",
"invalid_format": "Invalid number format!",
"invalid_choice": "Invalid choice!",
"error": "Error:",
"token_generation_starting": "Token generation starting...",
"token_generation_completed": "✓ Token generation completed!",
"token_generated": "Token generated:",
"tokens_to_generate": "Tokens to Generate:",
"thread_count": "Thread Count:",
"total_generated": "Total generated:",
"saved_file": "Saved file:",
"generation_cancelled": "Token generation cancelled!",
"token_file_not_found": "Token file not found:",
"token_file_empty": "Token file is empty!",
"token_check_starting": "Token checking starting...",
"tokens_to_check": "Tokens to Check:",
"valid": "Valid:",
"invalid": "Invalid:",
"valid_tokens_saved": "Valid tokens saved:",
"check_cancelled": "Token checking cancelled!",
"tokens_creating_checking": "Tokens are being created and checked...",
"total_threads": "Thread count:",
"total_tokens": "Total tokens:",
"process_completed": "✓ Process completed!",
"created": "Created:",
"checked": "Checked:",
"discord_app_closed": "⚠ IMPORTANT: Discord desktop application must be CLOSED!",
"discord_app_conflict": "WebSocket connection conflicts when Discord app is open.",
"continue_enter_discord": "Press Enter to continue...",
"valid_token_file_not_found": "Valid token file not found!",
"create_valid_tokens_first": "First create valid tokens with Token Generator & Checker.",
"example_invite": "Example: https://discord.gg/x5XSGGWrMA",
"discord_invite_input": "Discord invite link or code:",
"invalid_invite": "Invalid invite!",
"invalid_invite_format": "Invalid invite format!",
"server_join_starting": "Server joining starting...",
"invite_code": "Invite Code:",
"valid_token_count": "Valid Token Count:",
"total_joined": "✓ Total {count} tokens joined the server!",
"server_id_input": "Server ID:",
"invalid_server_id": "Invalid server ID!",
"server_leave_starting": "Server leaving starting...",
"server_id": "Server ID:",
"total_left": "✓ Total {count} tokens left the server!",
"channel_id_input": "Channel ID:",
"message_input": "Message:",
"how_many_messages": "How many messages to send:",
"invalid_input_spam": "Invalid input!",
"message_spam_starting": "Message spam starting...",
"channel_id": "Channel ID:",
"message": "Message:",
"message_count": "Message Count:",
"total_sent": "✓ Total {count} messages sent!",
"account_nuker_warning": "⚠️ WARNING: This operation cannot be undone!",
"account_nuker_warning2": "⚠️ Will leave all servers and delete DMs!",
"confirm_nuke": "Are you sure you want to continue? (YES):",
"operation_cancelled": "Operation cancelled.",
"account_nuke_starting": "Account nuke starting...",
"total_nuked": "✓ Total {count} accounts nuked!",
"token_onliner_starting": "Tokens are being made online with Selenium...",
"token_count": "Token Count:",
"statuses": "Statuses: Online → Idle → Do Not Disturb",
"press_ctrl_c": "Press Ctrl+C to exit",
"token_onliner_stopped": "Token onliner stopped!",
"token_info_starting": "Getting token information...",
"token_info_getting": "Getting token info:",
"token_info_success": "✓ Token Information:",
"username": "Username:",
"user_id": "User ID:",
"email": "Email:",
"phone": "Phone:",
"verified": "Verified:",
"mfa": "2FA:",
"nitro": "Nitro:",
"badges": "Badges:",
"creation_date": "Creation:",
"avatar": "Avatar:",
"token_info_failed": "✗ Token information could not be retrieved!",
"proxy_list": "View proxy list",
"proxy_add": "Add proxy",
"proxy_test": "Test proxy",
"proxy_clear": "Clear proxy",
"proxy_auto": "Auto collect proxy",
"back": "Back",
"choice": "Your choice:",
"proxy_list_title": "Proxy List ({count} items):",
"proxy_list_empty": "Proxy list is empty!",
"proxy_input": "Proxy (ip:port or user:pass@ip:port):",
"proxy_added": "✓ Proxy added!",
"invalid_proxy": "Invalid proxy!",
"no_proxy_test": "No proxy to test!",
"proxy_testing": "Testing proxy:",
"proxy_working": "✓ Proxy is working!",
"proxy_not_working": "✗ Proxy is not working!",
"proxy_cleared": "✓ Proxy list cleared!",
"proxy_file_not_found": "Proxy file not found!",
"auto_proxy_soon": "Auto proxy collection feature will be added soon!",
"invalid_choice_proxy": "Invalid choice!",
"account_login_title": "ACCOUNT LOGIN",
"available_accounts": "Available accounts:",
"login_account_number": "Account number to login:",
"logging_in": "logging into account...",
"account_info_failed": "Account information could not be retrieved!",
"invalid_choice_account": "Invalid choice!",
"invalid_number_format": "Invalid number format!",
"token_offliner_starting": "Tokens are being made offline with Selenium in headless mode...",
"token_offline_processing": "Making token offline:",
"token_offline_success": "✓ Token made offline:",
"token_load_failed": "✗ Token could not be loaded:",
"page_load_timeout": "✗ Page load timeout:",
"selenium_error": "✗ Selenium error:",
"selenium_not_installed": "✗ Selenium not installed! pip install selenium",
"token_offliner_error": "✗ Token offliner error:",
"token_offline_completed": "✓ Token offline process completed!",
"settings_title": "SETTINGS",
"clear_token_file": "Clear token file",
"clear_valid_token_file": "Clear valid token file",
"set_thread_count": "Set thread count",
"set_delay": "Set delay time",
"reset_statistics": "Reset statistics",
"token_file_cleared": "✓ Token file cleared!",
"token_file_not_found_settings": "Token file not found!",
"valid_token_file_cleared": "✓ Valid token file cleared!",
"valid_token_file_not_found_settings": "Valid token file not found!",
"new_thread_count": "New thread count (1-50):",
"thread_count_set": "✓ Thread count set to {count}!",
"invalid_thread_value": "Invalid value! Must be between 1-50.",
"invalid_thread_input": "Invalid input!",
"new_delay": "New delay time (seconds):",
"delay_set": "✓ Delay time set to {delay} seconds!",
"invalid_delay_value": "Invalid value! Must be between 0.1-5.0.",
"invalid_delay_input": "Invalid input!",
"statistics_reset": "✓ Statistics reset!",
"invalid_choice_settings": "Invalid choice!",
"closing": "RedX Discord Tools closing...",
"thanks": "Developer by. {author}",
"program_terminated": "Program terminated by user.",
"unexpected_error": "Unexpected error:",
"generated": "Generated Tokens:",
"checked_stats": "Checked:",
"valid_stats": "Valid Tokens:",
"invalid_stats": "Invalid Tokens:",
"joined": "Joined Servers:",
"left": "Left Servers:",
"spammed": "Sent Messages:",
"nuked": "Nuked Accounts:",
"language_selection": "LANGUAGE SELECTION",
"turkish": "Türkçe (Turkish)",
"english": "English",
"invalid_choice_lang": "Invalid choice!",
"language_changed_turkish": "✓ Language changed to Turkish!",
"language_changed_english": "✓ Language changed to English!",
"websocket_connecting": "WebSocket connection establishing...",
"session_id_error": "Session ID could not be retrieved:",
"solution_close_discord": "💡 Solution: Close Discord desktop application and try again!",
"fingerprint_error": "Fingerprint could not be retrieved:",
"captcha_solve_error": "Captcha solving error:",
"requests_token_login": "Token login with requests...",
"connecting_discord": "Connecting to Discord...",
"connected_discord": "✓ Connected to Discord!",
"token_login": "Logging in with token...",
"token_valid_account": "✓ Token valid! Logged in account:",
"auto_server_join": "Auto joining server...",
"session_id_received": "Session ID received:",
"successfully_joined": "✓ Successfully joined server:",
"captcha_required_browser": "⚠ Captcha required, opening in browser...",
"server_join_completed": "✓ Server join completed!",
"unauthorized_token": "✗ 401 Unauthorized - Token invalid or unauthorized!",
"token_no_join_permission": "Token may not have permission to join server.",
"forbidden_access": "✗ 403 Forbidden - Access denied!",
"token_cannot_join": "Token may not be able to join this server.",
"rate_limited_many_requests": "⚠ 429 Rate Limited - Too many requests!",
"failed_to_join_server": "✗ Failed to join server:",
"error_message": "Error message:",
"session_id_not_received": "✗ Session ID not received!",
"invalid_server_invite": "✗ Server invite invalid:",
"invite_code_not_found": "✗ Invite code not found!",
"invalid_token_error": "✗ Token invalid! Error:",
"discord_connection_failed": "✗ Could not connect to Discord! Error:",
"requests_login_error": "✗ Requests login error:",
"invalid_invite_code": "✗ Invalid invite code:",
"json_error": "✗ JSON error:",
"session_id_not_received_token": "✗ Session ID not received:",
"successfully_joined_token": "✓ Successfully joined:",
"captcha_solved_joined": "✓ Captcha solved, successfully joined:",
"captcha_not_solved": "✗ Captcha not solved or join failed:",
"captcha_process_error": "✗ Captcha process error:",
"valid_token_file_not_found_leave": "Valid token file not found!",
"create_valid_tokens_first_leave": "First create valid tokens with Token Generator & Checker.",
"invalid_server_id_leave": "Invalid server ID!",
"server_leave_starting_leave": "Server leaving starting...",
"server_id_leave": "Server ID:",
"valid_token_count_leave": "Valid Token Count:",
"thread_count_leave": "Thread Count:",
"total_left_leave": "✓ Total {count} tokens left the server!",
"successfully_left": "✓ Successfully left:",
"invalid_token_leave": "✗ Invalid token:",
"not_in_server": "⚠ Not in server:",
"valid_token_file_not_found_spam": "Valid token file not found!",
"invalid_input_spam": "Invalid input!",
"message_spam_starting_spam": "Message spam starting...",
"channel_id_spam": "Channel ID:",
"message_count_spam": "Message Count:",
"token_count_spam": "Token Count:",
"total_sent_spam": "✓ Total {count} messages sent!",
"message_sent": "✓ Message sent:",
"invalid_token_spam": "✗ Invalid token:",
"account_nuker_warning_spam": "⚠️ WARNING: This operation cannot be undone!",
"account_nuker_warning2_spam": "⚠️ Will leave all servers and delete DMs!",
"operation_cancelled_spam": "Operation cancelled.",
"valid_token_file_not_found_nuke": "Valid token file not found!",
"account_nuke_starting_nuke": "Account nuke starting...",
"token_count_nuke": "Token Count:",
"thread_count_nuke": "Thread Count:",
"left_from_server": "✓ Left from server:",
"token_online_processing": "Making token online:",
"token_successfully_loaded": "✓ Token successfully loaded:",
"status_change_mode": "Switching to status change mode...",
"status_changed": "✓ Status changed:",
"webdriver_error_reconnecting": "✗ WebDriver error, reconnecting:",
"token_load_failed_online": "✗ Token could not be loaded:",
"page_load_timeout_online": "✗ Page load timeout:",
"selenium_error_online": "✗ Selenium error:",
"selenium_not_installed_online": "✗ Selenium not installed! pip install selenium",
"token_onliner_error_online": "✗ Token onliner error:",
"selenium_discord_opening": "Opening Discord with Selenium...",
"discord_opened_browser": "✓ Discord opened in browser!",
"token_successfully_loaded_login": "✓ Token successfully loaded!",
"account_logged_in_close_browser": "You are logged in to your account. You can close the browser.",
"token_load_failed_login": "✗ Token could not be loaded!",
"page_load_timeout_login": "✗ Page load timeout!",
"selenium_error_login": "✗ Selenium error:",
"selenium_not_installed_login": "✗ Selenium not installed! pip install selenium",
"login_error": "✗ Login error:",
"token_onliner_title": "TOKEN ONLINER",
"valid_token_file_not_found_online": "Valid token file not found!",
"tokens_selenium_online": "Tokens are being made online with Selenium...",
"token_count_online": "Token Count:",
"statuses_online": "Statuses: Online → Idle → Do Not Disturb",
"press_ctrl_c_online": "Press Ctrl+C to exit",
"invalid_token_online": "✗ Invalid token:",
"token_verified": "Token verified:",
"status_updated": "✓ Status updated:",
"status_update_failed": "⚠ Status update failed:",
"status_update_error": "⚠ Status update error:",
"token_info_title": "TOKEN INFO VIEWER",
"valid_token_file_not_found_info": "Valid token file not found!",
"token_info_getting_info": "Getting token information...",
"token_count_info": "Token Count:",
"token_info_getting_single": "Getting token info:",
"user_id_info": "User ID:",
"verified_yes_no": "Verified:",
"mfa_enabled_disabled": "2FA:",
"creation_date_info": "Creation:",
"token_info_failed_info": "✗ Token information could not be retrieved!",
"proxy_list_empty_info": "Proxy list is empty!",
"invalid_proxy_info": "Invalid proxy!",
"proxy_working_info": "✓ Proxy is working!",
"proxy_not_working_info": "✗ Proxy is not working!",
"proxy_file_not_found_info": "Proxy file not found!",
"auto_proxy_soon_info": "Auto proxy collection feature will be added soon!",
"invalid_choice_info": "Invalid choice!",
"account_login_title_info": "ACCOUNT LOGIN",
"valid_token_file_not_found_login": "Valid token file not found!",
"token_count_login": "Token Count:",
"token_info_not_available": "Information not available",
"server_join_completed": "✓ Server join completed!",
"unauthorized_token_401": "✗ 401 Unauthorized - Token invalid or unauthorized!",
"token_no_join_permission": "Token may not have permission to join server.",
"forbidden_access_403": "✗ 403 Forbidden - Access denied!",
"token_cannot_join": "Token may not be able to join this server.",
"rate_limited_many_requests": "⚠ 429 Rate Limited - Too many requests!",
"failed_to_join_server": "✗ Failed to join server:",
"error_message": "Error message:",
"session_id_not_received": "✗ Session ID not received!",
"invalid_server_invite": "✗ Server invite invalid:",
"invite_code_not_found": "✗ Invite code not found!",
"invalid_token_error": "✗ Token invalid! Error:",
"discord_connection_failed": "✗ Could not connect to Discord! Error:",
"requests_login_error": "✗ Requests login error:",
"invalid_invite_code": "✗ Invalid invite code:",
"json_error": "✗ JSON error:",
"session_id_not_received_token": "✗ Session ID not received:",
"successfully_joined_token": "✓ Successfully joined:",
"captcha_solved_joined": "✓ Captcha solved, successfully joined:",
"captcha_not_solved": "✗ Captcha not solved or join failed:",
"captcha_process_error": "✗ Captcha process error:",
"valid_token_file_not_found_leave": "Valid token file not found!",
"create_valid_tokens_first_leave": "First create valid tokens with Token Generator & Checker.",
"invalid_server_id_leave": "Invalid server ID!",
"server_leave_starting_leave": "Server leaving starting...",
"server_id_leave": "Server ID:",
"valid_token_count_leave": "Valid Token Count:",
"thread_count_leave": "Thread Count:",
"total_left_leave": "✓ Total {count} tokens left the server!",
"successfully_left": "✓ Successfully left:",
"invalid_token_leave": "✗ Invalid token:",
"not_in_server": "⚠ Not in server:",
"valid_token_file_not_found_spam": "Valid token file not found!",
"invalid_input_spam": "Invalid input!",
"message_spam_starting_spam": "Message spam starting...",
"channel_id_spam": "Channel ID:",
"message_count_spam": "Message Count:",
"token_count_spam": "Token Count:",
"total_sent_spam": "✓ Total {count} messages sent!",
"message_sent": "✓ Message sent:",
"invalid_token_spam": "✗ Invalid token:",
"account_nuker_warning_spam": "⚠️ WARNING: This operation cannot be undone!",
"account_nuker_warning2_spam": "⚠️ Will leave all servers and delete DMs!",
"operation_cancelled_spam": "Operation cancelled.",
"valid_token_file_not_found_nuke": "Valid token file not found!",
"account_nuke_starting_nuke": "Account nuke starting...",
"token_count_nuke": "Token Count:",
"thread_count_nuke": "Thread Count:",
"left_from_server": "✓ Left from server:",
"token_online_processing": "Making token online:",
"token_successfully_loaded": "✓ Token successfully loaded:",
"status_change_mode": "Switching to status change mode...",
"status_changed": "✓ Status changed:",
"webdriver_error_reconnecting": "✗ WebDriver error, reconnecting:",
"token_load_failed_online": "✗ Token could not be loaded:",
"page_load_timeout_online": "✗ Page load timeout:",
"selenium_error_online": "✗ Selenium error:",
"selenium_not_installed_online": "✗ Selenium not installed! pip install selenium",
"token_onliner_error_online": "✗ Token onliner error:",
"selenium_discord_opening": "Opening Discord with Selenium...",
"discord_opened_browser": "✓ Discord opened in browser!",
"token_successfully_loaded_login": "✓ Token successfully loaded!",
"account_logged_in_close_browser": "You are logged in to your account. You can close the browser.",
"token_load_failed_login": "✗ Token could not be loaded!",
"page_load_timeout_login": "✗ Page load timeout!",
"selenium_error_login": "✗ Selenium error:",
"selenium_not_installed_login": "✗ Selenium not installed! pip install selenium",
"login_error": "✗ Login error:",
"token_onliner_title": "TOKEN ONLINER",
"valid_token_file_not_found_online": "Valid token file not found!",
"tokens_selenium_online": "Tokens are being made online with Selenium...",
"token_count_online": "Token Count:",
"statuses_online": "Statuses: Online → Idle → Do Not Disturb",
"press_ctrl_c_online": "Press Ctrl+C to exit",
"invalid_token_online": "✗ Invalid token:",
"token_verified": "Token verified:",
"status_updated": "✓ Status updated:",
"status_update_failed": "⚠ Status update failed:",
"status_update_error": "⚠ Status update error:",
"token_info_title": "TOKEN INFO VIEWER",
"valid_token_file_not_found_info": "Valid token file not found!",
"token_info_getting_info": "Getting token information...",
"token_count_info": "Token Count:",
"token_info_getting_single": "Getting token info:",
"user_id_info": "User ID:",
"verified_yes_no": "Verified:",
"mfa_enabled_disabled": "2FA:",
"creation_date_info": "Creation:",
"token_info_failed_info": "✗ Token information could not be retrieved!",
"proxy_list_empty_info": "Proxy list is empty!",
"invalid_proxy_info": "Invalid proxy!",
"proxy_working_info": "✓ Proxy is working!",
"proxy_not_working_info": "✗ Proxy is not working!",
"proxy_file_not_found_info": "Proxy file not found!",
"auto_proxy_soon_info": "Auto proxy collection feature will be added soon!",
"invalid_choice_info": "Invalid choice!",
"account_login_title_info": "ACCOUNT LOGIN",
"valid_token_file_not_found_login": "Valid token file not found!",
"token_count_login": "Token Count:",
"account_logging_in": "logging into account...",
"account_info_failed": "Account information could not be retrieved!",
"invalid_choice_account": "Invalid choice!",
"invalid_number_format": "Invalid number format!",
"token_offliner_title": "TOKEN OFFLINER",
"valid_token_file_not_found_offline": "Valid token file not found!",
"tokens_selenium_offline": "Tokens are being made offline with Selenium in headless mode...",
"token_count_offline": "Token Count:",
"token_offline_processing": "Making token offline:",
"token_offline_success": "✓ Token made offline:",
"token_load_failed_offline": "✗ Token could not be loaded:",
"page_load_timeout_offline": "✗ Page load timeout:",
"selenium_error_offline": "✗ Selenium error:",
"selenium_not_installed_offline": "✗ Selenium not installed! pip install selenium",
"token_offliner_error_offline": "✗ Token offliner error:",
"token_offline_completed": "✓ Token offline process completed!",
"yes": "Yes",
"no": "No",
"enabled": "Enabled",
"disabled": "Disabled",