forked from OkoiStudios/Instagram-Bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json
1544 lines (1544 loc) · 82.4 KB
/
config.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
{
"driver_language": "'intl.accept_languages', 'en-US, en'",
"driver_path": "C:\\geckodriver.exe",
"headless": "true",
"language": "en",
"languages": {
"en": {
"ayarlar": {
"ana_ekran": {
"secenekler": [
" ",
" SETTINGS",
" ",
" <<< OPTIONS >>> ",
" ",
"1 -) Language Settings",
"2 -) Browser Settings",
"3 -) Exit Settings"
]
},
"dil_ayarlari": {
"secenekler": [
" ",
" LANGUAGE SETTINGS",
"Application Language:{dil}",
" ",
" <<< OPTIONS >>> ",
" ",
"1-) Change Language",
"2-) Return to Previous Menu",
"3-) Exit Settings"
],
"dil_degistir": {
"secenekler": [
" ",
"Selected Option >>> Change Application Language",
" ",
" <<< OPTIONS >>> ",
" ",
"1-) Enter 1 for the Turkish language",
"2-) Enter 2 for the English language.",
"3-) Return to Previous Menu",
"4-) Return to Main Menu",
"5-) Exit Settings"
]
}
},
"tarayici_ayarlari": {
"secenekler": [
" ",
" BROWSER SETTINGS",
"Browser Path:{path}",
"Browser Visibility Status:{durum}",
" ",
" <<< OPTIONS >>> ",
" ",
"1-) Change Browser Visibility Status",
"2-) Change Browser Path",
"3-) Return to Previous Menu",
"4-) Exit Settings"
],
"gorunme_durumu_degistir": {
"secenekler": [
" ",
"Selected Option >>> Change Browser Visibility Status",
" ",
" <<< OPTIONS >>> ",
" ",
"1-) Enter 1 to change browser visibility status to open",
"2-) Enter 2 to change browser visibility status to close",
"3-) Return to Previous Menu",
"4-) Return to Main Menu",
"5-) Exit Settings"
]
},
"path_degistir": {
"secenekler": [
" ",
"Selected Option >>> Change Browser Path",
" ",
" <<< OPTIONS >>> ",
" ",
"1-) Enter 1 to enter a new browser path",
"2-) Return to Previous Menu",
"3-) Return to Main Menu",
"4-) Exit Settings"
]
}
}
},
"menu": [
" ",
" <<< OPTIONS >>> ",
" ",
"1 -) All Posts Download",
"2 -) Like All Posts",
"3 -) Unlike All Posts",
"4 -) Bulk Unfollow",
"5 -) Bulk Commenting To A Post",
"6 -) Unfollow Users Who Don't Follow",
"7 -) Bulk Message Deletion",
"8 -) Highlight Download",
"9 -) Story Download",
"10 -) A Post Download",
"11 -) IG TV Video Download",
"12 -) Following A User's Followers",
"13 -) Following All Users In A File",
"14 -) Follow Users Who Like A Post",
"15 -) Follow Users by Tag",
"16 -) Liking Posts by Tag",
"17 -) Like A Post",
"18 -) Unlike A Post",
"19 -) Commenting A Post",
"20 -) User Follow",
"21 -) User Unfollow",
"22 -) User Blocking",
"23 -) User Unblocking",
"24 -) Settings",
"25 -) Instagram Sign Out",
"26 -) Application Signing Out",
" "
],
"warnings": {
"aktifKullaniciGetir": {
"warnings": {
"warning1": "[-] An error occurred while fetching active username:{hata}"
}
},
"albumIcerikSayisiGetir": {
"warnings": {
"warning1": "[-] {url} Error when fetching album content count:{hata}"
}
},
"albumIcerikUrlGetir": {
"warnings": {
"warning1": "[-] An error occurred while fetching post url:{hata}"
}
},
"ayarlar": {
"inputs": {
"input1": "Enter an option number >> "
},
"warnings": {
"warning1": "[-] You have not made a valid choice.Please make a valid choice!",
"warning2": "[-] An error occurred in the settings menu:{hata}"
}
},
"BASE_AYARLAR": {
"warnings": {
"warning1": "[-] An error occurred during the formatting process created to print settings menu:{hata}"
}
},
"BASE_SLEEP": {
"warnings": {
"warning1": "[-] An error occurred during the formatting process created to print waiting times: {hata}"
}
},
"BASE_UYARI": {
"warnings": {
"warning1": "[-] An error occurred during the formatting process created to print warning messages:{hata}"
}
},
"dosyaIndir": {
"warnings": {
"warning1": "[+] {url} downloaded",
"warning2": "[-] An error occurred during the file download process: {hata}"
}
},
"dosyaİceriginiAl": {
"warnings": {
"warning1": "[-] An error occurred while loading the selected file:{hata}"
}
},
"dosyaSec": {
"inputs": {
"input1": "Enter file path >> "
},
"warnings": {
"warning1": "[-] You did not specify a valid file path.You can only select files with the txt extension!",
"warning2": "[-] An error occurred during the file selection process:{hata}"
}
},
"dilAyarlari": {
"inputs": {
"input1": "Enter an option number >> "
},
"warnings": {
"warning1": "[-] You have not made a valid choice.Please make a valid choice!",
"warning2": "[-] An error occurred in the language settings menu:{hata}"
}
},
"dilSec": {
"inputs": {
"input1": "Enter an option number >> "
},
"warnings": {
"warning1": "[-] You have not made a valid choice.Please make a valid choice!",
"warning2": "[-] An error occurred during the application language change process:{hata}"
}
},
"etiketeGoreBegenme": {
"warnings": {
"warning1": "[*] The process of unlike for the tag of {etiket} has started",
"warning2": "[+] {index}-) {url} post liked.",
"warning3": "[*] {url} post was liked before.",
"warning4": "[*] The process of unlike for the tag of {etiket} has completed",
"warning5": "[-] An error occurred during liking the post by tag: {hata}"
}
},
"etiketeGoreIslemLimitiGetir": {
"inputs": {
"input1": "Enter the number of posts you want to like >> ",
"input2": "Enter the number of users you want to follow >> "
},
"warnings": {
"warning1": "[-] You did not enter a number!",
"warning2": "[-] An error occurred during the limit setting process: {hata}"
}
},
"etiketeGoreTakipEtme": {
"warnings": {
"warning1": "[*] The user following process for the {etiket} tag has begun.",
"warning2": "[+] {index}-) {kullanici} started to be followed.",
"warning3": "[*] {kullanici} is already being followed.",
"warning4": "[*] The user following process for the {etiket} tag has completed.",
"warning5": "[-] An error occurred while following the user by tag: {hata}"
}
},
"etiketGetir": {
"inputs": {
"input1": "Enter a tag name >> "
},
"warnings": {
"warning1": "[*] Redirecting to {url} page ...",
"warning2": "[-] A post belonging to tag {etiket} could not be found!",
"warning3": "[-] You have not entered a tag!",
"warning4": "[-] There was an error selecting the tag: {hata}"
}
},
"girisDogrulama": {
"inputs": {
"input1": "Enter the code sent to your phone >> "
},
"warnings": {
"warning1": "[-] Please enter the security code!",
"warning2": "[-] Please check the security code and try again.",
"warning3": "[+] Login is successful",
"warning4": "[-] Unable to Login ..."
}
},
"girisKontrol": {
"warnings": {
"warning1": "[-] The username you entered doesn't belong to an account. Please check your username and try again.",
"warning2": "[-] Sorry, your password was incorrect. Please double-check your password.",
"warning3": "[+] Login is successful",
"warning4": "[-] Login failed"
}
},
"girisYap": {
"inputs": {
"input1": "Your username >> ",
"input2": "Your password >> "
},
"warnings": {
"warning1": "<<< Login to Instagram >>>>",
"warning2": "[-] Please enter your username and password!",
"warning3": "[-] Please enter your username!",
"warning4": "[-] Please enter your password!",
"warning5": "[*] Logging in user ...",
"warning6": "[-] Error during user login:{hata}"
}
},
"gonderiBegen": {
"inputs": {
"input1": "Enter a post url >> ",
"input2": "Enter a post url >> "
},
"warnings": {
"warning1": "[*] Redirecting to {url} post ...",
"warning2": "[*] The process of liking the {url} post has begun.",
"warning3": "[*] The process of unliking the {url} post has begun.",
"warning4": "[+] {url} post liked.",
"warning5": "[*] {url} post was liked before.",
"warning6": "[+] The post on {url} unliked",
"warning7": "[*] {url} post was already unliked.",
"warning8": "[*] The process of liking the {url} post has completed.",
"warning9": "[*] The process of unliking the {url} post has completed.",
"warning10": "[-] Likes cannot be applied because the profile of the owner of the {url} post is a private account!",
"warning11": "[-] Unlikes cannot be applied because the profile of the owner of the {url} post is a private account!",
"warning12": "[-] An error occurred during the post like process:{hata}",
"warning13": "[-] An error occurred during the post unlike process:{hata}"
}
},
"gonderiBegenenleriTakipEt": {
"inputs": {
"input1": "Enter post url >> ",
"input2": "Do you want to process in all followers list ? >> ",
"input3": " Enter an option number >> "
},
"warnings": {
"warning1": "[*] Redirecting to {url} page ...",
"warning2": [
" <<< OPTIONS >>> ",
"Enter 1 to process from all followers list,",
"In order to take action for the specified number of followers, enter 2",
""
],
"warning3": "Selected Option >>> Follow all users who like post",
"warning4": "Selected Option >>> Follow specified number of users who has liked post",
"warning5": "[-] You did not enter a number. Please enter a number!...",
"warning6": "[-] You have not made a valid choice.Please make a valid choice!",
"warning7": "[*] The process of following users who like the post on {url} has begun...",
"warning8": "[*] {index} -) The process of following the {kullanici} user has begun.",
"warning9": "[*] The process of following users who liked the post on {url} has completed.",
"warning10": "[*] Unable to view the list of users who liked the {url} post! Users cannot be followed.",
"warning11": "[-] {url} post is a private post. The list of users who liked the post cannot be followed.",
"warning12": "[-] An error occurred while following users who liked the post {url}: {hata}"
}
},
"gonderiIndir": {
"inputs": {
"input1": "Enter the post url you want to download >> "
},
"warnings": {
"warning1": "[*] Redirecting to {url} page ...",
"warning2": "[*] Download of {url} post started.",
"warning3": "[*] Download of {url} post completed.",
"warning4": "[-] {url} post is a private post. Post cannot be downloaded.",
"warning5": "[-] An error occurred during the post download:{hata}"
}
},
"gonderileriBegen": {
"warnings": {
"warning1": "[*] The process of liking {kullanici}'s posts is started.",
"warning2": "[+] {index}-) {url} post liked.",
"warning3": "[*] {url} post was liked before.",
"warning4": "[+] {index}-) {url} post unliked.",
"warning5": "[*] {url} post is already not liked.",
"warning6": "[*] The process of liking {kullanici}'s posts is completed.",
"warning7": "[-] Unable to like posts because {kullanici} 's account is a private account!",
"warning8": "[-] Unable to unlike posts because {kullanici} 's account is a private account!",
"warning9": "[-] An error occurred while liking {kullanici}'s posts:{hata}",
"warning10": "[-] An error occurred while unliking {kullanici}'s posts:{hata}"
}
},
"gonderileriIndir": {
"warnings": {
"warning1": "[*] Download of {kullanici}'s posts has started.",
"warning2": "[*] Download of {kullanici}'s posts has completed.",
"warning3": "[-] Unable to download posts because {kullanici}'s account is a private account!",
"warning4": "[-] An error occurred while downloading the posts of {kullanici}: {hata}"
}
},
"gonderiUrlGetir": {
"warnings": {
"warning1": "[-] An error occurred while fetching post url: {hata}"
}
},
"gonderiVarMi": {
"warnings": {
"warning1": "[-] {kullanici} has no posts."
}
},
"gonderiYorumYapma": {
"inputs": {
"input1": "Enter the post url you want to comment >> ",
"input2": "Enter your comment >> "
},
"warnings": {
"warning1": "[-] You have not entered a comment!",
"warning2": "[*] Redirecting to {url} page ...",
"warning3": "[-] The url of the post you want to comment could not be reached!",
"warning4": "[*] Commenting on {url} post started.",
"warning5": "[*] Commenting on post to {url} is complete.",
"warning6": "[-] {url} post is a private post. You cannot comment on post",
"warning7": "[-] There was an error writing a comment to the {url} post: {hata}"
}
},
"hikayeIndir": {
"warnings": {
"warning1": "[*] Download of {kullanici} 's stories has started.",
"warning2": "[*] Download of {kullanici} 's stories has completed.",
"warning3": "[-] No stories found!",
"warning4": "[-] {kullanici} 's account is a hidden account, so its followers cannot be followed!",
"warning5": "[-] An error occurred while downloading the story:{hata}"
}
},
"hikayeleriGetir": {
"warnings": {
"warning1": "[-] An error occurred while fetching stories: {hata}"
}
},
"hikayeSayisiGetir": {
"warnings": {
"warning1": "[-] An error occurred while fetching story count: {hata}"
}
},
"hikayeVarMi": {
"warnings": {
"warning1": "[-] An error occurred during story check: {hata}"
}
},
"islemSec": {
"inputs": {
"input1": " Enter an option number >> "
},
"warnings": {
"warning1": "[-] Please make a valid choice!",
"warning2": "[-] You did not enter a valid option number!"
}
},
"klasorOlustur": {
"warnings": {
"warning1": "[+] Folder named {klasor} created",
"warning2": "[*] Folder named {klasor} already exists",
"warning3": "[*] Switched to the {klasor} folder"
}
},
"kullaniciEngelle": {
"warnings": {
"warning1": "[*] Blocking process for {kullanici} has started.",
"warning2": "[*] Unblocking process for {kullanici} has started.",
"warning3": "[-] {kullanici} is already blocked",
"warning4": "[-] {kullanici} is already unblocked",
"warning5": "[-] {kullanici} is already blocked",
"warning6": "[-] {kullanici} is already unblocked",
"warning7": "[*] Blocking process for {kullanici} has completed.",
"warning8": "[*] Unblocking process for {kullanici} has completed.",
"warning9": "[-] Error while blocking user {kullanici}:{hata}",
"warning10": "[-] Error while unblocking user {kullanici}:{hata}"
}
},
"kullaniciTakipcileriniTakipEt": {
"inputs": {
"input1": "Do you want to process in all followers list ? >> ",
"input2": "Enter an option number >> "
},
"warnings": {
"warning1": [
" <<< OPTIONS >>> ",
"Enter 1 to process from all followers list,",
"In order to take action for the specified number of followers, enter 2",
""
],
"warning2": "Selected Option >>> Follow all users in the list of followers",
"warning3": "Selected Option >>> Follow specified number of users in the followers list",
"warning4": "[-] You did not enter a number. Please enter a number!...",
"warning5": "[-] You have not made a valid choice.Please make a valid choice!",
"warning6": "[*] You have started to follow the followers of {kullanici}",
"warning7": "[*] {index} -) You started following {kullanici}",
"warning8": "[*] You completed following the followers of {kullanici}",
"warning9": "[-] You can't follow the followers of {kullanici},because their account is protected.!",
"warning10": "[-] An error occurred while following the followers of {kullanici}:{hata}"
}
},
"kullaniciTakipDurumDegistir": {
"warnings": {
"warning1": "[+] Follow request sent to {kullanici}",
"warning2": "[*] Follow request to {kullanici} has been already sent",
"warning3": "[-] User {kullanici} is blocked.{kullanici} cannot be followed!",
"warning4": "[-] You are already unfollowing {kullanici}.",
"warning5": "[+] {kullanici} started to be followed.",
"warning6": "[-] User {kullanici} is blocked.{kullanici} cannot be followed!",
"warning7": "[*] You are already following {kullanici}.",
"warning8": "[+] You unfollowed {kullanici}"
}
},
"kullanicilariTakipEt": {
"warnings": {
"warning1": "[*] The process of following users has begun.",
"warning2": "[*] The process of following users is complete."
}
},
"kullaniciTakipEt": {
"warnings": {
"warning1": "[*] The process of following {kullanici} started ...",
"warning2": "[*] The process of unfollowing {kullanici} started ...",
"warning3": "[*] The process of following {kullanici} completed. ",
"warning4": "[*] The process of unfollowing {kullanici} completed",
"warning5": "[-] An error occurred during the process of following {kullanici}:{hata}",
"warning6": "[-] An error occurred during the process of unfollowing {kullanici:{hata}"
}
},
"oneCikanHikayeIndir": {
"inputs": {
"input1": "Enter highlight story url >> "
},
"warnings": {
"warning1": "[*] Redirecting to {url} page ...",
"warning2": "[-] The url of the highlight story you want to download could not be reached!",
"warning3": "[*] Download of {url} highlight story started:",
"warning4": "[*] Download of {url} highlight story completed:",
"warning5": "[-] There was an error downloading the highlight story: {hata}"
}
},
"profilSec": {
"inputs": {
"input1": " Enter a username >> "
},
"warnings": {
"warning1": "[*] Browser redirecting to {kullanici} profile ...",
"warning2": "[-] No user named {kullanici} was found!"
}
},
"quit": {
"warnings": {
"warning1": "[*] Signing out of application ......",
"warning2": "[+] Signed out from the application... ",
"warning3": "[-] Error during application exit process:{hata}"
}
},
"oturumKapat": {
"warnings": {
"warning1": "[*] Signing out of Instagram ...",
"warning2": "[+] Signed out of Instagram ...",
"warning3": "[-] There was an error signing out of Instagram:{hata}"
}
},
"rastgeleYorumGetir": {
"warnings": {
"warning1": "[-] An error occurred during fetching random commenting: {hata}"
}
},
"secilenIslemiGoster": {
"secimler": {
"1": "Selected Option >>> All Posts Download",
"2": "Selected Option >>> Like All Posts",
"3": "Selected Option >>> Unlike All Posts",
"4": "Selected Option >>> Bulk Unfollow",
"5": "Selected Option >>> Bulk Commenting To A Post",
"6": "Selected Option >>> Unfollow Users Who Don't Follow",
"7": "Selected Option >>> Bulk Message Deletion",
"8": "Selected Option >>> Highlight Download",
"9": "Selected Option >>> Story Download",
"10": "Selected Option >>> A Post Download",
"11": "Selected Option >>> IG TV Video Download",
"12": "Selected Option >>> Following A User's Followers",
"13": "Selected Option >>> Following All Users In A File",
"14": "Selected Option >>> Follow Users Who Like A Post",
"15": "Selected Option >>> Follow Users by Tag",
"16": "Selected Option >>> Liking Posts by Tag",
"17": "Selected Option >>> Like A Post",
"18": "Selected Option >>> Unlike A Post",
"19": "Selected Option >>> Commenting A Post",
"20": "Selected Option >>> User Follow",
"21": "Selected Option >>> User Unfollow",
"22": "Selected Option >>> User Blocking",
"23": "Selected Option >>> User Unblocking",
"24": "",
"25": "Selected Option >>> Instagram Signing Out",
"26": "Selected Option >>> Application Signing Out"
},
"warnings": {
"warning1": "Invalid choice!",
"warning2": "[*] Enter 'menu' command to return main menu"
}
},
"takipcileriGetir": {
"warnings": {
"warning1": "[*] Browser is redirected to your profile...",
"warning2": "[*] {index} -) {kullanici} added to list.",
"warning3": "[-] An error occurred while scrolling the popup down: {hata}",
"warning4": "[-] An error occurred while selecting followers: {hata}"
}
},
"takipEdilenleriGetir": {
"warnings": {
"warning1": "[-] An error occurred during the process of unfollowing {kullanici}: {hata}",
"warning2": "[+] {index} -) You unfollowed {kullanici}",
"warning3": "[-] An error occurred while scrolling the popup down: {hata}",
"warning4": "[-] An error occurred while unfollowing users who do not follow: {hata}"
}
},
"takipEtmeyenleriTakiptenCik": {
"warnings": {
"warning1": "[*] Adding followers to the list is started.",
"warning2": "[*] Adding followers to the list is completed.",
"warning3": "[*] You started unfollowing users that don't follow you.",
"warning4": "[*] You completed unfollowing users that don't follow you.",
"warning5": "[-] An error occurred while unfollowing users who do not follow: {hata}"
}
},
"tarayiciBaslat": {
"warnings": {
"warning1": "[*] Browser starting ......",
"warning2": "[-] An error occurred during the browser initialization process:{hata}"
}
},
"tarayiciAyarlari": {
"inputs": {
"input1": "Enter an option number >> "
},
"warnings": {
"warning1": "[-] You have not made a valid choice.Please make a valid choice!",
"warning2": "[-] An error occurred in the browser settings menu:{hata}"
}
},
"tarayiciPathAyarlari": {
"inputs": {
"input1": "Enter an option number >> "
},
"warnings": {
"warning1": "[-] You have not made a valid choice.Please make a valid choice!",
"warning2": "[-] An error occurred during the browser path changed:{hata}"
}
},
"tarayiciPathDegistir": {
"inputs": {
"input1": "Enter browser path >> "
},
"warnings": {
"warning1": "[+] Browser path successfully changed.Restart the application to see the change.",
"warning2": "[-] The file you specified does not exist!",
"warning3": "[-] An error occurred during the browser path changed:{hata}"
}
},
"tarayiciGorunmeDurumuAyarlari": {
"inputs": {
"input1": "Enter an option number >> "
},
"warnings": {
"warning1": "[-] You have not made a valid choice.Please make a valid choice!",
"warning2": "[-] An error occurred in the browser visibility settings menu:{hata}"
}
},
"tarayiciGorunmeDurumDegistir": {
"inputs": {
"input1": "Enter an option number >> "
},
"warnings": {
"warning1": "[+] Browser visibility status changed successfully.Restart the application to see the change.",
"warning2": "[-] An error occurred while changing the browser visibility status:{hata}"
}
},
"topluMesajSilme": {
"warnings": {
"warning1": "[*] Bulk message deletion process is started.",
"warning2": "[*] You have no messages.",
"warning3": "[*] {index} -) The messages with {kullanici} will be deleted.",
"warning4": "[+] {index} -) The messages with {kullanici} was deleted successfully.",
"warning5": "[*] Bulk message deletion process is completed.",
"warning6": "[-] An error occurred during bulk message deletion: {hata}"
}
},
"topluTakiptenCik": {
"warnings": {
"warning1": "[*] Bulk unfollowing started.",
"warning2": "[-] An error occurred while trying unfollow {kullanici}: {hata}",
"warning3": "[+] {index} -) You unfollowed {kullanici}",
"warning4": "[-] An error occurred while scrolling the popup down: {hata}",
"warning5": "[*] Bulk unfollowing was completed.",
"warning6": "[-] An error occurred while bulk unfollowing: {hata}"
}
},
"topluYorumYapma": {
"inputs": {
"input1": "Enter the post url you want to comment >> ",
"input2": "Enter the number of comments you want to make >> ",
"input3": "Do you want use of random comments created by app ? >> "
},
"warnings": {
"warning1": "[*] Redirecting to {url} page ...",
"warning2": "[-] Unable to reach url {url}!",
"warning3": "[-] {url} post is a private post. Cannot bulk comment",
"warning4": "[*] You can make a maximum of 50 comments! .Number of comments changed to 50.!",
"warning5": "[-] You did not enter the number of comments you want to make!",
"warning6": [
" <<< OPTIONS >>> ",
"Enter 1 to write randomly generated comments",
"Enter 2 to write comments with comments you have created as a txt file.",
" "
],
"warning7": "Selected Option >>> Use comments auto created by app",
"warning8": "[*] Bulk comment on {url} post started.",
"warning9": "[+] {index}.comment added.",
"warning10": "Selected Option >>> Use comments from uploaded txt",
"warning11": "[*] Bulk comment on {url} post started.",
"warning12": "[+] {index}.comment added.",
"warning13": "[-] You didn't make a choice!.Please make a choice!",
"warning14": "[*] Bulk comment on {url} post completed.",
"warning15": "[-] An error occurred during the bulk comment to {url} post: {hata}"
}
},
"urlGecerliMi": {
"warnings": {
"warning1": "[-] You have not entered a valid url!"
}
},
"urlGirildiMi": {
"warnings": {
"warning1": "[-] You did not enter a url!"
}
},
"uygulamaDilDegistir": {
"warnings": {
"warning1": "[+] Application language changed successfully.Restart the application to see the change.",
"warning2": "[-] An error occurred during the application language change process:{hata}"
}
},
"yorumYap": {
"warnings": {
"warning1": "[-] An error occurred while commenting on the {url} post: {hata}"
}
}
}
},
"tr": {
"ayarlar": {
"ana_ekran": {
"secenekler": [
" ",
" AYARLAR",
" ",
" <<< SEÇENEKLER >>> ",
" ",
"1 -) Dil Ayarları",
"2 -) Tarayıcı Ayarları",
"3 -) Ayarlardan Çıkış Yap"
]
},
"dil_ayarlari": {
"secenekler": [
" ",
" DİL AYARLARI",
"Uygulama Dili:{dil}",
" ",
" <<< SEÇENEKLER >>> ",
" ",
"1-) Dil Değiştir",
"2-) Bir Önceki Menüye Geri Dön",
"3-) Ayarlardan Çıkış Yap"
],
"dil_degistir": {
"secenekler": [
" ",
"Seçilen İşlem >>> Uygulama Dili Değiştirme",
" ",
" <<< SEÇENEKLER >>> ",
" ",
"1-) Türkçe dili için 1",
"2-) İngilizce dili için 2 giriniz.",
"3-) Bir Önceki Menüye Geri Dön",
"4-) Ana Menüye Geri Dön",
"5-) Ayarlardan Çıkış Yap"
]
}
},
"tarayici_ayarlari": {
"secenekler": [
" ",
" TARAYICI AYARLARI",
"Tarayıcı Path:{path}",
"Tarayıcı Görünme Durumu:{durum}",
" ",
" <<< SEÇENEKLER >>> ",
" ",
"1-) Tarayıcı Görünme Durumu Değiştir",
"2-) Tarayıcı Sürücü Yolu Değiştir",
"3-) Bir Önceki Menüye Geri Dön",
"4-) Ayarlardan Çık."
],
"gorunme_durumu_degistir": {
"secenekler": [
" ",
"Seçilen İşlem >>> Tarayıcı Görünme Durumu Değiştir",
" ",
" <<< SEÇENEKLER >>> ",
" ",
"1-) Tarayıcı görünme durumunu açık olarak değiştirmek için 1,",
"2-) Tarayıcı görünme durumunu kapalı olarak değiştirmek için 2 giriniz.",
"3-) Bir Önceki Menüye Geri Dön",
"4-) Ana Menüye Geri Dön",
"5-) Ayarlardan Çıkış Yap"
]
},
"path_degistir": {
"secenekler": [
" ",
"Seçilen İşlem >>> Tarayıcı Sürücü Yolu Değiştir",
" ",
" <<< SEÇENEKLER >>> ",
" ",
"1-) Yeni bir sürücü yolu tanımlamak için 1 giriniz",
"2-) Bir Önceki Menüye Geri Dön",
"3-) Ana Menüye Geri Dön",
"4-) Ayarlardan Çıkış Yap"
]
}
}
},
"menu": [
" ",
" <<< SEÇENEKLER >>> ",
" ",
"1 -) Tüm Gönderileri İndir",
"2 -) Tüm Gönderileri Beğen",
"3 -) Tüm Gönderileri Beğenmekten Vazgeç",
"4 -) Toplu Takipten Çıkma",
"5 -) Bir Gönderiye Toplu Yorum Yapma",
"6 -) Takip Etmeyenleri Takipten Çıkma",
"7 -) Toplu Mesaj Silme",
"8 -) Öne Çıkan Hikaye İndirme",
"9 -) Hikaye İndirme",
"10 -) Tek Gönderi İndirme",
"11 -) IG TV Video İndirme",
"12 -) Bir Kullanıcının Takipçilerini Takip Etme",
"13 -) Bir Dosyadaki Tüm Kullanıcıları Takip Etme",
"14 -) Bir Gönderiyi Beğenenleri Takip Etme",
"15 -) Etikete Göre Kullanıcıları Takip Etme",
"16 -) Etikete Göre Gönderileri Beğenme",
"17 -) Tek Gönderi Beğenme",
"18 -) Tek Gönderi Beğenmekten Vazgeçme",
"19 -) Bir Gönderiye Yorum Yapma",
"20 -) Kullanıcı Takip Etme",
"21 -) Kullanıcı Takip Etmekten Vazgeçme",
"22 -) Kullanıcı Engelleme",
"23 -) Kullanıcı Engeli Kaldırma",
"24 -) Ayarlar",
"25 -) İnstagram Çıkış Yapma",
"26 -) Uygulama'dan Çıkış Yapma",
" "
],
"warnings": {
"aktifKullaniciGetir": {
"warnings": {
"warning1": "[-] Aktif kullanıcı adı getirme işlemi sırasında bir hata oluştu: {hata}"
}
},
"albumIcerikSayisiGetir": {
"warnings": {
"warning1": "[-] {url} gönderisinin albüm içerik sayısını getirme işlemi sırasında hata:{hata}"
}
},
"albumIcerikUrlGetir": {
"warnings": {
"warning1": "[-] Gönderi url'si getirme işlemi sırasında bir hata oluştu: {hata}"
}
},
"ayarlar": {
"inputs": {
"input1": "Yapmak istediğiniz işlemin başındaki sayıyı giriniz >> "
},
"warnings": {
"warning1": "[-] Geçerli bir seçim yapmadınız.Lütfen geçerli bir seçim yapınız!",
"warning2": "[-] Ayarlar menüsünde bir hata oluştu:{hata}"
}
},
"BASE_AYARLAR": {
"warnings": {
"warning1": "[-] Ayarlar menüsünün içeriğini yazdırmak için format oluşturma işlemi sırasında bir hata oluştu:{hata}"
}
},
"BASE_SLEEP": {
"warnings": {
"warning1": "[-] Bekleme sürelerini yazdırmak için oluşturulan formatlama işlemi sırasında bir hata oluştu:{hata}"
}
},
"BASE_UYARI": {
"warnings": {
"warning1": "[-] Uyarı mesajlarını yazdırmak için format oluşturma işlemi sırasında bir hata oluştu:{hata}"
}
},
"dosyaIndir": {
"warnings": {
"warning1": "[+] {url} indirildi",
"warning2": "[-] Dosya indirme işlemi sırasında bir hata oluştu: {hata}"
}
},
"dosyaİceriginiAl": {
"warnings": {
"warning1": "[-] Seçilen dosyanın yüklenme işlemi sırasında bir hata oluştu:{hata}"
}
},
"dosyaSec": {
"inputs": {
"input1": "Dosya yolunu giriniz >> "
},
"warnings": {
"warning1": "[-] Geçerli bir dosya yolu belirtmediniz.Sadece txt uzantılı dosyaları seçebilirsiniz!",
"warning2": "[-] Dosya seçme işlemi sırasında bir hata oluştu:{hata}"
}
},
"dilAyarlari": {
"inputs": {
"input1": "Yapmak istediğiniz işlemin başındaki sayıyı giriniz >> "
},
"warnings": {
"warning1": "[-] Geçerli bir seçim yapmadınız.Lütfen geçerli bir seçim yapınız!",
"warning2": "[-] Dil ayarları menüsünde bir hata oluştu:{hata}"
}
},
"dilSec": {
"inputs": {
"input1": "Yapmak istediğiniz işlemin başındaki sayıyı giriniz >> "
},
"warnings": {
"warning1": "[-] Geçerli bir seçim yapmadınız.Lütfen geçerli bir seçim yapınız!",
"warning2": "[-] Uygulama dili değiştirme işlemi sırasında bir hata oluştu:{hata}"
}
},
"etiketeGoreBegenme": {
"warnings": {
"warning1": "[*] {etiket} etiketine göre beğeni yapma işlemi başladı.",
"warning2": "[+] {index}-) {url} gönderisi beğenildi.",
"warning3": "[*] {url} gönderisi daha önce beğenildi.",
"warning4": "[*] {etiket} etiketine göre beğeni yapma işlemi tamamlandı.",
"warning5": "[-] Etikete göre beğeni işlemi yapma sırasında bir hata oluştu: {hata}"
}
},
"etiketeGoreIslemLimitiGetir": {
"inputs": {
"input1": "Beğenmek istediğiniz gönderi sayısını giriniz >> ",
"input2": "Takip etmek istediğiniz kullanıcı sayısını giriniz >> "
},
"warnings": {
"warning1": "[-] Bir sayı girişi yapmadınız!",
"warning2": "[-] Belirleyen etikete göre işlem yapma limiti belirleme işlemi yapma sırasında bir hata oluştu: {hata}"
}
},
"etiketeGoreTakipEtme": {
"warnings": {
"warning1": "[*] {etiket} etiketine göre kullanıcı takip etme işlemi başladı.",
"warning2": "[+] {index}-) {kullanici} takip edilmeye başlandı.",
"warning3": "[*] {kullanici} zaten takip ediliyor.",
"warning4": "[*] {etiket} etiketine göre kullanıcı takip etme işlemi tamamlandı.",
"warning5": "[-] Etikete göre takip işlemi yapma sırasında bir hata oluştu: {hata}"
}
},
"etiketGetir": {
"inputs": {
"input1": "Bir etiket adı giriniz >> "
},
"warnings": {
"warning1": "[*] {url} sayfasına yönlendiriliyor...",
"warning2": "[-] {etiket} etiketine ait bir gönderi bulunamadı!",
"warning3": "[-] Bir etiket girişi yapmadınız!",
"warning4": "[-] Etiket belirleme işlemi yapma sırasında bir hata oluştu: {hata}"
}
},
"girisDogrulama": {
"inputs": {
"input1": "Telefonunuza gönderilen kodu giriniz >> "
},
"warnings": {
"warning1": "[-] Lütfen güvenlik kodunu giriniz!",
"warning2": "[-] Lütfen güvenlik kodunu kontrol edin ve tekrar deneyin.",
"warning3": "[+] Giriş işlemi başarılı",
"warning4": "[-] Giriş Yapılamıyor..."
}
},
"girisKontrol": {
"warnings": {
"warning1": "[-] Girdiğiniz kullanıcı adı bir hesaba ait değil. Lütfen kullanıcı adınızı kontrol edin ve tekrar deneyin.",
"warning2": "[-] Üzgünüz, parolanız hatalıydı. Lütfen parolanızı tekrar kontrol edin.",
"warning3": "[+] Giriş işlemi başarılı",
"warning4": "[-] Giriş işlemi başarısız"
}
},
"girisYap": {
"inputs": {
"input1": "Kullanıcı adınız >> ",
"input2": "Parolanız >> "
},
"warnings": {
"warning1": "<<< Instagram Giriş Yap >>>>",
"warning2": "[-] Lütfen kullanıcı adınızı ve parolanızı giriniz!",
"warning3": "[-] Lütfen kullanıcı adınızı giriniz!",
"warning4": "[-] Lütfen parolanızı giriniz!",
"warning5": "[*] Kullanıcı girişi yapılıyor...",
"warning6": "[-] Kullanıcı girişi sırasında hata:{hata}"
}
},
"gonderiBegen": {
"inputs": {
"input1": "Beğenmek istediğiniz gönderi url >> ",
"input2": "Beğenmekten vazgeçmek istediğiniz gönderi url >> "
},
"warnings": {
"warning1": "[*] {url} gönderisine yönlendiriliyor...",
"warning2": "[*] {url} adresindeki gönderinin beğenme işlemi başladı...",
"warning3": "[*] {url} adresindeki gönderinin beğenmekten vazgeçme işlemi başladı...",
"warning4": "[+] {url} gönderisi beğenildi.",
"warning5": "[*] {url} gönderisi daha önce beğenildi.",
"warning6": "[+] {url} gönderisi beğenilmekten vazgeçildi.",
"warning7": "[*] {url} gönderisi zaten beğenilmedi.",
"warning8": "[*] {url} adresindeki gönderinin beğenme işlemi tamamlandı.",
"warning9": "[*] {url} adresindeki gönderinin beğenmekten vazgeçme işlemi tamamlandı.",
"warning10": "[-] {url} gönderisinin sahibinin profili gizli hesap olduğundan beğeni işlemi yapılamıyor!",
"warning11": "[-] {url} gönderisinin sahibinin profili gizli hesap olduğundan beğenmekten vazgeçme işlemi yapılamıyor!",
"warning12": "[-] Gönderi beğenme işlemi sırasında bir hata oluştu:{hata}",
"warning13": "[-] Gönderi beğenmekten vazgeçme işlemi sırasında bir hata oluştu:{hata}"
}
},
"gonderiBegenenleriTakipEt": {
"inputs": {
"input1": "İşlem yapmak istediğiniz gönderi url >> ",
"input2": "Tüm takipçiler listesi içerisinde mi işlem yapılsın ? >> ",
"input3": "İşlem yapmak için bir sayı giriniz >>> "
},
"warnings": {