forked from WWBN/AVideo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsv_SE.php
1640 lines (1637 loc) · 93 KB
/
sv_SE.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
global $t;
$t['%d Users linked'] = '%d Användare länkade';
$t['%s Ago'] = '%s Sedan';
$t['%s ERROR: You must set a KEY on config'] = '%s FEL: Du måste ställa in en KEY på config';
$t['%s ERROR: You must set an ID on config'] = '%s FEL: Du måste ställa in ett ID på config';
$t['%s ago'] = '%s sedan';
$t['(filtered from _MAX_ total entries)'] = '(filtrerad från _MAX_ totala poster)';
$t['465 OR 587'] = '465 eller 587';
$t[': activate to sort column ascending'] = ': aktivera för att sortera kolumn stigande';
$t[': activate to sort column descending'] = ': aktivera för att sortera kolumn fallande';
$t['A service error occurred: %s'] = 'Ett servicefel inträffade: %s';
$t['AVideo URL'] = 'AVideo-URL';
$t['About'] = 'Om';
$t['Activate'] = 'Aktivera';
$t['Active'] = 'Aktiv';
$t['Ad Title'] = 'Annonsrubrik';
$t['Ad'] = 'Annons';
$t['Add Funds'] = 'Lägg till medel';
$t['Add User Group'] = 'Lägg till användargrupp';
$t['Add more user Groups'] = 'Lägg till fler användargrupper';
$t['Add to'] = 'Lägg till';
$t['Admin Menu'] = 'Admin Meny';
$t['Admin Panel'] = 'Administratörspanel';
$t['Ads Form'] = 'Annonsformulär';
$t['Ads'] = 'Annonser';
$t['Advanced Configuration'] = 'Avancerad konfiguration';
$t['Advanced configuration'] = 'Avancerad konfiguration';
$t['Advanced configurations are disabled'] = 'Avancerade konfigurationer är inaktiverade';
$t['Advertising Title'] = 'Annonsrubrik';
$t['Ago'] = 'Sedan';
$t['Alert'] = 'Varning';
$t['All'] = 'Alla';
$t['Allow Download My Videos'] = 'Tillåt nedladdning av mina videor';
$t['Allow Share My Videos'] = 'Tillåt Dela mina videor';
$t['Amount'] = 'Belopp';
$t['A client error occurred: %s'] = 'Ett klientfel inträffade: %s';
$t['Analytics Code'] = 'Analytics-kod';
$t['Anyone with this key can watch your live stream.'] = 'Alla med den här tangenten kan titta på din livestream.';
$t['Are you sure?'] = 'Är du säker?';
$t['Audio only'] = 'Endast ljud';
$t['Audio'] = 'Ljud';
$t['Audio-Gallery by Date'] = 'Ljudgalleri efter datum';
$t['Authenticated users can comment videos'] = 'Autentiserade användare kan kommentera videor';
$t['Authenticated users can upload videos'] = 'Autentiserade användare kan ladda upp videor';
$t['Autoplay Next Video'] = 'Spela automatiskt nästa video';
$t['Autoplay Video on Load Page'] = 'Spela upp video automatiskt på Load Page';
$t['Autoplay ended'] = 'Autoplay avslutad';
$t['Autoplay next-video-order'] = 'Spela automatiskt nästa video-order';
$t['Balance Form'] = 'Balansform';
$t['Balance'] = 'Balans';
$t['Basic info'] = 'Grundinformation';
$t['Both'] = 'Båda';
$t['Bottom'] = 'Nederst';
$t['Broadcast a Live Streaming'] = 'Sända en Live Streaming';
$t['Browse Channels'] = 'Bläddra bland kanaler';
$t['Browse'] = 'Bläddra';
$t['By associating groups with this user, they will be able to see all the videos that are related to this group'] = 'Genom att associera grupper med den här användaren kommer de att kunna se alla videor som är relaterade till denna grupp';
$t['By linking groups to this video, it will no longer be public and only users in the same group will be able to watch this video'] = 'Genom att länka grupper till den här videon kommer den inte längre att vara offentlig och bara användare i samma grupp kommer att kunna se den här videon';
$t['By name'] = 'Efter namn';
$t['Can Stream Videos'] = 'Kan strömma videor';
$t['Can Upload Videos'] = 'Kan ladda upp videor';
$t['Categories'] = 'Kategorier';
$t['Category Form'] = 'Kategoriformulär';
$t['Category to display this Ad'] = 'Kategori för att visa denna annons';
$t['Category'] = 'Kategori';
$t['Category-Gallery'] = 'Kategori-galleri';
$t['Change Playlist Name'] = 'Ändra spellistans namn';
$t['Change Style'] = 'Ändra stil';
$t['Channel Name'] = 'Kanalnamn';
$t['Channel name already exists'] = 'Kanalnamn finns redan';
$t['Channel'] = 'Kanal';
$t['Channels'] = 'Kanaler';
$t['Clean Name'] = 'Ren namn';
$t['Clean Title'] = 'Ren titel';
$t['Clear Cache Directory'] = 'Rensa cachekatalog';
$t['Click here if you agree to continue'] = 'Klicka här om du godkänner att fortsätta';
$t['Clicks'] = 'Klick';
$t['Close'] = 'Stäng';
$t['Color Legend'] = 'Färgförklaring';
$t['Coming soon'] = 'Kommer snart';
$t['Comment Form'] = 'Kommentarformulär';
$t['Comment thumbs up - per Person'] = 'Kommentar tummen upp - per person';
$t['Comment'] = 'Kommentar';
$t['Comments'] = 'Kommentarer';
$t['Compatibility Check'] = 'Kontroll av kompatibilitet';
$t['Configuration'] = 'Konfiguration';
$t['Configure an Encoder URL'] = 'Konfigurera en kodar-URL';
$t['Confirm New Password'] = 'Bekräfta nytt lösenord';
$t['Confirm!'] = 'Bekräfta!';
$t['Confirm'] = 'Bekräfta';
$t['Confirmation password does not match'] = 'Bekräftelselösenordet matchar inte';
$t['Congratulations!'] = 'Grattis!';
$t['Congratulations'] = 'Grattis';
$t['Contact Us Today!'] = 'Kontakta oss idag!';
$t['Contact'] = 'Kontakt';
$t['Continue'] = 'Fortsätt';
$t['Cost'] = 'Kostnad';
$t['Could not move gif image file [%s.gif]'] = 'Det gick inte att flytta gif-bildfilen [%s.gif]';
$t['Could not move image file [%s.jpg]'] = 'Det gick inte att flytta bildfilen [%s.jpg]';
$t['Create a New Play List'] = 'Skapa en ny spellista';
$t['Create an Advertising'] = 'Skapa en reklam';
$t['Create more translations'] = 'Skapa fler översättningar';
$t['Created'] = 'Skapad';
$t['Current Style & Theme'] = 'Aktuell stil och tema';
$t['Dashboard'] = 'Instrumentpanel';
$t['Database-update needed'] = 'Databasuppdatering behövs';
$t['Date added (newest)'] = 'Datum tillagt (nyaste)';
$t['Date added (oldest)'] = 'Datum tillagt (äldsta)';
$t['Date added'] = 'Datum tillagt';
$t['Date'] = 'Datum';
$t['Default'] = 'Standard';
$t['Delete'] = 'Radera';
$t['Description'] = 'Beskrivning';
$t['Direct Import Local Videos'] = 'Direktimportera lokala videor';
$t['Direct upload'] = 'Direktuppladdning';
$t['Disable AVideo Google Analytics'] = 'Inaktivera AVideo Google Analytics';
$t['Disable Youtube-Upload'] = 'Inaktivera Youtube-Upload';
$t['Disable right-click-prevention on video and allow downloading'] = 'Inaktivera högerklick-förebyggande på video och tillåt nedladdning';
$t['Do not forget to save after choose your theme'] = 'Glöm inte att spara efter att du har valt ditt tema';
$t['Don´t like this video? Sign in to make your opinion count.'] = 'Gillar inte den här videon? Logga in för att få din åsikt att räkna.';
$t['Down'] = 'Ner';
$t['Download video'] = 'Ladda ner video';
$t['Download'] = 'Ladda ner';
$t['Downloading'] = 'Nedladdning';
$t['Drag and drop to sort'] = 'Dra och släpp för att sortera';
$t['Drop Here'] = 'Släpp här';
$t['Duration'] = 'Varaktighet';
$t['E-mail Address'] = 'E-postadress';
$t['E-mail Not Verified'] = 'E-post EJ Verifierad';
$t['E-mail Verified'] = 'E-post verifierad';
$t['E-mail sent'] = 'E-post skickad';
$t['E-mail'] = 'E-post';
$t['Edit Video'] = 'Redigera video';
$t['Edit'] = 'Redigera';
$t['Email can not be blank'] = 'E-post kan inte vara tomt';
$t['Embed Stream'] = 'Bädda in ström';
$t['Embed a video link'] = 'Bädda in en videolänk';
$t['Embed'] = 'Bädda in';
$t['Embedded'] = 'Bädda in';
$t['Enable SMTP Auth'] = 'Aktivera SMTP Auth';
$t['Enable SMTP'] = 'Aktivera SMTP';
$t['Enable WebCam Stream'] = 'Aktivera WebCam Stream';
$t['Encode video and audio'] = 'Koda video och ljud';
$t['Encoder Network'] = 'Kodarnätverk';
$t['Encoding mp4 error'] = 'Kodning av mp4-fel';
$t['Encoding xmp3 error'] = 'Kodning av xmp3-fel';
$t['Encoding xogg error'] = 'Kodning av xogg-fel';
$t['Encoding xwebm error'] = 'Kodning av xwebm-fel';
$t['Encoding'] = 'Kodning';
$t['Error on re-encoding!'] = 'Fel vid omkodning!';
$t['Error!'] = 'Fel!';
$t['Error'] = 'Fel';
$t['Finish on'] = 'Slutför på';
$t['First Page Mode'] = 'Läget för första sidan';
$t['First'] = 'Först';
$t['For faster encode, download your own encoder'] = 'För snabbare kodning, ladda ner din egen kodare';
$t['For of Him, and through Him, and to Him, are all things: to whom be glory for ever. Amen.'] = 'För av honom och genom honom och till honom är allting: till vilken ära är för evigt. Amen.';
$t['From'] = 'Från';
$t['Get imgage error'] = 'Få imgainfel';
$t['Go Back'] = 'Gå tillbaka';
$t['Go back to the main page'] = 'Gå tillbaka till huvudsidan';
$t['Go to manager videos page!'] = 'Gå till sidan för managervideor!';
$t['Group'] = 'Grupp';
$t['Groups That Can See This Stream'] = 'Grupper som kan se den här strömmen';
$t['Groups that can see this video'] = 'Grupper som kan se den här videon';
$t['Head Code'] = 'Huvudkod';
$t['Help'] = 'Hjälp';
$t['Hide Replies'] = 'Göm svar';
$t['History'] = 'Historik';
$t['Home'] = 'Hem';
$t['How Much?'] = 'Hur mycket?';
$t['I forgot my password'] = 'Jag har glömt mitt lösenord';
$t["I would humbly like to thank God for giving me the necessary knowledge, motivation, resources and idea to be able to execute this project. Without God's permission this would never be possible."] = 'Jag skulle ödmjukt vilja tacka Gud för att han gav mig nödvändig kunskap, motivation, resurser och idéer för att kunna genomföra detta projekt. Utan Guds tillstånd skulle detta aldrig vara möjlig.';
$t['I would like to share this video with you:'] = 'Jag skulle vilja dela den här videon med dig:';
$t['ID can not be empty'] = 'ID kan inte vara tomt';
$t["ID can't be blank"] = 'ID kan inte vara tomt';
$t['Icon'] = 'Ikon';
$t["If you can't view this video, your browser does not support HTML5 videos"] = 'Om du inte kan se den här videon stöder din webbläsare inte HTML5-videor';
$t['If you change your password the Server URL parameters will be changed too.'] = 'Om du ändrar ditt lösenord ändras även parametrarna för server-URL.';
$t['If you do not have curl, you can alternatively use a recent wget: '] = 'Om du inte har curl kan du alternativt använda en nyligen wget: ';
$t['Inactivate'] = 'Inaktivera';
$t['Inactive'] = 'Inaktiv';
$t['Invalid'] = 'Ogiltig';
$t['Is Ad'] = 'Är annons';
$t['Language'] = 'Språk';
$t['Last 30 Days'] = 'Senaste 30 dagarna';
$t['Last 7 Days'] = 'Senaste 7 dagarna';
$t['Last'] = 'Senaste';
$t['Left Menu'] = 'Vänster meny';
$t['Left'] = 'Vänster';
$t['Like this video? Sign in to make your opinion count.'] = 'Gilla den här videon? Logga in för att få din åsikt att räkna.';
$t['Listed Transmition'] = 'Listad överföring';
$t['Live Chat'] = 'Livechatt';
$t['Live Now'] = 'Live Nu';
$t['Loading...'] = 'Laddar ...';
$t['Local File'] = 'Lokal fil';
$t['Login'] = 'Logga in';
$t['Logoff'] = 'Logga ut';
$t['Make it public'] = 'Gör det offentligt';
$t['Make sure that the video you are going to download has a duration of less than %d minute(s)!'] = 'Se till att videon du ska ladda ner har en varaktighet på mindre än%d minut(er)!';
$t['Manage Payouts'] = 'Hantera utbetalningar';
$t['Manage Wallets'] = 'Hantera plånböcker';
$t['Message could not be sent'] = 'Meddelandet kunde inte skickas';
$t['Message sent'] = 'Meddelande skickat';
$t['Message'] = 'Meddelande';
$t['Modified'] = 'Modifierad';
$t['Most Popular'] = 'Mest Populär';
$t['Most Watched'] = 'Mest Sett';
$t['Most popular'] = 'Mest populär';
$t['Most watched'] = 'Mest sett';
$t['My Account'] = 'Mitt konto';
$t['My Channel'] = 'Min kanal';
$t['My Subscribers'] = 'Mina Prenumeranter';
$t['My list'] = 'Min lista';
$t['My videos'] = 'Mina videor';
$t["Name can't be blank"] = 'Namnet kan inte vara tomt';
$t['Name'] = 'Namn';
$t['New Category'] = 'Ny kategori';
$t['New Password'] = 'Nytt lösenord';
$t['New User Groups'] = 'Nya användargrupper';
$t['New User'] = 'Ny användare';
$t['Next video NOT set'] = 'Nästa video INTE inställd';
$t['Next'] = 'Nästa';
$t['No data available in table'] = 'Ingen data tillgänglig i tabellen';
$t['No matching records found'] = 'Inga matchande poster hittades';
$t['No results found!'] = 'Inga resultat hittades!';
$t['No'] = 'Nej';
$t['None (Parent)'] = 'Ingen (Parent)';
$t['Notify Subscribers'] = 'Meddela prenumeranter';
$t['Off'] = 'Av';
$t['On'] = 'På';
$t['Only verified users can upload'] = 'Endast verifierade användare kan ladda upp media';
$t['Opacity'] = 'Opacitet';
$t['Original words found'] = 'Originalord hittades';
$t['Owner'] = 'Ägare';
$t['Page'] = 'Sida';
$t['Parent ID'] = 'Föräldra-ID';
$t['Parent-Category'] = 'Föräldrakategori';
$t['Password'] = 'Lösenord';
$t['Paste here the translated words, one each line'] = 'Klistra in de översatta orden här, en varje rad';
$t['Payout'] = 'Utbetalning';
$t['Permanent Link'] = 'Permanent länk';
$t['Permission denied'] = 'Tillstånd nekad';
$t['Play All'] = 'Spela alla';
$t['Play'] = 'Spela upp';
$t['Please login to proceed'] = 'Logga in för att fortsätta';
$t['Please sign in'] = 'Vänligen logga in';
$t['Preview'] = 'Förhandsgranska';
$t['Previous'] = 'Föregående';
$t['Prints'] = 'Skriver ut';
$t['Private'] = 'Privat';
$t['Processing...'] = 'Bearbetar ...';
$t['Public Video'] = 'Offentlig video';
$t['Queue Position'] = 'Köposition';
$t['Random'] = 'Slumpmässig';
$t['Recover Password'] = 'Återställ lösenord';
$t['Recover password could not be saved!'] = 'Återställ lösenord kunde inte sparas!';
$t['Recover password does not match'] = 'Återställ lösenordet matchar inte';
$t['Recover password!'] = 'Återställ lösenord!';
$t['Refresh'] = 'Uppdatera';
$t['Regular Configuration'] = 'Vanlig konfiguration';
$t['Regular User'] = 'Vanlig användare';
$t['Remove Autoplay Next Video'] = 'Ta bort Autoplay Next Video';
$t['Remove User Group'] = 'Ta bort användargrupp';
$t['Remove'] = 'Ta bort';
$t['Rename'] = 'Byt namn';
$t['Reply'] = 'Svara';
$t['Request Payout'] = 'Begär utbetalning';
$t['Reset Key'] = 'Återställ nyckel';
$t['Reset password'] = 'Återställ lösenord';
$t['Reset to Default'] = 'Återställ till standard';
$t['Rotate LEFT'] = 'Rotera VÄNSTER';
$t['Rotate RIGHT'] = 'Rotera RIGHT';
$t['SMTP Host'] = 'SMTP-värd';
$t['SMTP Password'] = 'SMTP-lösenord';
$t['SMTP Port'] = 'SMTP-port';
$t['SMTP Username'] = 'SMTP-användarnamn';
$t['Save File'] = 'Spara fil';
$t['Save Stream'] = 'Spara ström';
$t['Save changes'] = 'Spara ändringar';
$t['Save'] = 'Spara';
$t['Script Code'] = 'Scriptkod';
$t['Search'] = 'Sök';
$t['Select a file to submit!'] = 'Välj en fil att skicka!';
$t['Select a language!'] = 'Välj ett språk!';
$t['Select an icon for the category'] = 'Välj en ikon för kategorin';
$t['Select an icon for the menu'] = 'Välj en ikon för menyn';
$t['Select the update'] = 'Välj uppdateringen';
$t['Send'] = 'Skicka';
$t['Server URL'] = 'Server-URL';
$t['Session Timeout in seconds'] = 'Sessionstimeout i sekunder';
$t['Share Info'] = 'Dela information';
$t['Share Video'] = 'Dela video';
$t['Share'] = 'Dela';
$t['Show _MENU_ entries'] = 'Visa _MENU_ poster';
$t['Showing 0 to 0 of 0 entries'] = 'Visar 0 till 0 av 0 poster';
$t['Showing _START_ to _END_ of _TOTAL_ entries'] = 'Visar _START_ till _END_ av _TOTAL_ poster';
$t['Showing {{ctx.start}} to {{ctx.end}} of {{ctx.total}} entries'] = 'Visar {{ctx.start}} till {{ctx.end}} av {{ctx.total}} poster';
$t['Sign Up'] = 'Registrera dig';
$t['Sign in now!'] = 'Logga in nu!';
$t['Sign in'] = 'Logga in';
$t['Sign out'] = 'Logga ut';
$t['Sign up'] = 'Registrera dig';
$t['Site Configurations'] = 'Webbplatskonfigurationer';
$t['Skip Ad'] = 'Hoppa över annons';
$t['Sorry you not able to download videos right now!'] = 'Tyvärr kunde du inte ladda ner videor just nu!';
$t['Sorry!'] = 'Ledsen!';
$t['Sorry'] = 'Ledsen';
$t['Sort by name'] = 'Sortera efter namn';
$t['Source'] = 'Källa';
$t['Starts on'] = 'Börjar på';
$t['Status not found'] = 'Status hittades inte';
$t['Stop ad after (X) clicks'] = 'Stoppa annons efter (X) klick';
$t['Stop ad after (X) prints'] = 'Stoppa annons efter (X) utskrifter';
$t['Stream Settings'] = 'Streaminställningar';
$t['Stream name/key'] = 'Stream namn/nyckel';
$t['Style & Themes'] = 'Stil och teman';
$t['Subscribe'] = 'Prenumerera';
$t['Subscribed to'] = 'Prenumerera på';
$t['Subscribed'] = 'Prenumerera';
$t['Subscribes'] = 'Prenumererar';
$t['Subscriptions'] = 'Prenumerationer';
$t['Subtitle Form'] = 'Undertextformulär';
$t['Success!'] = 'Framgång!';
$t['Success'] = 'Framgång';
$t['Suggest'] = 'Föreslå';
$t['Support value can not be empty'] = 'Supportvärdet kan inte vara tomt';
$t['Supported'] = 'Stöds';
$t['Tags'] = 'Taggar';
$t['Test Email'] = 'Testa e-post';
$t['Test your email'] = 'Testa din e-post';
$t['Thank you'] = 'Tack';
$t['The captcha is empty'] = 'Captcha är tom';
$t['The captcha is wrong'] = 'Captcha är fel';
$t['The file must be an .vtt file!'] = 'Filen måste vara en .vtt-fil!';
$t['The original file for this video does not exists anymore'] = 'Originalfilen för den här videon finns inte längre';
$t['The recover pass does not match!'] = 'Recovery-passet matchar inte!';
$t['Theme for Style:'] = 'Tema för Style:';
$t['Themes'] = 'Teman';
$t['There is missing data to recover your password'] = 'Det saknas data för att återställa ditt lösenord';
$t['There is no streaming now'] = 'Det finns ingen streaming nu';
$t['This creates a download-button under your video, suggest you title.mp4 as download-name.'] = 'Detta skapar en nedladdningsknapp under din video, föreslår att du titel.mp4 som nedladdningsnamn.';
$t['This e-mail will be used for this web site notifications'] = 'Det här e-postmeddelandet kommer att användas för den här webbplatsaviseringen';
$t['This help us to track and dettect errors'] = 'Detta hjälper oss att spåra och detektera fel';
$t['This is an experimental resource'] = 'Detta är en experimentell resurs';
$t["This page works only with an MP4 File, if you have or need any other format, try to install your own <a href='https://github.com/WWBN/AVideo-Encoder' class='btn btn-warning btn-xs'>encoder</a> or use the <a href='https://encoder1.avideo.com/' class='btn btn-warning btn-xs'>public</a> one"] = "Den här sidan fungerar bara med en MP4-fil, om du har eller behöver något annat format, försök att installera ditt eget <a href='https://github.com/WWBN/ AVideo-Encoder' class='btn btn-warning btn-xs'> kodare </a> eller använd <a href =' https://encoder1.wwbn.net/ 'class='btn btn-warning btn-xs'> offentlig </a> en";
$t['This plugin is not available for you'] = 'Detta plugin är inte tillgängligt för dig';
$t['This value must match with the language files on'] = 'Detta värde måste matcha språkfilerna på';
$t['This video will cost you %s point(s)'] = 'Den här videon kostar dig%s poäng (er)';
$t['This video will work as an advertising and will no longer appear on videos list'] = 'Den här videon fungerar som en reklam och kommer inte längre att visas i videolistan';
$t['Thumbs Down'] = 'Tummen ner';
$t['Thumbs Up'] = 'Tummen upp';
$t['Timeline'] = 'Tidslinje';
$t['Title'] = 'Titel';
$t['To install it right away for all UNIX users (Linux, OS X, etc.), type: '] = 'För att installera det direkt för alla UNIX-användare (Linux, OS X, etc.), skriv: ';
$t['To installations instructions try this link: '] = 'Till installationsinstruktioner prova den här länken:';
$t['To view this video please enable JavaScript, and consider upgrading to a web browser that'] = 'För att se den här videon, aktivera JavaScript och överväga att uppgradera till en webbläsare som';
$t['To'] = 'Till';
$t['Today Views'] = 'Visningar Idag';
$t['Today'] = 'Idag';
$t['Total Duration Videos (Minutes)'] = 'Total Speltid Videor (Minuter)';
$t['Total Subscriptions'] = 'Totalt Prenumerationer';
$t['Total Users'] = 'Totalt antal användare';
$t['Total Video Comments'] = 'Totalt videokommentarer';
$t['Total Videos Dislikes'] = 'Totalt antal videor ogillar';
$t['Total Videos Likes'] = 'Totalt antal videor gillar';
$t['Total Videos Views'] = 'Totalt antal videovisningar';
$t['Total Videos'] = 'Totalt antal videor';
$t['Total Views (90 Days)'] = 'Totalt antal visningar (90 dagar)';
$t['Total Views (Today)'] = 'Totalt antal Views (Idag)';
$t['Total Views Today'] = 'Totalt antal visningar idag';
$t['Total Views'] = 'Totalt antal visningar';
$t['Track your videos with Google analytics'] = 'Spåra dina videor med Google analytics';
$t['Trying to establish a chat server connection'] = 'Försöker skapa en chatserveranslutning';
$t['Type the code'] = 'Skriv in koden';
$t['Type your message...'] = 'Skriv ditt meddelande...';
$t['Type'] = 'Typ';
$t["UUID can't be blank"] = 'UUID kan inte vara tomt';
$t['Unable to open file!'] = 'Det gick inte att öppna filen!';
$t['Uncheck all to make it public'] = 'Avmarkera alla för att göra det offentligt';
$t['Unique Users'] = 'Unika användare';
$t['Unknown User'] = 'Okänd användare';
$t['Unsuggest'] = 'Föreslå';
$t['Up'] = 'Upp';
$t['Update AVideo System'] = 'Uppdatera AVideo System';
$t['Update Now'] = 'Uppdatera nu';
$t['Update the site configuration'] = 'Uppdatera webbplatsens konfiguration';
$t['Update version'] = 'Uppdatera version';
$t['Update your user'] = 'Uppdatera din användare';
$t['Upload a Background'] = 'Ladda upp en bakgrund';
$t['Upload a Photo'] = 'Ladda upp ett foto';
$t['Upload a Plugin ZIP File'] = 'Ladda upp en ZIP-fil för plugin';
$t['Upload a Plugin'] = 'Ladda upp ett plugin';
$t['Upload a logo'] = 'Ladda upp en logotyp';
$t['Upload a small logo'] = 'Ladda upp en liten logotyp';
$t['Upload an MP4 File'] = 'Ladda upp en MP4-fil';
$t['Upload an MP4 video'] = 'Ladda upp en MP4-video';
$t['Upload to YouTube'] = 'Ladda upp till YouTube';
$t['Upload your file'] = 'Ladda upp din fil';
$t['Uploaded By'] = 'Uppladdad av';
$t['Use tls OR ssl'] = 'Använd tls ELLER ssl';
$t['User Form'] = 'Användarformulär';
$t['User Groups Form'] = 'Formulär för användargrupper';
$t['User Groups'] = 'Användargrupper';
$t['User already exists'] = 'Användaren finns redan';
$t['User and Password can not be blank'] = 'Användare och lösenord kan inte vara tomma';
$t['User can not be blank'] = 'Användaren kan inte vara blank';
$t['User not found'] = 'Användaren hittades inte';
$t['User'] = 'Användare';
$t['UserGroups'] = 'Användargrupper';
$t['Users Groups'] = 'Användargrupper';
$t['Users'] = 'Användare';
$t['Verification Sent'] = 'Verifiering skickad';
$t['Verify e-mail'] = 'Verifiera e-post';
$t['Video Chart'] = 'Videodiagram';
$t['Video Form'] = 'Videoformulär';
$t['Video Link'] = 'Videolänk';
$t['Video Title'] = 'Videotitel';
$t['Video can not be empty'] = 'Video kan inte vara tomt';
$t['Video not found'] = 'Video hittades inte';
$t['Video re-encoding!'] = 'Videokodning!';
$t['Video thumbs up - per Channel'] = 'Video tummen upp - per kanal';
$t['Video views - per Channel'] = 'Videovisningar - per kanal';
$t['Videos linked'] = 'Länkade videor';
$t['Videos'] = 'Videor';
$t['View Details'] = 'Visa detaljer';
$t['View all replies'] = 'Visa alla svar';
$t['View'] = 'Visa';
$t['Views'] = 'Visningar';
$t['Warning'] = 'Varning';
$t['Watch on YouTube'] = 'Titta på YouTube';
$t['Watching Now'] = 'Tittar nu';
$t['We could not notify anyone (%s), but we marked it as inappropriate'] = 'Vi kunde inte meddela någon (%s), men vi markerade det som olämpligt';
$t['We could not notify the video owner %s, but we marked it as inappropriate'] = 'Vi kunde inte meddela videoklippets ägare %s, men vi markerade det som olämpligt';
$t['We detected a total of %s pending updates, if you want to do it now click (Update Now) button'] = 'Vi upptäckte totalt%s väntande uppdateringar, om du vill göra det nu klickar du på ( Uppdatera nu) -knapp';
$t['We have not found any videos or audios to show'] = 'Vi har inte hittat några videor eller audios att visa';
$t['We sent you an e-mail with instructions'] = 'Vi skickade ett e-postmeddelande med instruktioner';
$t['We use youtube-dl to download videos from youtube.com or other video platforms'] = 'Vi använder youtube-dl för att ladda ner videor från youtube.com eller andra videoplattformar';
$t['We will check if there is a stream conflict before stream'] = 'Vi kommer att kontrollera om det finns en streamkonflikt före stream';
$t['We will send you a link, to your e-mail, to recover your password!'] = 'Vi skickar en länk till din e-post för att återställa ditt lösenord!';
$t['We would like to thanks http://bootswatch.com/'] = 'Vi vill tacka http://bootswatch.com/';
$t['Web site title'] = 'Webbplats titel';
$t['Website'] = 'Webbplats';
$t['What is User Groups'] = 'Vad är användargrupper';
$t['What is the new name?'] = 'Vad är det nya namnet?';
$t['What is this'] = 'Vad är det här';
$t['When autoplay is enabled, a suggested video will automatically play next.'] = 'När autoplay är aktiverad kommer en föreslagen video automatiskt att spelas upp nästa.';
$t['When'] = 'När';
$t['Yes'] = 'Ja';
$t['Yes, delete it!'] = 'Ja, ta bort det!';
$t['You already support this video'] = 'Du har redan stöd för den här videon';
$t['You are hosting %d minutes and %d seconds of video'] = 'Du är värd för %d minuter och %d sekunder av video';
$t['You are not allowed see this streaming'] = 'Du får inte se denna streaming';
$t['You are not logged'] = 'Du är inte inloggad';
$t['You are not online, loading webcam...'] = 'Du är inte online, laddar webbkamera...';
$t['You are online now, web cam is disabled'] = 'Du är online nu, webbkameran är inaktiverad';
$t['You are running AVideo version %s!'] = 'Du kör AVideo version%s!';
$t['You asked for a recover link, click on the provided link'] = 'Du bad om en återställningslänk, klicka på den angivna länken';
$t['You can not Manage This Video'] = 'Du kan inte hantera den här videon';
$t['You can not do this'] = 'Du kan inte göra detta';
$t['You can not manage ads'] = 'Du kan inte hantera annonser';
$t['You can not manage categories'] = 'Du kan inte hantera kategorier';
$t['You can not manage comments'] = 'Du kan inte hantera kommentarer';
$t['You can not manage plugins'] = 'Du kan inte hantera plugins';
$t['You can not manage subscribes'] = 'Du kan inte hantera prenumerationer';
$t['You can not manage users'] = 'Du kan inte hantera användare';
$t['You can not manage videos'] = 'Du kan inte hantera videor';
$t['You can not manager payouts'] = 'Du kan inte hantera utbetalningar';
$t['You can not manager plugin PointsSystem'] = 'Du kan inte hantera plugin PointsSystem';
$t['You can not manager plugin add logo'] = 'Du kan inte manager plugin lägga till logotyp';
$t['You can not manager plugin customize'] = 'Du kan inte anpassa manager plugin';
$t['You can not manager plugin logo overlay'] = 'Du kan inte manager plugin logo overlay';
$t['You can not manager plugin this'] = 'Du kan inte manager plugin detta';
$t['You can not manager plugins'] = 'Du kan inte hantera plugins';
$t['You can not manager wallets'] = 'Du kan inte hantera plånböcker';
$t['You can not notify'] = 'Du kan inte meddela';
$t['You can not see history'] = 'Du kan inte se historik';
$t['You can not stream live videos'] = 'Du kan inte streama livevideor';
$t['You can storage %s minutes of videos!'] = 'Du kan lagra %s minuter med videor!';
$t['You can upload max of %s!'] = 'Du kan ladda upp max %s!';
$t['You can use our public encoder on'] = 'Du kan använda vår publika kodare på';
$t['You cannot comment on videos'] = 'Du kan inte kommentera videor';
$t['You could not use your balance to watch this video'] = 'Du kunde inte använda ditt saldo för att titta på den här videon';
$t['You do not have an e-mail'] = 'Du har inte ett e-postmeddelande';
$t["You don't have balance"] = 'Du har ingen balans';
$t['You have %s minutes of videos!'] = 'Du har %s minuter med videor!';
$t['You have about %s minutes left of video storage!'] = 'Du har ungefär%s minuter kvar av videolagring!';
$t['You have sent the notification'] = 'Du har skickat aviseringen';
$t['You have version '] = 'Du har version';
$t['You must be logged'] = 'Du måste vara inloggad';
$t['You must fill all fields'] = 'Du måste fylla alla fält';
$t['You must login to be able to comment on videos'] = 'Du måste logga in för att kunna kommentera videor';
$t['You must make this video public or select a group to see your video!'] = 'Du måste göra den här videon offentlig eller välja en grupp för att se din video!';
$t['You need a user and passsword to register'] = 'Du behöver en användare och ett lösenord för att registrera dig';
$t['You need a video to generate statistics'] = 'Du behöver en video för att generera statistik';
$t['You need to inform what is your user!'] = 'Du måste informera vad som är din användare!';
$t['You need to install'] = 'Du måste installera';
$t['You need to make your locale folder writable'] = 'Du måste göra din lokala mapp skrivbar';
$t['You need to set up an encoder server'] = 'Du måste konfigurera en kodarserver';
$t['You need to tell us the new name?'] = 'Du måste berätta det nya namnet?';
$t['You will not be able to recover these videos!'] = 'Du kommer inte att kunna återställa dessa videor!';
$t['You will not be able to recover this action!'] = 'Du kommer inte att kunna återställa den här åtgärden!';
$t['You will not be able to recover this category!'] = 'Du kommer inte att kunna återställa den här kategorin!';
$t['You will not be able to recover this group!'] = 'Du kommer inte att kunna återställa den här gruppen!';
$t['You will not be able to recover this user!'] = 'Du kommer inte att kunna återställa den här användaren!';
$t['You will not be able to recover this video!'] = 'Du kommer inte att kunna återställa den här videon!';
$t['You will not be able to recover this!'] = 'Du kommer inte att kunna återställa detta!';
$t['You will request a payout of '] = 'Du kommer att begära en utbetalning av ';
$t['You will support this video with '] = 'Du kommer att stödja den här videon med ';
$t['You%20can%20not%20manage'] = 'Du%20kan%20inte%20hantera';
$t['Your %s locale dir is not writable'] = 'Din %s locale dir är inte skrivbar';
$t['Your Logo'] = 'Din logotyp';
$t['Your POST data is empty may be your vide file is too big for the host'] = 'Dina POST-data är tomma kan vara att din vide-fil är för stor för värden';
$t['Your Password has been set'] = 'Ditt lösenord har ställts in';
$t['Your Payout request was saved!'] = 'Din utbetalningsförfrågan sparades!';
$t['Your Small Logo'] = 'Din lilla logotyp';
$t['Your ad has NOT been deleted!'] = 'Din annons har INTE raderats!';
$t['Your ad has NOT been saved!'] = 'Din annons har INTE sparats!';
$t['Your ad has been deleted!'] = 'Din annons har tagits bort!';
$t['Your ad has been saved!'] = 'Din annons har sparats!';
$t['Your balance has NOT been saved!'] = 'Ditt saldo har INTE sparats!';
$t['Your cache has NOT been cleared!'] = 'Din cache har INTE rensats!';
$t['Your cache has been cleared!'] = 'Din cache har rensats!';
$t['Your category has NOT been deleted!'] = 'Din kategori har INTE tagits bort!';
$t['Your category has NOT been saved!'] = 'Din kategori har INTE sparats!';
$t['Your category has been deleted!'] = 'Din kategori har tagits bort!';
$t['Your category has been saved!'] = 'Din kategori har sparats!';
$t['Your code is not valid'] = 'Din kod är inte giltig';
$t['Your comment has NOT been deleted!'] = 'Din kommentar har INTE raderats!';
$t['Your comment has NOT been saved!'] = 'Din kommentar har INTE sparats!';
$t['Your comment has been saved!'] = 'Din kommentar har sparats!';
$t['Your comment must be bigger then 5 characters!'] = 'Din kommentar måste vara större än 5 tecken!';
$t['Your configurations has NOT been updated!'] = 'Dina konfigurationer har INTE uppdaterats!';
$t['Your configurations has been updated!'] = 'Dina konfigurationer har uppdaterats!';
$t['Your cost has NOT been saved!'] = 'Din kostnad har INTE sparats!';
$t['Your current balance is %s'] = 'Ditt nuvarande saldo är %s';
$t['Your group has NOT been deleted!'] = 'Din grupp har INTE tagits bort!';
$t['Your group has NOT been saved!'] = 'Din grupp har INTE sparats!';
$t['Your group has been deleted!'] = 'Din grupp har tagits bort!';
$t['Your group has been saved!'] = 'Din grupp har sparats!';
$t['Your language has been saved!'] = 'Ditt språk har sparats!';
$t['Your maximum file size is:'] = 'Din maximala filstorlek är:';
$t['Your message could not be sent!'] = 'Ditt meddelande kunde inte skickas!';
$t['Your message has been sent!'] = 'Ditt meddelande har skickats!';
$t['Your new password could not be set!'] = 'Ditt nya lösenord kunde inte ställas in!';
$t['Your new password has been set!'] = 'Ditt nya lösenord har ställts in!';
$t['Your password does not match!'] = 'Ditt lösenord matchar inte!';
$t['Your payout status has NOT been saved!'] = 'Din utbetalningsstatus har INTE sparats!';
$t['Your subtitle has NOT been uploaded!'] = 'Din undertext har INTE laddats upp!';
$t['Your subtitle has been saved!'] = 'Din undertext har sparats!';
$t['Your system is up to date'] = 'Ditt system är uppdaterat';
$t['Your update from file %s is done, click continue'] = 'Din uppdatering från filen %s är klar, klicka på Fortsätt';
$t['Your user has NOT been created!'] = 'Din användare har INTE skapats!';
$t['Your user has NOT been deleted!'] = 'Din användare har INTE raderats!';
$t['Your user has NOT been saved!'] = 'Din användare har INTE sparats!';
$t['Your user has NOT been updated!'] = 'Din användare har INTE uppdaterats!';
$t['Your user has been created!'] = 'Din användare har skapats!';
$t['Your user has been deleted!'] = 'Din användare har tagits bort!';
$t['Your user has been saved!'] = 'Din användare har sparats!';
$t['Your user or password is wrong!'] = 'Din användare eller lösenord är fel!';
$t["Your video <a href='https://youtu.be/%s' target='_blank' class='btn btn-default'><span class='fas fa-play-circle'></span> %s</a> was uploaded to your <a href='https://www.youtube.com/my_videos' class='btn btn-default' target='_blank'><span class='fab fa-youtube-square'></span> YouTube Account</a><br> "] = "Din video <a href='https:/youtu.be/%s' target='_blank' class='btn btn-default'><span class='fas fa-play-circle'></span>%s</a> laddades upp till din <a href='https://www.youtube.com/my_videos' class='btn btn-default' target='_blank'><span class='fab fa-youtube-square'></span> YouTube-konto </a><br> ";
$t['Your video download is complete, it is encoding now'] = 'Din videonedladdning är klar, den kodar nu';
$t['Your video has NOT been deleted!'] = 'Din video har INTE raderats!';
$t['Your video has NOT been saved!'] = 'Din video har INTE sparats!';
$t['Your video is downloading now'] = 'Din video laddas ner nu';
$t['Your videos have NOT been deleted!'] = 'Dina videor har INTE raderats!';
$t['ago'] = 'sedan';
$t['day'] = 'dag';
$t['days'] = 'dagar';
$t['description'] = 'beskrivning';
$t['hour'] = 'timme';
$t['hours'] = 'timmar';
$t['installed, but your database is not up to date. This could lead to bugs. Please go to the update site.'] = 'Installerad, men din databas är inte uppdaterad. Detta kan leda till fel. Gå till uppdateringsplatsen.';
$t['is Active'] = 'är aktiv';
$t['is Admin'] = 'är Admin';
$t['is live'] = 'är live';
$t['minute'] = 'minut';
$t['minutes'] = 'minuter';
$t['month'] = 'månad';
$t['months'] = 'månader';
$t['remaining'] = 'återstående';
$t['second'] = 'sekund';
$t['seconds'] = 'sekunder';
$t['week'] = 'vecka';
$t['weeks'] = 'veckor';
$t['year'] = 'år';
$t['years'] = 'år';
$t['youtube-dl uses Python and some servers does not came with python as default, to install Python type:'] = 'youtube-dl använder Python och vissa servrar kommer inte med python som default, för att installera Python-typ:';
// Previously missing from file.
$t[' You can use the Edit Parameters button to rename it to your choosing.<br>We recommend to keep the Program name '] = ' You can use the Edit Parameters button to rename it to your choosing.<br>We recommend to keep the Program name ';
$t[" You'll no longer receive emails from us"] = " You'll no longer receive emails from us";
$t[' and also reset the stream name/key'] = ' and also reset the stream name/key';
$t['— The Team'] = '— The Team';
$t[', where you can edit the ad-options'] = ', where you can edit the ad-options';
$t['-Plugin'] = '-Plugin';
$t['2FA email not sent'] = '2FA email not sent';
$t['2FA login is required'] = '2FA login is required';
$t['A service error occurred [1]: %s'] = 'A service error occurred [1]: %s';
$t['ADs Editor'] = 'ADs Editor';
$t['ADs plugin'] = 'ADs plugin';
$t['API plugin not enabled'] = 'API plugin not enabled';
$t['API'] = 'API';
$t['About Us'] = 'About Us';
$t['Actions'] = 'Actions';
$t['Active Livestreams'] = 'Active Livestreams';
$t['Active Users'] = 'Active Users';
$t['Ad Overlay Code'] = 'Ad Overlay Code';
$t['Ad Overlay'] = 'Ad Overlay';
$t['Add Article'] = 'Add Article';
$t['Add Location Restriction'] = 'Add Location Restriction';
$t['Add To Serie'] = 'Add To Serie';
$t['Add Videos into Campaign'] = 'Add Videos into Campaign';
$t['Add an External a Live Streaming'] = 'Add an External a Live Streaming';
$t['Add an external Live Link'] = 'Add an external Live Link';
$t['Add this playlist in your video library'] = 'Add this playlist in your video library';
$t['Add to Program'] = 'Add to Program';
$t['Add videos'] = 'Add videos';
$t['Add'] = 'Add';
$t['Added On Favorite'] = 'Added On Favorite';
$t['Added On Watch Later'] = 'Added On Watch Later';
$t['Address'] = 'Address';
$t['Admin Users'] = 'Admin Users';
$t['Admin'] = 'Admin';
$t["Admin's manual"] = "Admin's manual";
$t['Administration'] = 'Administration';
$t['Ads Saved!'] = 'Ads Saved!';
$t['Ads deleted!'] = 'Ads deleted!';
$t['Advanced'] = 'Advanced';
$t['Advertising Manager'] = 'Advertising Manager';
$t['After enabling this, you can directly set some options, like the name, linkand active categorie for example.'] = 'After enabling this, you can directly set some options, like the name, linkand active categorie for example.';
$t['After sign up we will automatic send a verification email'] = 'After sign up we will automatic send a verification email';
$t['Agenda 21'] = 'Agenda 21';
$t['Agreement ID'] = 'Agreement ID';
$t['Agreement Id'] = 'Agreement Id';
$t['All Ages Admitted'] = 'All Ages Admitted';
$t['All controls'] = 'All controls';
$t['All lives were marked as finished'] = 'All lives were marked as finished';
$t['All time'] = 'All time';
$t['All you need to do is to verify your e-mail by clicking the link below'] = 'All you need to do is to verify your e-mail by clicking the link below';
$t['Allow Download This media'] = 'Allow Download This media';
$t['Allow Download'] = 'Allow Download';
$t['Allow Share This media'] = 'Allow Share This media';
$t['Allow download video'] = 'Allow download video';
$t['Alphabetical'] = 'Alphabetical';
$t['Already verified'] = 'Already verified';
$t['Also, when you activate a plugin and you see a button "Install Tables", press it at least once, if you never press it, this can cause bugs!'] = 'Also, when you activate a plugin and you see a button "Install Tables", press it at least once, if you never press it, this can cause bugs!';
$t['A client error occurred [2]: %s'] = 'Ett klientfel inträffade [2]: %s';
$t['Approve Ad Code'] = 'Approve Ad Code';
$t['Are you new here?'] = 'Are you new here?';
$t['Arrow'] = 'Arrow';
$t['Articles'] = 'Articles';
$t['As a database increases in size full database backups take more time to complete, and require more storage space. Please be patient'] = 'As a database increases in size full database backups take more time to complete, and require more storage space. Please be patient';
$t['Attach'] = 'Attach';
$t['Attention'] = 'Attention';
$t['Audio and Video'] = 'Audio and Video';
$t['Australian Dollar = AUD, Brazilian Real = BRL, Canadian Dollar = CAD,Euro =EUR, U.S. Dollar = USD, etc'] = 'Australian Dollar = AUD, Brazilian Real = BRL, Canadian Dollar = CAD,Euro =EUR, U.S. Dollar = USD, etc';
$t['Authenticated users can view chart'] = 'Authenticated users can view chart';
$t['Auto Scroll'] = 'Auto Scroll';
$t['Auto Sort'] = 'Auto Sort';
$t['Auto Transmit Live'] = 'Auto Transmit Live';
$t['Auto record this live'] = 'Auto record this live';
$t['Auto'] = 'Auto';
$t['Automatic Withdraw'] = 'Automatic Withdraw';
$t['Automatic allow new users to use your Livestream Platform'] = 'Automatic allow new users to use your Livestream Platform';
$t['Autoplay Next Video URL'] = 'Autoplay Next Video URL';
$t['Autoplay'] = 'Autoplay';
$t['Back to startpage'] = 'Back to startpage';
$t['Back to'] = 'Back to';
$t['Back'] = 'Back';
$t['Background'] = 'Background';
$t['Backing up your video files and databases, running test restores procedureson your backups, and storing copies of backups in a safe, off-site location protects you from potentially catastrophic data loss. Backing up is the only way toprotect your data.'] = 'Backing up your video files and databases, running test restores procedureson your backups, and storing copies of backups in a safe, off-site location protects you from potentially catastrophic data loss. Backing up is the only way toprotect your data.';
$t['Backup Files and Database'] = 'Backup Files and Database';
$t['Backup site'] = 'Backup site';
$t['Backup'] = 'Backup';
$t['Banner Script code'] = 'Banner Script code';
$t['Basic Info'] = 'Basic Info';
$t['Basic'] = 'Basic';
$t['Bible'] = 'Bible';
$t['Bio Hacking'] = 'Bio Hacking';
$t['Block User'] = 'Block User';
$t['Block and hide this user content'] = 'Block and hide this user content';
$t['Broadcast a Live Stream'] = 'Broadcast a Live Stream';
$t['Broken Missing files'] = 'Broken Missing files';
$t['Bubbles Only'] = 'Bubbles Only';
$t['Bulk Embed'] = 'Bulk Embed';
$t['But only admin can download'] = 'But only admin can download';
$t['Buy This Plugin'] = 'Buy This Plugin';
$t['Buy our Backup Plugin Now'] = 'Buy our Backup Plugin Now';
$t['Buy the Customize plugin now'] = 'Buy the Customize plugin now';
$t['Buy this plugin now'] = 'Buy this plugin now';
$t['CDN Storage'] = 'CDN Storage';
$t['CDN'] = 'CDN';
$t['CSV File'] = 'CSV File';
$t['Cache Manager'] = 'Cache Manager';
$t['CallbackResponse'] = 'CallbackResponse';
$t['CallbackURL'] = 'CallbackURL';
$t['Can Download'] = 'Can Download';
$t['Can create meet'] = 'Can create meet';
$t['Can edit TopMenu plugin'] = 'Can edit TopMenu plugin';
$t['Can edit and delete user groups'] = 'Can edit and delete user groups';
$t['Can view chart'] = 'Can view chart';
$t['Cancel Agreement'] = 'Cancel Agreement';
$t['Cancel'] = 'Cancel';
$t['Canceled'] = 'Canceled';
$t['Category Icon'] = 'Category Icon';
$t['Center'] = 'Center';
$t['Challenge Decryptor'] = 'Challenge Decryptor';
$t['Change theme'] = 'Change theme';
$t['Channel Admin'] = 'Channel Admin';
$t['Channel Art'] = 'Channel Art';
$t['Channel Description'] = 'Channel Description';
$t['Charts'] = 'Charts';
$t['Chat'] = 'Chat';
$t['Check Code'] = 'Check Code';
$t['Check Meet Servers'] = 'Check Meet Servers';
$t['Check the URL you entered for any mistakes and try again. Alternatively, search for whatever is missing or take a look around the rest of our site.'] = 'Check the URL you entered for any mistakes and try again. Alternatively, search for whatever is missing or take a look around the rest of our site.';
$t['Check this if you will not use embed videos on your site'] = 'Check this if you will not use embed videos on your site';
$t['Check this to stay signed in'] = 'Check this to stay signed in';
$t['Cheers, %s Team.'] = 'Cheers, %s Team.';
$t['Choose a favicon'] = 'Choose a favicon';
$t['Choose a logo'] = 'Choose a logo';
$t['Choose one of our encoders to upload a file or download it from the Internet'] = 'Choose one of our encoders to upload a file or download it from the Internet';
$t['City'] = 'City';
$t['Clear Chat'] = 'Clear Chat';
$t['Clear First Page Cache'] = 'Clear First Page Cache';
$t['Click to get notified for every new video'] = 'Click to get notified for every new video';
$t['Clone Site'] = 'Clone Site';
$t['Cloud'] = 'Cloud';
$t['Collected Date'] = 'Collected Date';
$t['Collections'] = 'Collections';
$t['Colors'] = 'Colors';
$t['Coming in'] = 'Coming in';
$t['Comments Admin'] = 'Comments Admin';
$t['Configuration Saved'] = 'Configuration Saved';
$t['Configurations'] = 'Configurations';
$t['Configure your Ads'] = 'Configure your Ads';
$t['Confirm Donation'] = 'Confirm Donation';
$t['Confirm Meet Password'] = 'Confirm Meet Password';
$t['Confirm Password'] = 'Confirm Password';
$t['Confirm Playlist name'] = 'Confirm Playlist name';
$t['Confirm Rating'] = 'Confirm Rating';
$t['Confirm System Admin password'] = 'Confirm System Admin password';
$t['Connected'] = 'Connected';
$t['Contents'] = 'Contents';
$t['Copied!'] = 'Copied!';
$t['Copied'] = 'Copied';
$t['Copy Invitation'] = 'Copy Invitation';
$t['Copy Link'] = 'Copy Link';
$t['Copy embed code'] = 'Copy embed code';
$t['Copy from encripted message'] = 'Copy from encripted message';
$t['Copy from generated'] = 'Copy from generated';
$t['Copy to Clipboard'] = 'Copy to Clipboard';
$t['Copy to clipboard'] = 'Copy to clipboard';
$t['Copy video URL at current time'] = 'Copy video URL at current time';
$t['Copy video URL'] = 'Copy video URL';
$t['Copy'] = 'Copy';
$t['Copyright'] = 'Copyright';
$t['Corona News'] = 'Corona News';
$t['Could not move image file %s => [%s]'] = 'Could not move image file %s => [%s]';
$t['Could not move image file because it does not exits %s => [%s]'] = 'Could not move image file because it does not exits %s => [%s]';
$t['Could not move webp image file [%s.webp]'] = 'Could not move webp image file [%s.webp]';
$t['Country'] = 'Country';
$t['Create Campaign'] = 'Create Campaign';
$t['Create Conference'] = 'Create Conference';
$t['Create Room'] = 'Create Room';
$t['Create Subscription Plans'] = 'Create Subscription Plans';
$t['Create Tag Type'] = 'Create Tag Type';
$t['Create a Meet'] = 'Create a Meet';
$t['Create a New'] = 'Create a New';
$t['Create'] = 'Create';
$t['Created Date'] = 'Created Date';
$t['Culinary'] = 'Culinary';
$t['Current Time'] = 'Current Time';
$t['Custom CSS'] = 'Custom CSS';
$t['Customize Footer, About and Meta Description'] = 'Customize Footer, About and Meta Description';
$t['Customize Your site colors'] = 'Customize Your site colors';
$t['Customize options'] = 'Customize options';
$t['Customize'] = 'Customize';
$t['Daily'] = 'Daily';
$t['Date To Execute'] = 'Date To Execute';
$t['Days'] = 'Days';
$t['Decrypt Message'] = 'Decrypt Message';
$t['Decrypt'] = 'Decrypt';
$t['Decrypted Text'] = 'Decrypted Text';
$t['Delete All Selected'] = 'Delete All Selected';
$t['Delete files after submit'] = 'Delete files after submit';
$t['Deleted'] = 'Deleted';
$t['Deprecated'] = 'Deprecated';
$t['Design'] = 'Design';
$t['Destination Application Name'] = 'Destination Application Name';
$t['Destination Host'] = 'Destination Host';
$t['Destination Port'] = 'Destination Port';
$t['Detect language from IP'] = 'Detect language from IP';
$t['Device'] = 'Device';
$t['Devices Stream Info'] = 'Devices Stream Info';
$t['Direct Import all'] = 'Direct Import all';
$t['Disable the My Account personal info like: First and Last Name and address'] = 'Disable the My Account personal info like: First and Last Name and address';
$t['Disapprove Ad Code'] = 'Disapprove Ad Code';
$t['Disapprove and Delete Ad Code'] = 'Disapprove and Delete Ad Code';
$t['Disconnect Livestream'] = 'Disconnect Livestream';
$t['Disconnected'] = 'Disconnected';
$t['Do not allow encode in HD resolution'] = 'Do not allow encode in HD resolution';
$t['Do not allow encode in Low resolution'] = 'Do not allow encode in Low resolution';
$t['Do not allow encode in SD resolution'] = 'Do not allow encode in SD resolution';
$t['Do not show the button to the encoder'] = 'Do not show the button to the encoder';
$t["Do not show user's email on the site"] = "Do not show user's email on the site";
$t["Do not show user's name on the site"] = "Do not show user's name on the site";
$t["Do not show user's username on the site"] = "Do not show user's username on the site";
$t['Do you want to block this user?'] = 'Do you want to block this user?';
$t['Do you want to report this video as inappropriate?'] = 'Do you want to report this video as inappropriate?';
$t['Do you want to report this video? Sign in to make your opinion count.'] = 'Do you want to report this video? Sign in to make your opinion count.';
$t['Do you want to unblock this user?'] = 'Do you want to unblock this user?';
$t['Document'] = 'Document';
$t['Documentaries'] = 'Documentaries';
$t["Don't show again"] = "Don't show again";
$t['Donate from your wallet'] = 'Donate from your wallet';
$t['Donation Link'] = 'Donation Link';
$t['Donation'] = 'Donation';
$t['Done'] = 'Done';
$t['Download File'] = 'Download File';
$t['Download The moment'] = 'Download The moment';
$t['Download Video'] = 'Download Video';
$t['Download disabled'] = 'Download disabled';
$t['Download private and public keys'] = 'Download private and public keys';
$t['Download your videos list'] = 'Download your videos list';
$t['EPG'] = 'EPG';
$t['Edit Ads'] = 'Edit Ads';
$t['Edit Campaigns'] = 'Edit Campaigns';
$t['Edit Live Servers'] = 'Edit Live Servers';
$t['Edit parameters'] = 'Edit parameters';
$t['Edit videos'] = 'Edit videos';
$t['Edit-symbol and enable Create an Advertising'] = 'Edit-symbol and enable Create an Advertising';
$t['Email All Users'] = 'Email All Users';
$t['Email Verified'] = 'Email Verified';
$t['Email already exists'] = 'Email already exists';
$t['Email verification error'] = 'Email verification error';
$t['Embed All'] = 'Embed All';
$t['Embed Codes'] = 'Embed Codes';
$t['Embed Selected'] = 'Embed Selected';
$t['Embed URL for trailer'] = 'Embed URL for trailer';
$t['Embed Video'] = 'Embed Video';
$t['Embed videos/files in your site'] = 'Embed videos/files in your site';
$t['Enable 2FA Login'] = 'Enable 2FA Login';
$t['Enable Ads Plugin'] = 'Enable Ads Plugin';
$t['Enable a small button for show the description'] = 'Enable a small button for show the description';
$t['Encode Video'] = 'Encode Video';
$t['Encoder URL'] = 'Encoder URL';
$t['Encoder'] = 'Encoder';
$t['Encrypt Message'] = 'Encrypt Message';
$t['Encrypt'] = 'Encrypt';
$t['Encrypted Text'] = 'Encrypted Text';
$t['End of content'] = 'End of content';
$t['End on'] = 'End on';
$t['End'] = 'End';
$t['Enter Broadcast'] = 'Enter Broadcast';
$t['Enter Code'] = 'Enter Code';
$t['Enter Database Password'] = 'Enter Database Password';
$t['Enter System Admin password'] = 'Enter System Admin password';
$t['Enter text'] = 'Enter text';
$t['Error on Upload'] = 'Error on Upload';
$t['Error on block this user'] = 'Error on block this user';
$t['Error on report this video'] = 'Error on report this video';
$t['Error on save video 1'] = 'Error on save video 1';
$t['Error on save video 2'] = 'Error on save video 2';
$t['Error on unblock this user'] = 'Error on unblock this user';
$t['Events and Holidays'] = 'Events and Holidays';
$t['Executed In'] = 'Executed In';
$t['Executed'] = 'Executed';
$t['Experts Interviews'] = 'Experts Interviews';
$t['Extra Info'] = 'Extra Info';
$t['Extra Permissions'] = 'Extra Permissions';
$t['Fans Only'] = 'Fans Only';
$t['Favicon'] = 'Favicon';
$t['Favorite'] = 'Favorite';
$t['Fewest'] = 'Fewest';
$t['Filter users'] = 'Filter users';
$t['Finish Datetime'] = 'Finish Datetime';
$t['Finish'] = 'Finish';
$t['Finishing Live...'] = 'Finishing Live...';
$t['First Name'] = 'First Name';
$t['First Page Style'] = 'First Page Style';
$t['First step'] = 'First step';
$t['Flat Earth'] = 'Flat Earth';
$t['For Google Analytics code'] = 'For Google Analytics code';
$t['For mature audiences'] = 'For mature audiences';
$t['For mobile a Valid OAuth redirect URIs'] = 'For mobile a Valid OAuth redirect URIs';
$t['For selected, admin view'] = 'For selected, admin view';
$t['For the best results, please Use this image as a guide to create your Channel Art'] = 'For the best results, please Use this image as a guide to create your Channel Art';
$t['For uploaders'] = 'For uploaders';
$t['Forbidden'] = 'Forbidden';
$t['Format'] = 'Format';
$t['Free Space'] = 'Free Space';
$t['Free'] = 'Free';
$t['Fullscreen'] = 'Fullscreen';
$t['Funds successfully transferred'] = 'Funds successfully transferred';
$t['Gallery'] = 'Gallery';
$t['General Audiences'] = 'General Audiences';
$t['General Settings'] = 'General Settings';
$t['General'] = 'General';
$t['Generate Keys'] = 'Generate Keys';
$t['Generate Sitemap'] = 'Generate Sitemap';
$t['Generate'] = 'Generate';
$t['Geo Engineering'] = 'Geo Engineering';
$t['Get Facebook ID and Key'] = 'Get Facebook ID and Key';
$t['Get Google ID and Key'] = 'Get Google ID and Key';
$t['Get Linkedin ID and Key'] = 'Get Linkedin ID and Key';
$t['Get Twitter ID and Key'] = 'Get Twitter ID and Key';
$t['Get Yahoo ID and Key'] = 'Get Yahoo ID and Key';
$t['Go Live'] = 'Go Live';
$t['Go to your'] = 'Go to your';
$t['Google Ad Sense'] = 'Google Ad Sense';
$t['Google Console API Dashboard'] = 'Google Console API Dashboard';
$t['Google ID and Key'] = 'Google ID and Key';
$t['Group Permissions'] = 'Group Permissions';
$t['Groups'] = 'Groups';
$t['Healing Sounds'] = 'Healing Sounds';
$t['Health Check'] = 'Health Check';
$t['Health and Fitness'] = 'Health and Fitness';
$t['Help Page'] = 'Help Page';
$t['Here you can find help, how this platform works.'] = 'Here you can find help, how this platform works.';
$t['Here you find information about how to handle videos.'] = 'Here you find information about how to handle videos.';
$t['Here'] = 'Here';
$t['Hi %s'] = 'Hi %s';
$t['Hide the website to non logged users'] = 'Hide the website to non logged users';
$t['Hours'] = 'Hours';
$t['How to setup the Youtube-Upload feature'] = 'How to setup the Youtube-Upload feature';
$t['Human Experiments'] = 'Human Experiments';
$t['ID'] = 'ID';
$t['IP Address'] = 'IP Address';
$t['IP'] = 'IP';
$t['If public: your domain, so we can see the error directly'] = 'If public: your domain, so we can see the error directly';
$t['If the system finds a valid public key we will challenge you to decrypt a message so that you can log into the system. so make sure you have the private key equivalent to this public key'] = 'If the system finds a valid public key we will challenge you to decrypt a message so that you can log into the system. so make sure you have the private key equivalent to this public key';
$t['If you are not sure how to configure your email'] = 'If you are not sure how to configure your email';
$t['If you can, clear the log-files, reproduce the error and send them. This helps to reduce old or repeating information.'] = 'If you can, clear the log-files, reproduce the error and send them. This helps to reduce old or repeating information.';
$t['If you change your password the Server URL parameters will be changedtoo.'] = 'If you change your password the Server URL parameters will be changedtoo.';
$t['If you want to tell us, what is not working for you, this is great and helps us, to make the software more stable.'] = 'If you want to tell us, what is not working for you, this is great and helps us, to make the software more stable.';
$t['Image'] = 'Image';
$t['Images'] = 'Images';
$t['Import a MP4 File'] = 'Import a MP4 File';
$t['Import'] = 'Import';
$t['In authorized credentials allow the following URIs redirection'] = 'In authorized credentials allow the following URIs redirection';
$t['In case the login window does not open, check how do I disable the pop-up blocker in your browser'] = 'In case the login window does not open, check how do I disable the pop-up blocker in your browser';
$t['In order to enjoy our login feature, you need to allow our pop-ups inyour browser.'] = 'In order to enjoy our login feature, you need to allow our pop-ups inyour browser.';
$t['In the shell, go to the avideo-folder and type "git pull" there. Or, for copy-paste'] = 'In the shell, go to the avideo-folder and type "git pull" there. Or, for copy-paste';
$t['Inactive Users'] = 'Inactive Users';
$t['Info'] = 'Info';
$t['Information'] = 'Information';
$t['Install tables'] = 'Install tables';
$t['Install'] = 'Install';
$t['Installed Plugins'] = 'Installed Plugins';
$t['Installed'] = 'Installed';
$t['Internet Radio'] = 'Internet Radio';
$t['Invalid Captcha'] = 'Invalid Captcha';
$t['Invalid Email'] = 'Invalid Email';
$t['Invalid ID'] = 'Invalid ID';
$t['Invalid filename'] = 'Invalid filename';
$t['Invitation'] = 'Invitation';
$t['Invoice'] = 'Invoice';
$t['Ip'] = 'Ip';
$t['Is Live'] = 'Is Live';
$t['Is not logged'] = 'Is not logged';
$t['Israel Freedom Radio'] = 'Israel Freedom Radio';
$t['Issues on github'] = 'Issues on github';
$t['Join'] = 'Join';
$t['Json'] = 'Json';
$t['Just a quick note to say a big welcome and an even bigger thank you for registering'] = 'Just a quick note to say a big welcome and an even bigger thank you for registering';
$t['Just like admin, this user will have permission to edit and delete videos from any user, including videos from admin'] = 'Just like admin, this user will have permission to edit and delete videos from any user, including videos from admin';
$t['Keep Key Private, Anyone with key can broadcast on your account'] = 'Keep Key Private, Anyone with key can broadcast on your account';
$t['Key Password'] = 'Key Password';
$t['Key cannot be empty'] = 'Key cannot be empty';
$t['Key is empty'] = 'Key is empty';
$t['Key'] = 'Key';
$t['LOG IN'] = 'LOG IN';
$t['Last 10 Attends'] = 'Last 10 Attends';
$t['Last 15 Days'] = 'Last 15 Days';
$t['Last 90 Days'] = 'Last 90 Days';
$t['Last Clone'] = 'Last Clone';
$t['Last Name'] = 'Last Name';
$t['Last login was on '] = 'Last login was on ';
$t['Law'] = 'Law';
$t['Layout'] = 'Layout';
$t['Leave Channel'] = 'Leave Channel';
$t['Leave blank for native code'] = 'Leave blank for native code';
$t['Legal Info'] = 'Legal Info';
$t['Let the encoder network (if configured) choose what is the best encoder to use'] = 'Let the encoder network (if configured) choose what is the best encoder to use';
$t['Let us upload your video to YouTube'] = 'Let us upload your video to YouTube';
$t['Let users request withdrawal from their wallets. The withdrawal must be done manually'] = 'Let users request withdrawal from their wallets. The withdrawal must be done manually';
$t['Link'] = 'Link';
$t['Links'] = 'Links';
$t['List Files'] = 'List Files';
$t['Listed'] = 'Listed';
$t['Live Conference'] = 'Live Conference';
$t['Live Events'] = 'Live Events';
$t['Live Info'] = 'Live Info';
$t['Live Links'] = 'Live Links';
$t['Live Plugin is not enabled'] = 'Live Plugin is not enabled';