forked from Bittoco/BitView-Translations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathit.php
1509 lines (1458 loc) · 90.4 KB
/
it.php
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
<?php
/* General stuff */
$LANGS['language'] = 'Italiano';
$LANGS['languageenglish'] = 'Italian';
$LANGS['languagecode'] = 'it_IT.UTF-8'; /* Leave the ".UTF-8" in the end as-is, as it might break some dates */
$LANGS['languagechange'] = 'La lingua è stata impostata a Italiano.';
$LANGS['numberformat'] = 1; /* If your language uses comma separators (example: 1,000,000), value will be 1. If it uses dots (example: 1.000.000) or doesn't use separators, value will be 0.*/
/* Language window */
$LANGS['welcometobitview'] = 'Benvenuto su BitView!';
$LANGS['languagesuggestion'] = 'Lingua suggerita (abbiamo impostato le tue preferenze a questo):';
$LANGS['languagesuggestiondesc1'] = 'Per cambiare la lingua del sito, usa il selettore lingue nel footer (fine della pagina).';
$LANGS['languagesuggestiondesc2'] = 'Clicca "OK" per accettare questa impostazione, o clicca "Annulla" per cambiare la lingua del sito a Inglese.';
/* Time, dates, etc */
$LANGS['second'] = 'secondo';
$LANGS['minute'] = 'minuto';
$LANGS['hour'] = 'ora';
$LANGS['day'] = 'giorno';
$LANGS['week'] = 'settimana';
$LANGS['month'] = 'mese';
$LANGS['year'] = 'anno';
$LANGS['seconds'] = 'secondi';
$LANGS['minutes'] = 'minuti';
$LANGS['hours'] = 'ore';
$LANGS['days'] = 'giorni';
$LANGS['weeks'] = 'settimane';
$LANGS['months'] = 'mesi';
$LANGS['years'] = 'anni';
$LANGS['ago1'] = ''; /* Explanation: Text before "x seconds/minutes/hours..." Example: "hace (1 día)" in Spanish. If your language doesn't use this, leave it empty like this: ''*/
$LANGS['ago2'] = ' fa'; /* Explanation: ago2 -> Text after "x seconds/minutes/hours..." Example: "(1 day) ago" in English, "(1 anno) fa" in Italian. If your language doesn't use this, leave it empty like this: ''*/
$LANGS['january'] = 'Gennaio';
$LANGS['february'] = 'Febbraio';
$LANGS['march'] = 'Marzo';
$LANGS['april'] = 'Aprile';
$LANGS['may'] = 'Maggio';
$LANGS['june'] = 'Giugno';
$LANGS['july'] = 'Luglio';
$LANGS['august'] = 'Agosto';
$LANGS['september'] = 'Settembre';
$LANGS['october'] = 'Ottobre';
$LANGS['november'] = 'Novembre';
$LANGS['december'] = 'Dicembre';
$LANGS['shorttimeformat'] = '%b %e, %Y';
$LANGS['videotimeformat'] = '%b %e, %Y';
$LANGS['longtimeformat'] = '%B %e, %Y';
$LANGS['timehourformat'] = '%b %e, %Y %H:%M';
$LANGS['myvideostimeformat'] = '%A, %b %e %Y, %H:%M:%S';
$LANGS['blogpostformat'] = '%A, %B %e, %Y';
$LANGS['monthformat'] = '%B %Y';
$LANGS['timenumberformat'] = 'd.m.Y';
/* Header */
$LANGS['home'] = 'Home';
$LANGS['videos'] = 'Video';
$LANGS['channels'] = 'Canali';
$LANGS['community'] = 'Comunità';
$LANGS['search'] = 'Cerca';
$LANGS['login'] = 'Accedi';
$LANGS['or'] = 'o';
$LANGS['signup'] = 'Crea account';
$LANGS['logout'] = 'Esci';
$LANGS['upload'] = 'Carica';
$LANGS['subscriptions'] = 'Iscrizioni';
$LANGS['history'] = 'Cronologia';
$LANGS['account'] = 'Account';
$LANGS['myvideos'] = 'I miei video';
$LANGS['favorites'] = 'Preferiti';
$LANGS['playlists'] = 'Playlist';
$LANGS['help'] = 'Aiuto';
$LANGS['suggestions'] = 'Suggestions';
$LANGS['quicklist'] = 'QuickList';
$LANGS['browse'] = 'Browse';
/* Homepage */
$LANGS['viewall'] = 'guarda tutto';
$LANGS['videoviews'] = 'visualizzazioni';
$LANGS['beingwatched'] = 'Video guardati ora';
$LANGS['featured'] = 'In primo piano';
$LANGS['recommendedforyou'] = 'Recommended for You';
$LANGS['mostpopular'] = 'I più popolari';
$LANGS['inboxstats'] = 'Messaggi & Statistiche';
$LANGS['profilesettings'] = 'Impostazioni account';
$LANGS['messages'] = 'Messaggi';
$LANGS['message'] = 'Messaggio';
$LANGS['comments'] = 'Commenti';
$LANGS['comment'] = 'Commento';
$LANGS['sharedwithyou'] = 'Shared with You';
$LANGS['sharedwithyousingular'] = 'Shared with You';
$LANGS['videoresponses'] = 'Video Responses';
$LANGS['videoresponse'] = 'Video Response';
$LANGS['friendinvites'] = 'Richieste di amicizia';
$LANGS['friendinvite'] = 'Richiesta di amicizia';
$LANGS['subscribers'] = 'Iscritti';
$LANGS['subscriber'] = 'Iscritto';
$LANGS['totalviews'] = 'Visualizzazioni totali';
$LANGS['sendmessage'] = 'Invia messaggio';
$LANGS['whatsnew'] = "Cosa c'è di nuovo";
$LANGS['readmore'] = 'Leggi di più sul nostro Blog';
$LANGS['videocontest'] = 'Videoconcorso';
$LANGS['joincontest'] = 'Unisciti al concorso ora!';
$LANGS['personalize'] = 'Vuoi personalizzare questa pagina home?';
$LANGS['signinnow'] = '<a href="/login">Accedi</a> o <a href="/signup">Crea un account</a> ora!';
$LANGS['nowconverting'] = "This video is converting, wait a few minutes.";
$LANGS['modules'] = "Add / Remove Modules";
$LANGS['friendactivity'] = "Friend Activity";
$LANGS['customizehomepage'] = "Customize Homepage";
$LANGS['customizethehomepage'] = "Customize the Homepage";
$LANGS['customizehomepagedesc'] = "Select the modules you want to see on your customized homepage.";
$LANGS['displaypreferences'] = "Display Preferences";
$LANGS['thefeed'] = "The Feed";
$LANGS['thefeeddesc'] = "Combine all of your modules into a single feed.";
$LANGS['friendactivitytitle'] = "Friend Activity - Can people see what I do?";
$LANGS['friendactivitydesc'] = "This section shows your confirmed friends the actions that you're publicly broacasting in your recent activity history. For example, if you favorite a video, then your new favorite video might show up in your channel's Recent Activity box, as well as on your friends' homepages.";
$LANGS['feedfeatured'] = "Featured Video";
$LANGS['feedbeingwatched'] = "Video Being Watched Now";
$LANGS['feedrecommended'] = "Recommended Video";
$LANGS['homenosubscriptions'] = "You haven't subscribed to any channel yet.";
$LANGS['homenosubscriptionsdesc'] = "When you add new subscriptions, we'll show their uploads here on this page.";
$LANGS['homenofriendactivity'] = "Your friends haven't been active lately.";
$LANGS['homenofriendactivitydesc'] = "You can try adding some friends. Then, we'll show their activity here on this page.";
$LANGS['homeediting'] = "Editing";
$LANGS['homedisplay'] = "Display as";
$LANGS['homerows'] = "Number of rows to display";
$LANGS['gridview'] = "Grid View";
$LANGS['listview'] = "List View";
/* Page title */
$LANGS['homepretitle'] = "BitView di "; /* Explanation: Use if "BitView" goes before the username. Example: "BitView de username" in Spanish. If your language doesn't use this, leave it empty like this: ''*/
$LANGS['homeposttitle'] = ""; /* Explanation: Use if "BitView" goes after the username. Example: "username's BitView" in English. If your language doesn't use this, leave it empty like this: '' */
$LANGS['chpretitle'] = "Canale di "; /* Explanation: Use if "channel" goes before the username. Example: "Canal de username" in Spanish. If your language doesn't use this, leave it empty like this: ''*/
$LANGS['chposttitle'] = ""; /* Explanation: Use if "channel" goes after the username. Example: "username's Channel" in English. If your language doesn't use this, leave it empty like this: '' */
$LANGS['signintitle'] = "Accedi";
$LANGS['historytitle'] = "Cronologia video";
$LANGS['favtitle'] = "Preferiti";
$LANGS['pltitle'] = "Playlist";
$LANGS['partnerprogram'] = "Programma Partner";
/* Notifications */
$LANGS['searcherror'] = 'Il tuo testo di ricerca deve essere lungo almeno 2 caratteri!';
$LANGS['addvideoplaylist1'] = "Hai aggiunto";
$LANGS['addvideoplaylist2'] = 'video nella tua playlist!';
$LANGS['addfavorite1'] = "Hai aggiunto nei preferiti";
$LANGS['addfavorite2'] = 'video!';
$LANGS['groupdoesnotexist'] = "Questo gruppo non esiste!";
$LANGS['uploaddisabled'] = "L'aggiunta di video è stata disattivata per la manutenzione.";
$LANGS['10vidsday'] = 'Non puoi caricare più di 10 video al giorno! Prova domani.';
$LANGS['3mins'] = 'Attendi 3 minuti prima di caricare un nuovo video!';
$LANGS['backgroundsuccess'] = 'Lo sfondo è stato aggiunto con successo!';
$LANGS['backgrounderror'] = 'Lo sfondo deve essere sotto i 2MB e essere un file immagine!';
$LANGS['backgrounddeleted'] = 'Lo sfondo è stato eliminato con successo!';
$LANGS['bannersuccess'] = 'Il banner è stato aggiunto con successo!';
$LANGS['bannererror'] = 'Il banner deve essere sotto i 2MB e essere un file immagine!';
$LANGS['bannerdeleted'] = 'Il tuo banner è stato eliminato con successo!';
$LANGS['minibannersuccess'] = 'Il mini banner è stato aggiunto con successo!';
$LANGS['minibannererror'] = 'Il mini banner deve essere sotto i 2MB e essere un file immagine!';
$LANGS['minibannerdeleted'] = 'Il tuo mini banner è stato eliminato con successo!';
$LANGS['sideimagesuccess'] = "L'immagine laterale è stata aggiunta con successo!";
$LANGS['sideimageerror'] = "L'immagine laterale deve essere sotto i 2MB e essere un file immagine!";
$LANGS['sideimagedeleted'] = "L'immagine laterale è stata eliminata con successo!";
$LANGS['avatarsuccess'] = "L'avatar è stato aggiunto con successo!";
$LANGS['avatarerror'] = "L'avatar deve essere sotto i 2MB e essere un file immagine!";
$LANGS['avatardeleted'] = "L'avatar è stato eliminato con successo!";
$LANGS['changessaved'] = 'Le preferenze sono state salvate con successo!';
$LANGS['profilesdisabled'] = 'I profili sono stati disattivati per la manutenzione.';
$LANGS['bulletinposted'] = 'Il bollettino è stato pubblicato!';
$LANGS['channelcommentsent'] = 'Il commento è stato pubblicato!';
$LANGS['somethingwentwrong'] = 'Qualcosa è andato storto!';
$LANGS['replysubmitted'] = 'La risposta è stata pubblicata!';
$LANGS['onlyonecomment'] = 'Puoi solo lasciare un commento!';
$LANGS['vpnbrowser'] = "Non puoi usare una VPN per creare un account BitView!";
$LANGS['torbrowser'] = "Non puoi usare TOR per creare un account BitView!";
$LANGS['captchaincorrect'] = "Il captcha è sbagliato.";
$LANGS['toomanyaccounts'] = 'Hai troppi account!';
$LANGS['banned2times'] = "Sei stato bannato 2 volte. Non puoi creare più account!";
$LANGS['nohistory'] = "Non hai ancora guardato nessun video durante questa sessione!";
$LANGS['historycleared'] = 'La tua cronologia è stata cancellata.';
$LANGS['watchdisabled'] = 'La visione del video è stata disattivata per la manutenzione.';
$LANGS['videonotexist'] = 'Questo video non esiste o è stato rimosso perché ha violato i Termini di Utilizzo.';
$LANGS['responseerror'] = "Qualcosa è andato storto con la tua risposta video! Controlla l'URL.";
$LANGS['responseexist'] = 'Il video è stato già richiesto!';
$LANGS['responseadded'] = 'Risposta video aggiunta con successo!';
$LANGS['responseaccepted'] = 'Accettala la nuova risposta video!';
$LANGS['60secscomment'] = 'Attendi 1 minuto prima di aggiungere un altro commento!';
$LANGS['plnotexist'] = "Questa playlist non esiste!";
$LANGS['positionnotexist'] = "Questa posizione non esiste!";
$LANGS['positionchanged'] = "La posizione del video è stata cambiata!";
$LANGS['invalidurl'] = 'URL invalido!';
$LANGS['videopladded'] = 'Video aggiunto con successo!';
$LANGS['videoalreadyinpl'] = 'Questo video è già nella playlist!';
$LANGS['plvideoremoved'] = 'Il video è stato rimosso!';
$LANGS['plinfochanged'] = 'Le informazioni sulla playlist sono state cambiate con successo!';
$LANGS['pltitleneeded'] = 'Devi mettere un titolo per la playlist!';
$LANGS['flashenabled'] = 'Adobe Flash Player attivato!';
$LANGS['flashdisabled'] = 'Adobe Flash Player disattivato!';
$LANGS['messagesent'] = 'Il messaggio è stato mandato con successo!';
$LANGS['usernotexist'] = "Questo utente non esiste!";
$LANGS['nocriteria'] = "Non soddisfi i criteri richiesti!";
$LANGS['alreadypartner'] = 'Sei stato già accettato nel Programma Partner!';
$LANGS['alreadyapplied'] = 'Sei stato già applicato!';
$LANGS['applicationsent'] = 'La tua applicazione è stata mandata!';
$LANGS['joinedgroup'] = 'Sei entrato nel gruppo con successo!';
$LANGS['leftgroup'] = 'Sei uscito dal gruppo con successo!';
$LANGS['grouprequest'] = 'Hai inviato con successo una richiesta di gruppo! Ora devi aspettare che venga accettata.';
$LANGS['groupdeleted'] = 'Il gruppo è stato eliminato con successo!';
$LANGS['groupvideoadded'] = 'Il video è stato aggiunto!';
$LANGS['groupvideoalreadyadded'] = 'Hai già aggiunto questo video!';
$LANGS['groupvideonotowned'] = "Non possiedi questo video!";
$LANGS['3groups'] = 'Puoi possedere solo fino a 3 gruppi!';
$LANGS['groupnameempty'] = 'Il nome del gruppo non può essere vuoto!';
$LANGS['groupdescempty'] = 'La descrizione del gruppo non può essere vuoto!';
$LANGS['groupnoimage'] = "Devi aggiungere un'immagine per il tuo gruppo!";
$LANGS['groupimageerror'] = "L'immagine del gruppo deve essere sotto 1MB e essere un file immagine!";
$LANGS['groupcreated'] = 'Il gruppo è stato creato con successo!';
$LANGS['urlnotvalid'] = "Questo URL video è invalido!";
$LANGS['discussiondeleted'] = 'Topico eliminato con successo!';
$LANGS['videodeleted'] = 'Il video è stato eliminato con successo!';
$LANGS['pldeleted'] = 'Playlist has successfully been deleted!';
$LANGS['invitesent'] = 'La richiesta di amicizia è stata inviata con successo!';
$LANGS['descriptionchanged'] = 'La descrizione è stata cambiata!';
$LANGS['emptymessage'] = 'Non puoi mandare messaggi vuoti!';
$LANGS['styleupdated'] = 'Lo stile del gruppo è stato aggiornato con successo!';
$LANGS['imageupdated'] = "L'immagine del gruppo è stato aggiornato con successo!";
$LANGS['plcreated'] = 'La playlist è stata creata con successo!';
$LANGS['discussiontitle2chars'] = 'Il titolo deve superare i 2 caratteri!';
$LANGS['discussiondesc10chars'] = 'Le descrizioni devono superare i 10 caratteri!';
$LANGS['5discussionsday'] = 'Puoi fare solo fino a 5 discussioni al giorno!';
$LANGS['discussionsuccess'] = 'Discussione creata con successo!';
$LANGS['memberaccepted1'] = '';
$LANGS['memberaccepted2'] = 'è stato accettato con successo!';
$LANGS['memberdeclined1'] = '';
$LANGS['memberdeclined2'] = 'è stato rifiutato con successo!';
$LANGS['videoaccepted'] = 'Il video è stato accettato con successo!';
$LANGS['bulletindeleted'] = 'Il bollettino è stato eliminato con successo!';
$LANGS['messagedeleted'] = 'Il messaggio è stato eliminato con successo!';
$LANGS['responsedeleted'] = 'La risposta video è stata eliminatA con successo!';
$LANGS['flagmod'] = 'Non puoi segnalare utenti che hanno i permessi moderatore!';
$LANGS['userflagged'] = 'La segnalazione è stata inviata!';
$LANGS['discussionreplysubmitted'] = 'La risposta è stata inviata con successo!';
$LANGS['discussionreplyempty'] = 'Una risposta non può essere vuota!';
/* Watch */
$LANGS['moreinfo'] = 'più informazioni';
$LANGS['lessinfo'] = 'meno informazioni';
$LANGS['category'] = 'Categoria';
$LANGS['recordedon'] = 'Registrato in data';
$LANGS['location'] = 'Posizione';
$LANGS['tags'] = 'Tag';
$LANGS['embed'] = 'Incorpora';
$LANGS['partnervideo'] = 'Video Partner';
$LANGS['subscribe'] = 'Iscriviti';
$LANGS['unsubscribe'] = 'Disiscriviti';
$LANGS['nodesc'] = 'Nessuna descrizione...';
$LANGS['logintosub'] = 'Accedi per Iscriverti!';
$LANGS['logintosubbox'] = 'Vuoi iscriverti?';
$LANGS['subyourself'] = 'Non puoi iscriverti al tuo profilo!';
$LANGS['videoowner'] = 'Opzioni del proprietario del video';
$LANGS['editvideo'] = 'Modifica video';
$LANGS['insight'] = 'Statistiche visualizzazioni';
$LANGS['morefrom'] = 'Di più da:';
$LANGS['relatedvideos'] = 'Video correlati';
$LANGS['novideosfound'] = 'Nessun video trovato...';
$LANGS['morevideos'] = 'Guarda tutti i video';
$LANGS['changeplayersize'] = 'Cambia le dimensioni del player';
$LANGS['newwindow'] = 'Guarda questo video in una nuova finestra';
$LANGS['featuredtext'] = 'Questo video è stato messo in primo piano. Vuoi vedere altri video in primo piano? <a href="/browse?t=2">Clicca qui</a>.';
$LANGS['ratings'] = 'recensioni';
$LANGS['rating'] = 'recensione';
$LANGS['favorite'] = 'Preferito';
$LANGS['addtofav'] = 'Aggiungi ai Preferiti';
$LANGS['removefav'] = 'Rimuovi dai Preferiti';
$LANGS['favadded'] = 'Questo video è stato <strong>aggiunto</strong> ai tuoi <a href="/my_favorites">Preferiti</a>.';
$LANGS['favremoved'] = 'Questo video è stato <strong>rimosso</strong> dai tuoi <a href="/my_favorites">Preferiti</a>.';
$LANGS['undo'] = 'Annulla';
$LANGS['thanksforrating'] = 'Grazie per la recensione!';
$LANGS['playlistdesc'] = 'Per aggiungere un video alla tua playlist, vai alla pagina <a href="/my_playlists">"Playlist"</a> .';
$LANGS['addtoplaylist'] = 'Aggiungi a una Playlist';
$LANGS['addtoplaylistsuccess'] = 'Il video è stato aggiunto alla tua Playlist.';
$LANGS['share'] = 'Condividi';
$LANGS['flag'] = 'Segnala';
$LANGS['flagthisvid'] = 'Segnala questo Video';
$LANGS['removeflag'] = 'Rimuovi Segnalazione';
$LANGS['flagnote'] = "Prima di segnalare: assicurati che il video infranga qualsiasi regola. Non segnalare solo perché non ti piace quel video, altrimenti ostacolerai il lavoro dei moderatori.";
$LANGS['statadded'] = 'Aggiunto';
$LANGS['statviews'] = 'Visualizzazioni';
$LANGS['statratings'] = 'Recensione';
$LANGS['statresponses'] = 'Risposte';
$LANGS['statcomments'] = 'Commenti';
$LANGS['statfavorited'] = 'Preferito';
$LANGS['statsdata'] = 'Statistiche & Data';
$LANGS['honors'] = 'Onori per questo video';
$LANGS['mostviewed'] = 'Più visualizzati';
$LANGS['topfavorited'] = 'I top tra i Preferiti';
$LANGS['times'] = 'volte';
$LANGS['mostdiscussed'] = 'I più discussi';
$LANGS['toprated'] = 'I più votati';
$LANGS['videolinks'] = 'Siti che rimandano a questo video';
$LANGS['clicksfrom'] = 'click da';
$LANGS['responses'] = 'Risposte video';
$LANGS['responsespost'] = 'Pubblica una risposta video';
$LANGS['textcomments'] = 'Commenti testuali';
$LANGS['commentpost'] = 'Pubblica un commento testuale';
$LANGS['commentonthisvideo'] = 'Commenta questo video';
$LANGS['postcomment'] = 'Pubblica commento';
$LANGS['remainingcounter'] = 'Numero di caratteri rimanenti';
$LANGS['nocomments'] = 'Questo video non ha <b>nessun commento</b>.';
$LANGS['noresponses'] = 'This video has <b>no Responses</b>.';
$LANGS['commviewall'] = 'Guarda tutti i';
$LANGS['delete'] = 'Elimina';
$LANGS['reply'] = 'Rispondi';
$LANGS['commentlogin'] = 'Vuoi commentare?';
$LANGS['commentlogindesc'] = '<a href="/signup">Unisciti a BitView</a> per un account gratuito o <a href="/login">accedi</a> se sei già un membro.';
$LANGS['logintoresponse'] = 'Accedi per pubblicare una risposta video';
$LANGS['logintocomment'] = 'Accedi per pubblicare un Commento';
$LANGS['logintofav'] = 'Vuoi aggiungere a Preferiti? <a href="/login">Accedi</a> o <a href="/signup">Crea un account</a> ora!';
$LANGS['logintopl'] = 'Vuoi aggiungere a una Playlist? <a href="/login">Accedi</a> o <a href="/signup">Crea un account</a> ora!';
$LANGS['logintoflag'] = 'Vuoi segnalare un video? <a href="/login">Accedi</a> o <a href="/signup">Crea un account</a> ora!';
$LANGS['close'] = 'chiudi';
$LANGS['addresponse'] = 'Aggiungi risposta';
$LANGS['recentlyrated'] = 'Recently rated';
$LANGS['commentsdisabled'] = 'Adding comments has been disabled for this video.';
$LANGS['ratingsdisabled'] = 'Ratings disabled';
$LANGS['rating1'] = 'Poor';
$LANGS['rating2'] = 'Nothing special';
$LANGS['rating3'] = 'Worth watching';
$LANGS['rating4'] = 'Pretty cool';
$LANGS['rating5'] = 'Awesome!';
$LANGS['saving'] = 'Saving...';
$LANGS['signintorate'] = '<a href="/login">Sign in</a> to rate';
$LANGS['addingcomment'] = "Adding comment...";
$LANGS['commentposted'] = "Comment Posted!";
$LANGS['commentspammsg'] = "Posting the same comment again is considered spam. Try again later.";
$LANGS['commentspammsg2'] = "Posting more than 5 comments consecutively is considered spam. Try again later.";
$LANGS['emptycomment'] = "Your comment can't be empty.";
$LANGS['spambutton'] = "Spam";
$LANGS['notspambutton'] = "Not Spam";
$LANGS['commentsspam'] = "Comment(s) marked as spam";
$LANGS['marked'] = "Marked as spam";
$LANGS['spamshow'] = "Show";
$LANGS['spamhide'] = "Hide";
$LANGS['poorcomment'] = "Poor comment";
$LANGS['goodcomment'] = "Good comment";
$LANGS['pleasesignin'] = "Please sign in";
$LANGS['showmorecomments'] = "Show More Comments";
$LANGS['showingamount'] = "<strong>Showing {number}</strong> of {total} comments";
$LANGS['customize'] = "Customize";
$LANGS['customizedesc'] = "After making your selection, copy and paste the embed code above. The code changes based on your selection.";
/* Watch comments */
$LANGS['allcomments'] = 'Tutti i Commenti';
/* Sign In */
$LANGS['username'] = "Username";
$LANGS['password'] = "Password";
$LANGS['logindesc'] = "Accedi a BitView con il tuo account";
$LANGS['forgot'] = "Non puoi accedere al tuo account?";
$LANGS['forgotmsg'] = 'Contattaci su Twitter (@BitView_) o invia un messaggio ai Moderatori su Discord. (link nel footer)';
$LANGS['noaccount'] = "Non hai un account?";
$LANGS['signuptobv'] = "Crea un account per BitView!";
$LANGS['signintobv'] = "Accedi a BitView!";
$LANGS['signindesc1'] = "Unisciti alla più grande comunità mondiale di condivisione di video!";
$LANGS['signindesc2'] = "BitView è un modo per portare i tuoi video alle persone che contano per te. Con BitView puoi:";
$LANGS['signindesc3'] = "Mostrare i tuoi video preferiti al mondo";
$LANGS['signindesc4'] = "Bloggare i video che fai con la tua fotocamera digitale o il tuo cellulare";
$LANGS['signindesc5'] = "Mostra video in modo sicuro e privato ai tuoi amici e familiari in tutto il mondo";
$LANGS['notallowed'] = "Sei già stato bannato 3 volte. Non sei più autorizzato a usare BitView!";
$LANGS['wrongpassword'] = 'Password sbagliata! Prova di nuovo.';
$LANGS['staysigned'] = "Stay signed in";
/* Sign Up */
$LANGS['email'] = "Indirizzo e-mail";
$LANGS['passwordstrength'] = "Sicurezza della password";
$LANGS['psnone'] = "Nessuna";
$LANGS['psweak'] = "Debole";
$LANGS['psfair'] = "Equa";
$LANGS['psgood'] = "Buona";
$LANGS['psstrong'] = "Forte";
$LANGS['repassword'] = "Riscrivi password";
$LANGS['usernamedesc'] = "Il tuo nome utente può contenere solo lettere dalla A alla Z o numeri da 0 a 9.";
$LANGS['captcha'] = "Captcha";
$LANGS['acceptterms'] = "Sono d'accordo con i <a href='/terms'>Termini di Utilizzo</a> e l'<a href='/privacy'>Informativa sulla privacy</a>.";
$LANGS['copyrighttext'] = 'Il caricamento di materiali che non si possiedono è una violazione del copyright e contro la legge. Se carichi materiale che non possiedi, il tuo account verrà eliminato.';
$LANGS['mustaccept'] = "Devi accettare i Termini di utilizzo e l'Informativa sulla privacy per creare il tuo account";
$LANGS['createaccount'] = 'Crea il mio account';
$LANGS['signuperror'] = 'Si è verificato un errore durante la creazione del tuo account.';
$LANGS['sameemail'] = 'Questo nome utente o e-mail è già in uso!';
$LANGS['usernamechar'] = 'I nomi utente possono contenere solo caratteri e numeri!';
$LANGS['required'] = 'Tutti i campi di testo sono obbligatori!';
$LANGS['notmatch'] = "Le password non corrispondono!";
$LANGS['signuphead'] = 'Inizia con il tuo account';
/* Videos Page */
$LANGS['recentvideos'] = 'Video recenti';
$LANGS['random'] = 'A caso';
$LANGS['dropdownmore'] = 'di più';
$LANGS['allcatin'] = 'su';
$LANGS['allcat'] = 'Tutte le categorie';
$LANGS['categories'] = 'Categorie';
$LANGS['nomorevideos'] = 'Non sono stati trovati altri video...';
$LANGS['timetoday'] = 'Oggi';
$LANGS['timeweek'] = 'Questa settimana';
$LANGS['timemonth'] = 'Questo mese';
$LANGS['alltime'] = 'Tutto il tempo';
$LANGS['when'] = 'When';
$LANGS['videofavorites'] = 'favorites';
$LANGS['videocomments'] = 'comments';
$LANGS['trendingtopics'] = 'Trending Topics';
/* Channels Page */
$LANGS['mostsubscribed'] = 'Con più iscritti';
$LANGS['lastlogin'] = 'Ultimo accesso';
$LANGS['cstatviews'] = 'Visualizzazioni';
$LANGS['cstatvideos'] = 'Video';
$LANGS['cstatsubs'] = 'Iscritti';
$LANGS['nochannels'] = 'Non sono stati trovati altri canali...';
/* Video Categories */
$LANGS['cat1'] = "Film & Animazione";
$LANGS['cat2'] = "Auto & Veicoli";
$LANGS['cat3'] = "Educazione & Istruzione";
$LANGS['cat4'] = "Intrattenimento";
$LANGS['cat5'] = "Eventi & Matrimoni";
$LANGS['cat6'] = "Famiglia";
$LANGS['cat7'] = "Prezzi & Aste";
$LANGS['cat8'] = "Hobby & Interessi";
$LANGS['cat9'] = "Umore";
$LANGS['cat10'] = "Musica";
$LANGS['cat11'] = "Notizie & Politiche";
$LANGS['cat12'] = "Strano & Oltraggioso";
$LANGS['cat13'] = "Persone & Blog";
$LANGS['cat14'] = "Personali & Incontri";
$LANGS['cat15'] = "Animali Domestici & Animali";
$LANGS['cat16'] = "Scienza & Tecnologia";
$LANGS['cat17'] = "Cortometraggi";
$LANGS['cat18'] = "Sport";
$LANGS['cat19'] = "Viaggi & Eventi";
$LANGS['cat20'] = "Videogiochi";
$LANGS['cat21'] = "Videoblog";
/* Channel Types */
$LANGS['type0'] = "Nessuno";
$LANGS['type1'] = "Membro";
$LANGS['type1p'] = "Membri";
$LANGS['type2'] = "Commediante";
$LANGS['type2p'] = "Commedianti";
$LANGS['type3'] = "Direttore";
$LANGS['type3p'] = "Direttori";
$LANGS['type4'] = "Guru";
$LANGS['type4p'] = "Guru";
$LANGS['type5'] = "Musicista";
$LANGS['type5p'] = "Musicisti";
$LANGS['type6'] = "Segnalatore";
$LANGS['type6p'] = "Segnalatori";
/* Countries */
$LANGS['cat_AF'] = "Afghanistan";
$LANGS['cat_AX'] = "Isole Åland";
$LANGS['cat_AL'] = "Albania";
$LANGS['cat_DZ'] = "Algeria";
$LANGS['cat_AS'] = "Samoa Americane";
$LANGS['cat_AD'] = "Andorra";
$LANGS['cat_AO'] = "Angola";
$LANGS['cat_AI'] = "Anguilla";
$LANGS['cat_AQ'] = "Antartide";
$LANGS['cat_AG'] = "Antigua e Barbuda";
$LANGS['cat_AR'] = "Argentina";
$LANGS['cat_AM'] = "Armenia";
$LANGS['cat_AW'] = "Aruba";
$LANGS['cat_AU'] = "Australia";
$LANGS['cat_AT'] = "Austria";
$LANGS['cat_AZ'] = "Azerbaigian";
$LANGS['cat_BS'] = "Bahamas";
$LANGS['cat_BH'] = "Bahrein";
$LANGS['cat_BD'] = "Bangladesh";
$LANGS['cat_BB'] = "Barbados";
$LANGS['cat_BY'] = "Bielorussia";
$LANGS['cat_BE'] = "Belgio";
$LANGS['cat_BZ'] = "Belize";
$LANGS['cat_BJ'] = "Benin";
$LANGS['cat_BM'] = "Bermuda";
$LANGS['cat_BT'] = "Bhutan";
$LANGS['cat_BO'] = "Bolivia";
$LANGS['cat_BQ'] = "Caraibi Paesi Bassi";
$LANGS['cat_BA'] = "Bosnia ed Erzegovina";
$LANGS['cat_BW'] = "Botswana";
$LANGS['cat_BV'] = "Isola Bouvet";
$LANGS['cat_BR'] = "Brasile";
$LANGS['cat_IO'] = "Territorio Britannico dell'Oceano Indiano";
$LANGS['cat_BN'] = "Brunei Darussalam";
$LANGS['cat_BG'] = "Bulgaria";
$LANGS['cat_BF'] = "Burkina Faso";
$LANGS['cat_BI'] = "Burundi";
$LANGS['cat_KH'] = "Cambogia";
$LANGS['cat_CM'] = "Camerun";
$LANGS['cat_CA'] = "Canada";
$LANGS['cat_CV'] = "Capo Verde";
$LANGS['cat_KY'] = "Isole Cayman";
$LANGS['cat_CF'] = "Repubblica Centrafricana";
$LANGS['cat_TD'] = "Ciad";
$LANGS['cat_CL'] = "Cile";
$LANGS['cat_CN'] = "Cina";
$LANGS['cat_CX'] = "Isola di Natale";
$LANGS['cat_CC'] = "Isole Cocos (Keeling)";
$LANGS['cat_CO'] = "Colombia";
$LANGS['cat_KM'] = "Comore";
$LANGS['cat_CG'] = "Repubblica del Congo";
$LANGS['cat_CD'] = "Repubblica Democratica del Congo";
$LANGS['cat_CK'] = "Isole Cook";
$LANGS['cat_CR'] = "Costarica";
$LANGS['cat_CI'] = "Costa d'Avorio";
$LANGS['cat_HR'] = "Croazia";
$LANGS['cat_CU'] = "Cuba";
$LANGS['cat_CW'] = "Curaçao";
$LANGS['cat_CY'] = "Cipro";
$LANGS['cat_CZ'] = "Repubblica Ceca";
$LANGS['cat_DK'] = "Danimarca";
$LANGS['cat_DJ'] = "Gibuti";
$LANGS['cat_DM'] = "Dominica";
$LANGS['cat_DO'] = "Repubblica Dominicana";
$LANGS['cat_EC'] = "Ecuador";
$LANGS['cat_EG'] = "Egitto";
$LANGS['cat_SV'] = "El Salvador";
$LANGS['cat_GQ'] = "Guinea Equatoriale";
$LANGS['cat_ER'] = "Eritrea";
$LANGS['cat_EE'] = "Estonia";
$LANGS['cat_ET'] = "Etiopia";
$LANGS['cat_FK'] = "Isole Falkland (Malvine)";
$LANGS['cat_FO'] = "Isole Faroe";
$LANGS['cat_FJ'] = "Fiji";
$LANGS['cat_FI'] = "Finlandia";
$LANGS['cat_FR'] = "Francia";
$LANGS['cat_GF'] = "Guyana Francese";
$LANGS['cat_FG'] = "Guyana Francese";
$LANGS['cat_PF'] = "Polinesia francese";
$LANGS['cat_TF'] = "Territori Francesi del Sud";
$LANGS['cat_GA'] = "Gabon";
$LANGS['cat_GM'] = "Gambia";
$LANGS['cat_GE'] = "Georgia";
$LANGS['cat_DE'] = "Germania";
$LANGS['cat_GH'] = "Ghana";
$LANGS['cat_GI'] = "Gibilterra";
$LANGS['cat_GR'] = "Grecia";
$LANGS['cat_GL'] = "Groenlandia";
$LANGS['cat_GD'] = "Grenada";
$LANGS['cat_GP'] = "Guadalupa";
$LANGS['cat_GU'] = "Guam";
$LANGS['cat_GT'] = "Guatemala";
$LANGS['cat_GG'] = "Guernsey";
$LANGS['cat_GN'] = "Guinea";
$LANGS['cat_GW'] = "Guinea Bissau";
$LANGS['cat_GY'] = "Guyana";
$LANGS['cat_HT'] = "Haiti";
$LANGS['cat_HM'] = "Isola Heard e Isole McDonald";
$LANGS['cat_VA'] = "Santa Sede (Stato Città del Vaticano)";
$LANGS['cat_HN'] = "Honduras";
$LANGS['cat_HK'] = "Hong Kong";
$LANGS['cat_HU'] = "Ungheria";
$LANGS['cat_IS'] = "Islanda";
$LANGS['cat_IN'] = "India";
$LANGS['cat_ID'] = "Indonesia";
$LANGS['cat_IR'] = "Iran";
$LANGS['cat_IQ'] = "Iraq";
$LANGS['cat_IE'] = "Irlanda";
$LANGS['cat_IM'] = "Isola di Man";
$LANGS['cat_IL'] = "Israele";
$LANGS['cat_IT'] = "Italia";
$LANGS['cat_JM'] = "Giamaica";
$LANGS['cat_JP'] = "Giappone";
$LANGS['cat_JE'] = "Maglia";
$LANGS['cat_JO'] = "Giordania";
$LANGS['cat_KZ'] = "Kazakistan";
$LANGS['cat_KE'] = "Kenia";
$LANGS['cat_KI'] = "Kiribati";
$LANGS['cat_XK'] = "Kosovo";
$LANGS['cat_KP'] = "Corea del Nord";
$LANGS['cat_KR'] = "Corea del Sud";
$LANGS['cat_KW'] = "Kuwait";
$LANGS['cat_KG'] = "Kirghizistan";
$LANGS['cat_LA'] = "Laos";
$LANGS['cat_LV'] = "Lettonia";
$LANGS['cat_LB'] = "Libano";
$LANGS['cat_LS'] = "Lesotho";
$LANGS['cat_LR'] = "Liberia";
$LANGS['cat_LY'] = "Libia";
$LANGS['cat_LI'] = "Liechtenstein";
$LANGS['cat_LT'] = "Lituania";
$LANGS['cat_LU'] = "Lussemburgo";
$LANGS['cat_MO'] = "Macao";
$LANGS['cat_MK'] = "Macedonia del Nord";
$LANGS['cat_MG'] = "Madagascar";
$LANGS['cat_MW'] = "Malawi";
$LANGS['cat_MY'] = "Malesia";
$LANGS['cat_MV'] = "Maldive";
$LANGS['cat_ML'] = "Mali";
$LANGS['cat_MT'] = "Malta";
$LANGS['cat_MH'] = "Isole Marshall";
$LANGS['cat_MQ'] = "Martinica";
$LANGS['cat_MR'] = "Mauritania";
$LANGS['cat_MU'] = "Maurizio";
$LANGS['cat_YT'] = "Maiotte";
$LANGS['cat_MX'] = "Messico";
$LANGS['cat_FM'] = "Micronesia";
$LANGS['cat_MD'] = "Moldavia";
$LANGS['cat_MC'] = "Monaco";
$LANGS['cat_MN'] = "Mongolia";
$LANGS['cat_ME'] = "Montenegro";
$LANGS['cat_MS'] = "Montserrat";
$LANGS['cat_MA'] = "Marocco";
$LANGS['cat_MZ'] = "Mozambico";
$LANGS['cat_MM'] = "Myanmar";
$LANGS['cat_NA'] = "Namibia";
$LANGS['cat_NR'] = "Nauru";
$LANGS['cat_NP'] = "Nepal";
$LANGS['cat_NL'] = "Paesi Bassi";
$LANGS['cat_AN'] = "Antille Olandesi";
$LANGS['cat_NC'] = "Nuova Caledonia";
$LANGS['cat_NZ'] = "Nuova Zelanda";
$LANGS['cat_NI'] = "Nicaragua";
$LANGS['cat_NE'] = "Niger";
$LANGS['cat_NG'] = "Nigeria";
$LANGS['cat_NU'] = "Niue";
$LANGS['cat_NF'] = "Isola Norfolk";
$LANGS['cat_MP'] = "Isole Marianne Settentrionali";
$LANGS['cat_NO'] = "Norvegia";
$LANGS['cat_OM'] = "Oman";
$LANGS['cat_PK'] = "Pakistan";
$LANGS['cat_PW'] = "Palau";
$LANGS['cat_PS'] = "Palestina";
$LANGS['cat_PA'] = "Panama";
$LANGS['cat_PG'] = "Papua Nuova Guinea";
$LANGS['cat_PY'] = "Paraguay";
$LANGS['cat_PE'] = "Perù";
$LANGS['cat_PH'] = "Filippine";
$LANGS['cat_PN'] = "Pitcairn";
$LANGS['cat_PL'] = "Polonia";
$LANGS['cat_PT'] = "Portogallo";
$LANGS['cat_PR'] = "Porto Rico";
$LANGS['cat_QA'] = "Qatar";
$LANGS['cat_RE'] = "Riunione";
$LANGS['cat_RO'] = "Romania";
$LANGS['cat_RU'] = "Russia";
$LANGS['cat_RW'] = "Ruanda";
$LANGS['cat_BL'] = "San Bartolomeo";
$LANGS['cat_SH'] = "Sant'Elena";
$LANGS['cat_KN'] = "Saint Kitts e Nevis";
$LANGS['cat_LC'] = "Santa Lucia";
$LANGS['cat_MF'] = "Saint Martin (parte francese)";
$LANGS['cat_PM'] = "San Pietro e Miquelon";
$LANGS['cat_VC'] = "Saint Vincent e Grenadine";
$LANGS['cat_WS'] = "Samoa";
$LANGS['cat_SM'] = "San Marino";
$LANGS['cat_ST'] = "Sao Tomè e Principe";
$LANGS['cat_SA'] = "Arabia Saudita";
$LANGS['cat_SN'] = "Senegal";
$LANGS['cat_RS'] = "Serbia";
$LANGS['cat_SC'] = "Seychelles";
$LANGS['cat_SL'] = "Sierra Leone";
$LANGS['cat_SG'] = "Singapore";
$LANGS['cat_SX'] = "Sint Maarten";
$LANGS['cat_SK'] = "Slovacchia";
$LANGS['cat_SI'] = "Slovenia";
$LANGS['cat_SB'] = "Isole Salomone";
$LANGS['cat_SO'] = "Somalia";
$LANGS['cat_ZA'] = "Sud Africa";
$LANGS['cat_GS'] = "Georgia del Sud e Isole Sandwich Australi";
$LANGS['cat_ES'] = "Spagna";
$LANGS['cat_LK'] = "Sri Lanka";
$LANGS['cat_SD'] = "Sudan";
$LANGS['cat_SR'] = "Suriname";
$LANGS['cat_SJ'] = "Svalbard e Jan Mayen";
$LANGS['cat_SZ'] = "Swaziland";
$LANGS['cat_SE'] = "Svezia";
$LANGS['cat_CH'] = "Svizzera";
$LANGS['cat_SS'] = "Sud Sudan";
$LANGS['cat_SY'] = "Siria";
$LANGS['cat_TW'] = "Taiwan";
$LANGS['cat_TJ'] = "Tagikistan";
$LANGS['cat_TZ'] = "Tanzania";
$LANGS['cat_TH'] = "Thailandia";
$LANGS['cat_TL'] = "Timor Est";
$LANGS['cat_TG'] = "Togo";
$LANGS['cat_TK'] = "Tokelau";
$LANGS['cat_TO'] = "Tonga";
$LANGS['cat_TT'] = "Trinidad e Tobago";
$LANGS['cat_TN'] = "Tunisia";
$LANGS['cat_TR'] = "Turchia";
$LANGS['cat_TM'] = "Turkmenistan";
$LANGS['cat_TC'] = "Isole Turks e Caicos";
$LANGS['cat_TV'] = "Tuvalu";
$LANGS['cat_UG'] = "Uganda";
$LANGS['cat_UA'] = "Ucraina";
$LANGS['cat_AE'] = "Emirati Arabi Uniti";
$LANGS['cat_GB'] = "Regno Unito";
$LANGS['cat_US'] = "Stati Uniti";
$LANGS['cat_UM'] = "Isole minori esterne degli Stati Uniti";
$LANGS['cat_UY'] = "Uruguay";
$LANGS['cat_UZ'] = "Uzbekistan";
$LANGS['cat_VU'] = "Vanatu";
$LANGS['cat_VE'] = "Venezuela";
$LANGS['cat_VN'] = "Vietnam";
$LANGS['cat_VG'] = "Isole Vergini Britanniche";
$LANGS['cat_VI'] = "Isole Vergini, Stati Uniti";
$LANGS['cat_WF'] = "Wallis e Futuna";
$LANGS['cat_EH'] = "Sahara Occidentale";
$LANGS['cat_YE'] = "Yemen";
$LANGS['cat_ZM'] = "Zambia";
$LANGS['cat_ZW'] = "Zimbabwe";
/* My Subscriptions */
$LANGS['newvideos'] = "Video nuovi";
/* Account */
$LANGS['myaccount'] = "Il mio account";
$LANGS['vidsfavs'] = "Video, Preferiti e Playlist";
$LANGS['accountsettings'] = "Impostazioni Account";
$LANGS['viewinghistory'] = "Cronologia";
$LANGS['mychannel'] = "Il mio canale";
$LANGS['uploadedvideos'] = "Video caricati";
$LANGS['new'] = "Nuovo";
$LANGS['playlist'] = "Playlist";
$LANGS['videoupload'] = "Caricamento di video";
$LANGS['nosubvideos'] = "Non hai nessuna iscrizione...";
$LANGS['nofavvideos'] = "Non hai aggiunto alcun video ai preferiti...";
/* My Videos */
$LANGS['sortby'] = "Ordina per";
$LANGS['sorttitle'] = "Titolo";
$LANGS['sorttime'] = "Tempo";
$LANGS['sortdateadded'] = "Data aggiunta";
$LANGS['sortviews'] = "Visualizzazioni";
$LANGS['sortrating'] = "Recensione";
$LANGS['stattime'] = "Tempo";
$LANGS['statrating'] = "Recensione";
$LANGS['statbroadcast'] = "Trasmissione";
$LANGS['statrawfile'] = "File Raw";
$LANGS['public'] = "Pubblico";
$LANGS['private'] = "Privato";
$LANGS['live'] = "Dal vivo!";
$LANGS['converting'] = "Conversione...";
$LANGS['uploading'] = "Pubblicazione...";
$LANGS['addvidsto'] = "Aggiungi video a";
$LANGS['play'] = "Play";
$LANGS['edit'] = "Modifica";
$LANGS['setasavatar'] = "Imposta Miniatura come Avatar";
$LANGS['downloadmp4'] = "Download del file MP4";
$LANGS['deleteconfirmation'] = "Sei sicuro di voler eliminare questo video?";
$LANGS['novideos'] = 'Non hai caricato alcun video. <a href="/my_videos_upload">Inizia subito a caricare un video</a>!';
$LANGS['nomyvideosresults'] = "Nessun risultato. Controlla se l'ortografia è corretta.";
/* Edit Video */
$LANGS['title'] = "Titolo";
$LANGS['desc'] = "Descrizione";
$LANGS['privacy'] = "Privacy";
$LANGS['saveinfo'] = "Salva Informazioni";
$LANGS['saveinfoconfirm'] = "Sei sicuro di voler cambiare le informazioni sul video?";
$LANGS['viewchart'] = "Visualizza grafico";
$LANGS['backtopreviouspage'] = "Back to Previous Page";
$LANGS['editsavechanges'] = "Save Changes";
$LANGS['editcancel'] = "cancel";
$LANGS['videoinfo'] = "Video Information";
$LANGS['videothumbnail'] = "Video Thumbnail";
$LANGS['uploadthumbnail'] = "Upload Thumbnail";
$LANGS['customthumbdesc'] = 'To set a custom thumbnail, click the thumbnail on the left side and select your desired image file. Then, click "Upload Thumbnail".';
$LANGS['customthumbtitle'] = 'Do you want to change this thumbnail?';
$LANGS['customthumbinfo'] = 'Custom thumbnails are exclusive to partners. To read more about the advantages of joining the partner program and its requirements, click the button below.';
$LANGS['partnerreadmore'] = 'Read more';
$LANGS['broadcastingoptions'] = 'Broadcasting and Sharing Options';
$LANGS['publicdesc'] = "anyone can search for and view - recommended";
$LANGS['privatedesc'] = "only specific BitView users can view";
$LANGS['allowcomments'] = "Allow comments automatically";
$LANGS['allowfriendcomments'] = "Only friends can comment";
$LANGS['disablecomments'] = "Don't allow comments";
$LANGS['dateandmap'] = "Date and Map";
$LANGS['clear'] = "Clear";
$LANGS['allowratings'] = "Yes, allow this video to be rated by others.";
$LANGS['dontallowratings'] = "No, don't allow this video to be rated.";
/* My Playlists */
$LANGS['addedpl'] = "Added";
$LANGS['frompl'] = "From";
$LANGS['nopl'] = "No Playlists were found....";
/* My Playlist */
$LANGS['playlistedit'] = "Modifica Playlist";
$LANGS['videourl'] = "URL del Video";
$LANGS['add'] = "Aggiungi";
$LANGS['editinfo'] = "Modifica Informazioni";
/* Edit Playlist */
$LANGS['pledittitle'] = "Modifica Playlist";
$LANGS['pleditdesc'] = "Le playlist sono raccolte di video che puoi impostare nel modo che preferisci.";
$LANGS['cancel'] = "Annulla";
/* Create Playlist */
$LANGS['createplaylisttitle'] = "Crea playlist video";
$LANGS['createplaylist'] = "Crea playlist";
/* View Playlist */
$LANGS['plpermalink'] = "Playlist/URL (Permalink):";
$LANGS['sortcomments'] = "Comments";
$LANGS['unsorted'] = "Unsorted";
$LANGS['playallvideos'] = "Play All Videos";
/* Inbox */
$LANGS['compose'] = "Componi";
$LANGS['from'] = "Da";
$LANGS['subject'] = "Soggetto";
$LANGS['date'] = "Data";
$LANGS['allmsg'] = "Tutti i Messaggi";
$LANGS['msgcom'] = "Commenti";
$LANGS['sentmsg'] = "Messaggi inviati";
$LANGS['nomsg'] = "Non hai messaggi...";
$LANGS['personalmessages'] = "Personal Messages";
$LANGS['sharedwithyouinbox'] = "Shared with You";
$LANGS['friendinvitesinbox'] = "Friend Invites";
$LANGS['videoresponsesinbox'] = "Video Responses";
$LANGS['sent'] = "Sent";
$LANGS['attachvideo'] = "Attach Video";
$LANGS['msgchannelcomment'] = "Comment on your channel";
$LANGS['msgcomment'] = "Comment on your video";
$LANGS['msgvideoresponse'] = "Video response on your video";
$LANGS['msgmention'] = "Mention on a video";
$LANGS['msgmentionchannel'] = "Mention on {channel}'s channel";
/* Address Book */
$LANGS['addressbook'] = "Address Book";
$LANGS['allcontacts'] = "All Contacts";
$LANGS['selectedcontacts'] = "Selected Contacts";
$LANGS['choosecontacts'] = "Choose from your list of contacts";
$LANGS['friendssince'] = "Friends since";
$LANGS['friendsinvitenot'] = "Friend invite not accepted yet";
$LANGS['friendstatus'] = "Friend Status";
$LANGS['unselect'] = "Unselect";
$LANGS['unselectall'] = "Unselect All";
$LANGS['nocontacts'] = "No contacts...";
$LANGS['selectacontact'] = "Please select at least a contact to delete!";
$LANGS['selectacontactmsg'] = "Please select at least a contact to message!";
$LANGS['selectonecompose'] = "You can not compose to multiple contacts at once!<br>Please, select the contact you wish to send a message.";
/* Insight */
$LANGS['insighttitle'] = "Insight: Statistics and Data";
$LANGS['allvideos'] = "All Videos";
$LANGS['summary'] = "Summary";
$LANGS['demographics'] = "Demographics";
$LANGS['viewsdesc'] = "How many views are my videos getting?";
$LANGS['demodesc'] = "Who is subscribed to my channel?";
$LANGS['commdesc'] = "Where are my subscribers located?";
$LANGS['video'] = "Video";
$LANGS['topvideos'] = "Top videos";
$LANGS['viewspercentage'] = "Views (% of total)";
$LANGS['percentoftotalviews'] = "% of total views";
$LANGS['searchmyvideos'] = "Search My Videos";
$LANGS['insufdemo'] = "There is insufficient data to display Demographics. Try selecting a different time range.";
$LANGS['ageranges'] = "Age ranges for both genders";
$LANGS['genderranges'] = "Genders for all age groups";
$LANGS['engdesc'] = "Number of users that have commented, favorited or rated your videos";
$LANGS['engagements'] = "Community engagements";
$LANGS['dailysubs'] = "Daily subscribers";
$LANGS['daily'] = "Daily";
$LANGS['total'] = "Total";
$LANGS['insightvideodesc'] = "How many times has this video been watched?";
$LANGS['videototalviews'] = "Total views";
$LANGS['dailyviews'] = "Daily views";
/* Send Message */
$LANGS['messagecont'] = "Messaggio";
$LANGS['to'] = "A";
$LANGS['sendmessagebutton'] = "Invia messaggio";
/* Groups */
$LANGS['groups'] = "Gruppi";
$LANGS['joinedgroups'] = "Gruppi a cui ti sei unito";
$LANGS['recentgroups'] = "Gruppi recenti";
$LANGS['mostmembers'] = "Maggior parte dei membri";
$LANGS['mostvideos'] = "Maggior parte dei video";
$LANGS['groupmostdiscussed'] = "Più discusso";
$LANGS['createagroup'] = "Crea un gruppo";
$LANGS['groupvideos'] = "Video";
$LANGS['groupmembers'] = "Membri";
$LANGS['discussions'] = "Discussioni";
$LANGS['groupcreated'] = "Creato";
$LANGS['nogroups'] = "Nessun gruppo trovato...";
/* Group */
$LANGS['jointhisgroup'] = "Unisciti a questo gruppo";
$LANGS['removerequest'] = "Rimuovi Richiesta";
$LANGS['leavegroup'] = "Lascia il Gruppo";
$LANGS['moderation'] = "Moderazione";
$LANGS['viewallvideos'] = "Vedi tutti i video";
$LANGS['addvideo'] = "Aggiungi Video";
$LANGS['novideos'] = "Nessun video...";
$LANGS['nodiscussions'] = "Nessuna discussione...";
$LANGS['creatediscussion'] = "Crea discussione";
$LANGS['topostatopic'] = "per inserire un argomento.";
$LANGS['topic'] = "Argomento";
$LANGS['author'] = "Autore";
$LANGS['replies'] = "Risposte";
$LANGS['lastpost'] = "Ultimo post";
$LANGS['viewallmembers'] = "Visualizza tutti i membri";
$LANGS['owner'] = "Proprietario";
$LANGS['grouptype'] = "Tipo";
$LANGS['instantjoin'] = "Collegamento istantaneo";
$LANGS['approvalrequired'] = "Approvazione richiesta";
$LANGS['groupurl'] = "URL";
$LANGS['deletediscussion'] = "Elimina discussione";
$LANGS['postreply'] = "Invia risposta";
$LANGS['post'] = "Posta";
$LANGS['accept'] = "Accetta";
$LANGS['decline'] = "Rifiuta";
/* Group Moderation */
$LANGS['groupmoderation'] = "Moderazione di gruppo";
$LANGS['approvemembers'] = "Approva membri";
$LANGS['approvevideos'] = "Approva video";
$LANGS['yes'] = "Sì";
$LANGS['no'] = "No";
$LANGS['changeinfo'] = "Cambia info";
$LANGS['changeimage'] = "Cambia immagine";
$LANGS['image'] = "Immagine";
$LANGS['styling'] = "Stilizzazione";
$LANGS['cssdesc'] = "Avere sfondi o grafica che fanno o mostrano cose illegali comporterà la tua risoluzione.";
$LANGS['updatecss'] = "Aggiorna CSS";
$LANGS['groupmessage'] = "Messaggio";
$LANGS['sendmessagetomembers'] = "Invia messaggi ai Membri";
$LANGS['delgroup'] = "Elimina gruppo";
/* Submit Group Video */
$LANGS['submitvideotitle'] = "Invia video al gruppo";
$LANGS['submitvideo'] = "Invia video";
/* Create Group */
$LANGS['groupname'] = "Nome del gruppo";
$LANGS['groupimage'] = "Immagine del gruppo";
$LANGS['creategroup'] = "Crea gruppo";
$LANGS['creategroupdesc'] = "I gruppi ti consentono di creare discussioni con altri membri e di condividere facilmente i tuoi video con altri.";
/* Create Group Discussion */
$LANGS['discussiontitle'] = "Titolo della discussione";
$LANGS['creatediscussiondesc'] = "Le discussioni sono parti di gruppi in cui si discute l'argomento impostato.";
/* Search Results */
$LANGS['resultspre'] = ""; /* Explanation: Use if the search query goes before "results". Example: "Resultados para search" in Spanish. If your language doesn't use this, leave it empty like this: ''*/
$LANGS['resultspost'] = ""; /* Explanation: Use if "BitView" goes after the username. Example: "search results" in English. If your language doesn't use this, leave it empty like this: '' */
$LANGS['relevance'] = 'Rilevanza';
$LANGS['viewcount'] = 'Conteggio visualizzazioni';
$LANGS['searchrating'] = 'Recensioni';
$LANGS['newest'] = 'Più nuovo';
$LANGS['nochannelsfound'] = 'Nessun canale trovato...';
$LANGS['noplfound'] = 'Nessuna Playlist trovata...';
$LANGS['nogroupsfound'] = 'Nessun gruppo trovato...';
$LANGS['uploaded'] = 'Uploaded';
$LANGS['anytime'] = 'Anytime';
$LANGS['partnervideos'] = 'Partner Videos';
$LANGS['resultcount'] = 'results {r} of about {t}';
$LANGS['searchoptions'] = 'Search options';
$LANGS['resulttype'] = 'Result type';
$LANGS['duration'] = 'Duration';
$LANGS['durshort'] = 'Short (~4 minutes)';
$LANGS['durlong'] = 'Long (15~ minutes)';
$LANGS['features'] = 'Features';
$LANGS['novideosfoundfor'] = 'No videos found for';
$LANGS['noresultsfoundfor'] = 'No results found for';
/* Profile */
$LANGS['channelsuspended'] = 'Questo account è stato sospeso.';
$LANGS['accountnotfound'] = 'Questo account non è stato trovato.';
$LANGS['channel'] = 'Canale';
$LANGS['friends'] = 'Amici';
$LANGS['channelsubscribers'] = 'Iscritti';
$LANGS['linkcomments'] = 'Commenti';
$LANGS['bulletins'] = 'Bollettini';
$LANGS['editchannel'] = 'Modifica canale';
$LANGS['type'] = 'Tipo';
$LANGS['joined'] = 'Iscritto su BitView';
$LANGS['videoswatched'] = 'Video guardati';
$LANGS['channelviews'] = 'Visualizzazioni Canale';
$LANGS['age'] = 'Età';
$LANGS['gender'] = 'Sesso';
$LANGS['male'] = 'Uomo';
$LANGS['female'] = 'Femmina';
$LANGS['status'] = 'Stato';
$LANGS['single_m'] = 'Singolo';
$LANGS['single_f'] = 'Singolo';
$LANGS['taken_m'] = 'Preso';
$LANGS['taken_f'] = 'Preso';
$LANGS['married_m'] = 'Sposato';
$LANGS['married_f'] = 'Sposato';
$LANGS['country'] = 'Paese';
$LANGS['website'] = 'Sito Web';
$LANGS['hobbies'] = 'Interessi e Hobby';
$LANGS['music'] = 'Musica';
$LANGS['movies'] = 'Film e Spettacoli';
$LANGS['books'] = 'Libri';
$LANGS['mostsub'] = 'Con più iscritti';
$LANGS['report'] = 'Segnala';
$LANGS['pfpviolation'] = 'violazione immagine profilo';
$LANGS['connectwith'] = 'Connettiti con';
$LANGS['profilesendmessage'] = 'Invia messaggio';
$LANGS['messagetoyourself'] = 'Non puoi inviare messaggi a te stesso!';