forked from ipbc-dev/bit.tube-translate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkli-kli.json
1286 lines (1286 loc) · 74.3 KB
/
kli-kli.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
{
"Login": {
"title": "QonoS",
"loginClasic": "chut lulajpu'bogh ngo'",
"usernameEmail": "SoQ pong ghap",
"usernameRequired": "qoghDu'DajDaq pong poQlu'",
"usernameMinimun": "qaSlaH 3 vuDmey'e'",
"usernameInvalid": "qab qoghDu'DajDaq pong",
"usernamewrong": "qoghDu'DajDaq pong mu'wIj QIH pagh",
"password": "mu'wIj",
"passwordRequired": "mu'wIj poQlu'",
"remember": "qamej",
"loginButton": "Ha'",
"forgotPassword": "mu'wIj 'e' DalIjchugh",
"resendActivateMail": "electronical SoQ SoQ yIchu', ngeH",
"error": "Qagh",
"emailVerfied": "va SoQ, 'ol",
"resend": "Resend",
"RecoveryPwd": {
"title": "HIjmeH mu'wIj",
"email":"qoghDu'DajDaq SoQ pong ghap va SoQ",
"recover": "SabHa'",
"backLogin": "rom'a' QonoS",
"changePwd": "choH mu'wIj",
"password": "mu'wIj",
"passwordRequired": "mu'wIj poQlu'",
"passwordPattern": "qaSlaH 6 vuDmey'e', 1 jabbI'ID uppercase, jabbI'ID lowercase 1, 1 mI'",
"repeatPassword": "mu'wIj Segh",
"passwordMissmatch": "wej equal mu'wIj",
"saveButton": "choq",
"checkMail": "bel started, mu'wIj SabHa' va SoQ 'ol",
"errorRecovery": "Qagh SabHa' mu'wIj",
"passwordUpdate": "mu'wIj choH",
"errorUpdate": "Qagh choH"
}
},
"Register": {
"title": "Suy qachmey",
"loginClasic": "chut lulajpu'bogh ngo'",
"userName": "qoghDu'DajDaq pong",
"usernameRequired": "qoghDu'DajDaq pong poQlu'",
"usernameMinimun": "qaSlaH 3 vuDmey'e'",
"firstName": "wa'DIch pong",
"firstNameRequired": "wa'DIch pong poQlu'",
"lasName": "wa'Hu' pong",
"lasNameRequired": "wa'Hu' pong poQlu'",
"email": "va SoQ",
"emailRequired": "va SoQ poQlu'",
"emailMismatch": "Email mismatch",
"emailIncalid": "va SoQ qab",
"password": "mu'wIj",
"passwordRequired": "mu'wIj poQlu'",
"passwordPattern": "qaSlaH 6 vuDmey'e', 1 jabbI'ID uppercase, jabbI'ID lowercase 1, 1 mI'",
"passwprdRepeatInput": "mu'wIj Segh",
"passwordRepeat": "Segh mu'wIj poQlu'",
"passwordMissmatch": "wej equal mu'wIj",
"iAgree": "jIQochbe'",
"termsConditions": "wabmey je 'ej",
"login": "QonoS",
"getStart": "Suq Started",
"hackTools": "bel tu' jagh nice 'ej chaw'nIS Hoch yotlh 'ej chavmoH wabmey laj",
"checkEmail": "va SoQ 'ol",
"error": "Qagh",
"repeatEmail": "Repeat Email..."
},
"Profile": {
"MyProfile":{
"title": "qoghDu'DajDaq",
"aboutMe": "vIHtaHbogh jIH",
"name": "pong",
"location": "location",
"memberSince": "member qaSchoH",
"description": "description",
"readMore": "latlh laD",
"readLess": "qup laD",
"editProfileButton": "qoghDu'DajDaq edit",
"walletTitle": "wallet",
"wallet": "wallet",
"saveWalletButton": "wallet pol",
"walletNotifySave": "wallet pol",
"walletNotifyEmpty":"yotlh chIm",
"socialTitle": "social",
"editProfileTitle": "qoghDu'DajDaq edit",
"editProfileSubTitle": "qoghDu'DajDaq naQ",
"editProfileUsername": "qoghDu'DajDaq pong",
"editProfileUsernameMinimunCharacter": "The user name must contain a minimum of 3 characters, without spaces or special characters",
"editProfileUsernamePattern": "a-z,-z, 0-9 'ej _ neH laH Sev qoghDu'DajDaq pong",
"editProfilePhone": "mobile phone",
"editProfilePhoneInvalid": "qab phone mI'",
"editProfileEmail": "va SoQ",
"editProfileFirstname": "wa'DIch pong",
"editProfileFirstnameRequired": "wa'DIch pong poQlu'",
"editProfileLastname": "wa'Hu' pong",
"editProfileLastnameRequired": "wa'Hu' pong poQlu'",
"editProfileCity": "veng",
"editProfileInvalidCity": "qab veng pong",
"editProfileCountry": "Hatlh",
"editProfileWebsite": "website",
"editProfileInvalidWebsite": "url Website qab",
"editProfileInvalidFacebook": "url facebook qab",
"editProfileInvalidTwitter": "url Twitter qab",
"editProfileInvalidInstagram": "url instagram qab",
"editProfileInvalidGoogle": "qab google-url",
"editProfileInvalidTumblr": "url tumblr qab",
"editProfileInvalidPinterest": "url pinterest qab",
"editProfileSomethingAboutYou": "vay' jatlh maHvaD vIHtaHbogh SoH",
"editProfileUpdateButton": "update qoghDu'DajDaq",
"editProfileCancelButton": "qIl",
"editProfileNotifySave": "qoghDu'DajDaq choH",
"editProfileNotifyError": "Qagh choH",
"editProfileChangePasswordTitle": "choH mu'wIj",
"editProfileOldPassword": "mu'wIj ngo'",
"editProfileNewPassword": "mu'wIj chu'",
"editProfileNewPasswordPattern": "qaSlaH 6 vuDmey'e', 1 jabbI'ID uppercase, jabbI'ID lowercase 1, 1 mI'",
"editProfileRepeatNewPassword": "Segh mu'wIj",
"editProfileRepeatNewPasswordRequired": "Segh mu'wIj poQlu'",
"editProfileRepeatNewPasswordMissmatch": "wej equal mu'wIj",
"editProfileUpdatePasswordButton": "update mu'wIj ",
"editProfilePasswordNotifyError": "Qagh choH",
"editProfilePasswordNotifyDifferent": "mu'wIj choH Qagh pIm",
"editProfilePasswordNotifyInsert": "mu'wIj Insert, Qagh choH",
"editProfilePasswordNotifyPasswordEqual": "Qagh choH ngo' 'ej chu' mu'wIj, qatlh equals",
"loginProfileTitle": "poQ neH QonoS",
"loginProfileText": "DubelmoHchugh QonoS DuH lo'",
"loginProfileConfirmButton": "luq",
"loginProfileCancelButton": "qIl",
"myProfile": "qoghDu'DajDaq",
"playlist": "tetlh chu'",
"publications": "publication",
"live": "streams Durgh le vIraknIl",
"subscriptions": "subscription",
"security": "Hung",
"language": "Hol",
"saveLanguage": "Hol toD",
"languageSelect": "Hol",
"textEditorPlaceholder" : "qIl",
"editProfilePasswordNotifySave": "Password saved successfully",
"purchases": "My purchases",
"singularProfilePurchase": "Purchase",
"profilePurchase": "Purchase",
"noPurchase": "There are no purchases",
"subscribers": "Subscribers",
"imageTooSmall":"The selected image is too small and could produce undesired results. For optimal result it is recommended that you chose a larger image.if you want to keep the selected image, click on (+) button to resize it.",
"requiredFields": "Required fields"
},
"MyPurchases": {
"channelStay": "Channel Stay",
"channelStayText1": "Is the simplest way to promote your content by maintaining your visiting users within your channel.",
"channelStayText2": "When you aquiere",
"channelStayText3": "all related content shown to the visitor will be selected from your own channel.",
"channelStayText4": "is a monthly service for your whole channel and costs 5 TUBES per month.",
"channelStayButton": "Yes, I want Channel Stay",
"channelStaySwalTitle": "Purchase channel stay",
"channelStaySwalText1": "Yes, I want to keep the visiting users in my channel.",
"channelStaySwalText2": "Purchase channel costs 5 TUBES",
"channelStaySwalConfirmButton": "Yes, I want channel stay",
"channelStaySwalCancelButton": "No, thank you",
"perMonth": "Per month",
"perUse": "Per use",
"monthly": "Monthly",
"monthlyCost": "Monthly costs 1000 Tube",
"purchaseBuy": "Buy",
"purchaseCancel": "Cancel",
"Uses": "uses"
},
"MyPlaylists":{
"title": "My playlists",
"editPlaylistTitle": "title",
"editPlaylistDescription": "description",
"editPlaylistSaveButton": "choq",
"editPlaylistDeleteButton": "teq",
"editPlaylistCloseButton": "Close playlist",
"editPlaylistEmpty": "chu' tetlh chIm",
"newPlaylist": "chu' chu' tetlh",
"newPlaylistTitle": "title",
"newPlaylistDescription": "description",
"newPlaylistSaveButton": "choq",
"deletePlaylistTitle": "bIbej'a' ",
"deletePlaylistText": "chu' tetlh teq reH",
"deletePlaylistConfirmButton": "HIja', 'oH teq",
"deletePlaylistCancelButton": "qIl",
"deletePlaylistTitleConfirm": "teq",
"deletePlaylistTextConfirm": "chu' tetlh teq",
"updatePlaylistTitle": "choH",
"updatePlaylistText": "chu' tetlh De' choH",
"updatePlaylistName": "nuqneH pong 'el Qagh",
"deleteVideoPlaylistTitle": "bIbej'a' ",
"deleteVideoPlaylistText": "video teq vo' chu' tetlh",
"deleteVideoPlaylistConfirmButton": "HIja', 'oH teq",
"deleteVideoPlaylistCancelButton": "qIl",
"deleteVideoPlaylistTitleConfirm": "teq",
"deleteVideoPlaylistTextConfirm": "teywI' teq",
"VideoPlaylistButton": "Qagh choH",
"noPlaylists": "pa' 'oHbe' chu' tetlh"
},
"Publications":{
"singularTitle": "Upload",
"title": "Uploads",
"views": "jIH",
"edit": "edit",
"delete": "teq",
"deletePublicationTitle": "bIbej'a'",
"deletePublicationText": "unpublish",
"deletePublicationConfirmButton": "HIja', 'oH unpublish",
"deletePublicationCancelButton": "qIl",
"deletePublicationNotify": "teqlu'pu' video",
"deletePublicationNotifyError": "Qagh",
"videoInfoError": "video Info Suq Qagh",
"noUploads": "pa' 'oHbe' uploads",
"editVideo": "Edit video",
"makePrimaryVideo": "Set as primary video"
},
"LiveStreams": {
"title": "ghojmoHwI'pu'na' streams",
"views": "jIH",
"edit": "edit",
"noLiveStreams": "pa' 'oHbe' ghojmoHwI'pu'na' streams"
},
"Subscriptions": {
"singularTitle": "Subscription",
"title": "subscription",
"subscriptionsButton": "subscribe",
"unSubscriptionsButton": "unsubscribe",
"noSubscriptions": "pa' 'oHbe' subscriptions"
},
"Subscribers": {
"singularTitle": "Subscriber",
"title": "Subscribers",
"subscriptionsButton": "Subscribe",
"unSubscriptionsButton": "Unsubscribe",
"noSubscriptions": "There are no subscribers"
},
"Security": {
"title": "Hung",
"authentication": "2-factor Authentication",
"qr": "qr ngoq Hotlh",
"code": "ngoq",
"twoFactorEnabled": "enable",
"twoFactorDisabled": "Qotlh",
"nsfwEnabled": "NSFW enabled",
"nsfwDisabled" : "NSFW disabled",
"activateAuthenticationTitle": "tu'",
"activateAuthenticationText": "chenmoH be Authentication qr ngoq Hotlh SoH Authenticator App, qaStaHvIS ngejtaH taH SoH",
"activateAuthenticationConfirmButton": "luq",
"activateAuthenticationDeleteButton": "qIl",
"nsfw": "Not safe for work (NSFW)",
"enableNsfw": "Are you sure that you want to enable NSFW (Not Safe For Work) content?",
"settings": "Settings",
"membership": "Membership",
"advertMessage": "It's very important that you save this recovery key in case you lose access to the Authenticator App:"
}
},
"Dashboard": {
"views": "jIH",
"likes": "rur",
"addPlaylists": "chel tetlh QujmeH",
"newPlaylist": "chu' chu' tetlh",
"addPlaylistButton": "boq",
"addPLaylistTitle":"chel",
"live":"yIn",
"ago": "ago",
"recomended":"Recommended",
"newest": "Newest",
"trending": "Trending",
"viewAll": "View all"
},
"Trending": {
"views": "jIH",
"likes": "rur",
"addPlaylists": "Uploads",
"newPlaylist": "chu' chu' tetlh",
"addPlaylistButton": "boq",
"addPLaylistTitle":"chel",
"live":"yIn"
},
"Newcomers": {
"views": "jIH",
"likes": "rur",
"addPlaylists": "qIl",
"newPlaylist": "chu' chu' tetlh",
"addPlaylistButton": "boq",
"addPLaylistTitle":"chel",
"live":"yIn"
},
"Live": {
"views": "jIH",
"likes": "rur",
"noLivestreams": "pagh livestreams lupoQ",
"live":"yIn"
},
"MediaEdit": {
"title": "subscription",
"snapshotButon": "Snapshot SuD",
"thumbnailButton": "Thumbnail wIv",
"videoTitle": "video title",
"videoTitleError": "qaSlaH 5 vuDmey'e' nIS title",
"videoTag": "DubelmoHchugh 'op maq per chel",
"videoPrivacy": "privacy",
"videoCategory": "ngoq",
"videoLanguage": "Hol",
"videoAgeVerification": "Qotlh",
"videoUnpublishButton": "unpublish",
"videoCancelButton": "qIl",
"videoUpdateButton": "update",
"videoPublishButton": "publish",
"videoInputRequired": "poQ yotlh",
"videoUpdateDataNotify": "successfully choH De'",
"videoUpdateDataNotifyError": "Qagh choH",
"videoUpdateDataRequired":"DubelmoHchugh chaw'nIS neH poQ yotlh",
"videoRemoved": ", qatlh teq video",
"videoError": "Qagh",
"videoRemovedConfirmTitle": "bIbej'a'",
"videoRemovedConfirmText": "unpublish",
"videoRemovedConfirmButton": "HIja', 'oH unpublish",
"videoRemovedConfirmCancel": "qIl",
"videoPlaceholderEditor": "description naDev 'el",
"uploadingImage": "Uploading image",
"imageUploaded": "Image uploaded",
"protectedContent": "Protected Content"
},
"Broadcast": {
"Setings": {
"title": "setting",
"Key": "ngaQHa'moHwI'mey",
"streamTitle": "stream title",
"delete": "teq",
"edit": "edit",
"noKey": "pagh ngaQHa'moHwI'mey vItu'",
"generateNewKey": "ngaQHa'moHwI'mey chu' generate",
"yourStreamingUrl": "jIH",
"yourStreamingKey": "rur",
"copyClipBoard": "ngaQHa'moHwI'mey stream copy clipboard",
"cancel": "qIl",
"save": "choq",
"upload": "upload",
"error": "Qagh",
"ok": "luq",
"requiredFile": "poQ yotlh naQ Daghaj",
"requiredLoginTitle": "poQ neH QonoS",
"requiredLoginText": "DubelmoHchugh QonoS DuH lo'",
"saved": "successfully yemwI' De'",
"savedKey":"chel",
"copiedClipBoard": "copied stream ngaQHa'moHwI'mey clipboard",
"copiedClipBoardTransmission": "copied transmission url clipboard",
"confirmDeleteTitle": "Stream ngaQHa'moHwI'mey teq",
"confirmDeleteText": "be 'e' stream ngaQHa'moHwI'mey teq DaneH'a' ",
"confirmDeleteButton": "teq",
"textEditorPlaceholder": "Enter a text here...",
"showhidden": "Show / Hide key "
},
"Tutorial": {
"title": "Qapchu' tutorial",
"1pTutorial": "To set up live streaming click on the \"Generate new key\" button.",
"2pTutorial": "You will get your streaming URL and your streaming key.",
"3pTutorial": "Or choose one of your existing keys and click on \"Edit\".",
"4pTutorial": "To set up the thumbnail for your video click on the \"UPLOAD\" button, choose a media file and click open",
"5pTutorial": "Fill in the Stream title field to name your broadcast. Use the text editor to write a description.",
"6pTutorial": "This is all you have to do to set up your streaming, just click SAVE.",
"7pTutorial": "Start live streaming with streaming software OBS.",
"8pTutorial": "Open OBS software, go to Settings, choose the tab STREAM, change Stream Type to custom streaming server. Paste your stream URL to URL field, Paste your streaming key to stream key field. Apply the settings. Click on OK to close the window.",
"9pTutorial": "You will get stream URL and streaming key from bit.tube settings, click on the clip symbol to copy both.",
"10pTutorial": "Set up your OBS stream with scenes, sources and all your preferred settings and start streaming.",
"11pTutorial": "This is all you have to do to start streaming with OBS on Bit.Tube.",
"titleStream,": "Streaming software",
"1pTutorialStream": "You can stream your content in Bit.Tube platform by using a special sender software application. The content is associated with an BitTube wallet address identifying the copyright holder. We have made some suggestions below, just pick one of them and get started!",
"2pTutorialStream": "Open Broadcast Software",
"3pTutorialStream": "Open Broadcast Software, or known a lot better as OBS is a C and C++ programmed open source software for live streaming and recording. OBS allows a real-time capture and the user has full control about the scene composition, enconding, recording and broadcasting. In the meantime, OBS comes with a variety of plug-ins, which offer to the user a lot of freedom for setting,planning and making its broadcast.",
"4pTutorialStream": "Gameshow",
"5pTutorialStream": "A paid game streaming software which combines effectivity and ease of use in one. ",
"6pTutorialStream": "Either you choose to set your streaming from a given template or you just make your own settings using the softwares features, your broadcast will be always flawles, looking profesionnal. Perfect for pros and newbies at the same time.",
"7pTutorialStream": "XSplit Gamecaster",
"8pTutorialStream": "The world's easiest way to start streaming or recording your PC or Console games, as they say. Use XSplit Gamecaster to share your Gameplay. Just click to stream and record your special gaming moments. You can also choose XSplit Broadcaster, as an alternative for the streaming.",
"9pTutorialStream": "Vmix",
"10pTutorialStream": " Widely used, vMix is the ideal tool for broadcasting, especially for vloggers, but not only. vMix is a complete live video production software solution with features including LIVE mixing, switching, recording and LIVE streaming of SD, full HD and 4K video sources including cameras, video files, DVDs, images, Powerpoint and much much more.",
"dowloadButton": "dowload"
},
"CreateKey":{
"noWallet": "You don't have a wallet",
"noWalletText": "In this way, you will not receive any revenue for this broadcast",
"cancelWalletButton" : "Cancel",
"createWalletButton": "Create Wallet"
}
},
"Play": {
"addPlaylists": "chel tetlh QujmeH",
"newPlaylist": "chu' chu' tetlh",
"addPlaylistButton": "boq",
"addPLaylistTitle":"chel",
"views": "jIH",
"viewers": "viewer",
"donate": "donate",
"likes": "rur",
"writeComment": "comment ghItlh",
"addPlaylist": "chel tetlh QujmeH",
"embedCode": "ngoq embed, Suq",
"reportVideo": "ja' video",
"share": "SoH",
"editVideo": "video edit",
"subscribe": "subscribe",
"unSubscribe": "unsubscribe",
"showMore": "cha' latlh",
"showLess": "cha' qup",
"commentButton": "comment",
"cancel": "qIl",
"singularComments": "comment",
"comments": "comments",
"madePost": "post chenmoH",
"justNow": "neH DaH",
"madeSubPost": "subpost chenmoH",
"replyComment": "comment jang",
"commentEdit": "comment edit",
"edit": "edit",
"autoPlay": "autoplay",
"next": "veb",
"related": "relate",
"live": "yIn",
"playlist": "tetlh chu'",
"loadMore": "latlh load",
"seeAnswer": "See reply",
"seeAnswers": "See replies",
"hideAnswer": "Hide reply",
"hideAnswers": "Hide replies",
"copyClipboardIframe": "iframe copied clipboard",
"copyClipboard": "copy clipboard",
"embedVideoTitle": "Video embed",
"loginProfileTitle": "poQ neH QonoS",
"loginProfileText": "DubelmoHchugh QonoS DuH lo'",
"loginProfileConfirmButton": "luq",
"loginProfileCancelButton": "qIl",
"deleteComentConfirmTitle": "comment teq",
"deleteComentConfirmText": "be 'e' comment teq DaneH'a' ",
"deleteComentConfirmButton": "HIja'",
"reportVideoInnapropiateContent": "'a ghIH yuQ",
"reportVideoCopyrightViolation": "copyright wem",
"reportVideoOther": "latlh",
"reportVideoCancel": "qIl",
"reportVideoSend": "ngeH",
"textEditorPlaceholder": "bIngDaq ghItlh leghlu' 'el",
"AcceptedHashesText": "Hashes laj ",
"HashesText": "hash per cha'DIch ",
"TotalHashesText": "Airtime PoV: ",
"status": "Dotlh ",
"localSaving": "lutu'lu'bej ipfs Savings ",
"RTCPeers": "rtc Peers ",
"saving": "rtc Savings ",
"wallet": "wallet ",
"CloseStats": "SoQmoH",
"consent": "pong 'a ghIH jIH chenmoHwI' QaH SoH",
"consent2": "wa'vatlh legh, lo' unused 'ay' compute HoS crypto mining on behalf of jegh chenmoHwI'",
"agree": "jIQochbe'",
"innapropiateVideo": "video chaq yuQ 'op users taH confirm bel",
"working": "Qap",
"waiting": "loS",
"tipChannel": "Tip channel",
"amount": "Amount",
"2faCode": "2FA Code",
"tip": "Tip",
"close": "Close",
"mediaReport": "Media report",
"primaryVideo": "Set as primary video",
"abortError": "User aborted media playback",
"networkError": "There is a problem with your internet connection",
"decodeError": "This media appears to be corrupted",
"srcError": "This media appears to be corrupted",
"encryptedError": "This content is premium, please purchase",
"offlineStream": "Your desired stream appears to be offline",
"popOutVideo": "Popout video",
"cinemaMode": "Cinema mode",
"setPrimaryVideo": "Saved primary video",
"errorSavePrimaryVideo": "Error",
"copyrightReport": "Report Copyright Violation",
"yesUnpublish": "Yes unpublish",
"copyrigthTextSwal": "This video will be flagged and unpublished to undergo further review. Are you sure you want to continue?",
"iAmTheCopyright": "Yes, I am the copyright owner",
"iAmRepresentCopyright":"Yes, I represent the copyright owner",
"liveUnpublished": "Livestream unpublished",
"liveUnpublishedError": "Livestream unpublish error",
"reply": "Reply",
"delete": "Delete",
"writeReply": "Write a reply",
"reportThisVideo": "Report this video",
"ok": "ok",
"errorHash": "Can not find the selected video",
"totalAirtimeText": "PoV:"
},
"Wallet": {
"title": "overview",
"walletAdress": "wallet SoQ",
"balance": "ngaD",
"offlineWallet": "offline wallet",
"walletMaintenance": "wallet bopummeH leH",
"walletBackSoon": "ghaH wallet wItI'nISmo' tugh",
"transactions": "transaction",
"status": "Dotlh",
"date": "date",
"amount": "amount",
"address": "SoQ",
"paymentID": "payment id",
"contacts": "contact",
"name": "pong",
"adress": "SoQ",
"close": "SoQmoH",
"remoceContact": "Contact teq",
"addContact": "Contact chel",
"sendtoAddress" : "ngeH SoQ",
"receiverAddress" : "receiver SoQ",
"ipbcAmount" : "Tube Amount",
"feeIPBC" : "potlh puS Tube",
"anonymityLevel" : "anonymity patlh",
"2FACode": "2fa ngoq",
"send": "ngeH",
"cancel": "qIl",
"walletKeys": "wallet ngaQHa'moHwI'mey",
"spendKey": "ngaQHa'moHwI'mey rep",
"viewKey": "ngaQHa'moHwI'mey jIH",
"privatekey" : "private ngaQHa'moHwI'mey",
"errorRemoveContact": "DubelmoHchugh wIv contact teq",
"removeContact": "contact teq",
"failedRemoveContact": "contact teq luj",
"failedRetriveContact": "retrieve contacts luj",
"2FAInvalid": "2fa ngoq qab",
"fee": "ghob'e' wej potlh puS below 001 ipbc",
"Anonymity": "ghob'e' anonymity SabtaHbogh 0 10",
"transactionFaild": "transaction luj",
"noTransactions": "pa' 'oHbe' transactions",
"unlocked": "Unlocked",
"locked" : "Locked",
"saveContact": "Save Contact",
"closeContact": "Close",
"sedWallet": "Send",
"contactsWallet": "Contacts",
"keyWallet": "Key",
"noContactsfound": "No contacts found",
"keyHasbeencopied": "Your key has been copied to the clipboard",
"copyWalletClipboard": "Copy wallet to clipboard",
"addnewContact": "Add New Contact",
"mustContactName": "You must enter a contact name!",
"invalidIPB": "Invalid BitTube Address!",
"contactAdded": "Contact Added...",
"contactAddedFail": "Failed to add contact...",
"notEnoughBalance": "Not enough wallet balance or still locked.",
"walletMaintenaceTitle": "Online wallet under maintenance",
"walletMaintenaceText": "The online wallet is undergoing maintenace, please try again later",
"walletDowload": "Download offline wallet",
"walletCancel": "Ok",
"copySpendKey": "Copy spend key to clipboard",
"copyViewKey": "Copy view key to clipboard"
},
"Profitcalc": {
"openCoinmarketcapButton": "mInDu'lIj coinmarketcap",
"exchanges": "tam",
"livecoin": "livecoin",
"last": "Qav",
"high": "jen",
"low": "'eS",
"OpenLivecoin": "mInDu'lIj livecoin",
"tradeOgre": "tradeogre",
"tradeOgreOpen": "mInDu'lIj tradeogre",
"openCrex24": "mInDu'lIj crex24",
"altex": "altex",
"noAPI" : "pagh api",
"crex24": "crex24",
"tpl_title" : "profit Calculator",
"tpl_market" : "malja''e'",
"tpl_avg_hashrate" : "hashrate h motlhbogh per cha'DIch",
"tpl_avg_watchtime" : "motlhbogh watchtime qaStaHvIS rep",
"tpl_dayly_views" : "daily jIH",
"tpl_profit" : "profit",
"tpl_per_day" : "per jaj",
"tpl_per_week" : "per Hogh",
"tpl_per_month" : "per jar",
"tpl_per_year" : "per DIS",
"tpl_loading" : "load",
"tpl_marketcap" : "MALJA''E' YUVTLHE'",
"tpl_vol_usd_24h" : "MUQ USD 24 H",
"tpl_vol_eur_24h" : "jen"
},
"Upload": {
"titleUpload": "media teywI' upload",
"p1Upload": "teywI' media laH upload SoH ghot'e' video teywI' ghaH lupoQ neH formats laHlIj multiple",
"p2Upload": "Minimum laHlIj 360 p note, duration less than 3 hours, size less than 5 GB",
"uploadNowButton": "DaH upload",
"titleUploadYoutube": "rar youtube",
"p1UploadYoutube": "naDev laH rar SoH Hoch wo' youtube qoghDu'DajDaq 'ej migrate je neH click youtube Channel bittube",
"conectYoutubeButton": "DaH rar",
"snapshotButon": "Snapshot SuD",
"thumbnailButton": "Thumbnail wIv",
"videoTitle": "video title",
"videoTitleError": "qaSlaH 5 vuDmey'e' nIS title",
"videoTag": "DubelmoHchugh 'op maq per chel",
"videoTagEnter": "press 'el qaSpu'DI' Hoch maq per",
"videoPrivacy": "privacy",
"videoCategory": "category",
"videoLanguage": "Hol",
"videoAgeVerification": "qantaHvIS verification",
"videoUnpublishButton": "unpublish",
"videoUploadButton": "upload",
"videoDiscardButton": "polHa'",
"videoPublishButton": "publish",
"videoInputRequired": "poQ yotlh",
"videoPlaceholderEditor": "description naDev 'el",
"uploadMaintenance": "mapay, chavmoH upload bopummeH leH mode, nuqneH, vaj jatlhqa' later nID",
"uploadMaintenanceButton": "'oH Suq",
"uploadWaiting": "LOS UPLOAD SLOT",
"noWallet": "wallet ghewmey Daghaj",
"noWalletText": "qaStaHvIS mIw video revenue vay' wej Hev SoH",
"cancelWalletButton" : "Cancel",
"createWalletButton": "wallet chenmoH",
"loginProfileTitle": "poQ neH QonoS",
"loginProfileText": "DubelmoHchugh QonoS DuH lo'",
"loginProfileConfirmButton": "luq",
"loginProfileCancelButton": "qIl",
"videoAlreadyPublishedTitle": "video chonayta' published",
"videoAlreadyPublishedText": "video De' bopummeH publications chaq edit tlhIH neH qoghDu'DajDaq",
"videoSuccessfuly": "Your video has been successfully uploaded, you will receive a notification once your video has been published.",
"authorizationYoutube": "in case of wej authorization ghaj DubelmoHchugh click authorize 'ej authorization youtube 'a ghIH 'ol wInobqang mIw pab",
"authorizeButton": "authorize",
"UnauthorizeButton": "unauthorize",
"yourVideo":"videos youtube",
"selectAll": "Hoch wIv",
"startImport": "start DughajmoH",
"videos": "video",
"dataProteccion": "De' Protection",
"moreVideos": "latlh Videos",
"allVideosAlready": "chonayta' uploaded Hoch videos qaStaHvIS channel",
"leavePageTitle": "be page mej DaneH'a'",
"leavePageText": "Hoch uploads pending ghaH chIl",
"leavePageButton": "HIja', mej",
"needsRemove": "teqlu'pu' nIS youtube auth",
"finalizeProcess": "mIw finalize, nuqneH google qoghDu'DajDaq management Daq wabmeyvetlh naw' vo' teq Such",
"bitubeIntegrate": "bittube Integration youtube",
"areYouSure": "bIbej'a'",
"removeAccess": "youtube qoghDu'DajDaq naw' teq",
"proceed": "HIja', ruch",
"gotit": "'oH Suq",
"allYourSelected": "vIS laH tlhap Hoch wIv videos successful uploaded, until 'ol 'ej published",
"textEditorPlaceholder": "bIngDaq ghItlh leghlu' naDev 'el",
"invalidFile": "INVALID FILE ERROR",
"informationError": "INFORMATION ERROR",
"transcodingError": "TRANSCODING ERROR",
"syncError": "SYNCRONIZATION ERROR",
"pinError": "PIN ERROR",
"sshError": "SSH ERROR",
"qualityError": "The video quality is too low, it need to be at least 360p",
"processing": "PROCESSING ",
"waitingSync": "WAITING FOR SYNC",
"syncing": "SYNCING ",
"waitingPinning": "WAITING FOR PINNING",
"pinning": "PINNING ",
"done": "DONE",
"uploading": "UPLOADING ",
"initializing": "INITIALIZING",
"waitingQueue": "WAITING IN QUEUE ",
"downloading": "DOWNLOADING",
"waitingTranscode": "WAITING FOR TRANSCODE",
"internalError": "An internal error has occurred, please try again later",
"areYouSureLose": "Are you sure? You will loose all your unsaved jobs!",
"job": "Job",
"priceInTube": "Price in TUBE",
"priceInUsd": "Price in USD",
"rental": "Rental",
"purchase": "Purchase",
"lifetime": "Lifetime",
"rental24hrs": "24 hrs",
"rental48hrs": "48 hrs",
"rental72hrs": "72 hrs",
"awaitTranscode":"VIDEO ACCEPTED, WAITING FOR PROCESSING",
"regularUploadMaintenanceText": "We are sorry, but the Upload service is temporarily undergoing maintenance.",
"regularUploadMaintenancetitle": "Upload under maintenance",
"youtubeUploadMaintenanceText": "We are sorry, but the Youtube importer service is temporarily undergoing maintenance.",
"youtubeUploadMaintenancetitle": "YouTube importer under maintenance",
"premiumContent": "Premium content",
"notPreviewed": "This video type can not be previewed.",
"selectThumbnail" : "Please, select a thumbnail before uploading.",
"videoSubcategory": "Subcategory"
},
"User": {
"subscribe": "subscribe",
"unSubscribe": "unsubscribe",
"myProfile": "qoghDu'DajDaq",
"playlist": "tetlh chu'",
"profile": "Profile",
"publications": "publication",
"live": "streams Durgh le vIraknIl",
"subscriptions": "subscription",
"loginProfileTitle": "poQ neH QonoS",
"loginProfileText": "DubelmoHchugh QonoS DuH lo'",
"loginProfileConfirmButton": "luq",
"loginProfileCancelButton": "qIl",
"Profile": {
"title": "overview",
"about": "umqu' ghot",
"name": "pong",
"member": "member qaSchoH",
"description": "description",
"location": "location",
"readMore": "latlh laD",
"readLess": "qup laD",
"social": "social",
"newest": "newest",
"popular": "popular",
"oldest": "oldest"
},
"Publications": {
"publication": "publication",
"publications": "publication",
"noPublications": "pa' 'oHbe' publications",
"live": "yIn",
"addPlaylists": "chel tetlh QujmeH",
"newPlaylist": "chu' chu' tetlh",
"addPlaylistButton": "boq",
"addPLaylistTitle":"chel",
"ReadMore": "Read more",
"showAll": "Show all",
"sortedBy": "Sorted by",
"sortBy": "Sort By",
"sortByOldest": "Oldest",
"sortByRecent": "Most recent",
"sortByPopularity": "Popularity",
"sortByRelevance" : "Relevance"
},
"LiveTv": {
"livestream": "livestream",
"livestreams": "livestreams",
"noStream": "pa' 'oHbe' livestreams",
"live": "yIn",
"addPlaylists": "chel tetlh QujmeH",
"newPlaylist": "chu' chu' tetlh",
"addPlaylistButton": "boq",
"addPLaylistTitle":"chel"
},
"Subscriptions": {
"subscriptions": "subscriptions",
"subscription": "subscription",
"nosubscriptions": "pa' 'oHbe' subscriptions",
"subscribe": "subscribe",
"unSubscribe": "unsubscribe"
},
"MyPlaylists": {
"myPlaylists": "chu' tetlh",
"noPlaylists": "pa' 'oHbe' chu' tetlh",
"description": "description",
"noDescription": "pagh description DuHIvDI'",
"addMyPlaylist": "chel chu' tetlh",
"addPlaylists": "chel tetlh QujmeH",
"newPlaylist": "chu' chu' tetlh",
"addPlaylistButton": "boq",
"addPLaylistTitle":"chel",
"playlistEmpty": "chu' tetlh chIm",
"yourCopyPlaylist": "chu' tetlh copy Daghaj",
"somenthingWrong": "vay' ghoS muj during mIw"
}
},
"LiveChat": {
"title": "jaw yIn",
"saySomething": "vay' jatlh",
"chatUser": "qup laD",
"block": "bot",
"unblock": "unblock",
"blockFromChannel": "bot vo' channel",
"UnBlockFromChannel": "pa' 'oHbe' publications",
"loginProfileTitle": "poQ neH QonoS",
"loginProfileText": "DubelmoHchugh QonoS DuH lo'",
"loginProfileConfirmButton": "luq",
"loginProfileCancelButton": "qIl"
},
"Playlist": {
"loginProfileTitle": "poQ neH QonoS",
"loginProfileText": "DubelmoHchugh QonoS DuH lo'",
"loginProfileConfirmButton": "luq",
"loginProfileCancelButton": "qIl"
},
"Result": {
"noResult": "pagh ghot'e' vItu'",
"live": "yIn",
"addMyPlaylist": "chel chu' tetlh",
"addPlaylists": "chel tetlh QujmeH",
"newPlaylist": "chu' chu' tetlh",
"addPlaylistButton": "boq",
"addPLaylistTitle":"chel",
"subscribe": "subscribe",
"unSubscribe": "unsubscribe",
"goProfile": "ghoS qoghDu'DajDaq",
"loginProfileTitle": "poQ neH QonoS",
"loginProfileText": "DubelmoHchugh QonoS DuH lo'",
"loginProfileConfirmButton": "luq",
"loginProfileCancelButton": "qIl",
"playlistCloned": "Playlist had been added to your playlists",
"playlistClonedFailed": "You already cloned this playlist",
"subscribers": "subscribers"
},
"Lenguages":{
"languages_array":[
{"value": "AF", "viewValue": "Afrikaans"},
{"value": "SQ", "viewValue": "Albanian"},
{"value": "AR", "viewValue": "Arabic"},
{"value": "HY", "viewValue": "Armenian"},
{"value": "EU", "viewValue": "Basque"},
{"value": "BN", "viewValue": "Bengali"},
{"value": "BG", "viewValue": "Bulgarian"},
{"value": "CA", "viewValue": "Catalan"},
{"value": "KM", "viewValue": "Cambodian"},
{"value": "ZH", "viewValue": "Chinese (Mandarin)"},
{"value": "HR", "viewValue": "Croation"},
{"value": "CS", "viewValue": "Czech"},
{"value": "DA", "viewValue": "Danish"},
{"value": "NL", "viewValue": "Dutch"},
{"value": "EN", "viewValue": "English"},
{"value": "ET", "viewValue": "Estonian"},
{"value": "FJ", "viewValue": "Fiji"},
{"value": "FI", "viewValue": "Finnish"},
{"value": "FR", "viewValue": "French"},
{"value": "KA", "viewValue": "Georgian"},
{"value": "DE", "viewValue": "German"},
{"value": "EL", "viewValue": "Greek"},
{"value": "GU", "viewValue": "Gujarati"},
{"value": "HE", "viewValue": "Hebrew"},
{"value": "HI", "viewValue": "Hindi"},
{"value": "HU", "viewValue": "Hungarian"},
{"value": "IS", "viewValue": "Icelandic"},
{"value": "ID", "viewValue": "Indonesian"},
{"value": "GA", "viewValue": "Irish"},
{"value": "IT", "viewValue": "Italian"},
{"value": "JA", "viewValue": "Japanese"},
{"value": "JW", "viewValue": "Javanese"},
{"value": "KO", "viewValue": "Korean"},
{"value": "LA", "viewValue": "Latin"},
{"value": "LV", "viewValue": "Latvian"},
{"value": "LT", "viewValue": "Lithuanian"},
{"value": "MK", "viewValue": "Macedonian"},
{"value": "MS", "viewValue": "Malay"},
{"value": "ML", "viewValue": "Malayalam"},
{"value": "MT", "viewValue": "Maltese"},
{"value": "MI", "viewValue": "Maori"},
{"value": "MR", "viewValue": "Marathi"},
{"value": "MN", "viewValue": "Mongolian"},
{"value": "NE", "viewValue": "Nepali"},
{"value": "NO", "viewValue": "Norwegian"},
{"value": "FA", "viewValue": "Persian"},
{"value": "PL", "viewValue": "Polish"},
{"value": "PT", "viewValue": "Portuguese"},
{"value": "PA", "viewValue": "Punjabi"},
{"value": "QU", "viewValue": "Quechua"},
{"value": "RO", "viewValue": "Romanian"},
{"value": "RU", "viewValue": "Russian"},
{"value": "SM", "viewValue": "Samoan"},
{"value": "SR", "viewValue": "Serbian"},
{"value": "SK", "viewValue": "Slovak"},
{"value": "SL", "viewValue": "Slovenian"},
{"value": "ES", "viewValue": "Spanish"},
{"value": "SW", "viewValue": "Swahili"},
{"value": "SV", "viewValue": "Swedish "},
{"value": "TA", "viewValue": "Tamil"},
{"value": "TT", "viewValue": "Tatar"},
{"value": "TE", "viewValue": "Telugu"},
{"value": "TH", "viewValue": "Thai"},
{"value": "BO", "viewValue": "Tibetan"},
{"value": "TO", "viewValue": "Tonga"},
{"value": "TR", "viewValue": "Turkish"},
{"value": "UK", "viewValue": "Ukranian"},
{"value": "UR", "viewValue": "Urdu"},
{"value": "UZ", "viewValue": "Uzbek"},
{"value": "VI", "viewValue": "Vietnamese"},
{"value": "CY", "viewValue": "Welsh"},
{"value": "XH", "viewValue": "Xhosa"}
]
},
"DataProteccion" : {
"data_protection_array":[
{"value": "1", "viewValue": "Everyone"},
{"value": "2", "viewValue": "JustMe (Coming soon)"},
{"value": "3", "viewValue": "OnlyIFollow (Coming soon)"},
{"value": "4", "viewValue": "Password (Coming soon)"},
{"value": "5", "viewValue": "IChoose (Coming soon)"},
{"value": "6", "viewValue": "NotList (Coming soon)"},
{"value": "7", "viewValue": "PrivateLink (Coming soon)"}
]
},
"Category": {
"category_array":[
{"value": "45", "viewValue": "nen (non porn)"},
{"value": "43", "viewValue": "Animation"},
{"value": "24", "viewValue": "Culture 'ej"},
{"value": "26", "viewValue": "neH, bI'IHba'mo' neH 'ej"},
{"value": "37", "viewValue": "puH Duj"},
{"value": "8", "viewValue": "cinema"},
{"value": "16", "viewValue": "coach"},
{"value": "42", "viewValue": "comedy"},
{"value": "41", "viewValue": "crypto"},
{"value": "12", "viewValue": "economy"},
{"value": "3", "viewValue": "e Learning"},
{"value": "22", "viewValue": "mIywI' chu'"},
{"value": "35", "viewValue": "czech"},
{"value": "36", "viewValue": "Soj"},
{"value": "18", "viewValue": "gadgets Apps 'ej"},
{"value": "2", "viewValue": "English Hol"},
{"value": "19", "viewValue": "porgh Damo' ghaH"},
{"value": "15", "viewValue": "qun"},
{"value": "27", "viewValue": "hobbies Crafts 'ej"},
{"value": "17", "viewValue": "'oH"},
{"value": "23", "viewValue": "kid"},
{"value": "25", "viewValue": "yIn style"},
{"value": "33", "viewValue": "movie"},
{"value": "5", "viewValue": "QoQ"},
{"value": "20", "viewValue": "tlhoQ"},
{"value": "9", "viewValue": "De'"},
{"value": "29", "viewValue": "latlh"},
{"value": "44", "viewValue": "Performing Arts"},
{"value": "39", "viewValue": "Porn"},
{"value": "40", "viewValue": "Sajmey"},
{"value": "28", "viewValue": "lalDan"},
{"value": "14", "viewValue": "QeD"},
{"value": "31", "viewValue": "series"},
{"value": "13", "viewValue": "wanI'vammo' tlha' social"},
{"value": "11", "viewValue": "yej'an"},
{"value": "6", "viewValue": "sport"},
{"value": "38", "viewValue": "Technology"},
{"value": "32", "viewValue": "trailer"},
{"value": "21", "viewValue": "leng"},
{"value": "4", "viewValue": "tv Channels"},
{"value": "7", "viewValue": "vloggers"},
{"value": "30", "viewValue": "Camera"},
{"value": "34", "viewValue": "yousician"}
],
"category_array_xxx": [
{ "value": "3901", "viewValue": "Arab" , "icon":"cat-adult.svg"},
{ "value": "3902", "viewValue": "Amateur" , "icon":"cat-adult.svg"},
{ "value": "3903", "viewValue": "Asian" , "icon":"cat-adult.svg"},
{ "value": "3904", "viewValue": "Anal" , "icon":"cat-adult.svg"},
{ "value": "3905", "viewValue": "Babe" , "icon":"cat-adult.svg"},
{ "value": "3906", "viewValue": "Big tits" , "icon":"cat-adult.svg"},
{ "value": "3907", "viewValue": "Blowjob" , "icon":"cat-adult.svg"},
{ "value": "3908", "viewValue": "Brunette" , "icon":"cat-adult.svg"},
{ "value": "3909", "viewValue": "Bukkake" , "icon":"cat-adult.svg"},
{ "value": "3910", "viewValue": "Big ass" , "icon":"cat-adult.svg"},
{ "value": "3911", "viewValue": "Bondage" , "icon":"cat-adult.svg"},
{ "value": "3912", "viewValue": "Cartoon" , "icon":"cat-adult.svg"},
{ "value": "3913", "viewValue": "Casting" , "icon":"cat-adult.svg"},
{ "value": "3914", "viewValue": "Creampie" , "icon":"cat-adult.svg"},
{ "value": "3915", "viewValue": "Compilation" , "icon":"cat-adult.svg"},
{ "value": "3916", "viewValue": "Cumshot" , "icon":"cat-adult.svg"},
{ "value": "3917", "viewValue": "College" , "icon":"cat-adult.svg"},
{ "value": "3918", "viewValue": "Double penetration" , "icon":"cat-adult.svg"},
{ "value": "3919", "viewValue": "Fetish" , "icon":"cat-adult.svg"},
{ "value": "3920", "viewValue": "Fisting" , "icon":"cat-adult.svg"},
{ "value": "3921", "viewValue": "Gangbang" , "icon":"cat-adult.svg"},
{ "value": "3922", "viewValue": "Gay" , "icon":"cat-adult.svg"},
{ "value": "3923", "viewValue": "Handjob" , "icon":"cat-adult.svg"},
{ "value": "3924", "viewValue": "Interracial" , "icon":"cat-adult.svg"},
{ "value": "3925", "viewValue": "Lesbian" , "icon":"cat-adult.svg"},
{ "value": "3926", "viewValue": "Latina" , "icon":"cat-adult.svg"},
{ "value": "3927", "viewValue": "MILF" , "icon": "cat-adult.svg"},
{ "value": "3928", "viewValue": "Massage" , "icon":"cat-adult.svg"},
{ "value": "3929", "viewValue": "Masturbation" , "icon":"cat-adult.svg"},
{ "value": "3930", "viewValue": "Mature" , "icon":"cat-adult.svg"},
{ "value": "3931", "viewValue": "Old/Young" , "icon":"cat-adult.svg"},
{ "value": "3932", "viewValue": "Orgy" , "icon":"cat-adult.svg"},
{ "value": "3949", "viewValue": "Others" , "icon" : "cat-adult.svg"},
{ "value": "3933", "viewValue": "Pissing" , "icon":"cat-adult.svg"},
{ "value": "3934", "viewValue": "Parody" , "icon":"cat-adult.svg"},
{ "value": "3935", "viewValue": "Party" , "icon":"cat-adult.svg"},
{ "value": "3936", "viewValue": "POV" , "icon":"cat-adult.svg"},
{ "value": "3937", "viewValue": "Pornstar" , "icon":"cat-adult.svg"},
{ "value": "3938", "viewValue": "Public" , "icon":"cat-adult.svg"},
{ "value": "3939", "viewValue": "Role play" , "icon":"cat-adult.svg"},
{ "value": "3940", "viewValue": "Rough sex" , "icon":"cat-adult.svg"},
{ "value": "3941", "viewValue": "Romantic" , "icon":"cat-adult.svg"},
{ "value": "3942", "viewValue": "Squirt" , "icon":"cat-adult.svg"},
{ "value": "3943", "viewValue": "School" , "icon":"cat-adult.svg"},
{ "value": "3944", "viewValue": "Sexy girls" , "icon":"cat-adult.svg"},
{ "value": "3945", "viewValue": "Soft porn" , "icon":"cat-adult.svg"},
{ "value": "3946", "viewValue": "Teen" , "icon": "cat-adult.svg"},
{ "value": "3947", "viewValue": "Threesome" , "icon":"cat-adult.svg"},
{ "value": "3948", "viewValue": "Toys" , "icon":"cat-adult.svg"},
{ "value": "3950", "viewValue": "Virtual Reality" , "icon":"cat-adult.svg"}
],
"category_array_adult": [
{ "value": "4501", "viewValue": "Blood Content" , "icon":"cat-adult.svg"},
{ "value": "4504", "viewValue": "NSFW" , "icon":"cat-adult.svg"},
{ "value": "4503", "viewValue": "Others" , "icon":"cat-adult.svg"},
{ "value": "4502", "viewValue": "Violent Content" , "icon":"cat-adult.svg"}
]
},
"FixedPlugin": {
"filters": "sidebar Filters",
"background": "sidebar patmey lulo'ta'",
"mini": "sidebar Mini",
"image": "sidebar ghItlhvam",
"night": "ram Mode",
"selectImage": "ghItlhvam",
"sidebarStyle": "sidebar style",
"theme": "theme"
},
"Sidebar": {
"homeSection": "juH",
"trendingSection": "trend",
"newcomersSection": "'arqon chu'",
"liveSection": "yIn",
"uploadSection": "media upload",
"broadcastSection": "broadcast",