This repository was archived by the owner on Jan 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathvi-vi.json
1336 lines (1336 loc) · 97.1 KB
/
vi-vi.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": "Đăng nhập",
"loginClasic": "Or Be Classical",
"usernameEmail": "Tên đăng nhập / Địa chỉ email",
"usernameRequired": "Yêu cầu tên đăng nhập",
"usernameMinimun": "Tối thiểu 3 kí tự",
"usernameInvalid": "Tên đăng nhập không tồn tại",
"usernamewrong": "Tên đăng nhập hoặc mật khẩu sai",
"password": "Mật khẩu",
"passwordRequired": " Yêu cầu mật khẩu ",
"remember": "Nhớ tôi",
"loginButton": "Đi nào",
"forgotPassword": "Quên mật khẩu",
"resendActivateMail": "Gửi lại tên đăng nhập đã được kích hoạt",
"error": "Lỗi",
"emailVerfied": "Xác nhận e-mail",
"resend": "Resend",
"RecoveryPwd": {
"title": "Reset password",
"email":"Tên tài khoản / Địa chỉ e-mail",
"recover": "Khôi phục",
"backLogin": "Quay lại đăng nhập",
"changePwd": "Thay đổi mật khẩu",
"password": "Mật khẩu",
"passwordRequired": " Yêu cầu mật khẩu",
"passwordPattern": " Minimum of 6 characters, 1 uppercase letter, 1 lowercase letter, 1 number",
"repeatPassword": "Nhắc lại mật khẩu",
"passwordMissmatch": "Mật khẩu không đúng",
"saveButton": "Lưu",
"checkMail": "Khôi phục mật khẩu bắt đầu. Hãy kiểm tra mail của bạn ",
"errorRecovery": "Lỗi khôi phục mật khẩu",
"passwordUpdate": "Cập nhật mật khẩu",
"errorUpdate": "Lỗi cập nhật"
}
},
"Register": {
"title": "Đăng kí",
"loginClasic": "Or Be Classical",
"userName": "Tên đăng nhập...",
"usernameRequired": "Yêu cầu tên đăng nhập",
"usernameMinimun": "Tối thiểu 3 kí tự",
"firstName": "Tên...",
"firstNameRequired": "Yêu cầu nhập tên",
"lasName": "Họ...",
"lasNameRequired": "Yêu cầu nhập họ",
"email": "Địa chỉ email...",
"emailRequired": "Yêu cầu địa chỉ email",
"emailMismatch": "Email mismatch",
"emailIncalid": "Email không tồn tại",
"password": "Mật khẩu...",
"passwordRequired": "Yêu cầu mật khẩu",
"passwordPattern": "Minimum of 6 characters, 1 uppercase letter, 1 lowercase letter, 1 number",
"passwprdRepeatInput": "Nhắc lại mật khẩu...",
"passwordRepeat": " Yêu cầu nhắc lại mật khẩu",
"passwordMissmatch": "Mật khẩu không đúng",
"iAgree": "Tôi đồng ý với",
"termsConditions": "Điều khoản và điều kiện",
"login": "Đăng nhập",
"getStart": "Bắt đầu",
"hackTools": "Đã tìm thấy các công cụ phát hiện của hacker. Hãy tử tế và điền vào mọi lĩnh vực và chấp nhận TOS ",
"checkEmail": "Kiểm tra email của bạn.",
"error": "Lỗi",
"repeatEmail": "Repeat Email..."
},
"Profile": {
"MyProfile":{
"Title": "Tiểu sử của tôi",
"aboutMe": "Về tôi:",
"name": "Tên:",
"location": "Nơi sinh sống:",
"memberSince": "Làm thành viên từ:",
"description": "Mô tả",
"readMore": "Đọc tiếp",
"readLess": "Thu gọn",
"editProfileButton": "Sửa tiểu sử ",
"walletTitle": "Tài liệu",
"wallet": "Tài liệu",
"saveWalletButton": "Lưu tài liệu",
"walletNotifySave": "Tài liệu đã được lưu.",
"walletNotifyEmpty":"Lĩnh vực còn trống.",
"socialTitle": "Social",
"editProfileTitle": "Sửa lại tiểu sử",
"editProfileSubTitle": "Hoàn thành tiểu sử của bạn",
"editProfileUsername": "Tên đăng nhập",
"editProfileUsernameMinimunCharacter": "Tên đăng nhập phải chưa tối thiểu 3 kí tự",
"editProfileUsernamePattern": " Tên đăng nhập có thể chứa A-Z, a-z, 0-9 và chỉ có _ ",
"editProfilePhone": "Số điện thoại",
"editProfilePhoneInvalid": "Số điện thoại không tồn tại",
"editProfileEmail": "Email",
"editProfileFirstname": "Tên",
"editProfileFirstnameRequired": "Yêu cầu nhập tên",
"editProfileLastname": "Họ",
"editProfileLastnameRequired": "Yêu cầu nhập họ",
"editProfileCity": "Thành phố",
"editProfileInvalidCity": "Tên thành phố không đúng",
"editProfileCountry": "Đất nước",
"editProfileWebsite": "Trang mạng",
"editProfileInvalidWebsite": "Liên kết trang mạng không tồn tại",
"editProfileInvalidFacebook": "Liên kết Facebook không tồn tại",
"editProfileInvalidTwitter": "Liên kết Twitter không tồn tại",
"editProfileInvalidInstagram": "Liên kết Instagram không tồn tại",
"editProfileInvalidSoundcloud": "Invalid SoundCloud url",
"editProfileInvalidTwitch": "Invalid Twitch url",
"editProfileInvalidvVk": "Invalid Vk url",
"editProfileInvalidMusicoin": "Invalid Musicoin url",
"editProfileInvalidGoogle": "Liên kết Google plus không tồn tại",
"editProfileInvalidTumblr": "Liên kết Tumblr không tồn tại",
"editProfileInvalidPinterest": "Liên kết Pinterest không tồn tại",
"editProfileSomethingAboutYou": "Hãy kể về bản thân bạn...",
"editProfileUpdateButton": "Cập nhật tiểu sử",
"editProfileCancelButton": "Thoát",
"editProfileNotifySave": "Tiểu sử đã được cập nhật",
"editProfileNotifyError": "Lỗi cập nhật",
"editProfileChangePasswordTitle": "Đổi mật khẩu",
"editProfileOldPassword": "Mật khẩu cũ",
"editProfileNewPassword": "Mật khẩu mới",
"editProfileNewPasswordPattern": "Minimum of 6 characters, 1 uppercase letter, 1 lowercase letter, 1 number",
"editProfileRepeatNewPassword": "Nhập lại mật khẩu",
"editProfileRepeatNewPasswordRequired": "Yêu cầu nhập lại mật khẩu",
"editProfileRepeatNewPasswordMissmatch": "Mật khẩu không đúng",
"editProfileUpdatePasswordButton": "Cập nhật mật khẩu ",
"editProfilePasswordNotifyError": "Lỗi cập nhật",
"editProfilePasswordNotifyDifferent": "Lỗi cập nhật: Khác mật khẩu",
"editProfilePasswordNotifyInsert": "Lỗi cập nhật: Chèn mật khẩu",
"editProfilePasswordNotifyPasswordEqual": "Lỗi cập nhật: Mật khẩu mới giống mật khẩu cũ",
"loginProfileTitle": "Yêu cầu đăng nhập!",
"loginProfileText": "Yêu cầu nhập mật khẩu để sử dụng tính năng này",
"loginProfileConfirmButton": "Đồng ý",
"loginProfileCancelButton": "Thoát",
"myProfile": "Tiểu sử của tôi",
"playlist": "Danh sách",
"publications": "Công khai",
"live": "Phát trực tiếp",
"subscriptions": "Lượt đăng kí",
"security": "Bảo mật",
"language": "Ngôn ngữ của tôi",
"saveLanguage": "Lưu ngôn ngữ",
"languageSelect": "Ngôn ngữ",
"textEditorPlaceholder" : "Nhấn để viết...",
"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": "Tiêu đề",
"editPlaylistDescription": "Mô tả",
"editPlaylistSaveButton": "Lưu",
"editPlaylistDeleteButton": "Xóa",
"editPlaylistCloseButton": "Close playlist",
"editPlaylistEmpty": "Danh sách trống.",
"newPlaylist": "Danh sách mới",
"newPlaylistTitle": "Tiêu đề",
"newPlaylistDescription": "Mô tả",
"newPlaylistSaveButton": "Lưu",
"deletePlaylistTitle": "Bạn chắc không? ",
"deletePlaylistText": "Danh sách sẽ bị xóa vĩnh viễn",
"deletePlaylistConfirmButton": "Vâng, xóa nó đi!",
"deletePlaylistCancelButton": "Thoát",
"deletePlaylistTitleConfirm": "Xóa!",
"deletePlaylistTextConfirm": "Danh sách của bạn đã bị xóa",
"updatePlaylistTitle": "Cập nhật!",
"updatePlaylistText": "Dữ liệu trong danh sách của bạn sẽ được cập nhật",
"updatePlaylistName": "Lỗi, hãy nhập tên",
"deleteVideoPlaylistTitle": "Bạn chắc không ?",
"deleteVideoPlaylistText": "Danh sách sẽ bị xóa vĩnh viễn ",
"deleteVideoPlaylistConfirmButton": "Vâng, xóa nó đi!",
"deleteVideoPlaylistCancelButton": "Thoát",
"deleteVideoPlaylistTitleConfirm": "Xóa!",
"deleteVideoPlaylistTextConfirm": "Tài liệu của bạn đã bị xóa",
"VideoPlaylistButton": "Đồng ý",
"noPlaylists": "Không có danh sách nào"
},
"Publications":{
"singularTitle": "Upload",
"title": "Cập nhật của tôi",
"views": "Lượt xem",
"edit": "Chỉnh sửa",
"delete": "Xóa",
"deletePublicationTitle": "Bạn chắc không?",
"deletePublicationText": "Việc này sẽ không được công khai",
"deletePublicationConfirmButton": "Vâng, đừng công khai nó!",
"deletePublicationCancelButton": "Thoát",
"deletePublicationNotify": "Video của bạn đã được xóa",
"deletePublicationNotifyError": "Lỗi",
"videoInfoError": "Lỗi tiếp nhận thông tin video",
"noUploads": "Không có cập nhật nào.",
"editVideo": "Edit video",
"makePrimaryVideo": "Set as primary video"
},
"LiveStreams": {
"title": "Phát trực tiếp",
"views": "Lượt xem",
"edit": "Lượt thích",
"noLiveStreams": "Không có lượt phát trực tiếp nào"
},
"Subscriptions": {
"singularTitle": "Subscription",
"title": "Sự đăng kí",
"subscriptionsButton": "Đăng kí",
"unSubscriptionsButton": "Bỏ đăng kí",
"noSubscriptions": "Không có lượt đăng kí nào"
},
"Subscribers": {
"singularTitle": "Subscriber",
"title": "Subscribers",
"subscriptionsButton": "Subscribe",
"unSubscriptionsButton": "Unsubscribe",
"noSubscriptions": "There are no subscribers"
},
"Security": {
"title": "Bảo mật",
"authentication": "Xác thực hai yếu tố",
"qr": "Mã phản hồi nhanh",
"code": "Mã",
"twoFactorEnabled": "Bật",
"twoFactorDisabled": "Tắt",
"nsfwEnabled": "NSFW enabled",
"nsfwDisabled" : "NSFW disabled",
"activateAuthenticationTitle": "THÔNG BÁO",
"activateAuthenticationText": "Đảm bảo bạn đã quét mã QR trong Ứng dụng Xác thực của mình trước khi tiếp tục ",
"activateAuthenticationConfirmButton": "Đồng ý",
"activateAuthenticationDeleteButton": "Thoát",
"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": "Lượt xem",
"likes": "Lượt thích",
"addPlaylists": "Thêm vào danh sách",
"newPlaylist": "Danh sách mới",
"addPlaylistButton": "Thêm",
"addPLaylistTitle":"Thêm vào...",
"live":"Trực tiếp",
"ago": "ago",
"recomended":"Recommended",
"newest": "Newest",
"trending": "Trending",
"viewAll": "View all"
},
"Trending": {
"views": "Lượt xem",
"likes": "Lượt thích",
"addPlaylists": "Thêm vào danh sách",
"newPlaylist": "Danh sách mới",
"addPlaylistButton": "Thêm",
"addPLaylistTitle":"Thêm vào...",
"live":"Trực tiếp"
},
"Newcomers": {
"views": "Views",
"likes": "Likes",
"addPlaylists": "Add to playlist",
"newPlaylist": "New playlist",
"addPlaylistButton": "Add",
"addPLaylistTitle":"Add to...",
"live":"Live"
},
"Live": {
"views": "Views",
"likes": "Likes",
"noLivestreams": "No livestreams available",
"live":"Live"
},
"MediaEdit": {
"title": "Chỉnh sửa phương tiện truyền thông",
"snapshotButon": "Chụp ảnh nhanh",
"thumbnailButton": "Chọn ảnh thu nhỏ",
"videoTitle": "Tiêu đề video",
"videoTitleError": "Tiêu đề tối thiểu chứa 5 kí tự",
"videoTag": "Hãy thêm một số tag",
"videoPrivacy": "Riêng tư",
"videoCategory": "Hạng mục",
"videoLanguage": "Ngôn ngữ",
"videoAgeVerification": "Xác minh tuổi",
"videoUnpublishButton": "Không công bố",
"videoCancelButton": "Thoát",
"videoUpdateButton": "Cập nhật",
"videoPublishButton": "Công bố",
"videoInputRequired": "Yêu cầu lĩnh vực này",
"videoUpdateDataNotify": "Dữ liệu của bạn đã cập nhật thành công..",
"videoUpdateDataNotifyError": "Lỗi cập nhật",
"videoUpdateDataRequired":"Hãy điền vào các lĩnh vực được yêu cầu",
"videoRemoved": "Video này đã bị xóa",
"videoError": "Lỗi",
"videoRemovedConfirmTitle": "Bạn chắc không?",
"videoRemovedConfirmText": "Nó sẽ không được công bố",
"videoRemovedConfirmButton": "Vâng, không công bố nó!",
"videoRemovedConfirmCancel": "Thoát",
"videoPlaceholderEditor": "Nhập mô tả tại đây...",
"uploadingImage": "Uploading image",
"imageUploaded": "Image uploaded",
"protectedContent": "Protected Content"
},
"Broadcast": {
"Setings": {
"title": "Cài đặt",
"Key": "Chìa khóa",
"streamTitle": "Tiêu đề phát sóng",
"delete": "Xóa",
"edit": "Sửa",
"noKey": "Không tìm thấy chìa khóa nào",
"generateNewKey": "Tạo khóa mới",
"yourStreamingUrl": "Liên kết luồng của bạn ",
"yourStreamingKey": "Khóa luồng của bạn",
"copyClipBoard": "Sao chép khóa luồng vào bộ nhớ tạm",
"cancel": "Thoát",
"save": "Lưu",
"upload": "Cập nhật",
"error": "Lỗi",
"ok": "Đồng ý",
"requiredFile": "Bạn phải hoàn thành tất cả mọi lĩnh vực",
"requiredLoginTitle": "Yêu cầu đăng nhập!",
"requiredLoginText": "Hãy đăng nhập để sử dụng tính năng này",
"saved": "Dữ liệu của bạn đã được lưu lại thành công",
"savedKey":"Key của bạn đã được cập nhật",
"copiedClipBoard": " Khóa luồng của bạn đã được sao chép vào bộ nhớ tạm",
"copiedClipBoardTransmission": "Liên kết truyền dẫn của bạn đã được sao chép trong bộ nhớ tạm",
"confirmDeleteTitle": "Xóa Khóa luồng ",
"confirmDeleteText": "¿ Bạn chắc chắn muốn xóa khóa luồng này ?",
"confirmDeleteButton": "Xóa",
"textEditorPlaceholder": "Enter a text here...",
"showhidden": "Show / Hide key "
},
"Tutorial": {
"title": "Quy trình nhanh",
"1pTutorial": "Để thiết lập phát trực tiếp, hãy nhấn vào nút \"Tạo khóa mới\" .",
"2pTutorial": "Bạn sẽ nhận được liên kết streaming và khóa luồng của mình",
"3pTutorial": "Hoặc chọn một trong những cái keys của bạn và nhấn chọn \"Chỉnh sửa”\".",
"4pTutorial": "Để cài đặt ảnh thu nhỏ cho video của bạn, nhấn chọn nút \"Cập nhật\", chọn một tài liệu truyền thông và nhấn mở",
"5pTutorial": "Điền vào lĩnh vực tiêu đề của streaming để đặt tên cho chương trình phát sóng của bạn. Sử dụng trình soạn thảo văn bản để viết mô tả.",
"6pTutorial": "Đây là tất cả các bước phải làm để chuẩn bị cho phần streaming của bạn, nhấn SAVE.",
"7pTutorial": "Bắt đầu phát sóng trực tiếp với phần mềm streaming OBS.",
"8pTutorial": "Mở phần mềm OBS, đến Cài đặt, nhấn chọn Streaming, thay đổi loại Stream để tùy biến streaming server. Dán liên kết streaming của bạn vào lĩnh vực liên kết, Dán streaming key của bạn vào lĩnh vực streaming. Áp dụng vào cài đặt. Nhấn Ok để đóng cửa sổ.",
"9pTutorial": "Bạn sẽ nhận liên kết stream và streaming key từ cài đặt l.tube , nhấn vào biểu tượng clip để sao chép cả hai.",
"10pTutorial": "Thiết lập OBS stream của bạn với bối cảnh,nguồn và tất cả các cài đặt yêu thích của bạn và bắt đầu truyền trực tuyến.",
"11pTutorial": "Đây là tất cả các bước tiến hành để bắt đầu streaming với OBS trên Bit.Tube.",
"titleStream,": "Phần mềm streaming",
"1pTutorialStream": "Bạn có thể truyền trực tuyến nội dung của mình trên nền tảng Bit.Tube bằng cách sử dụng ứng dụng phần mềm người gửi đặc biệt. Nội dung được liên kết với địa chỉ ví BitTube xác định chủ bản quyền. Chúng tôi đã thực hiện một số đề xuất bên dưới, chỉ cần chọn một trong số chúng và bắt đầu!",
"2pTutorialStream": "Mở phần mềm phát sóng ",
"3pTutorialStream": "Mở phần mềm phát sóng, hoặc được biết đến nhiều hơn vì OBS là một phần mềm mã nguồn mở được lập trình C và C ++ để phát trực tuyến và ghi âm. OBS cho phép nắm bắt thời gian thực và người dùng có toàn quyền kiểm soát về thành phần cảnh, mã hóa, ghi âm và phát sóng. Trong khi chờ đợi, OBS đi kèm với một loạt các sự thêm vào, cung cấp cho người dùng rất nhiều tự do để thiết lập, lập kế hoạch và phát sóng.",
"4pTutorialStream": "Gameshow",
"5pTutorialStream": "Một phần mềm phát trực tuyến trả tiền kết hợp hiệu quả và dễ sử dụng trong một ",
"6pTutorialStream": "Hoặc là bạn chọn để thiết lập streaming của bạn từ mẫu nhất định hoặc bạn chỉ cần thực hiện các thiết lập của riêng bạn bằng cách sử dụng phần mềm, phát sóng của bạn sẽ luôn luôn thiếu sót,nhưng cũng rất chuyên nghiệp. Thích hợp cho cả người chuyên nghiệp và người nghiệp dư. ",
"7pTutorialStream": "XSplit Gamecaster",
"8pTutorialStream": "Cách dễ dàng nhất trên thế giới đẻ bắt đầu phát trực tiếp hay ghi lại trò chơi trên PC hoặc trên Console của bạn, như người ta nói. Sử dụng XSplit Gamecaster để chia sẻ Gameplay của bạn. Chỉ cần nhấn để trực tuyến và ghi lại những khoảnh khắc chơi game đặc biệt của bạn. Bạn cũng có thể chọn XSplit Broadcaster, thay thế cho phát trực tuyến",
"9pTutorialStream": "Vmix",
"10pTutorialStream": "Được sử dụng rộng rãi, vMix là công cụ lý tưởng để phát sóng, đặc biệt là cho vloggers, nhưng không chỉ có thế. vMix là một giải pháp cho phần mềm sản xuất video trực tiếp hoàn chỉnh với các tính năng bao gồm phát trực tiếp,chuyển đổi, ghi và phát trực tiếp các nguồn video SD, full HD và 4K bao gồm máy ảnh,tệp video , DVDs,hình ảnh , Powerpoint và nhiều hơn thế nữa.",
"dowloadButton": "Tải xuống"
},
"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": "Thêm vào danh sách",
"newPlaylist": "Danh sách mới",
"addPlaylistButton": "Thêm",
"addPLaylistTitle":"Thêm vào...",
"views": "Lượt xem",
"viewers": "Người xem",
"donate": "Ủng hộ",
"likes": "Lượt thích",
"writeComment": "Viết một bình luận",
"addPlaylist": "Thêm vào danh sách",
"embedCode": "Nhúng mã",
"reportVideo": "Báo cáo video",
"share": "Chia sẻ",
"editVideo": "Sửa video",
"subscribe": "Đăng kí",
"unSubscribe": "Bỏ đăng kí",
"showMore": "Hiển thị tiếp",
"showLess": "Hiển thị yhu gọn",
"commentButton": "Bình luận",
"cancel": "Thoát",
"singularComments": "comment",
"comments": "Bình luận",
"madePost": "Tạo một bài viết.",
"justNow": "Vừa xong",
"madeSubPost": "made a subpost.",
"replyComment": "Trả lời bình luận",
"commentEdit": "Chỉnh sửa bình luận",
"edit": "Chỉnh sửa",
"autoPlay": "Tự động",
"next": "Tiếp theo",
"related": "Liên quan",
"live": "Trực tiếp",
"playlist": "Danh sách",
"loadMore": "Tải thêm",
"seeAnswer": "See reply",
"seeAnswers": "See replies",
"hideAnswer": "Hide reply",
"hideAnswers": "Hide replies",
"copyClipboardIframe": "Iframe được sao chép vào bộ nhớ tạm",
"copyClipboard": "Sao chép qua bộ nhớ tạm",
"embedVideoTitle": "Nhúng video",
"loginProfileTitle": "Yêu cầu đăng nhập!",
"loginProfileText": "Hãy đăng nhập để sử dụng tính năng này",
"loginProfileConfirmButton": "Đồng ý",
"loginProfileCancelButton": "Thoát",
"deleteComentConfirmTitle": "Xóa bình luận",
"deleteComentConfirmText": "Bạn chắc chắn muốn xóa bình luận này ?",
"deleteComentConfirmButton": "Vâng",
"reportVideoInnapropiateContent": "Nội dung không phù hợp",
"reportVideoCopyrightViolation": "Vi phạm bản quyền",
"reportVideoOther": "Khác",
"reportVideoCancel": "Thoát",
"reportVideoSend": "Gửi",
"textEditorPlaceholder": "Nhập để viết...",
"AcceptedHashesText": "Chấp nhận lỗ hỏng: ",
"HashesText": "Hash/s: ",
"TotalHashesText": "Airtime PoV: ",
"status": "Trạng thái: ",
"localSaving": "Local IPFS Savings: ",
"RTCPeers": "RTC Peers: ",
"saving": "RTC Savings: ",
"wallet": "Tài liệu: ",
"CloseStats": "Đóng",
"consent": "Bằng cách xem nội dung này, bạn đang giúp người sáng tạo ra nó.",
"consent2": " Trong khi xem, một phần năng lượng không bình thường của máy tính của bạn sẽ được sử dụng để khai thác mật mã thay mặt cho người sáng tạo nội dung.",
"agree": "Tôi đồng ý",
"innapropiateVideo": " Video này có thể không phù hợp với một số người dùng. Vui lòng xác nhận để tiếp tục.",
"working": "Đang hoạt động",
"waiting": "Waiting",
"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": "Xem qua",
"walletAdress": "Địa chỉ của tài liệu",
"balance": "Sự cân bằng",
"offlineWallet": "Ví offline",
"walletMaintenance": " Ví đang được bảo trì",
"walletBackSoon": "Ví sẽ trở lại sớm",
"transactions": "Giao dịch",
"status": "Trạng thái",
"date": "Ngày",
"amount": "Số lượng",
"address": "Địa chỉ",
"paymentID": "ID trả tiền",
"contacts": "Liên hệ",
"name": "Tên",
"adress": "Địa chỉ",
"close": "Đóng",
"remoceContact": "Xóa liên hệ",
"addContact": "Thêm liên hệ",
"sendtoAddress" : "Gửi đến địa chỉ",
"receiverAddress" : "Địa chỉ người nhận",
"ipbcAmount" : "Số lượng Tube ",
"feeIPBC" : "Phí (Tube)",
"anonymityLevel" : "Mức độ ẩn danh",
"2FACode": "Mã xác định 2 yếu tố",
"send": "Gửi",
"cancel": "Thoát",
"walletKeys": "Key của ví",
"spendKey": "Key sử dụng",
"viewKey": "Key hiển thị ",
"privatekey" : "Key riêng tư",
"errorRemoveContact": "Hãy chọn một liên hệ để xóa!",
"removeContact": "Liên hệ đã được xóa...",
"failedRemoveContact": "Không xóa được liên hệ...",
"failedRetriveContact": "Không thể truy xuất danh sách liên hệ...",
"2FAInvalid": "Mã xác định 2 yếu tố này không tồn tại...",
"fee": "Phí không được dưới 0.01 IPBC",
"Anonymity": "Ẩn danh phải ở giữa 0-10",
"transactionFaild": "Giao dịch thất bại...",
"noTransactions": "Không có lượt giao dịch nào",
"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": "Mở Coinmarketcap",
"exchanges": "Sàn giao dịch",
"livecoin": "Livecoin",
"last": "Kéo dài",
"high": "Cao",
"low": "Thấp",
"OpenLivecoin": "Mở Livecoin",
"tradeOgre": "TradeOgre",
"tradeOgreOpen": "Mở TradeOgre",
"openCrex24": "Mở Crex24",
"altex": "Altex",
"noAPI" : "No API",
"crex24": "Crex24",
"tpl_title" : "Công cụ tính lợi nhuận",
"tpl_market" : "Thị trường",
"tpl_avg_hashrate" : "Tốc độ trung bình (H/s)",
"tpl_avg_watchtime" : "Average Watchtime (in hours)",
"tpl_dayly_views" : "Lượt xem hàng ngày",
"tpl_profit" : "Lợi nhuận",
"tpl_per_day" : "Mỗi ngày",
"tpl_per_week" : "mỗi tuần",
"tpl_per_month" : "mỗi tháng",
"tpl_per_year" : "Mỗi năm",
"tpl_loading" : "Đang xử lí...",
"tpl_marketcap" : "MARKET CAP",
"tpl_vol_usd_24h" : "VOLUME USD (24H)",
"tpl_vol_eur_24h" : "VOLUME EUR (24H)"
},
"Upload": {
"titleUpload": "Cập nhật tệp media ",
"p1Upload": "Bạn có thể tải lên các tập tin media của bạn. Các tệp video kết quả sẽ có sẵn ở nhiều định dạng chất lượng",
"p2Upload": "Ghi chú: Chất lượng tối thiểu 360P, duration less than 3 hours, size less than 5 GB",
"uploadNowButton": "Cập nhật ngay",
"titleUploadYoutube": "Kết nối với youtube",
"p1UploadYoutube": "Ở đây bạn có thể kết nối trực tiếp với tài khoản Youtube của bạn và di chuyển chỉ với một cú nhấp chuột vào kênh Youtube của bạn đến Bit.Tube",
"conectYoutubeButton": "Kết nối ngay",
"snapshotButon": "Chụp ảnh nhanh",
"thumbnailButton": "Chọn ảnh thu nhỏ",
"videoTitle": "Tiêu đề video",
"videoTitleError": "Tiêu đề cần tối thiểu 5 kí tự",
"videoTag": "Hãy thêm vào một số tag",
"videoTagEnter": "Nhấn Nhập vào sau mỗi tag",
"videoPrivacy": "Quyền riêng tư",
"videoCategory": "Hạng mục",
"videoLanguage": "Ngôn ngữ",
"videoAgeVerification": "Xác minh tuổi tác",
"videoUnpublishButton": "Không công bố",
"videoUploadButton": "Cập nhật",
"videoDiscardButton": "Hủy bỏ",
"videoPublishButton": "Công bố",
"videoInputRequired": "Lĩnh vực yêu cầu",
"videoPlaceholderEditor": "Nhập mô tả tại đây...",
"uploadMaintenance": " Chúng tôi rất tiếc, dịch vụ tải lên của chúng tôi đang ở chế độ bảo trì, vui lòng thử lại sau",
"uploadMaintenanceButton": "Tôi hiểu rồi!",
"uploadNetworkFail": "There is a problem with your internet connection. Please check.",
"uploadWaiting": "WAITING UPLOAD SLOT",
"noWallet": "Bạn không có ví",
"noWalletText": "Trong trường hợp này, Bạn sẽ không nhận được bất cứ Thu nhập nào từ video này ",
"cancelWalletButton" : "Cancel",
"createWalletButton": "Tạo ví",
"loginProfileTitle": "Yêu cầu đang nhập!",
"loginProfileText": "Hãy đăng nhập để sử dụng tính năng này",
"loginProfileConfirmButton": "Đồng ý",
"loginProfileCancelButton": "Thoát",
"videoAlreadyPublishedTitle": "Video đã được tạo!",
"videoAlreadyPublishedText": " Bạn có thể chỉnh sửa thông tin video này trong các ấn phẩm trong hồ sơ của bạn",
"videoSuccessfuly": "Your video has been successfully uploaded, you will receive a notification once your video has been published.",
"authorizationYoutube": " Trong trường hợp không được phép, vui lòng nhấp vào AUTHORIZE và làm theo các bước để cấp quyền kiểm tra nội dung youtube của bạn ",
"authorizeButton": "Được phép",
"UnauthorizeButton": "Trái phép",
"yourVideo":"Video youtube của bạn",
"selectAll": "Chọn tất cả",
"startImport": "Bắt đầu xuất ra",
"videos": "Videos",
"dataProteccion": "Bảo vệ dữ liệu",
"moreVideos": "Thêm video",
"allVideosAlready": "Tất cả video trong kênh này đã được cập nhật",
"leavePageTitle": "Bạn chác chán muốn rời trang này?",
"leavePageText": "Tất cả những cập nhật đang xử lí của bạn sẽ bị mất",
"leavePageButton": "Vâng, rời đi!",
"needsRemove": "Youtube Auth needs to be Removed",
"finalizeProcess": "Để hoàn tất quá trình này, vui lòng truy cập vào trang web quản lí tài khoản Google để xóa hoàn toàm quyền truy cập từ",
"bitubeIntegrate": "BitTube hội nhập với YouTube",
"areYouSure": "Bạn chắc không?",
"removeAccess": "Việc này sẽ xóa sự liên kết của bạn với tài khoản youtube!",
"proceed": "Yes, proceed!",
"gotit": "Tôi đã hiểu!",
"allYourSelected": "Tất cả video được chọn sẽ được cập nhật, tốn một thời gian để chúng được kiểm tra và tạo lập",
"textEditorPlaceholder": "Nhập văn bản vào đây ...",
"invalidFile": "INVALID FILE ERROR",
"informationError": "INFORMATION ERROR",
"transcodingError": "TRANSCODING ERROR",
"syncError": "SYNCHRONIZATION 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": "Đăng kí",
"unSubscribe": "Hủy đang kí",
"myProfile": "Tiểu sử của tôi",
"playlist": "Danh sách",
"profile": "Profile",
"publications": "Chế độ công khai",
"live": "Phát trực tiếp",
"subscriptions": "Đăng kí",
"loginProfileTitle": "Yêu cầu đăng nhập!",
"loginProfileText": "Hãy đăng nhập để sử dụng tính năng này",
"loginProfileConfirmButton": "Đồng ý",
"loginProfileCancelButton": "Thoát",
"Profile": {
"title": "Xem qua",
"about": "Về",
"name": "Tên",
"member": "Thành viên từ ",
"description": "Mô tả",
"location": "Địa chỉ",
"readMore": "Đọc tiếp",
"readLess": "Thu gọn",
"social": "Social",
"newest": "newest",
"popular": "popular",
"oldest": "oldest"
},
"Publications": {
"publication": "Chế độ công khai",
"publications": "Chế độ công khai",
"noPublications": "Không có lượt công khai nào",
"live": "Trực tiếp",
"addPlaylists": "Thêm vào danh sách",
"newPlaylist": "Danh sách mới",
"addPlaylistButton": "Thêm ",
"addPLaylistTitle":"Thêm vào...",
"ReadMore": "Read more",
"showAll": "Show all",
"sortedBy": "Sorted by",
"sortBy": "Sort By",
"sortByOldest": "Oldest",
"sortByRecent": "Most recent",
"sortByPopularity": "Popularity",
"sortByRelevance" : "Relevance"
},
"LiveTv": {
"livestream": "Phát trực tiếp",
"livestreams": "Phát trực tiếp",
"noStream": "Không có lượt phát trực tiếp nào",
"live": "Trực tiếp",
"addPlaylists": "Thêm vào danh sách",
"newPlaylist": "Danh sách mới",
"addPlaylistButton": "Thêm",
"addPLaylistTitle":"Thêm vào..."
},
"Subscriptions": {
"subscriptions": "Lượt đăng kí",
"subscription": "subscription",
"nosubscriptions": "Không có lượt đăng kí nào",
"subscribe": "Đăng kí",
"unSubscribe": "Bỏ đăng kí"
},
"MyPlaylists": {
"myPlaylists": "danh sách của tôi",
"noPlaylists": "Không có danh sách nào cả",
"description": "Mô tả",
"noDescription": "Không có mô tả nào được cung cấp",
"addMyPlaylist": "Thêm vào danh sách của tôi",
"addPlaylists": "Thêm vào danh sách",
"newPlaylist": "Danh sách mới",
"addPlaylistButton": "Thêm",
"addPLaylistTitle":"Thêm vào...",
"playlistEmpty": "Danh sách này đang trống",
"yourCopyPlaylist": "Bạn có bản sao riêng của danh sách này!",
"somenthingWrong": "Có gì đó không ổn trong quá trình xử lí!"
}
},
"LiveChat": {
"title": "Chat trực tiếp",
"saySomething": "Hãy nói gì đó",
"chatUser": "Chat Users",
"block": "Block",
"unblock": "Unblock",
"blockFromChannel": "Block khỏi kênh",
"UnBlockFromChannel": "Unblock khỏi kênh",
"loginProfileTitle": "Yêu cầu đăng nhập!",
"loginProfileText": "Yêu cầu đăng nhập để sử dụng tính năng này",
"loginProfileConfirmButton": "Dồng ý",
"loginProfileCancelButton": "Thoát"
},
"Playlist": {
"loginProfileTitle": "Yêu cầu đăng nhập!",
"loginProfileText": "Yêu cầu đăng nhập để sử dụng tính năng này",
"loginProfileConfirmButton": "Đồng ý",
"loginProfileCancelButton": "Thoát"
},
"Result": {
"noResult": "Không tìm thấy kết quả",
"live": "Trực tiếp",
"addMyPlaylist": "Thêm vào danh sách",
"addPlaylists": "Thêm vào danh sách",
"newPlaylist": "Danh sách mới",
"addPlaylistButton": "Thêm",
"addPLaylistTitle":"Thêm vào...",
"subscribe": "Đăng kí",
"unSubscribe": "Bỏ đăng kí",
"goProfile": "Đi đến tiểu sử của tôi",
"loginProfileTitle": "Yêu cầu đăng nhập!",
"loginProfileText": "Yêu cầu đăng nhập để sử dụng tính năng này",
"loginProfileConfirmButton": "Đồng ý",
"loginProfileCancelButton": "Thoát",
"playlistCloned": "Playlist had been added to your playlists",
"playlistClonedFailed": "You already cloned this playlist",
"subscribers": "subscribers"
},
"Lenguages":{
"languages_array":[
{"value": "AF", "viewValue": "Tiếng Afrikaans"},
{"value": "SQ", "viewValue": "Tiếng Albanian"},
{"value": "AR", "viewValue": "Tiếng Ả rập"},
{"value": "HY", "viewValue": "Tiếng Armenian"},
{"value": "AZ", "viewValue": "Azerbaijan"},
{"value": "EU", "viewValue": "Tiếng Basque"},
{"value": "BN", "viewValue": "Tiếng Bengali"},
{"value": "BG", "viewValue": "Tiếng Bulgaria"},
{"value": "CA", "viewValue": "Tiếng Catala"},
{"value": "KM", "viewValue": "Tiếng Campuchia"},
{"value": "ZH", "viewValue": "Tiếng Trung (Quan thoại)"},
{"value": "HR", "viewValue": "Tiếng Croation"},
{"value": "CS", "viewValue": "Tiếng Séc"},
{"value": "DA", "viewValue": "Tiếng Đan Mạch"},
{"value": "NL", "viewValue": "Tiếng Hà Lan"},
{"value": "EN", "viewValue": "Tiếng Anh"},
{"value": "ET", "viewValue": "Tiếng Estonia"},
{"value": "FJ", "viewValue": "Tiếng Fiji"},
{"value": "FI", "viewValue": "Tiếng Finnish"},
{"value": "FR", "viewValue": "Tiếng Pháp"},
{"value": "KA", "viewValue": "Tiếng Georgian"},
{"value": "DE", "viewValue": "Tiếng Đức"},
{"value": "EL", "viewValue": "Tiếng Hy Lạp"},
{"value": "GU", "viewValue": "Tiếng Gujarati"},
{"value": "HE", "viewValue": "Tiếng Hebrew"},
{"value": "HI", "viewValue": "Tiếng Hindi"},
{"value": "HU", "viewValue": "Tiếng Hungaria"},
{"value": "IS", "viewValue": "Tiếng Icelandic"},
{"value": "ID", "viewValue": "Tiếng Indonesia"},
{"value": "GA", "viewValue": "Tiếng Ireland"},
{"value": "IT", "viewValue": "Tiếng Ý"},
{"value": "JA", "viewValue": "Tiếng Nhật"},
{"value": "JW", "viewValue": "Tiếng Javanese"},
{"value": "KO", "viewValue": "Tiếng Hàn"},
{"value": "LA", "viewValue": "Tiếng Latin"},
{"value": "LV", "viewValue": "Tiếng Latvian"},
{"value": "LT", "viewValue": "Tiếng Lithuania"},
{"value": "MK", "viewValue": "Tiếng Macedonia"},
{"value": "MS", "viewValue": "Tiếng Malay"},
{"value": "ML", "viewValue": "Tiếng Malayalam"},
{"value": "MT", "viewValue": "Tiếng Maltese"},
{"value": "MI", "viewValue": "Tiếng Maori"},
{"value": "MR", "viewValue": "Tiếng Marathi"},
{"value": "MN", "viewValue": "Tiếng Mông Cổ"},
{"value": "NE", "viewValue": "Tiếng Nepal"},
{"value": "NO", "viewValue": "Tiếng Norway"},
{"value": "FA", "viewValue": "Tiếng Persian"},
{"value": "PL", "viewValue": "Tiếng Phần Lan"},
{"value": "PT", "viewValue": "Tiếng Bồ Đào Nha"},
{"value": "PA", "viewValue": "Tiếng Punjabi"},
{"value": "QU", "viewValue": "Tiếng Quechua"},
{"value": "RO", "viewValue": "Tiếng Romania"},
{"value": "RU", "viewValue": "Tiếng Nga"},
{"value": "SM", "viewValue": "Tiếng Samoa"},
{"value": "SR", "viewValue": "Tiếng Serbia"},
{"value": "SK", "viewValue": "Tiếng Slovak"},
{"value": "SL", "viewValue": "Tiếng Slovenia"},
{"value": "ES", "viewValue": "Tiếng Tây Ban Nha"},
{"value": "SW", "viewValue": "Tiếng Swahili"},
{"value": "SV", "viewValue": "Tiếng Thụy Điển "},
{"value": "TA", "viewValue": "Tiếng Tamil"},
{"value": "TT", "viewValue": "Tiếng Tatar"},
{"value": "TE", "viewValue": "Tiếng Telugu"},
{"value": "TH", "viewValue": "Tiếng Thái"},
{"value": "BO", "viewValue": "Tiếng Tibeta"},
{"value": "TO", "viewValue": "Tiếng Tonga"},
{"value": "TR", "viewValue": "Tiếng Thổ Nhĩ Kỳ"},
{"value": "UK", "viewValue": "Tiếng Ukrania"},
{"value": "UR", "viewValue": "Tiếng Urdu"},
{"value": "UZ", "viewValue": "Tiếng Uzbek"},
{"value": "VI", "viewValue": "Tiếng Việt"},
{"value": "CY", "viewValue": "Tiếng Welsh"},
{"value": "XH", "viewValue": "Tiếng Xhosa"}
]
},
"DataProteccion" : {
"data_protection_array":[
{"value": "1", "viewValue": "Mọi người"},
{"value": "2", "viewValue": "Chỉ một mình tôi (Sắp ra mắt)"},
{"value": "3", "viewValue": "Chỉ theo dõi (Sắp ra mắt)"},
{"value": "4", "viewValue": "Mật khẩu (Sắp ra mắt)"},
{"value": "5", "viewValue": "Tôi chọn (Sắp ra mắt)"},
{"value": "6", "viewValue": "Không liệt kê (Sắp ra mắt)"},
{"value": "7", "viewValue": "Đường link riêng tư (Sắp ra mắt)"}
]
},
"Category": {
"category_array":[
{"value": "45", "viewValue": "Người lớn (non porn)"},
{"value": "43", "viewValue": "Animation"},
{"value": "24", "viewValue": "Nghệ thuật và văn hóa"},
{"value": "26", "viewValue": "Thời trang và làm đẹp"},
{"value": "37", "viewValue": "Xe hơi"},
{"value": "8", "viewValue": "Rạp phim"},
{"value": "16", "viewValue": "Huấn luyện"},
{"value": "42", "viewValue": "Phim hài"},
{"value": "41", "viewValue": "Crypto"},
{"value": "12", "viewValue": "Kinh tế"},
{"value": "3", "viewValue": "Học trực tuyến"},
{"value": "22", "viewValue": "Giải trí"},
{"value": "35", "viewValue": "Tài chính"},
{"value": "36", "viewValue": "Ẩm thực"},
{"value": "18", "viewValue": "Ứng dụng và tiện ích"},
{"value": "2", "viewValue": "Game thủ"},
{"value": "19", "viewValue": "Sức khỏe"},
{"value": "15", "viewValue": "Lịch sử"},
{"value": "27", "viewValue": "Sở thích và Mẹo"},
{"value": "23", "viewValue": "Trẻ em"},
{"value": "25", "viewValue": "Phong cách sống"},
{"value": "39", "viewValue": "Porn"},
{"value": "33", "viewValue": "Phim"},
{"value": "5", "viewValue": "Âm nhạc"},
{"value": "20", "viewValue": "Thiên nhiên"},
{"value": "9", "viewValue": "Tin tức"},
{"value": "29", "viewValue": "Khác"},
{"value": "17", "viewValue": "PC Software/Hardware"},
{"value": "44", "viewValue": "Performing Arts"},
{"value": "40", "viewValue": "Thú cưng"},
{"value": "28", "viewValue": "Tôn giáo"},
{"value": "14", "viewValue": "Khoa học"},
{"value": "31", "viewValue": "Series"},
{"value": "13", "viewValue": "Vấn đề xã hội"},
{"value": "11", "viewValue": "Cộng đồng"},
{"value": "6", "viewValue": "Thể thao"},
{"value": "38", "viewValue": "Công nghệ"},
{"value": "32", "viewValue": "Trailer"},
{"value": "21", "viewValue": "Du lịch"},
{"value": "4", "viewValue": "Kênh TV"},
{"value": "7", "viewValue": "Vloggers"},
{"value": "30", "viewValue": "Camera"},
{"value": "34", "viewValue": "Yousician"}
],
"category_array_xxx": [
{ "value": "3901", "viewValue": "Arab" },
{ "value": "3902", "viewValue": "Amateur" },
{ "value": "3903", "viewValue": "Asian" },
{ "value": "3904", "viewValue": "Anal" },
{ "value": "3905", "viewValue": "Babe" },
{ "value": "3906", "viewValue": "Big tits" },
{ "value": "3907", "viewValue": "Blowjob" },
{ "value": "3908", "viewValue": "Brunette" },
{ "value": "3909", "viewValue": "Bukkake" },
{ "value": "3910", "viewValue": "Big ass" },
{ "value": "3911", "viewValue": "Bondage" },
{ "value": "3912", "viewValue": "Cartoon" },
{ "value": "3913", "viewValue": "Casting" },
{ "value": "3914", "viewValue": "Creampie" },
{ "value": "3915", "viewValue": "Compilation" },
{ "value": "3916", "viewValue": "Cumshot" },
{ "value": "3917", "viewValue": "College" },
{ "value": "3918", "viewValue": "Double penetration" },
{ "value": "3919", "viewValue": "Fetish" },
{ "value": "3920", "viewValue": "Fisting" },
{ "value": "3921", "viewValue": "Gangbang" },
{ "value": "3922", "viewValue": "Gay" },
{ "value": "3923", "viewValue": "Handjob" },
{ "value": "3924", "viewValue": "Interracial" },
{ "value": "3925", "viewValue": "Lesbian" },
{ "value": "3926", "viewValue": "Latina" },
{ "value": "3927", "viewValue": "MILF" },
{ "value": "3928", "viewValue": "Massage" },
{ "value": "3929", "viewValue": "Masturbation" },
{ "value": "3930", "viewValue": "Mature" },
{ "value": "3931", "viewValue": "Old/Young" },
{ "value": "3932", "viewValue": "Orgy" },
{ "value": "3949", "viewValue": "Others" },
{ "value": "3933", "viewValue": "Pissing" },
{ "value": "3934", "viewValue": "Parody" },
{ "value": "3935", "viewValue": "Party" },
{ "value": "3936", "viewValue": "POV" },
{ "value": "3937", "viewValue": "Pornstar" },
{ "value": "3938", "viewValue": "Public" },
{ "value": "3939", "viewValue": "Role play" },
{ "value": "3940", "viewValue": "Rough sex" },
{ "value": "3941", "viewValue": "Romantic" },
{ "value": "3942", "viewValue": "Squirt" },
{ "value": "3943", "viewValue": "School" },
{ "value": "3944", "viewValue": "Sexy girls" },
{ "value": "3945", "viewValue": "Soft porn" },
{ "value": "3946", "viewValue": "Teen" },
{ "value": "3947", "viewValue": "Threesome" },
{ "value": "3948", "viewValue": "Toys" },
{ "value": "3950", "viewValue": "Virtual Reality" }
],
"category_array_adult": [
{ "value": "4501", "viewValue": "Blood Content" },
{ "value": "4504", "viewValue": "NSFW" },
{ "value": "4503", "viewValue": "Others" },
{ "value": "4502", "viewValue": "Violent Content" }
]
},
"FixedPlugin": {
"filters": "Thanh bên bộ lọc",
"background": "Thanh bên hình nền",
"mini": "Thanh bên Mini",
"image": "Thanh bên hình ảnh",
"night": "Chế độ ban đêm",
"selectImage": "Hình ảnh",
"sidebarStyle": "sidebar style",
"theme": "theme"
},
"Sidebar": {