aboutsummaryrefslogblamecommitdiffstats
path: root/view/sv/strings.php
blob: eb434df66f8da568e3f7e887d3fac9252e8a10fc (plain) (tree)
1
2
3
4
5
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
     

                                  
                  
 



























































                                                                                      
  





























                                                                                                                                                                                                                                                                                          
  
                                              
                                                              

















































































                                                                                                                                                                                                                                                                                                                                                            
                                                                                                                       


                                                                                                                                                                         
                                                                                                   




                                                                                                                                                    

                                                                                                                               




                                                                                                             

                                                                                                                                                                                           



                                                                                                                                                    
                                                                                                  











































































































                                                                                                                                                                                                                                                                                                                                                                           

                                                                                                                   





































































                                                                                                                                                                                                                                                                                   
                                                          














































































































































































































































































































































































































































































































































































































































































































































































































































































































































































                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
<?php

function string_plural_select($n){
 return ($n != 1);
}

$a->strings['Not Found'] = 'Hittar inte';
$a->strings['Page not found.' ] = 'Sidan hittades inte.' ;
$a->strings['Permission denied'] = '&Aring;tkomst nekad';
$a->strings['Permission denied.'] = '&Aring;tkomst nekad.';
$a->strings['Delete this item?'] = 'Ta bort?';
$a->strings['Comment'] = 'Kommentera';
$a->strings['Create a New Account'] = 'Skapa nytt konto';
$a->strings['Register'] = 'Registrera';
$a->strings['Notifications'] = 'Aviseringar';
$a->strings['Nickname or Email address: '] = 'Anv&auml;ndarnamn eller e-postadress: ';
$a->strings['Password: '] = 'L&ouml;senord: ';
$a->strings['Login'] = 'Logga in';
$a->strings['Nickname/Email/OpenID: '] = 'Anv&auml;ndarnamn/e-post/OpenID: ';
$a->strings["Password \x28if not OpenID\x29: "] = "L&ouml;senord (om inget OpenID): ";
$a->strings['Forgot your password?'] = 'Har du gl&ouml;mt l&ouml;senordet?';
$a->strings['Password Reset'] = 'Gl&ouml;mt l&ouml;senordet?';
$a->strings['Logout'] = 'Logga ut';
$a->strings['prev'] = 'f&ouml;reg';
$a->strings['first'] = 'f&ouml;rsta';
$a->strings['last'] = 'sista';
$a->strings['next'] = 'n&auml;sta';
$a->strings['No contacts'] = 'Inga kontakter';
$a->strings['View Contacts'] = 'Visa kontakter';
$a->strings['Search'] = 'S&ouml;k';
$a->strings['No profile'] = 'Ingen profil';
$a->strings['Connect'] = 'Skicka kontaktf&ouml;rfr&aring;gan';
$a->strings['Location:'] = 'Plats:';
$a->strings[', '] = ', ';
$a->strings['Gender:'] = 'K&ouml;n:';
$a->strings['Status:'] = 'Status:';
$a->strings['Homepage:'] = 'Hemsida:';
$a->strings['Monday'] = 'm&aring;ndag';
$a->strings['Tuesday'] = 'tisdag';
$a->strings['Wednesday'] = 'onsdag';
$a->strings['Thursday'] = 'torsdag';
$a->strings['Friday'] = 'fredag';
$a->strings['Saturday'] = 'l&ouml;rdag';
$a->strings['Sunday'] = 's&ouml;ndag';
$a->strings['January'] = 'januari';
$a->strings['February'] = 'februari';
$a->strings['March'] = 'mars';
$a->strings['April'] = 'april';
$a->strings['May'] = 'maj';
$a->strings['June'] = 'juni';
$a->strings['July'] = 'juli';
$a->strings['August'] = 'augusti';
$a->strings['September'] = 'september';
$a->strings['October'] = 'oktober';
$a->strings['November'] = 'november';
$a->strings['December'] = 'december';
$a->strings['g A l F d'] = 'g A l F d';
$a->strings['Birthday Reminders'] = 'F&ouml;delsedagsp&aring;minnelser';
$a->strings['Birthdays this week:'] = 'F&ouml;delsedagar denna vecka:';
$a->strings["\x28Adjusted for local time\x29"] = "(Justerat till lokal tid)";
$a->strings['[today]'] = '[idag]';
$a->strings['link to source'] = 'l&auml;nk till k&auml;lla';
$a->strings['%d Contact'] = array(
 0 => '%d kontakt',
 1 => '%d kontakter',
);
$a->strings['Normal View'] = 'Byt till normalvy';
$a->strings['New Item View'] = 'Visa nya inl&auml;gg &ouml;verst';
$a->strings['Warning: This group contains %s from an insecure network.'] = 'Varning! Gruppen inneh&aring;ller %s p&aring; os&auml;kra n&auml;tverk.';
$a->strings['Private messages to this group are at risk of public disclosure.'] = 'Meddelanden kan komma att bli synliga f&ouml;r vem som helst p&aring; internet.';
$a->strings['Please enter a link URL:'] = 'Ange en l&auml;nk (URL):';
$a->strings['Please enter a YouTube link:'] = 'Ange en YouTube-l&auml;nk:';
$a->strings["Please enter a video\x28.ogg\x29 link/URL:"] = "Ange l&auml;nk/URL till video (.ogg):";
$a->strings["Please enter an audio\x28.ogg\x29 link/URL:"] = "Ange l&auml;nk/URL till ljud (.ogg):";
$a->strings['Where are you right now?'] = 'Var &auml;r du just nu?';
$a->strings['Enter a title for this item'] = 'Ange en rubrik p&aring; inl&auml;gget';
$a->strings['Share'] = 'Publicera';
$a->strings['Upload photo'] = 'Ladda upp bild';
$a->strings['Insert web link'] = 'Infoga l&auml;nk';
$a->strings['Insert YouTube video'] = 'Infoga video fr&aring;n YouTube';
$a->strings['Insert Vorbis [.ogg] video'] = 'L&auml;gg in video i format Vorbis [.ogg]';
$a->strings['Insert Vorbis [.ogg] audio'] = 'L&auml;gg in ljud i format Vorbis [.ogg]';
$a->strings['Set your location'] = 'Ange plats';
$a->strings['Clear browser location'] = 'Clear browser location';
$a->strings['Set title'] = 'Ange rubrik';
$a->strings['Please wait'] = 'V&auml;nta';
$a->strings['Permission settings'] = '&Aring;tkomstinst&auml;llningar';
$a->strings['CC: email addresses'] = 'Kopia: e-postadresser';
$a->strings['Example: bob@example.com, mary@example.com'] = 'Exempel: adam@exempel.com, bertil@exempel.com';
$a->strings['No such group'] = 'Gruppen finns inte';
$a->strings['Group is empty'] = 'Gruppen &auml;r tom';
$a->strings['Group: '] = 'Grupp: ';
$a->strings['Shared content is covered by the <a href="http://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution 3.0</a> license.'] = 'Inneh&aring;llet omfattas av licensen <a href="http://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution 3.0</a>.';
$a->strings['%d member'] = array(
 0 => '%d medlem',
 1 => '%d medlemmar',
);
$a->strings['Applications'] = 'Applikationer';
$a->strings["Invite Friends"] = "Bjud in folk du k&auml;nner";
$a->strings['Find People With Shared Interests'] = 'S&ouml;k personer som har samma intressen som du';
$a->strings['Connect/Follow'] = 'G&ouml;r till kontakt/F&ouml;lj';
$a->strings['Example: bob@example.com, http://example.com/barbara'] = 'Exempel: adam@exempel.com, http://exempel.com/bertil';
$a->strings['Follow'] = 'F&ouml;lj';
$a->strings['Could not access contact record.'] = 'Hittar inte information om kontakten.';
$a->strings['Could not locate selected profile.'] = 'Hittar inte vald profil.';
$a->strings['Contact updated.'] = 'Kontakten har uppdaterats.';
$a->strings['Failed to update contact record.'] = 'Det blev fel n&auml;r kontakten skulle uppdateras.';
$a->strings['Contact has been '] = 'Kontakten ';
$a->strings['blocked'] = 'sp&auml;rrad';
$a->strings['unblocked'] = 'inte l&auml;ngre sp&auml;rrad';
$a->strings['Contact has been blocked'] = 'Kontakten har sp&auml;rrats';
$a->strings['Contact has been unblocked'] = 'Kontakten &auml;r inte l&auml;ngre sp&auml;rrad';
$a->strings['Contact has been ignored'] = 'Kontakten ignoreras';
$a->strings['Contact has been unignored'] = 'Kontakten ignoreras inte l&auml;ngre';
$a->strings['stopped following'] = 'f&ouml;ljer inte l&auml;ngre';
$a->strings['Contact has been removed.'] = 'Kontakten har tagits bort.';
$a->strings['Contact not found.'] = 'Kontakten hittades inte.';
$a->strings['Mutual Friendship'] = '&Ouml;msesidig v&auml;nskap';
$a->strings['is a fan of yours'] = '&auml;r ett fan till dig';
$a->strings['you are a fan of'] = 'du &auml;r fan till';
$a->strings['Privacy Unavailable'] = 'Inte tillg&auml;ngligt';
$a->strings['Private communications are not available for this contact.'] = 'Det g&aring;r inte att utbyta personliga meddelanden med den h&auml;r kontakten.';
$a->strings['Never'] = 'Aldrig';
$a->strings["\x28Update was successful\x29"] = "(Uppdateringen lyckades)";
$a->strings["\x28Update was not successful\x29"] = "(Uppdateringen lyckades inte)";
$a->strings['Contact Editor'] = '&Auml;ndra kontakter';
$a->strings['Submit'] = 'Spara';
$a->strings['Profile Visibility'] = 'Visning av profil';
$a->strings['Please choose the profile you would like to display to %s when viewing your profile securely.'] = 'V&auml;lj vilken profil som ska visas f&ouml;r %s n&auml;r han/hon bes&ouml;ker din sida.';
$a->strings['Contact Information / Notes'] = 'Kontaktuppgifter/Anteckningar';
$a->strings['Online Reputation'] = 'Rykte online';
$a->strings['Occasionally your friends may wish to inquire about this person\'s online legitimacy.'] = 'Dina kontakter kanske vill veta n&aring;got om den h&auml;r personens rykte online innan de tar kontakt.';
$a->strings['You may help them choose whether or not to interact with this person by providing a <em>reputation</em> to guide them.'] = 'Du kan vara till hj&auml;lp genom att ange personens rykte online.';
$a->strings['Please take a moment to elaborate on this selection if you feel it could be helpful to others.'] = '&Auml;gna g&auml;rna en stund &aring;t att ange detta f&ouml;r att hj&auml;lpa andra.';
$a->strings['Visit $name\'s profile'] = 'Bes&ouml;k $name ';
$a->strings['Block/Unblock contact'] = 'Sp&auml;rra kontakt eller h&auml;v sp&auml;rr';
$a->strings['Ignore contact'] = 'Ignorera kontakt';
$a->strings['Repair contact URL settings'] = 'Repair contact URL settings';
$a->strings["Repair contact URL settings \x28WARNING: Advanced\x29"] = "Repair contact URL settings (WARNING: Advanced)";
$a->strings['Delete contact'] = 'Ta bort kontakt';
$a->strings['Last updated: '] = 'Uppdaterad senast: ';
$a->strings['Update public posts: '] = 'Uppdatera offentliga inl&auml;gg: ';
$a->strings['Update now'] = 'Updatera nu';
$a->strings['Unblock this contact'] = 'H&auml;v sp&auml;rr f&ouml;r kontakt';
$a->strings['Block this contact'] = 'Sp&auml;rra kontakt';
$a->strings['Unignore this contact'] = 'Ignorera inte l&auml;ngre kontakt';
$a->strings['Ignore this contact'] = 'Ignorera kontakt';
$a->strings['Currently blocked'] = 'Sp&auml;rrad';
$a->strings['Currently ignored'] = 'Ignoreras';
$a->strings['Contacts'] = 'Kontakter';
$a->strings['Show Blocked Connections'] = 'Visa sp&auml;rrade kontakter';
$a->strings['Hide Blocked Connections'] = 'D&ouml;lj sp&auml;rrade kontakter';
$a->strings['Finding: '] = 'Hittar: ';
$a->strings['Find'] = 'S&ouml;k';
$a->strings['Visit $username\'s profile'] = 'G&aring; till profilen som tillh&ouml;r $username';
$a->strings['Edit contact'] = '&Auml;ndra kontakt';
$a->strings['Contact settings applied.'] = 'Inst&auml;llningar f&ouml;r kontakter har sparats.';
$a->strings['Contact update failed.'] = 'Det gick inte att uppdatera kontakt.';
$a->strings['Repair Contact Settings'] = 'Repair Contact Settings';
$a->strings['<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact will stop working.'] = '<strong>VARNING! Det h&auml;r &auml;r en avancerad inst&auml;llning</strong> och om du anger felaktig information kommer kommunikationen med den h&auml;r kontakten att sluta fungera.';
$a->strings['Please use your browser \'Back\' button <strong>now</strong> if you are uncertain what to do on this page.'] = 'Anv&auml;nd webbl&auml;sarens bak&aring;tknapp <strong>nu</strong> om du &auml;r os&auml;ker p&aring; vad man g&ouml;r p&aring; den h&auml;r sidan.';
$a->strings['Name'] = 'Namn';
$a->strings['Profile not found.'] = 'Profilen hittades inte.';
$a->strings['Response from remote site was not understood.'] = 'Kunde inte tolka svaret fr&aring;n fj&auml;rrsajten.';
$a->strings['Unexpected response from remote site: '] = 'Ov&auml;ntat svar fr&aring;n fj&auml;rrsajten: ';
$a->strings["Confirmation completed successfully."] = "Bekr&auml;ftat.";
$a->strings['Remote site reported: '] = 'Meddelande fr&aring;n fj&auml;rrsajten: ';
$a->strings["Temporary failure. Please wait and try again."] = "Tillf&auml;lligt fel. F&ouml;rs&ouml;k igen lite senare.";
$a->strings["Introduction failed or was revoked."] = "Kontaktf&ouml;rfr&aring;gan gick inte fram eller har &aring;terkallats.";
$a->strings['Unable to set contact photo.'] = 'Det gick inte att byta profilbild.';
$a->strings['is now friends with'] = '&auml;r nu v&auml;n med';
$a->strings['Our site encryption key is apparently messed up.'] = 'Det &auml;r n&aring;got fel p&aring; webbplatsens krypteringsnyckel.';
$a->strings['Empty site URL was provided or URL could not be decrypted by us.'] = 'Empty site URL was provided or URL could not be decrypted by us.';
$a->strings['Contact record was not found for you on our site.'] = 'Det gick inte att hitta efterfr&aring;gad information p&aring; v&aring;r webbplats.';
$a->strings['The ID provided by your system is a duplicate on our system. It should work if you try again.'] = 'Det ID som angavs av ditt system &auml;r samma som p&aring; v&aring;rt system. Det borde fungera om du provar igen.';
$a->strings['Unable to set your contact credentials on our system.'] = 'Unable to set your contact credentials on our system.';
$a->strings['Unable to update your contact profile details on our system'] = 'Unable to update your contact profile details on our system';
$a->strings["Connection accepted at %s"] = "Kontaktf&ouml;rfr&aring;gan beviljad - %s";
$a->strings['Administrator'] = 'Admin';
$a->strings['noreply'] = 'noreply';
$a->strings["%s commented on an item at %s"] = "%s har kommenterat ett inl&auml;gg p&aring; %s";
$a->strings["This introduction has already been accepted."] = "Den h&auml;r f&ouml;rfr&aring;gan har redan beviljats.";
$a->strings['Profile location is not valid or does not contain profile information.'] = 'Profiladressen &auml;r ogiltig eller inneh&aring;ller ingen profilinformation.';
$a->strings['Warning: profile location has no identifiable owner name.'] = 'Varning! Hittar inget namn som identifierar profilen.';
$a->strings['Warning: profile location has no profile photo.'] = 'Varning! Profilen inneh&aring;ller inte n&aring;gon profilbild.';
$a->strings["Introduction complete."] = "Kontaktf&ouml;rfr&aring;gan/Presentationen &auml;r klar.";
$a->strings['Unrecoverable protocol error.'] = 'Protokollfel.';
$a->strings['Profile unavailable.'] = 'Profilen &auml;r inte tillg&auml;nglig.';
$a->strings['%s has received too many connection requests today.'] = '%s har f&aring;tt f&ouml;r m&aring;nga kontaktf&ouml;rfr&aring;gningar idag.';
$a->strings['Spam protection measures have been invoked.'] = '&Aring;tg&auml;rder f&ouml;r spamskydd har vidtagits.';
$a->strings['Friends are advised to please try again in 24 hours.'] = 'Dina v&auml;nner kan prova igen om ett dygn.';
$a->strings["Invalid locator"] = "Invalid locator";
$a->strings["Unable to resolve your name at the provided location."] = "Unable to resolve your name at the provided location.";
$a->strings['You have already introduced yourself here.'] = 'Du har redan presenterat dig h&auml;r.';
$a->strings['Apparently you are already friends with %s.'] = 'Du och %s &auml;r redan kontakter.';
$a->strings['Invalid profile URL.'] = 'Ogiltig profil-URL.';
$a->strings['Disallowed profile URL.'] = 'Otill&aring;ten profil-URL.';
$a->strings['Your introduction has been sent.'] = 'Kontaktf&ouml;rfr&aring;gan/Presentationen har skickats.';
$a->strings["Please login to confirm introduction."] = "Logga in f&ouml;r att acceptera f&ouml;rfr&aring;gan.";
$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Inloggad med fel identitet. Logga in med <strong>den h&auml;r</strong> profilen.";
$a->strings['Welcome home %s.'] = 'V&auml;lkommen hem %s.';
$a->strings['Please confirm your introduction/connection request to %s.'] = 'Bekr&auml;fta att du vill skicka kontaktf&ouml;rfr&aring;gan till %s.';
$a->strings['Confirm'] = 'Bekr&auml;fta';
$a->strings['[Name Withheld]'] = '[Namnet visas inte]';
$a->strings["Introduction received at "] = "Inkommen kontaktf&ouml;rfr&aring;gan/presentation - ";
$a->strings['Friend/Connection Request'] = 'V&auml;n- eller kontaktf&ouml;rfr&aring;gan';
$a->strings['Examples: jojo@demo.friendika.com, http://demo.friendika.com/profile/jojo, testuser@identi.ca'] = 'Examples: jojo@demo.friendika.com, http://demo.friendika.com/profile/jojo, testuser@identi.ca';
$a->strings['Please answer the following:'] = 'Var v&auml;nlig besvara f&ouml;ljande:';
$a->strings['Does $name know you?'] = 'K&auml;nner $name dig?';
$a->strings['Yes'] = 'Ja';
$a->strings['No'] = 'Nej';
$a->strings['Add a personal note:'] = 'L&auml;gg till ett personligt meddelande:';
$a->strings["Please enter your 'Identity Address' from one of the following supported social networks:"] = "Ange din adress, ditt ID, p&aring; ett av f&ouml;ljande sociala n&auml;tverk:";
$a->strings['Friendika'] = 'Friendika';
$a->strings['StatusNet/Federated Social Web'] = 'StatusNet/Federated Social Web';
$a->strings["Private \x28secure\x29 network"] = "Privat (s&auml;kert) n&auml;tverk";
$a->strings["Public \x28insecure\x29 network"] = "Offentligt (os&auml;kert) n&auml;tverk";
$a->strings['Your Identity Address:'] = 'Din adress (ditt ID):';
$a->strings['Submit Request'] = 'Skicka f&ouml;rfr&aring;gan';
$a->strings['Cancel'] = 'Avbryt';
$a->strings["%d required parameter was not found at the given location"] = array(
 0 => "%d required parameter was not found at the given location",
 1 => "%d required parameters were not found at the given location",
);
$a->strings['Global Directory'] = 'Medlemskatalog f&ouml;r flera sajter (global)';
$a->strings['Site Directory'] = 'Medlemskatalog';
$a->strings['Age: '] = '&Aring;lder: ';
$a->strings['Gender: '] = 'K&ouml;n: ';
$a->strings["No entries \x28some entries may be hidden\x29."] = "Inget att visa. (Man kan v&auml;lja att inte synas h&auml;r)";
$a->strings['Item not found.'] = 'Hittar inte.';
$a->strings['Item has been removed.'] = 'Har tagits bort.';
$a->strings['Item not found'] = 'Hittades inte';
$a->strings['Edit post'] = '&Auml;ndra inl&auml;gg';
$a->strings['Edit'] = '&Auml;ndra';
$a->strings['The profile address specified does not provide adequate information.'] = 'Angiven profiladress ger inte tillr&auml;cklig information.';
$a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Begr&auml;nsad profil. Den h&auml;r personen kommer inte att kunna ta emot personliga meddelanden fr&aring;n dig.';
$a->strings['Unable to retrieve contact information.'] = 'Det gick inte att komma &aring;t kontaktinformationen.';
$a->strings['following'] = 'f&ouml;ljer';
$a->strings['This is Friendika version'] = 'Det h&auml;r &auml;r Friendika version';
$a->strings['running at web location'] = 'som k&ouml;rs p&aring;';
$a->strings['Shared content within the Friendika network is provided under the <a href="http://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution 3.0 license</a>'] = 'Inneh&aring;ll som publiceras inom Friendikan&auml;tverket omfattas av licensen <a href="http://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution 3.0 license</a>';
$a->strings['Please visit <a href="http://project.friendika.com">Project.Friendika.com</a> to learn more about the Friendika project.'] = 'G&aring; till <a href="http://project.friendika.com">Project.Friendika.com</a> om du vill l&auml;sa mer om friendikaprojektet.';
$a->strings['Bug reports and issues: please visit'] = 'Anm&auml;l buggar eller andra problem, g&aring; till';
$a->strings['Suggestions, praise, donations, etc. - please email "Info" at Friendika - dot com'] = 'F&ouml;rslag, ber&ouml;m, donationer, etc. - skicka e-post till "info at friendika punkt com" ';
$a->strings['Installed plugins/addons/apps'] = 'Installerade insticksprogram/applikationer';
$a->strings['No installed plugins/addons/apps'] = 'Inga installerade insticksprogram/applikationer';
$a->strings['Group created.'] = 'Gruppen har skapats.';
$a->strings['Could not create group.'] = 'Det gick inte att skapa gruppen.';
$a->strings['Group not found.'] = 'Gruppen hittades inte.';
$a->strings['Group name changed.'] = 'Gruppens namn har &auml;ndrats.';
$a->strings['Create a group of contacts/friends.'] = 'Skapa en grupp med kontakter/v&auml;nner.';
$a->strings['Group Name: '] = 'Gruppens namn: ';
$a->strings['Group removed.'] = 'Gruppen har tagits bort.';
$a->strings['Unable to remove group.'] = 'Det gick inte att ta bort gruppen.';
$a->strings['Delete'] = 'Ta bort';
$a->strings['Click on a contact to add or remove.'] = 'Klicka p&aring; en kontakt f&ouml;r att l&auml;gga till eller ta bort.';
$a->strings['Group Editor'] = '&Auml;ndra i grupper';
$a->strings['Members'] = 'Medlemmar';
$a->strings['All Contacts'] = 'Alla kontakter';
$a->strings['Help:'] = 'Hj&auml;lp:';
$a->strings['Help'] = 'Hj&auml;lp';
$a->strings["Welcome to %s"] = "V&auml;lkommen till %s";
$a->strings['Could not create/connect to database.'] = 'Det gick inte att skapa eller ansluta till databasen.';
$a->strings['Connected to database.'] = 'Ansluten till databasen.';
$a->strings['Proceed with Installation'] = 'Forts&auml;tt med installationen';
$a->strings['Your Friendika site database has been installed.'] = 'Databasen f&ouml;r din friendikasajt har installerats.';
$a->strings['IMPORTANT: You will need to [manually] setup a scheduled task for the poller.'] = 'IMPORTANT: You will need to [manually] setup a scheduled task for the poller.';
$a->strings['Please see the file "INSTALL.txt".'] = 'Se filen "INSTALL.txt".';
$a->strings['Proceed to registration'] = 'G&aring; vidare till registreringen';
$a->strings['Database import failed.'] = 'Det gick inte att importera databasen.';
$a->strings['You may need to import the file "database.sql" manually using phpmyadmin or mysql.'] = 'Du kanske m&aring;ste importera filen "database.sql" manuellt med phpmyadmin eller mysql.';
$a->strings['Welcome to Friendika.'] = 'V&auml;lkommen till Friendika.';
$a->strings['Friendika Social Network'] = 'Det sociala n&auml;tverket Friendika';
$a->strings['Installation'] = 'Installation';
$a->strings['In order to install Friendika we need to know how to contact your database.'] = 'In order to install Friendika we need to know how to contact your database.';
$a->strings['Please contact your hosting provider or site administrator if you have questions about these settings.'] = 'Please contact your hosting provider or site administrator if you have questions about these settings.';
$a->strings['The database you specify below must already exist. If it does not, please create it before continuing.'] = 'The database you specify below must already exist. If it does not, please create it before continuing.';
$a->strings['Database Server Name'] = 'Database Server Name';
$a->strings['Database Login Name'] = 'Database Login Name';
$a->strings['Database Login Password'] = 'Database Login Password';
$a->strings['Database Name'] = 'Database Name';
$a->strings['Please select a default timezone for your website'] = 'Please select a default timezone for your website';
$a->strings['Could not find a command line version of PHP in the web server PATH.'] = 'Could not find a command line version of PHP in the web server PATH.';
$a->strings['This is required. Please adjust the configuration file .htconfig.php accordingly.'] = 'This is required. Please adjust the configuration file .htconfig.php accordingly.';
$a->strings['The command line version of PHP on your system does not have "register_argc_argv" enabled.'] = 'The command line version of PHP on your system does not have "register_argc_argv" enabled.';
$a->strings['This is required for message delivery to work.'] = 'Det kr&auml;vs f&ouml;r att meddelanden ska kunna levereras.';
$a->strings['Error: the "openssl_pkey_new" function on this system is not able to generate encryption keys'] = 'Fel: funktionen "openssl_pkey_new" kan inte skapa krypteringsnycklar';
$a->strings['If running under Windows, please see "http://www.php.net/manual/en/openssl.installation.php".'] = 'L&auml;s mer p&aring; "http://www.php.net/manual/en/openssl.installation.php" om du k&ouml;r Windows.';
$a->strings['Error: Apache webserver mod-rewrite module is required but not installed.'] = 'Error: Apache webserver mod-rewrite module is required but not installed.';
$a->strings['Error: libCURL PHP module required but not installed.'] = 'Error: libCURL PHP module required but not installed.';
$a->strings['Error: GD graphics PHP module with JPEG support required but not installed.'] = 'Error: GD graphics PHP module with JPEG support required but not installed.';
$a->strings['Error: openssl PHP module required but not installed.'] = 'Error: openssl PHP module required but not installed.';
$a->strings['Error: mysqli PHP module required but not installed.'] = 'Error: mysqli PHP module required but not installed.';
$a->strings['The web installer needs to be able to create a file called ".htconfig.php" in the top folder of your web server and it is unable to do so.'] = 'The web installer needs to be able to create a file called ".htconfig.php" in the top folder of your web server and it is unable to do so.';
$a->strings['This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can.'] = 'This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can.';
$a->strings['Please check with your site documentation or support people to see if this situation can be corrected.'] = 'Please check with your site documentation or support people to see if this situation can be corrected.';
$a->strings['If not, you may be required to perform a manual installation. Please see the file "INSTALL.txt" for instructions.'] = 'If not, you may be required to perform a manual installation. Please see the file "INSTALL.txt" for instructions.';
$a->strings['The database configuration file ".htconfig.php" could not be written. Please use the enclosed text to create a configuration file in your web server root.'] = 'The database configuration file ".htconfig.php" could not be written. Please use the enclosed text to create a configuration file in your web server root.';
$a->strings['Errors encountered creating database tables.'] = 'Fel vid skapandet av databastabeller.';
$a->strings['%s : Not a valid email address.'] = '%s : Ogiltig e-postadress.';
$a->strings['%s : Message delivery failed.'] = '%s : Meddelandet kom inte fram.';
$a->strings['Send invitations'] = 'Skicka inbjudningar';
$a->strings['Enter email addresses, one per line:'] = 'Ange e-postadresser, en per rad:';
$a->strings['Your message:'] = 'Meddelande:';
$a->strings['To accept this invitation, please visit:'] = 'G&aring; hit f&ouml;r att tacka ja till inbjudan:';
$a->strings['Once you have registered, please connect with me via my profile page at:'] = 'Vi kan bli kontakter via min profil. Bes&ouml;k min profil h&auml;r n&auml;r du har registrerat dig:';
$a->strings["%d message sent."] = array(
 0 => "%d meddelande har skickats.",
 1 => "%d meddelanden har skickats.",
);
$a->strings['Unable to locate original post.'] = 'Hittar inte det ursprungliga inl&auml;gget.';
$a->strings['Empty post discarded.'] = 'Tomt inl&auml;gg. Inte sparat.';
$a->strings['Wall Photos'] = 'Loggbilder';
$a->strings["%s commented on your item at %s"] = "%s har kommenterat ditt inl&auml;gg p&aring; %s";
$a->strings["%s posted on your profile wall at %s"] = "%s har gjort ett inl&auml;gg p&aring; din logg p&aring; %s";
$a->strings['System error. Post not saved.'] = 'N&aring;got gick fel. Inl&auml;gget sparades inte.';
$a->strings['You may visit them online at'] = 'Bes&ouml;k online p&aring;';
$a->strings['Please contact the sender by replying to this post if you do not wish to receive these messages.'] = 'Kontakta avs&auml;ndaren genom att svara p&aring; det h&auml;r meddelandet om du inte vill ha s&aring;dana h&auml;r meddelanden.';
$a->strings['%s posted an update.'] = '%s har gjort ett inl&auml;gg.';
$a->strings['photo'] = 'bild';
$a->strings['status'] = 'status';
$a->strings['%1$s likes %2$s\'s %3$s'] = '%1$s gillar %2$s\'s %3$s';
$a->strings['%1$s doesn\'t like %2$s\'s %3$s'] = '%1$s ogillar %2$s\'s %3$s';
$a->strings['Remote privacy information not available.'] = 'Remote privacy information not available.';
$a->strings['Visible to:'] = 'Synlig f&ouml;r:';
$a->strings['Password reset request issued. Check your email.'] = 'Nytt l&ouml;senord har beg&auml;rts. Kolla din mail.';
$a->strings['Password reset requested at %s'] = 'Nytt l&ouml;senord p&aring; %s har beg&auml;rts';
$a->strings["Request could not be verified. \x28You may have previously submitted it.\x29 Password reset failed."] = "Beg&auml;ran kunde inte verifieras. (Du kanske redan skickat den?) Det gick inte att byta l&ouml;senord.";
$a->strings['Your password has been reset as requested.'] = 'Nu har du f&aring;tt ett nytt l&ouml;senord.';
$a->strings['Your new password is'] = 'Det nya l&ouml;senordet &auml;r';
$a->strings['Save or copy your new password - and then'] = 'Spara eller kopiera l&ouml;senordet och';
$a->strings['click here to login'] = 'klicka h&auml;r f&ouml;r att logga in';
$a->strings['Your password may be changed from the <em>Settings</em> page after successful login.'] = 'N&auml;r du loggat in kan du byta l&ouml;senord p&aring; sidan <em>Inst&auml;llningar</em>.';
$a->strings['Forgot your Password?'] = 'Gl&ouml;mt l&ouml;senordet?';
$a->strings['Enter your email address and submit to have your password reset. Then check your email for further instructions.'] = 'Ange din e-postadress f&ouml;r att f&aring; ett nytt l&ouml;senord. Du kommer att f&aring; ett meddelande med vidare instruktioner via e-post.';
$a->strings['Nickname or Email: '] = 'Anv&auml;ndarnamn eller e-post:';
$a->strings['Reset'] = 'Skicka';
$a->strings["Welcome back %s"] = "V&auml;lkommen tillbaka %s";
$a->strings['Manage Identities and/or Pages'] = 'Hantera identiteter eller sidor';
$a->strings["\x28Toggle between different identities or community/group pages which share your account details.\x29"] = "(V&auml;xla mellan olika identiteter eller gemenskaper/gruppsidor som &auml;r kopplade till ditt konto.)";
$a->strings['Select an identity to manage: '] = 'V&auml;lj vilken identitet du vill hantera: ';
$a->strings['Profile Match'] = 'Matcha profiler';
$a->strings['No matches'] = 'Ingen tr&auml;ff';
$a->strings['No recipient selected.'] = 'Ingen mottagare har valts.';
$a->strings['[no subject]'] = '[ingen rubrik]';
$a->strings['Unable to locate contact information.'] = 'Det gick inte att hitta kontaktuppgifterna.';
$a->strings['Message sent.'] = 'Meddelandet har skickats.';
$a->strings['Message could not be sent.'] = 'Det gick inte att skicka meddelandet.';
$a->strings['Messages'] = 'Meddelanden';
$a->strings['Inbox'] = 'Inkorg';
$a->strings['Outbox'] = 'Utkorg';
$a->strings['New Message'] = 'Nytt meddelande';
$a->strings['Message deleted.'] = 'Meddelandet togs bort.';
$a->strings['Conversation removed.'] = 'Konversationen togs bort.';
$a->strings['Send Private Message'] = 'Skicka personligt meddelande';
$a->strings['To:'] = 'Till:';
$a->strings['Subject:'] = 'Rubrik:';
$a->strings['No messages.'] = 'Inga meddelanden.';
$a->strings['Delete conversation'] = 'Ta bort konversation';
$a->strings['D, d M Y - g:i A'] = 'D, d M Y - g:i A';
$a->strings['Message not available.'] = 'Meddelandet &auml;r inte tillg&auml;ngligt.';
$a->strings['Delete message'] = 'Ta bort meddelande';
$a->strings['Send Reply'] = 'Skicka svar';
$a->strings['Invalid request identifier.'] = 'Invalid request identifier.';
$a->strings['Discard'] = 'Ta bort';
$a->strings['Ignore'] = 'Ignorera';
$a->strings['Pending Friend/Connect Notifications'] = 'V&auml;ntande kontaktf&ouml;rfr&aring;gningar';
$a->strings['Show Ignored Requests'] = 'Visa f&ouml;rfr&aring;gningar du ignorerat';
$a->strings['Hide Ignored Requests'] = 'D&ouml;lj f&ouml;rfr&aring;gningar du ignorerat';
$a->strings['Claims to be known to you: '] = 'H&auml;vdar att du vet vem han/hon &auml;r: ';
$a->strings['yes'] = 'ja';
$a->strings['no'] = 'nej';
$a->strings['Approve as: '] = 'Godk&auml;nn och l&auml;gg till som: ';
$a->strings['Friend'] = 'V&auml;n';
$a->strings['Fan/Admirer'] = 'Fan/Beundrare';
$a->strings['Notification type: '] = 'Typ av avisering: ';
$a->strings['Friend/Connect Request'] = 'V&auml;n- eller kontaktf&ouml;rfr&aring;gan';
$a->strings['New Follower'] = 'En som vill f&ouml;lja dig';
$a->strings['Approve'] = 'Godk&auml;nn';
$a->strings['No notifications.'] = 'Inga aviseringar.';
$a->strings['User registrations waiting for confirm'] = 'Anv&auml;ndare som registrerat sig och inv&auml;ntar godk&auml;nnande';
$a->strings['Deny'] = 'Avsl&aring;';
$a->strings['No registrations.'] = 'Inga registreringar.';
$a->strings['Post successful.'] = 'Inlagt.';
$a->strings['Login failed.'] = 'Inloggningen misslyckades.';
$a->strings["Welcome back "] = "V&auml;lkommen tillbaka ";
$a->strings['Photo Albums'] = 'Fotoalbum';
$a->strings['Contact Photos'] = 'Dina kontakters bilder';
$a->strings['Contact information unavailable'] = 'Kommer inte &aring;t kontaktuppgifter.';
$a->strings['Profile Photos'] = 'Profilbilder';
$a->strings['Album not found.'] = 'Albumet finns inte.';
$a->strings['Delete Album'] = 'Ta bort album';
$a->strings['Delete Photo'] = 'Ta bort bild';
$a->strings['was tagged in a'] = 'har taggats i';
$a->strings['by'] = 'av';
$a->strings['Image exceeds size limit of '] = 'Bilden &ouml;verskrider den till&aring;tna storleken ';
$a->strings['Unable to process image.'] = 'Det gick inte att behandla bilden.';
$a->strings['Image upload failed.'] = 'Fel vid bilduppladdning.';
$a->strings['No photos selected'] = 'Inga bilder har valts';
$a->strings['Upload Photos'] = 'Ladda upp bilder';
$a->strings['New album name: '] = 'Nytt album med namn: ';
$a->strings['or existing album name: '] = 'eller befintligt album med namn: ';
$a->strings['Permissions'] = '&Aring;tkomst';
$a->strings['Edit Album'] = 'Redigera album';
$a->strings['View Photo'] = 'Visa bild';
$a->strings['Photo not available'] = 'Bilden &auml;r inte tillg&auml;nglig';
$a->strings['Edit photo'] = 'Hantera bild';
$a->strings['Private Message'] = 'Personligt meddelande';
$a->strings['<< Prev'] = '<< F&ouml;reg';
$a->strings['View Full Size'] = 'Visa fullstor';
$a->strings['Next >>'] = 'N&auml;sta >>';
$a->strings['Tags: '] = 'Taggar: ';
$a->strings['[Remove any tag]'] = '[Remove any tag]';
$a->strings['New album name'] = 'Nytt album med namn';
$a->strings['Caption'] = 'Caption';
$a->strings['Add a Tag'] = 'L&auml;gg till tagg';
$a->strings['Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping'] = 'Exempel: @adam, @Anna_Andersson, @johan@exempel.com, #Stockholm, #camping';
$a->strings["I like this \x28toggle\x29"] = "Jag gillar det h&auml;r (v&auml;xla)";
$a->strings["I don't like this \x28toggle\x29"] = "Jag ogillar det h&auml;r (v&auml;xla)";
$a->strings['This is you'] = 'Det h&auml;r &auml;r du';
$a->strings['Recent Photos'] = 'Nyligen tillagda bilder';
$a->strings['Upload New Photos'] = 'Ladda upp bilder';
$a->strings['View Album'] = 'Titta i album';
$a->strings['Status'] = 'Status';
$a->strings['Profile'] = 'Profil';
$a->strings['Photos'] = 'Bilder';
$a->strings['Image uploaded but image cropping failed.'] = 'Bilden laddades upp men det blev fel n&auml;r den skulle besk&auml;ras.';
$a->strings['Unable to process image'] = 'Det gick inte att behandla bilden';
$a->strings['Upload File:'] = 'Ladda upp fil:';
$a->strings['Upload Profile Photo'] = 'Ladda upp profilbild';
$a->strings['Upload'] = 'Ladda upp';
$a->strings['or'] = 'eller';
$a->strings['select a photo from your photo albums'] = 'v&auml;lj en bild fr&aring;n ett album';
$a->strings['Crop Image'] = 'Besk&auml;r bild';
$a->strings['Please adjust the image cropping for optimum viewing.'] = 'V&auml;lj hur bilden ska besk&auml;ras f&ouml;r att bli s&aring; bra som m&ouml;jligt.';
$a->strings['Done Editing'] = 'Spara';
$a->strings['Image uploaded successfully.'] = 'Bilden har laddats upp.';
$a->strings['Profile Name is required.'] = 'Profilen m&aring;ste ha ett namn.';
$a->strings['Profile updated.'] = 'Profilen har uppdaterats.';
$a->strings['Profile deleted.'] = 'Profilen har tagits bort.';
$a->strings['Profile-'] = 'Profil-';
$a->strings['New profile created.'] = 'En ny profil har skapats.';
$a->strings['Profile unavailable to clone.'] = 'Det gick inte att klona profilen.';
$a->strings['Hide my contact/friend list from viewers of this profile?'] = 'D&ouml;lj min kontaktlista f&ouml;r personer som ser den h&auml;r profilen?';
$a->strings['Edit Profile Details'] = '&Auml;ndra profilen';
$a->strings['View this profile'] = 'Titta p&aring; profilen';
$a->strings['Create a new profile using these settings'] = 'Skapa en ny profil med dessa inst&auml;llningar';
$a->strings['Clone this profile'] = 'Kopiera profil';
$a->strings['Delete this profile'] = 'Ta bort profil';
$a->strings['Profile Name:'] = 'Profilens namn:';
$a->strings['Your Full Name:'] = 'Fullst&auml;ndigt namn:';
$a->strings['Title/Description:'] = 'Titel/Beskrivning:';
$a->strings['Your Gender:'] = 'K&ouml;n:';
$a->strings["Birthday \x28y/m/d\x29:"] = "F&ouml;delsedag \x28y/m/d\x29:";
$a->strings['Street Address:'] = 'Gatuadress:';
$a->strings['Locality/City:'] = 'Plats/Stad:';
$a->strings['Postal/Zip Code:'] = 'Postnummer:';
$a->strings['Country:'] = 'Land:';
$a->strings['Region/State:'] = 'Region:';
$a->strings['<span class="heart">&hearts;</span> Marital Status:'] = '<span class="heart">&hearts;</span> Civilst&aring;nd:';
$a->strings["Who: \x28if applicable\x29"] = "Vem: (om till&auml;mpligt)";
$a->strings['Examples: cathy123, Cathy Williams, cathy@example.com'] = 'Exempel: kalle123, Johanna Johansson, pelle@exempel.com';
$a->strings['Sexual Preference:'] = 'Sexualitet';
$a->strings['Homepage URL:'] = 'Hemsida: (URL)';
$a->strings['Political Views:'] = 'Politisk &aring;sk&aring;dning:';
$a->strings['Religious Views:'] = 'Religion:';
$a->strings['Public Keywords:'] = 'Offentliga nyckelord:';
$a->strings['Private Keywords:'] = 'Privata nyckelord:';
$a->strings['Example: fishing photography software'] = 'Exempel: fiske fotografering programmering';
$a->strings["\x28Used for suggesting potential friends, can be seen by others\x29"] = "(Obs, synliga f&ouml;r andra. Anv&auml;nds f&ouml;r att f&ouml;resl&aring; potentiella v&auml;nner.)";
$a->strings["\x28Used for searching profiles, never shown to others\x29"] = "(Obs, kan ge s&ouml;ktr&auml;ffar vid s&ouml;kning av profiler. Visas annars inte f&ouml;r andra.)";
$a->strings['Tell us about yourself...'] = 'Beskriv dig sj&auml;lv...';
$a->strings['Hobbies/Interests'] = 'Hobbys/Intressen';
$a->strings['Contact information and Social Networks'] = 'Kontaktuppgifter och sociala n&auml;tverk';
$a->strings['Musical interests'] = 'Musik';
$a->strings['Books, literature'] = 'B&ouml;cker, litteratur';
$a->strings['Television'] = 'TV';
$a->strings['Film/dance/culture/entertainment'] = 'Film/Dans/Kultur/N&ouml;je';
$a->strings['Love/romance'] = 'K&auml;rlek/Romantik';
$a->strings['Work/employment'] = 'Arbete';
$a->strings['School/education'] = 'Skola/Utbildning';
$a->strings['This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet.'] = 'Det h&auml;r &auml;r din <strong>offentliga</strong> profil.<br />Den <strong>kan vara synlig f&ouml;r vem som helst</strong> p&aring; internet.';
$a->strings['Profiles'] = 'Profiler';
$a->strings['Change profile photo'] = 'Byt profilbild';
$a->strings['Create New Profile'] = 'Skapa ny profil';
$a->strings['Profile Image'] = 'Profilbild';
$a->strings['Visible to everybody'] = 'Synlig f&ouml;r alla';
$a->strings['Edit visibility'] = '&Auml;nda vilka som ska kunna se';
$a->strings['Invalid profile identifier.'] = 'Ogiltigt profil-ID.';
$a->strings['Profile Visibility Editor'] = '&Auml;nda vilka som ska kunna se profil';
$a->strings['Visible To'] = 'Synlig f&ouml;r';
$a->strings["All Contacts \x28with secure profile access\x29"] = "Alla kontakter (med s&auml;ker tillg&aring;ng till din profil)";
$a->strings['Invalid OpenID url'] = 'Ogiltig OpenID-URL';
$a->strings['Please enter the required information.'] = 'Fyll i alla obligatoriska f&auml;lt.';
$a->strings['Please use a shorter name.'] = 'V&auml;lj ett kortare namn.';
$a->strings['Name too short.'] = 'Namnet &auml;r f&ouml;r kort.';
$a->strings["That doesn't appear to be your full \x28First Last\x29 name."] = 'Du verkar inte ha angett ditt fullst&auml;ndiga namn.';
$a->strings['Your email domain is not among those allowed on this site.'] = 'Din e-postdom&auml;n &auml;r inte till&aring;ten p&aring; den h&auml;r webbplatsen.';
$a->strings['Not a valid email address.'] = 'Ogiltig e-postadress.';
$a->strings['Cannot use that email.'] = 'Otill&aring;ten e-postadress.';
$a->strings['Your "nickname" can only contain "a-z", "0-9", "-", and "_", and must also begin with a letter.'] = 'Ditt anv&auml;ndarnamn f&aring;r bara inneh&aring;lla a-z, 0-9, - och _, och m&aring;ste dessutom b&ouml;rja med en bokstav.';
$a->strings['Nickname is already registered. Please choose another.'] = 'Anv&auml;ndarnamnet &auml;r upptaget. V&auml;lj ett annat.';
$a->strings['SERIOUS ERROR: Generation of security keys failed.'] = 'SERIOUS ERROR: Generation of security keys failed.';
$a->strings['An error occurred during registration. Please try again.'] = 'N&aring;got gick fel vid registreringen. F&ouml;rs&ouml;k igen.';
$a->strings['An error occurred creating your default profile. Please try again.'] = 'Det blev fel n&auml;r din standardprofil skulle skapas. Prova igen.';
$a->strings['Registration successful. Please check your email for further instructions.'] = 'Registrering klar. Kolla din e-post f&ouml;r vidare information.';
$a->strings['Failed to send email message. Here is the message that failed.'] = 'Det gick inte att skicka e-brevet. H&auml;r &auml;r meddelandet som inte kunde skickas.';
$a->strings['Your registration can not be processed.'] = 'Det g&aring;r inte att behandla registreringen.';
$a->strings['Your registration is pending approval by the site owner.'] = 'Din registrering inv&auml;ntar godk&auml;nnande av webbplatsens &auml;gare.';
$a->strings["You may \x28optionally\x29 fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Om du vill kan du fylla i detta formul&auml;r via OpenID genom att ange ditt OpenID och klicka p&aring; Registrera.";
$a->strings['If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.'] = 'Om du inte vet vad OpenID &auml;r, eller inte vill anv&auml;nda det, kan du l&auml;mna det f&auml;ltet tomt och fylla i resten.';
$a->strings["Your OpenID \x28optional\x29: "] = "OpenID (om du vill): ";
$a->strings['Members of this network prefer to communicate with real people who use their real names.'] = 'Medlemmarna i det h&auml;r n&auml;tverket f&ouml;redrar att kommunicera med riktiga m&auml;nniskor som anv&auml;nder sina riktiga namn.';
$a->strings['Include your profile in member directory?'] = 'Ta med profilen i medlemskatalogen?';
$a->strings['Registration'] = 'Registrering';
$a->strings['Your Full Name ' . "\x28" . 'e.g. Joe Smith' . "\x29" . ': '] = 'Fullst&auml;ndigt namn ' . "\x28" . 't. ex. Karl Karlsson' . "\x29" . ': ';
$a->strings['Your Email Address: '] = 'E-postadress: ';
$a->strings['Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \'<strong>nickname@$sitename</strong>\'.'] = 'V&auml;lj ett anv&auml;ndarnamn. Det m&aring;ste inledas med en bokstav. Din profiladress p&aring; den h&auml;r webbplatsen blir \'<strong>anv&auml;ndarnamn@$sitename</strong>\'.';
$a->strings['Choose a nickname: '] = 'V&auml;lj ett anv&auml;ndarnamn: ';
$a->strings['Please login.'] = 'Logga in.';
$a->strings['Account approved.'] = 'Kontot har godk&auml;nts.';
$a->strings['Remove My Account'] = 'Ta bort mitt konto';
$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'Detta kommer att ta bort kontot helt och h&aring;llet. Efter att det &auml;r gjort g&aring;r det inte att &aring;terst&auml;lla.';
$a->strings['Please enter your password for verification:'] = 'Ange l&ouml;senordet igen f&ouml;r s&auml;kerhets skull:';
$a->strings['No results.'] = 'Inga resultat.';
$a->strings['Passwords do not match. Password unchanged.'] = 'L&ouml;senorden skiljer sig &aring;t. L&ouml;senordet &auml;ndras inte.';
$a->strings['Empty passwords are not allowed. Password unchanged.'] = 'L&ouml;senordet f&aring;r inte vara blankt. L&ouml;senordet &auml;ndras inte.';
$a->strings['Password changed.'] = 'L&ouml;senordet har &auml;ndrats.';
$a->strings['Password update failed. Please try again.'] = 'Det blev fel n&auml;r l&ouml;senordet skulle &auml;ndras. F&ouml;rs&ouml;k igen.';
$a->strings[' Please use a shorter name.'] = ' Anv&auml;nd ett kortare namn.';
$a->strings[' Name too short.'] = ' Namnet &auml;r f&ouml;r kort.';
$a->strings[' Not valid email.'] = ' Ogiltig e-postadress.';
$a->strings[' Cannot change to that email.'] = ' &Auml;ndring till den e-postadressen g&ouml;rs inte.';
$a->strings['Settings updated.'] = 'Inst&auml;llningarna har uppdaterats.';
$a->strings['Plugin Settings'] = 'Inst&auml;llningar f&ouml;r insticksprogram';
$a->strings['Account Settings'] = 'Kontoinst&auml;llningar';
$a->strings['No Plugin settings configured'] = 'Det finns inga inst&auml;llningar f&ouml;r insticksprogram';
$a->strings['Normal Account'] = 'Vanligt konto';
$a->strings['This account is a normal personal profile'] = 'Kontot &auml;r ett vanligt personligt konto';
$a->strings['Soapbox Account'] = 'Konto med env&auml;gskommunikation';
$a->strings['Automatically approve all connection/friend requests as read-only fans'] = 'Kontaktf&ouml;rfr&aring;gningar godk&auml;nns automatiskt som fans. De kan se vad du skriver men har inte samma r&auml;ttigheter som v&auml;nner.';
$a->strings['Community/Celebrity Account'] = 'Gemenskap eller k&auml;ndiskonto.';
$a->strings['Automatically approve all connection/friend requests as read-write fans'] = 'Kontaktf&ouml;rfr&aring;gningar godk&auml;nns automatiskt som fans med fullst&auml;ndig tv&aring;v&auml;gskommunikation.';
$a->strings['Automatic Friend Account'] = 'Konto med automatiskt godk&auml;nnande av v&auml;nner.';
$a->strings['Automatically approve all connection/friend requests as friends'] = 'Kontaktf&ouml;rfr&aring;gningar godk&auml;nns automatiskt som v&auml;nner.';
$a->strings['OpenID: '] = 'OpenID: ';
$a->strings["&nbsp;\x28Optional\x29 Allow this OpenID to login to this account."] = "&nbsp;\x28Valfritt\x29 Till&aring;t inloggning med detta OpenID p&aring; det h&auml;r kontot.";
$a->strings['Publish your default profile in site directory?'] = 'Vill du att din standardprofil ska synas i den h&auml;r sajtens medlemskatalog?';
$a->strings['Publish your default profile in global social directory?'] = 'Vill du att din standardprofil ska synas i den globala medlemskatalogen?';
$a->strings['Profile is <strong>not published</strong>.'] = 'Profilen &auml;r <strong>inte publicerad</strong>.';
$a->strings['Your Identity Address is'] = 'Din adress, ditt ID, &auml;r';
$a->strings['Export Personal Data'] = 'Exportera personlig information';
$a->strings['Basic Settings'] = 'Grundl&auml;ggande inst&auml;llningar';
$a->strings['Full Name:'] = 'Fullst&auml;ndigt namn:';
$a->strings['Email Address:'] = 'E-postadress:';
$a->strings['Your Timezone:'] = 'Tidszon:';
$a->strings['Default Post Location:'] = 'Default Post Location:';
$a->strings['Use Browser Location:'] = 'Anv&auml;nd webbl&auml;sarens positionering:';
$a->strings['Display Theme:'] = 'Tema/utseende:';
$a->strings['Security and Privacy Settings'] = 'Inst&auml;llningar f&ouml;r s&auml;kerhet och sekretess';
$a->strings['Maximum Friend Requests/Day:'] = 'Maximalt antal kontaktf&ouml;rfr&aring;gningar per dygn:';
$a->strings["\x28to prevent spam abuse\x29"] = "(f&ouml;r att motverka spam)";
$a->strings['Allow friends to post to your profile page:'] = 'L&aring;t kontakter g&ouml;ra inl&auml;gg p&aring; din profilsida:';
$a->strings["Automatically expire \x28delete\x29 posts older than"] = "Ta automatiskt bort inl&auml;gg som &auml;r &auml;ldre &auml;n";
$a->strings['days'] = 'dagar';
$a->strings['Notification Settings'] = 'Aviseringsinst&auml;llningar';
$a->strings['Send a notification email when:'] = 'Skicka ett aviseringsmail n&auml;r:';
$a->strings['You receive an introduction'] = 'En kontaktf&ouml;rfr&aring;gan anl&auml;nder';
$a->strings['Your introductions are confirmed'] = 'Dina f&ouml;rfr&aring;gningar godk&auml;nns';
$a->strings['Someone writes on your profile wall'] = 'N&aring;gon g&ouml;r inl&auml;gg p&aring; din profilsida';
$a->strings['Someone writes a followup comment'] = 'N&aring;gon g&ouml;r ett inl&auml;gg i samma tr&aring;d som du';
$a->strings['You receive a private message'] = 'Du f&aring;r personliga meddelanden';
$a->strings['Password Settings'] = 'L&ouml;senordsinst&auml;llningar';
$a->strings['Leave password fields blank unless changing'] = 'L&auml;mna f&auml;ltet tomt om du inte vill byta l&ouml;senord';
$a->strings['New Password:'] = 'Nytt l&ouml;senord';
$a->strings['Confirm:'] = 'Bekr&auml;fta (repetera):';
$a->strings['Advanced Page Settings'] = 'Avancerat';
$a->strings['Default Post Permissions'] = 'Standard&aring;tkomst f&ouml;r inl&auml;gg';
$a->strings["\x28click to open/close\x29"] = "(klicka f&ouml;r att &ouml;ppna/st&auml;nga)";
$a->strings['Tag removed'] = 'Taggen har tagits bort';
$a->strings['Remove Item Tag'] = 'Ta bort tagg';
$a->strings['Select a tag to remove: '] = 'V&auml;lj vilken tagg som ska tas bort: ';
$a->strings['Remove'] = 'Ta bort';
$a->strings['No contacts.'] = 'Inga kontakter.';
$a->strings['Visible To:'] = 'Synlig f&ouml;r:';
$a->strings['Groups'] = 'Grupper';
$a->strings['Except For:'] = 'Utom f&ouml;r:';
$a->strings['Logged out.'] = 'Utloggad.';
$a->strings['Unknown | Not categorised'] = 'Ok&auml;nd | Inte kategoriserad';
$a->strings['Block immediately'] = 'Sp&auml;rra omedelbart';
$a->strings['Shady, spammer, self-marketer'] = 'Skum, spammare, reklamspridare';
$a->strings['Known to me, but no opinion'] = 'Jag vet vem det &auml;r, men har ingen &aring;sikt';
$a->strings['OK, probably harmless'] = 'OK, antagligen harml&ouml;s';
$a->strings['Reputable, has my trust'] = 'P&aring;litlig, jag litar p&aring; personen';
$a->strings['Frequently'] = 'Ofta';
$a->strings['Hourly'] = 'En g&aring;ng i timmen';
$a->strings['Twice daily'] = 'Tv&aring; g&aring;nger om dagen';
$a->strings['Daily'] = 'Dagligen';
$a->strings['Weekly'] = 'Veckovis';
$a->strings['Monthly'] = 'M&aring;nadsvis';
$a->strings['View %s\'s profile'] = 'G&aring; till profilen som tillh&ouml;r %s ';
$a->strings['View in context'] = 'Visa i sitt sammanhang';
$a->strings['See more posts like this'] = 'Leta inl&auml;gg som liknar det h&auml;r';
$a->strings['See all %d comments'] = 'Visa alla %d kommentarer';
$a->strings['to'] = 'till';
$a->strings['Wall-to-Wall'] = 'Profil-till-profil';
$a->strings['via Wall-To-Wall:'] = 'via profil-till-profil:';
$a->strings['%s likes this.'] = '%s gillar det h&auml;r.';
$a->strings['%s doesn\'t like this.'] = '%s ogillar det h&auml;r.';
$a->strings['<span  %1$s>%2$d people</span> like this.'] = '<span  %1$s>%2$d personer</span> gillar det h&auml;r.';
$a->strings['<span  %1$s>%2$d people</span> don\'t like this.'] = '<span  %1$s>%2$d personer</span> ogillar det h&auml;r.';
$a->strings['and'] = 'och';
$a->strings[', and %d other people'] = ', och ytterligare %d personer';
$a->strings['%s like this.'] = '%s gillar det h&auml;r.';
$a->strings['%s don\'t like this.'] = '%s ogillar det h&auml;r.';
$a->strings['Miscellaneous'] = 'Blandat';
$a->strings['less than a second ago'] = 'f&ouml;r mindre &auml;n en sekund sedan';
$a->strings['year'] = '&aring;r';
$a->strings['years'] = '&aring;r';
$a->strings['month'] = 'm&aring;nad';
$a->strings['months'] = 'm&aring;nader';
$a->strings['week'] = 'vecka';
$a->strings['weeks'] = 'veckor';
$a->strings['day'] = 'dag';
$a->strings['hour'] = 'timme';
$a->strings['hours'] = 'timmar';
$a->strings['minute'] = 'minut';
$a->strings['minutes'] = 'minuter';
$a->strings['second'] = 'sekund';
$a->strings['seconds'] = 'sekunder';
$a->strings[' ago'] = ' sedan';
$a->strings['Cannot locate DNS info for database server \'%s\''] = 'Cannot locate DNS info for database server \'%s\'';
$a->strings['Create a new group'] = 'Skapa ny grupp';
$a->strings['Everybody'] = 'Alla';
$a->strings['Birthday:'] = 'F&ouml;delsedatum:';
$a->strings['Home'] = 'Hem';
$a->strings['Apps'] = 'Apps';
$a->strings['Directory'] = 'Medlemskatalog';
$a->strings['Network'] = 'N&auml;tverk';
$a->strings['Manage'] = 'Hantera';
$a->strings['Settings'] = 'Inst&auml;llningar';
$a->strings['Embedding disabled'] = 'Funktionen b&auml;dda in &auml;r avst&auml;ngd';
$a->strings['j F, Y'] = 'j F, Y';
$a->strings['j F'] = 'j F';
$a->strings['Age:'] = '&Aring;lder:';
$a->strings['<span class="heart">&hearts;</span> Status:'] = '<span class="heart">&hearts;</span> Civilst&aring;nd:';
$a->strings['Religion:'] = 'Religion:';
$a->strings['About:'] = 'Om:';
$a->strings['Hobbies/Interests:'] = 'Hobbys/Intressen:';
$a->strings['Contact information and Social Networks:'] = 'Kontaktuppgifter och sociala n&auml;tverk:';
$a->strings['Musical interests:'] = 'Musik:';
$a->strings['Books, literature:'] = 'B&ouml;cker/Litteratur:';
$a->strings['Television:'] = 'TV:';
$a->strings['Film/dance/culture/entertainment:'] = 'Film/Dans/Kultur/Underh&aring;llning:';
$a->strings['Love/Romance:'] = 'K&auml;rlek/Romantik:';
$a->strings['Work/employment:'] = 'Arbete:';
$a->strings['School/education:'] = 'Skola/Utbildning:';
$a->strings['Male'] = 'Man';
$a->strings['Female'] = 'Kvinna';
$a->strings['Currently Male'] = 'F&ouml;r n&auml;rvarande man';
$a->strings['Currently Female'] = 'F&ouml;r n&auml;rvarande kvinna';
$a->strings['Mostly Male'] = 'Mestadels man';
$a->strings['Mostly Female'] = 'Mestadels kvinna';
$a->strings['Transgender'] = 'Transgender';
$a->strings['Intersex'] = 'Intersex';
$a->strings['Transsexual'] = 'Transsexuell';
$a->strings['Hermaphrodite'] = 'Hermafrodit';
$a->strings['Neuter'] = 'K&ouml;nsl&ouml;s';
$a->strings['Non-specific'] = 'Oklart';
$a->strings['Other'] = 'Annat';
$a->strings['Undecided'] = 'Obest&auml;mt';
$a->strings['Males'] = 'M&auml;n';
$a->strings['Females'] = 'Kvinnor';
$a->strings['Gay'] = 'B&ouml;g';
$a->strings['Lesbian'] = 'Lesbisk';
$a->strings['No Preference'] = 'No Preference';
$a->strings['Bisexual'] = 'Bisexuell';
$a->strings['Autosexual'] = 'Autosexual';
$a->strings['Abstinent'] = 'Abstinent';
$a->strings['Virgin'] = 'Oskuld';
$a->strings['Deviant'] = 'Avvikande';
$a->strings['Fetish'] = 'Fetisch';
$a->strings['Oodles'] = 'Massor';
$a->strings['Nonsexual'] = 'Asexuell';
$a->strings['Single'] = 'Singel';
$a->strings['Lonely'] = 'Ensam';
$a->strings['Available'] = 'Tillg&auml;nglig';
$a->strings['Unavailable'] = 'Upptagen';
$a->strings['Dating'] = 'Dejtar';
$a->strings['Unfaithful'] = 'Otrogen';
$a->strings['Sex Addict'] = 'Sexmissbrukare';
$a->strings['Friends'] = 'V&auml;nner';
$a->strings['Friends/Benefits'] = 'Friends/Benefits';
$a->strings['Casual'] = 'Casual';
$a->strings['Engaged'] = 'F&ouml;rlovad';
$a->strings['Married'] = 'Gift';
$a->strings['Partners'] = 'I partnerskap';
$a->strings['Cohabiting'] = 'Cohabiting';
$a->strings['Happy'] = 'N&ouml;jd';
$a->strings['Not Looking'] = 'Letar inte';
$a->strings['Swinger'] = 'Swinger';
$a->strings['Betrayed'] = 'Bedragen';
$a->strings['Separated'] = 'Separerat';
$a->strings['Unstable'] = 'Instabilt';
$a->strings['Divorced'] = 'Skiljd';
$a->strings['Widowed'] = '&Auml;nka/&auml;nkling';
$a->strings['Uncertain'] = 'Oklart';
$a->strings['Complicated'] = 'Komplicerat';
$a->strings['Don\'t care'] = 'Bryr mig inte';
$a->strings['Ask me'] = 'Fr&aring;ga mig';
$a->strings['Facebook disabled'] = 'Facebook inaktiverat';
$a->strings['Facebook API key is missing.'] = 'Facebook API key is missing.';
$a->strings['Facebook Connect'] = 'Facebook Connect';
$a->strings['Install Facebook post connector'] = 'Install Facebook post connector';
$a->strings['Remove Facebook post connector'] = 'Remove Facebook post connector';
$a->strings['Post to Facebook by default'] = 'L&auml;gg alltid in inl&auml;ggen p&aring; Facebook';
$a->strings['Facebook'] = 'Facebook';
$a->strings['Facebook Connector Settings'] = 'Facebook Connector Settings';
$a->strings['Post to Facebook'] = 'L&auml;gg in p&aring; Facebook';
$a->strings['Image: '] = 'Bild: ';
$a->strings['Select files to upload: '] = 'V&auml;lj filer att ladda upp: ';
$a->strings['Use the following controls only if the Java uploader [above] fails to launch.'] = 'Anv&auml;nd f&ouml;ljande bara om javauppladdaren ovanf&ouml;r inte startar.';
$a->strings['Upload a file'] = 'Ladda upp en fil';
$a->strings['Drop files here to upload'] = 'Dra filer som ska laddas upp hit';
$a->strings['Failed'] = 'Misslyckades';
$a->strings['No files were uploaded.'] = 'Inga filer laddades upp.';
$a->strings['Uploaded file is empty'] = 'Den uppladdade filen &auml;r tom';
$a->strings['Uploaded file is too large'] = 'Den uppladdade filen &auml;r f&ouml;r stor';
$a->strings['File has an invalid extension, it should be one of '] = 'Otill&aring;ten filnamns&auml;ndelse, det ska vara ';
$a->strings['Upload was cancelled, or server error encountered'] = 'Serverfel eller avbruten uppladdning';
$a->strings['Randplace Settings'] = 'Randplace Settings';
$a->strings['Enable Randplace Plugin'] = 'Enable Randplace Plugin';
$a->strings['Post to StatusNet'] = 'L&auml;gg in p&aring; StatusNet';
$a->strings['StatusNet Posting Settings'] = 'Inst&auml;llningar f&ouml;r inl&auml;gg p&aring; StatusNet';
$a->strings['No consumer key pair for StatusNet found. Register your Friendika Account as an desktop client on your StatusNet account, copy the consumer key pair here and enter the API base root.<br />Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Friendika installation at your favorited StatusNet installation.'] = 'No consumer key pair for StatusNet found. Register your Friendika Account as an desktop client on your StatusNet account, copy the consumer key pair here and enter the API base root.<br />Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Friendika installation at your favorited StatusNet installation.';
$a->strings['OAuth Consumer Key'] = 'OAuth Consumer Key';
$a->strings['OAuth Consumer Secret'] = 'OAuth Consumer Secret';
$a->strings["Base API Path \x28remember the trailing /\x29"] = "Base API Path \x28remember the trailing /\x29";
$a->strings['To connect to your StatusNet account click the button below to get a security code from StatusNet which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to StatusNet.'] = 'To connect to your StatusNet account click the button below to get a security code from StatusNet which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to StatusNet.';
$a->strings['Log in with StatusNet'] = 'Logga in med StatusNet';
$a->strings['Copy the security code from StatusNet here'] = 'Ange s&auml;kerhetskoden fr&aring;n StatusNet h&auml;r';
$a->strings['Currently connected to: '] = 'Ansluten till: ';
$a->strings['If enabled all your <strong>public</strong> postings will be posted to the associated StatusNet account as well.'] = 'If enabled all your <strong>public</strong> postings will be posted to the associated StatusNet account as well.';
$a->strings['Send public postings to StatusNet'] = 'Send public postings to StatusNet';
$a->strings['Clear OAuth configuration'] = 'Clear OAuth configuration';
$a->strings['Three Dimensional Tic-Tac-Toe'] = 'Tredimensionellt luffarschack';
$a->strings['3D Tic-Tac-Toe'] = '3D-luffarschack';
$a->strings['New game'] = 'Ny spelomg&aring;ng';
$a->strings['New game with handicap'] = 'Ny spelomg&aring;ng med handikapp';
$a->strings['Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. '] = 'Det tredimensionella luffarschacket &auml;r precis som vanligt luffarschack f&ouml;rutom att det spelas i flera niv&aring;er samtidigt. ';
$a->strings['In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels.'] = 'H&auml;r &auml;r det tre niv&aring;er. Man vinner om man f&aring;r tre i rad p&aring; vilken niv&aring; som helst, eller upp&aring;t, ned&aring;t eller diagonalt p&aring; flera niv&aring;er.';
$a->strings['The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage.'] = 'Om man spelar med handikapp s&aring; st&auml;ngs mittenpositionen p&aring; mittenniv&aring;n av eftersom spelare som v&auml;ljer den positionen ofta f&aring;r &ouml;vertaget.';
$a->strings['You go first...'] = 'Du b&ouml;rjar...';
$a->strings['I\'m going first this time...'] = 'Jag b&ouml;rjar den h&auml;r g&aring;ngen...';
$a->strings['You won!'] = 'Du vann!';
$a->strings['"Cat" game!'] = '"Cat" game!';
$a->strings['I won!'] = 'Jag vann!';
$a->strings['Post to Twitter'] = 'L&auml;gg in p&aring; Twitter';
$a->strings['Twitter Posting Settings'] = 'Inst&auml;llningar f&ouml;r inl&auml;gg p&aring; Twitter';
$a->strings['No consumer key pair for Twitter found. Please contact your site administrator.'] = 'No consumer key pair for Twitter found. Please contact your site administrator.';
$a->strings['At this Friendika instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to Twitter.'] = 'At this Friendika instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to Twitter.';
$a->strings['Copy the PIN from Twitter here'] = 'Ange PIN-koden fr&aring;n Twitter h&auml;r';
$a->strings['If enabled all your <strong>public</strong> postings will be posted to the associated Twitter account as well.'] = 'If enabled all your <strong>public</strong> postings will be posted to the associated Twitter account as well.';
$a->strings['Send public postings to Twitter'] = 'Send public postings to Twitter';
$a->strings['Africa/Abidjan'] = 'Afrika/Abidjan';
$a->strings['Africa/Accra'] = 'Afrika/Accra';
$a->strings['Africa/Addis_Ababa'] = 'Afrika/Addis_Ababa';
$a->strings['Africa/Algiers'] = 'Afrika/Algiers';
$a->strings['Africa/Asmara'] = 'Afrika/Asmara';
$a->strings['Africa/Asmera'] = 'Afrika/Asmera';
$a->strings['Africa/Bamako'] = 'Afrika/Bamako';
$a->strings['Africa/Bangui'] = 'Afrika/Bangui';
$a->strings['Africa/Banjul'] = 'Afrika/Banjul';
$a->strings['Africa/Bissau'] = 'Afrika/Bissau';
$a->strings['Africa/Blantyre'] = 'Afrika/Blantyre';
$a->strings['Africa/Brazzaville'] = 'Afrika/Brazzaville';
$a->strings['Africa/Bujumbura'] = 'Afrika/Bujumbura';
$a->strings['Africa/Cairo'] = 'Afrika/Cairo';
$a->strings['Africa/Casablanca'] = 'Afrika/Casablanca';
$a->strings['Africa/Ceuta'] = 'Afrika/Ceuta';
$a->strings['Africa/Conakry'] = 'Afrika/Conakry';
$a->strings['Africa/Dakar'] = 'Afrika/Dakar';
$a->strings['Africa/Dar_es_Salaam'] = 'Afrika/Dar_es_Salaam';
$a->strings['Africa/Djibouti'] = 'Afrika/Djibouti';
$a->strings['Africa/Douala'] = 'Afrika/Douala';
$a->strings['Africa/El_Aaiun'] = 'Afrika/El_Aaiun';
$a->strings['Africa/Freetown'] = 'Afrika/Freetown';
$a->strings['Africa/Gaborone'] = 'Afrika/Gaborone';
$a->strings['Africa/Harare'] = 'Afrika/Harare';
$a->strings['Africa/Johannesburg'] = 'Afrika/Johannesburg';
$a->strings['Africa/Kampala'] = 'Afrika/Kampala';
$a->strings['Africa/Khartoum'] = 'Afrika/Khartoum';
$a->strings['Africa/Kigali'] = 'Afrika/Kigali';
$a->strings['Africa/Kinshasa'] = 'Afrika/Kinshasa';
$a->strings['Africa/Lagos'] = 'Afrika/Lagos';
$a->strings['Africa/Libreville'] = 'Afrika/Libreville';
$a->strings['Africa/Lome'] = 'Afrika/Lome';
$a->strings['Africa/Luanda'] = 'Afrika/Luanda';
$a->strings['Africa/Lubumbashi'] = 'Afrika/Lubumbashi';
$a->strings['Africa/Lusaka'] = 'Afrika/Lusaka';
$a->strings['Africa/Malabo'] = 'Afrika/Malabo';
$a->strings['Africa/Maputo'] = 'Afrika/Maputo';
$a->strings['Africa/Maseru'] = 'Afrika/Maseru';
$a->strings['Africa/Mbabane'] = 'Afrika/Mbabane';
$a->strings['Africa/Mogadishu'] = 'Afrika/Mogadishu';
$a->strings['Africa/Monrovia'] = 'Afrika/Monrovia';
$a->strings['Africa/Nairobi'] = 'Afrika/Nairobi';
$a->strings['Africa/Ndjamena'] = 'Afrika/Ndjamena';
$a->strings['Africa/Niamey'] = 'Afrika/Niamey';
$a->strings['Africa/Nouakchott'] = 'Afrika/Nouakchott';
$a->strings['Africa/Ouagadougou'] = 'Afrika/Ouagadougou';
$a->strings['Africa/Porto-Novo'] = 'Afrika/Porto-Novo';
$a->strings['Africa/Sao_Tome'] = 'Afrika/Sao_Tome';
$a->strings['Africa/Timbuktu'] = 'Afrika/Timbuktu';
$a->strings['Africa/Tripoli'] = 'Afrika/Tripoli';
$a->strings['Africa/Tunis'] = 'Afrika/Tunis';
$a->strings['Africa/Windhoek'] = 'Afrika/Windhoek';
$a->strings['America/Adak'] = 'Amerika/Adak';
$a->strings['America/Anchorage'] = 'Amerika/Anchorage';
$a->strings['America/Anguilla'] = 'Amerika/Anguilla';
$a->strings['America/Antigua'] = 'Amerika/Antigua';
$a->strings['America/Araguaina'] = 'Amerika/Araguaina';
$a->strings['America/Argentina/Buenos_Aires'] = 'Amerika/Argentina/Buenos_Aires';
$a->strings['America/Argentina/Catamarca'] = 'Amerika/Argentina/Catamarca';
$a->strings['America/Argentina/ComodRivadavia'] = 'Amerika/Argentina/ComodRivadavia';
$a->strings['America/Argentina/Cordoba'] = 'Amerika/Argentina/Cordoba';
$a->strings['America/Argentina/Jujuy'] = 'Amerika/Argentina/Jujuy';
$a->strings['America/Argentina/La_Rioja'] = 'Amerika/Argentina/La_Rioja';
$a->strings['America/Argentina/Mendoza'] = 'Amerika/Argentina/Mendoza';
$a->strings['America/Argentina/Rio_Gallegos'] = 'Amerika/Argentina/Rio_Gallegos';
$a->strings['America/Argentina/Salta'] = 'Amerika/Argentina/Salta';
$a->strings['America/Argentina/San_Juan'] = 'Amerika/Argentina/San_Juan';
$a->strings['America/Argentina/San_Luis'] = 'Amerika/Argentina/San_Luis';
$a->strings['America/Argentina/Tucuman'] = 'Amerika/Argentina/Tucuman';
$a->strings['America/Argentina/Ushuaia'] = 'Amerika/Argentina/Ushuaia';
$a->strings['America/Aruba'] = 'Amerika/Aruba';
$a->strings['America/Asuncion'] = 'Amerika/Asuncion';
$a->strings['America/Atikokan'] = 'Amerika/Atikokan';
$a->strings['America/Atka'] = 'Amerika/Atka';
$a->strings['America/Bahia'] = 'Amerika/Bahia';
$a->strings['America/Barbados'] = 'Amerika/Barbados';
$a->strings['America/Belem'] = 'Amerika/Belem';
$a->strings['America/Belize'] = 'Amerika/Belize';
$a->strings['America/Blanc-Sablon'] = 'Amerika/Blanc-Sablon';
$a->strings['America/Boa_Vista'] = 'Amerika/Boa_Vista';
$a->strings['America/Bogota'] = 'Amerika/Bogota';
$a->strings['America/Boise'] = 'Amerika/Boise';
$a->strings['America/Buenos_Aires'] = 'Amerika/Buenos_Aires';
$a->strings['America/Cambridge_Bay'] = 'Amerika/Cambridge_Bay';
$a->strings['America/Campo_Grande'] = 'Amerika/Campo_Grande';
$a->strings['America/Cancun'] = 'Amerika/Cancun';
$a->strings['America/Caracas'] = 'Amerika/Caracas';
$a->strings['America/Catamarca'] = 'Amerika/Catamarca';
$a->strings['America/Cayenne'] = 'Amerika/Cayenne';
$a->strings['America/Cayman'] = 'Amerika/Cayman';
$a->strings['America/Chicago'] = 'Amerika/Chicago';
$a->strings['America/Chihuahua'] = 'Amerika/Chihuahua';
$a->strings['America/Coral_Harbour'] = 'Amerika/Coral_Harbour';
$a->strings['America/Cordoba'] = 'Amerika/Cordoba';
$a->strings['America/Costa_Rica'] = 'Amerika/Costa_Rica';
$a->strings['America/Cuiaba'] = 'Amerika/Cuiaba';
$a->strings['America/Curacao'] = 'Amerika/Curacao';
$a->strings['America/Danmarkshavn'] = 'Amerika/Danmarkshavn';
$a->strings['America/Dawson'] = 'Amerika/Dawson';
$a->strings['America/Dawson_Creek'] = 'Amerika/Dawson_Creek';
$a->strings['America/Denver'] = 'Amerika/Denver';
$a->strings['America/Detroit'] = 'Amerika/Detroit';
$a->strings['America/Dominica'] = 'Amerika/Dominica';
$a->strings['America/Edmonton'] = 'Amerika/Edmonton';
$a->strings['America/Eirunepe'] = 'Amerika/Eirunepe';
$a->strings['America/El_Salvador'] = 'Amerika/El_Salvador';
$a->strings['America/Ensenada'] = 'Amerika/Ensenada';
$a->strings['America/Fort_Wayne'] = 'Amerika/Fort_Wayne';
$a->strings['America/Fortaleza'] = 'Amerika/Fortaleza';
$a->strings['America/Glace_Bay'] = 'Amerika/Glace_Bay';
$a->strings['America/Godthab'] = 'Amerika/Godthab';
$a->strings['America/Goose_Bay'] = 'Amerika/Goose_Bay';
$a->strings['America/Grand_Turk'] = 'Amerika/Grand_Turk';
$a->strings['America/Grenada'] = 'Amerika/Grenada';
$a->strings['America/Guadeloupe'] = 'Amerika/Guadeloupe';
$a->strings['America/Guatemala'] = 'Amerika/Guatemala';
$a->strings['America/Guayaquil'] = 'Amerika/Guayaquil';
$a->strings['America/Guyana'] = 'Amerika/Guyana';
$a->strings['America/Halifax'] = 'Amerika/Halifax';
$a->strings['America/Havana'] = 'Amerika/Havana';
$a->strings['America/Hermosillo'] = 'Amerika/Hermosillo';
$a->strings['America/Indiana/Indianapolis'] = 'Amerika/Indiana/Indianapolis';
$a->strings['America/Indiana/Knox'] = 'Amerika/Indiana/Knox';
$a->strings['America/Indiana/Marengo'] = 'Amerika/Indiana/Marengo';
$a->strings['America/Indiana/Petersburg'] = 'Amerika/Indiana/Petersburg';
$a->strings['America/Indiana/Tell_City'] = 'Amerika/Indiana/Tell_City';
$a->strings['America/Indiana/Vevay'] = 'Amerika/Indiana/Vevay';
$a->strings['America/Indiana/Vincennes'] = 'Amerika/Indiana/Vincennes';
$a->strings['America/Indiana/Winamac'] = 'Amerika/Indiana/Winamac';
$a->strings['America/Indianapolis'] = 'Amerika/Indianapolis';
$a->strings['America/Inuvik'] = 'Amerika/Inuvik';
$a->strings['America/Iqaluit'] = 'Amerika/Iqaluit';
$a->strings['America/Jamaica'] = 'Amerika/Jamaica';
$a->strings['America/Jujuy'] = 'Amerika/Jujuy';
$a->strings['America/Juneau'] = 'Amerika/Juneau';
$a->strings['America/Kentucky/Louisville'] = 'Amerika/Kentucky/Louisville';
$a->strings['America/Kentucky/Monticello'] = 'Amerika/Kentucky/Monticello';
$a->strings['America/Knox_IN'] = 'Amerika/Knox_IN';
$a->strings['America/La_Paz'] = 'Amerika/La_Paz';
$a->strings['America/Lima'] = 'Amerika/Lima';
$a->strings['America/Los_Angeles'] = 'Amerika/Los_Angeles';
$a->strings['America/Louisville'] = 'Amerika/Louisville';
$a->strings['America/Maceio'] = 'Amerika/Maceio';
$a->strings['America/Managua'] = 'Amerika/Managua';
$a->strings['America/Manaus'] = 'Amerika/Manaus';
$a->strings['America/Marigot'] = 'Amerika/Marigot';
$a->strings['America/Martinique'] = 'Amerika/Martinique';
$a->strings['America/Matamoros'] = 'Amerika/Matamoros';
$a->strings['America/Mazatlan'] = 'Amerika/Mazatlan';
$a->strings['America/Mendoza'] = 'Amerika/Mendoza';
$a->strings['America/Menominee'] = 'Amerika/Menominee';
$a->strings['America/Merida'] = 'Amerika/Merida';
$a->strings['America/Mexico_City'] = 'Amerika/Mexico_City';
$a->strings['America/Miquelon'] = 'Amerika/Miquelon';
$a->strings['America/Moncton'] = 'Amerika/Moncton';
$a->strings['America/Monterrey'] = 'Amerika/Monterrey';
$a->strings['America/Montevideo'] = 'Amerika/Montevideo';
$a->strings['America/Montreal'] = 'Amerika/Montreal';
$a->strings['America/Montserrat'] = 'Amerika/Montserrat';
$a->strings['America/Nassau'] = 'Amerika/Nassau';
$a->strings['America/New_York'] = 'Amerika/New_York';
$a->strings['America/Nipigon'] = 'Amerika/Nipigon';
$a->strings['America/Nome'] = 'Amerika/Nome';
$a->strings['America/Noronha'] = 'Amerika/Noronha';
$a->strings['America/North_Dakota/Center'] = 'Amerika/North_Dakota/Center';
$a->strings['America/North_Dakota/New_Salem'] = 'Amerika/North_Dakota/New_Salem';
$a->strings['America/Ojinaga'] = 'Amerika/Ojinaga';
$a->strings['America/Panama'] = 'Amerika/Panama';
$a->strings['America/Pangnirtung'] = 'Amerika/Pangnirtung';
$a->strings['America/Paramaribo'] = 'Amerika/Paramaribo';
$a->strings['America/Phoenix'] = 'Amerika/Phoenix';
$a->strings['America/Port-au-Prince'] = 'Amerika/Port-au-Prince';
$a->strings['America/Port_of_Spain'] = 'Amerika/Port_of_Spain';
$a->strings['America/Porto_Acre'] = 'Amerika/Porto_Acre';
$a->strings['America/Porto_Velho'] = 'Amerika/Porto_Velho';
$a->strings['America/Puerto_Rico'] = 'Amerika/Puerto_Rico';
$a->strings['America/Rainy_River'] = 'Amerika/Rainy_River';
$a->strings['America/Rankin_Inlet'] = 'Amerika/Rankin_Inlet';
$a->strings['America/Recife'] = 'Amerika/Recife';
$a->strings['America/Regina'] = 'Amerika/Regina';
$a->strings['America/Resolute'] = 'Amerika/Resolute';
$a->strings['America/Rio_Branco'] = 'Amerika/Rio_Branco';
$a->strings['America/Rosario'] = 'Amerika/Rosario';
$a->strings['America/Santa_Isabel'] = 'Amerika/Santa_Isabel';
$a->strings['America/Santarem'] = 'Amerika/Santarem';
$a->strings['America/Santiago'] = 'Amerika/Santiago';
$a->strings['America/Santo_Domingo'] = 'Amerika/Santo_Domingo';
$a->strings['America/Sao_Paulo'] = 'Amerika/Sao_Paulo';
$a->strings['America/Scoresbysund'] = 'Amerika/Scoresbysund';
$a->strings['America/Shiprock'] = 'Amerika/Shiprock';
$a->strings['America/St_Barthelemy'] = 'Amerika/St_Barthelemy';
$a->strings['America/St_Johns'] = 'Amerika/St_Johns';
$a->strings['America/St_Kitts'] = 'Amerika/St_Kitts';
$a->strings['America/St_Lucia'] = 'Amerika/St_Lucia';
$a->strings['America/St_Thomas'] = 'Amerika/St_Thomas';
$a->strings['America/St_Vincent'] = 'Amerika/St_Vincent';
$a->strings['America/Swift_Current'] = 'Amerika/Swift_Current';
$a->strings['America/Tegucigalpa'] = 'Amerika/Tegucigalpa';
$a->strings['America/Thule'] = 'Amerika/Thule';
$a->strings['America/Thunder_Bay'] = 'Amerika/Thunder_Bay';
$a->strings['America/Tijuana'] = 'Amerika/Tijuana';
$a->strings['America/Toronto'] = 'Amerika/Toronto';
$a->strings['America/Tortola'] = 'Amerika/Tortola';
$a->strings['America/Vancouver'] = 'Amerika/Vancouver';
$a->strings['America/Virgin'] = 'Amerika/Virgin';
$a->strings['America/Whitehorse'] = 'Amerika/Whitehorse';
$a->strings['America/Winnipeg'] = 'Amerika/Winnipeg';
$a->strings['America/Yakutat'] = 'Amerika/Yakutat';
$a->strings['America/Yellowknife'] = 'Amerika/Yellowknife';
$a->strings['Antarctica/Casey'] = 'Antarctica/Casey';
$a->strings['Antarctica/Davis'] = 'Antarctica/Davis';
$a->strings['Antarctica/DumontDUrville'] = 'Antarctica/DumontDUrville';
$a->strings['Antarctica/Macquarie'] = 'Antarctica/Macquarie';
$a->strings['Antarctica/Mawson'] = 'Antarctica/Mawson';
$a->strings['Antarctica/McMurdo'] = 'Antarctica/McMurdo';
$a->strings['Antarctica/Palmer'] = 'Antarctica/Palmer';
$a->strings['Antarctica/Rothera'] = 'Antarctica/Rothera';
$a->strings['Antarctica/South_Pole'] = 'Antarctica/South_Pole';
$a->strings['Antarctica/Syowa'] = 'Antarctica/Syowa';
$a->strings['Antarctica/Vostok'] = 'Antarctica/Vostok';
$a->strings['Arctic/Longyearbyen'] = 'Arctic/Longyearbyen';
$a->strings['Asia/Aden'] = 'Asien/Aden';
$a->strings['Asia/Almaty'] = 'Asien/Almaty';
$a->strings['Asia/Amman'] = 'Asien/Amman';
$a->strings['Asia/Anadyr'] = 'Asien/Anadyr';
$a->strings['Asia/Aqtau'] = 'Asien/Aqtau';
$a->strings['Asia/Aqtobe'] = 'Asien/Aqtobe';
$a->strings['Asia/Ashgabat'] = 'Asien/Ashgabat';
$a->strings['Asia/Ashkhabad'] = 'Asien/Ashkhabad';
$a->strings['Asia/Baghdad'] = 'Asien/Baghdad';
$a->strings['Asia/Bahrain'] = 'Asien/Bahrain';
$a->strings['Asia/Baku'] = 'Asien/Baku';
$a->strings['Asia/Bangkok'] = 'Asien/Bangkok';
$a->strings['Asia/Beirut'] = 'Asien/Beirut';
$a->strings['Asia/Bishkek'] = 'Asien/Bishkek';
$a->strings['Asia/Brunei'] = 'Asien/Brunei';
$a->strings['Asia/Calcutta'] = 'Asien/Calcutta';
$a->strings['Asia/Choibalsan'] = 'Asien/Choibalsan';
$a->strings['Asia/Chongqing'] = 'Asien/Chongqing';
$a->strings['Asia/Chungking'] = 'Asien/Chungking';
$a->strings['Asia/Colombo'] = 'Asien/Colombo';
$a->strings['Asia/Dacca'] = 'Asien/Dacca';
$a->strings['Asia/Damascus'] = 'Asien/Damascus';
$a->strings['Asia/Dhaka'] = 'Asien/Dhaka';
$a->strings['Asia/Dili'] = 'Asien/Dili';
$a->strings['Asia/Dubai'] = 'Asien/Dubai';
$a->strings['Asia/Dushanbe'] = 'Asien/Dushanbe';
$a->strings['Asia/Gaza'] = 'Asien/Gaza';
$a->strings['Asia/Harbin'] = 'Asien/Harbin';
$a->strings['Asia/Ho_Chi_Minh'] = 'Asien/Ho_Chi_Minh';
$a->strings['Asia/Hong_Kong'] = 'Asien/Hong_Kong';
$a->strings['Asia/Hovd'] = 'Asien/Hovd';
$a->strings['Asia/Irkutsk'] = 'Asien/Irkutsk';
$a->strings['Asia/Istanbul'] = 'Asien/Istanbul';
$a->strings['Asia/Jakarta'] = 'Asien/Jakarta';
$a->strings['Asia/Jayapura'] = 'Asien/Jayapura';
$a->strings['Asia/Jerusalem'] = 'Asien/Jerusalem';
$a->strings['Asia/Kabul'] = 'Asien/Kabul';
$a->strings['Asia/Kamchatka'] = 'Asien/Kamchatka';
$a->strings['Asia/Karachi'] = 'Asien/Karachi';
$a->strings['Asia/Kashgar'] = 'Asien/Kashgar';
$a->strings['Asia/Kathmandu'] = 'Asien/Kathmandu';
$a->strings['Asia/Katmandu'] = 'Asien/Katmandu';
$a->strings['Asia/Kolkata'] = 'Asien/Kolkata';
$a->strings['Asia/Krasnoyarsk'] = 'Asien/Krasnoyarsk';
$a->strings['Asia/Kuala_Lumpur'] = 'Asien/Kuala_Lumpur';
$a->strings['Asia/Kuching'] = 'Asien/Kuching';
$a->strings['Asia/Kuwait'] = 'Asien/Kuwait';
$a->strings['Asia/Macao'] = 'Asien/Macao';
$a->strings['Asia/Macau'] = 'Asien/Macau';
$a->strings['Asia/Magadan'] = 'Asien/Magadan';
$a->strings['Asia/Makassar'] = 'Asien/Makassar';
$a->strings['Asia/Manila'] = 'Asien/Manila';
$a->strings['Asia/Muscat'] = 'Asien/Muscat';
$a->strings['Asia/Nicosia'] = 'Asien/Nicosia';
$a->strings['Asia/Novokuznetsk'] = 'Asien/Novokuznetsk';
$a->strings['Asia/Novosibirsk'] = 'Asien/Novosibirsk';
$a->strings['Asia/Omsk'] = 'Asien/Omsk';
$a->strings['Asia/Oral'] = 'Asien/Oral';
$a->strings['Asia/Phnom_Penh'] = 'Asien/Phnom_Penh';
$a->strings['Asia/Pontianak'] = 'Asien/Pontianak';
$a->strings['Asia/Pyongyang'] = 'Asien/Pyongyang';
$a->strings['Asia/Qatar'] = 'Asien/Qatar';
$a->strings['Asia/Qyzylorda'] = 'Asien/Qyzylorda';
$a->strings['Asia/Rangoon'] = 'Asien/Rangoon';
$a->strings['Asia/Riyadh'] = 'Asien/Riyadh';
$a->strings['Asia/Saigon'] = 'Asien/Saigon';
$a->strings['Asia/Sakhalin'] = 'Asien/Sakhalin';
$a->strings['Asia/Samarkand'] = 'Asien/Samarkand';
$a->strings['Asia/Seoul'] = 'Asien/Seoul';
$a->strings['Asia/Shanghai'] = 'Asien/Shanghai';
$a->strings['Asia/Singapore'] = 'Asien/Singapore';
$a->strings['Asia/Taipei'] = 'Asien/Taipei';
$a->strings['Asia/Tashkent'] = 'Asien/Tashkent';
$a->strings['Asia/Tbilisi'] = 'Asien/Tbilisi';
$a->strings['Asia/Tehran'] = 'Asien/Tehran';
$a->strings['Asia/Tel_Aviv'] = 'Asien/Tel_Aviv';
$a->strings['Asia/Thimbu'] = 'Asien/Thimbu';
$a->strings['Asia/Thimphu'] = 'Asien/Thimphu';
$a->strings['Asia/Tokyo'] = 'Asien/Tokyo';
$a->strings['Asia/Ujung_Pandang'] = 'Asien/Ujung_Pandang';
$a->strings['Asia/Ulaanbaatar'] = 'Asien/Ulaanbaatar';
$a->strings['Asia/Ulan_Bator'] = 'Asien/Ulan_Bator';
$a->strings['Asia/Urumqi'] = 'Asien/Urumqi';
$a->strings['Asia/Vientiane'] = 'Asien/Vientiane';
$a->strings['Asia/Vladivostok'] = 'Asien/Vladivostok';
$a->strings['Asia/Yakutsk'] = 'Asien/Yakutsk';
$a->strings['Asia/Yekaterinburg'] = 'Asien/Yekaterinburg';
$a->strings['Asia/Yerevan'] = 'Asien/Yerevan';
$a->strings['Atlantic/Azores'] = 'Atlantic/Azores';
$a->strings['Atlantic/Bermuda'] = 'Atlantic/Bermuda';
$a->strings['Atlantic/Canary'] = 'Atlantic/Canary';
$a->strings['Atlantic/Cape_Verde'] = 'Atlantic/Cape_Verde';
$a->strings['Atlantic/Faeroe'] = 'Atlantic/Faeroe';
$a->strings['Atlantic/Faroe'] = 'Atlantic/Faroe';
$a->strings['Atlantic/Jan_Mayen'] = 'Atlantic/Jan_Mayen';
$a->strings['Atlantic/Madeira'] = 'Atlantic/Madeira';
$a->strings['Atlantic/Reykjavik'] = 'Atlantic/Reykjavik';
$a->strings['Atlantic/South_Georgia'] = 'Atlantic/South_Georgia';
$a->strings['Atlantic/St_Helena'] = 'Atlantic/St_Helena';
$a->strings['Atlantic/Stanley'] = 'Atlantic/Stanley';
$a->strings['Australia/ACT'] = 'Australien/ACT';
$a->strings['Australia/Adelaide'] = 'Australien/Adelaide';
$a->strings['Australia/Brisbane'] = 'Australien/Brisbane';
$a->strings['Australia/Broken_Hill'] = 'Australien/Broken_Hill';
$a->strings['Australia/Canberra'] = 'Australien/Canberra';
$a->strings['Australia/Currie'] = 'Australien/Currie';
$a->strings['Australia/Darwin'] = 'Australien/Darwin';
$a->strings['Australia/Eucla'] = 'Australien/Eucla';
$a->strings['Australia/Hobart'] = 'Australien/Hobart';
$a->strings['Australia/LHI'] = 'Australien/LHI';
$a->strings['Australia/Lindeman'] = 'Australien/Lindeman';
$a->strings['Australia/Lord_Howe'] = 'Australien/Lord_Howe';
$a->strings['Australia/Melbourne'] = 'Australien/Melbourne';
$a->strings['Australia/North'] = 'Australien/North';
$a->strings['Australia/NSW'] = 'Australien/NSW';
$a->strings['Australia/Perth'] = 'Australien/Perth';
$a->strings['Australia/Queensland'] = 'Australien/Queensland';
$a->strings['Australia/South'] = 'Australien/South';
$a->strings['Australia/Sydney'] = 'Australien/Sydney';
$a->strings['Australia/Tasmania'] = 'Australien/Tasmania';
$a->strings['Australia/Victoria'] = 'Australien/Victoria';
$a->strings['Australia/West'] = 'Australien/West';
$a->strings['Australia/Yancowinna'] = 'Australien/Yancowinna';
$a->strings['Brazil/Acre'] = 'Brasilien/Acre';
$a->strings['Brazil/DeNoronha'] = 'Brasilien/DeNoronha';
$a->strings['Brazil/East'] = 'Brasilien/East';
$a->strings['Brazil/West'] = 'Brasilien/West';
$a->strings['Canada/Atlantic'] = 'Kanada/Atlantic';
$a->strings['Canada/Central'] = 'Kanada/Central';
$a->strings['Canada/East-Saskatchewan'] = 'Kanada/East-Saskatchewan';
$a->strings['Canada/Eastern'] = 'Kanada/Eastern';
$a->strings['Canada/Mountain'] = 'Kanada/Mountain';
$a->strings['Canada/Newfoundland'] = 'Kanada/Newfoundland';
$a->strings['Canada/Pacific'] = 'Kanada/Pacific';
$a->strings['Canada/Saskatchewan'] = 'Kanada/Saskatchewan';
$a->strings['Canada/Yukon'] = 'Kanada/Yukon';
$a->strings['CET'] = 'CET';
$a->strings['Chile/Continental'] = 'Chile/Continental';
$a->strings['Chile/EasterIsland'] = 'Chile/EasterIsland';
$a->strings['CST6CDT'] = 'CST6CDT';
$a->strings['Cuba'] = 'Cuba';
$a->strings['EET'] = 'EET';
$a->strings['Egypt'] = 'Egypten';
$a->strings['Eire'] = 'Eire';
$a->strings['EST'] = 'EST';
$a->strings['EST5EDT'] = 'EST5EDT';
$a->strings['Etc/GMT'] = 'Etc/GMT';
$a->strings['Etc/GMT+0'] = 'Etc/GMT+0';
$a->strings['Etc/GMT+1'] = 'Etc/GMT+1';
$a->strings['Etc/GMT+10'] = 'Etc/GMT+10';
$a->strings['Etc/GMT+11'] = 'Etc/GMT+11';
$a->strings['Etc/GMT+12'] = 'Etc/GMT+12';
$a->strings['Etc/GMT+2'] = 'Etc/GMT+2';
$a->strings['Etc/GMT+3'] = 'Etc/GMT+3';
$a->strings['Etc/GMT+4'] = 'Etc/GMT+4';
$a->strings['Etc/GMT+5'] = 'Etc/GMT+5';
$a->strings['Etc/GMT+6'] = 'Etc/GMT+6';
$a->strings['Etc/GMT+7'] = 'Etc/GMT+7';
$a->strings['Etc/GMT+8'] = 'Etc/GMT+8';
$a->strings['Etc/GMT+9'] = 'Etc/GMT+9';
$a->strings['Etc/GMT-0'] = 'Etc/GMT-0';
$a->strings['Etc/GMT-1'] = 'Etc/GMT-1';
$a->strings['Etc/GMT-10'] = 'Etc/GMT-10';
$a->strings['Etc/GMT-11'] = 'Etc/GMT-11';
$a->strings['Etc/GMT-12'] = 'Etc/GMT-12';
$a->strings['Etc/GMT-13'] = 'Etc/GMT-13';
$a->strings['Etc/GMT-14'] = 'Etc/GMT-14';
$a->strings['Etc/GMT-2'] = 'Etc/GMT-2';
$a->strings['Etc/GMT-3'] = 'Etc/GMT-3';
$a->strings['Etc/GMT-4'] = 'Etc/GMT-4';
$a->strings['Etc/GMT-5'] = 'Etc/GMT-5';
$a->strings['Etc/GMT-6'] = 'Etc/GMT-6';
$a->strings['Etc/GMT-7'] = 'Etc/GMT-7';
$a->strings['Etc/GMT-8'] = 'Etc/GMT-8';
$a->strings['Etc/GMT-9'] = 'Etc/GMT-9';
$a->strings['Etc/GMT0'] = 'Etc/GMT0';
$a->strings['Etc/Greenwich'] = 'Etc/Greenwich';
$a->strings['Etc/UCT'] = 'Etc/UCT';
$a->strings['Etc/Universal'] = 'Etc/Universal';
$a->strings['Etc/UTC'] = 'Etc/UTC';
$a->strings['Etc/Zulu'] = 'Etc/Zulu';
$a->strings['Europe/Amsterdam'] = 'Europa/Amsterdam';
$a->strings['Europe/Andorra'] = 'Europa/Andorra';
$a->strings['Europe/Athens'] = 'Europa/Aten';
$a->strings['Europe/Belfast'] = 'Europa/Belfast';
$a->strings['Europe/Belgrade'] = 'Europa/Belgrad';
$a->strings['Europe/Berlin'] = 'Europa/Berlin';
$a->strings['Europe/Bratislava'] = 'Europa/Bratislava';
$a->strings['Europe/Brussels'] = 'Europa/Bryssel';
$a->strings['Europe/Bucharest'] = 'Europa/Bucharest';
$a->strings['Europe/Budapest'] = 'Europa/Budapest';
$a->strings['Europe/Chisinau'] = 'Europa/Chisinau';
$a->strings['Europe/Copenhagen'] = 'Europa/K&ouml;penhamn';
$a->strings['Europe/Dublin'] = 'Europa/Dublin';
$a->strings['Europe/Gibraltar'] = 'Europa/Gibraltar';
$a->strings['Europe/Guernsey'] = 'Europa/Guernsey';
$a->strings['Europe/Helsinki'] = 'Europa/Helsingfors';
$a->strings['Europe/Isle_of_Man'] = 'Europa/Isle_of_Man';
$a->strings['Europe/Istanbul'] = 'Europa/Istanbul';
$a->strings['Europe/Jersey'] = 'Europa/Jersey';
$a->strings['Europe/Kaliningrad'] = 'Europa/Kaliningrad';
$a->strings['Europe/Kiev'] = 'Europa/Kiev';
$a->strings['Europe/Lisbon'] = 'Europa/Lisabon';
$a->strings['Europe/Ljubljana'] = 'Europa/Ljubljana';
$a->strings['Europe/London'] = 'Europa/London';
$a->strings['Europe/Luxembourg'] = 'Europa/Luxemburg';
$a->strings['Europe/Madrid'] = 'Europa/Madrid';
$a->strings['Europe/Malta'] = 'Europa/Malta';
$a->strings['Europe/Mariehamn'] = 'Europa/Mariehamn';
$a->strings['Europe/Minsk'] = 'Europa/Minsk';
$a->strings['Europe/Monaco'] = 'Europa/Monaco';
$a->strings['Europe/Moscow'] = 'Europa/Moskva';
$a->strings['Europe/Nicosia'] = 'Europa/Nicosia';
$a->strings['Europe/Oslo'] = 'Europa/Oslo';
$a->strings['Europe/Paris'] = 'Europa/Paris';
$a->strings['Europe/Podgorica'] = 'Europa/Podgorica';
$a->strings['Europe/Prague'] = 'Europa/Prag';
$a->strings['Europe/Riga'] = 'Europa/Riga';
$a->strings['Europe/Rome'] = 'Europa/Rom';
$a->strings['Europe/Samara'] = 'Europa/Samara';
$a->strings['Europe/San_Marino'] = 'Europa/San_Marino';
$a->strings['Europe/Sarajevo'] = 'Europa/Sarajevo';
$a->strings['Europe/Simferopol'] = 'Europa/Simferopol';
$a->strings['Europe/Skopje'] = 'Europa/Skopje';
$a->strings['Europe/Sofia'] = 'Europa/Sofia';
$a->strings['Europe/Stockholm'] = 'Europa/Stockholm';
$a->strings['Europe/Tallinn'] = 'Europa/Tallinn';
$a->strings['Europe/Tirane'] = 'Europa/Tirane';
$a->strings['Europe/Tiraspol'] = 'Europa/Tiraspol';
$a->strings['Europe/Uzhgorod'] = 'Europa/Uzhgorod';
$a->strings['Europe/Vaduz'] = 'Europa/Vaduz';
$a->strings['Europe/Vatican'] = 'Europa/Vatikanen';
$a->strings['Europe/Vienna'] = 'Europa/Wien';
$a->strings['Europe/Vilnius'] = 'Europa/Vilnius';
$a->strings['Europe/Volgograd'] = 'Europa/Volgograd';
$a->strings['Europe/Warsaw'] = 'Europa/Warsawa';
$a->strings['Europe/Zagreb'] = 'Europa/Zagreb';
$a->strings['Europe/Zaporozhye'] = 'Europa/Zaporozhye';
$a->strings['Europe/Zurich'] = 'Europa/Z&uuml;rich';
$a->strings['Factory'] = 'Factory';
$a->strings['GB'] = 'GB';
$a->strings['GB-Eire'] = 'GB-Eire';
$a->strings['GMT'] = 'GMT';
$a->strings['GMT+0'] = 'GMT+0';
$a->strings['GMT-0'] = 'GMT-0';
$a->strings['GMT0'] = 'GMT0';
$a->strings['Greenwich'] = 'Greenwich';
$a->strings['Hongkong'] = 'Hongkong';
$a->strings['HST'] = 'HST';
$a->strings['Iceland'] = 'Iceland';
$a->strings['Indian/Antananarivo'] = 'Indian/Antananarivo';
$a->strings['Indian/Chagos'] = 'Indian/Chagos';
$a->strings['Indian/Christmas'] = 'Indian/Christmas';
$a->strings['Indian/Cocos'] = 'Indian/Cocos';
$a->strings['Indian/Comoro'] = 'Indian/Comoro';
$a->strings['Indian/Kerguelen'] = 'Indian/Kerguelen';
$a->strings['Indian/Mahe'] = 'Indian/Mahe';
$a->strings['Indian/Maldives'] = 'Indian/Maldives';
$a->strings['Indian/Mauritius'] = 'Indian/Mauritius';
$a->strings['Indian/Mayotte'] = 'Indian/Mayotte';
$a->strings['Indian/Reunion'] = 'Indian/Reunion';
$a->strings['Iran'] = 'Iran';
$a->strings['Israel'] = 'Israel';
$a->strings['Jamaica'] = 'Jamaica';
$a->strings['Japan'] = 'Japan';
$a->strings['Kwajalein'] = 'Kwajalein';
$a->strings['Libya'] = 'Libyen';
$a->strings['MET'] = 'MET';
$a->strings['Mexico/BajaNorte'] = 'Mexico/BajaNorte';
$a->strings['Mexico/BajaSur'] = 'Mexico/BajaSur';
$a->strings['Mexico/General'] = 'Mexico/General';
$a->strings['MST'] = 'MST';
$a->strings['MST7MDT'] = 'MST7MDT';
$a->strings['Navajo'] = 'Navajo';
$a->strings['NZ'] = 'NZ';
$a->strings['NZ-CHAT'] = 'NZ-CHAT';
$a->strings['Pacific/Apia'] = 'Pacific/Apia';
$a->strings['Pacific/Auckland'] = 'Pacific/Auckland';
$a->strings['Pacific/Chatham'] = 'Pacific/Chatham';
$a->strings['Pacific/Easter'] = 'Pacific/Easter';
$a->strings['Pacific/Efate'] = 'Pacific/Efate';
$a->strings['Pacific/Enderbury'] = 'Pacific/Enderbury';
$a->strings['Pacific/Fakaofo'] = 'Pacific/Fakaofo';
$a->strings['Pacific/Fiji'] = 'Pacific/Fiji';
$a->strings['Pacific/Funafuti'] = 'Pacific/Funafuti';
$a->strings['Pacific/Galapagos'] = 'Pacific/Galapagos';
$a->strings['Pacific/Gambier'] = 'Pacific/Gambier';
$a->strings['Pacific/Guadalcanal'] = 'Pacific/Guadalcanal';
$a->strings['Pacific/Guam'] = 'Pacific/Guam';
$a->strings['Pacific/Honolulu'] = 'Pacific/Honolulu';
$a->strings['Pacific/Johnston'] = 'Pacific/Johnston';
$a->strings['Pacific/Kiritimati'] = 'Pacific/Kiritimati';
$a->strings['Pacific/Kosrae'] = 'Pacific/Kosrae';
$a->strings['Pacific/Kwajalein'] = 'Pacific/Kwajalein';
$a->strings['Pacific/Majuro'] = 'Pacific/Majuro';
$a->strings['Pacific/Marquesas'] = 'Pacific/Marquesas';
$a->strings['Pacific/Midway'] = 'Pacific/Midway';
$a->strings['Pacific/Nauru'] = 'Pacific/Nauru';
$a->strings['Pacific/Niue'] = 'Pacific/Niue';
$a->strings['Pacific/Norfolk'] = 'Pacific/Norfolk';
$a->strings['Pacific/Noumea'] = 'Pacific/Noumea';
$a->strings['Pacific/Pago_Pago'] = 'Pacific/Pago_Pago';
$a->strings['Pacific/Palau'] = 'Pacific/Palau';
$a->strings['Pacific/Pitcairn'] = 'Pacific/Pitcairn';
$a->strings['Pacific/Ponape'] = 'Pacific/Ponape';
$a->strings['Pacific/Port_Moresby'] = 'Pacific/Port_Moresby';
$a->strings['Pacific/Rarotonga'] = 'Pacific/Rarotonga';
$a->strings['Pacific/Saipan'] = 'Pacific/Saipan';
$a->strings['Pacific/Samoa'] = 'Pacific/Samoa';
$a->strings['Pacific/Tahiti'] = 'Pacific/Tahiti';
$a->strings['Pacific/Tarawa'] = 'Pacific/Tarawa';
$a->strings['Pacific/Tongatapu'] = 'Pacific/Tongatapu';
$a->strings['Pacific/Truk'] = 'Pacific/Truk';
$a->strings['Pacific/Wake'] = 'Pacific/Wake';
$a->strings['Pacific/Wallis'] = 'Pacific/Wallis';
$a->strings['Pacific/Yap'] = 'Pacific/Yap';
$a->strings['Poland'] = 'Polen';
$a->strings['Portugal'] = 'Portugal';
$a->strings['PRC'] = 'PRC';
$a->strings['PST8PDT'] = 'PST8PDT';
$a->strings['ROC'] = 'ROC';
$a->strings['ROK'] = 'ROK';
$a->strings['Singapore'] = 'Singapore';
$a->strings['Turkey'] = 'Turkiet';
$a->strings['UCT'] = 'UCT';
$a->strings['Universal'] = 'Universal';
$a->strings['US/Alaska'] = 'USA/Alaska';
$a->strings['US/Aleutian'] = 'USA/Aleutian';
$a->strings['US/Arizona'] = 'USA/Arizona';
$a->strings['US/Central'] = 'USA/Central';
$a->strings['US/East-Indiana'] = 'USA/East-Indiana';
$a->strings['US/Eastern'] = 'USA/Eastern';
$a->strings['US/Hawaii'] = 'USA/Hawaii';
$a->strings['US/Indiana-Starke'] = 'USA/Indiana-Starke';
$a->strings['US/Michigan'] = 'USA/Michigan';
$a->strings['US/Mountain'] = 'USA/Mountain';
$a->strings['US/Pacific'] = 'USA/Pacific';
$a->strings['US/Pacific-New'] = 'USA/Pacific-New';
$a->strings['US/Samoa'] = 'USA/Samoa';
$a->strings['UTC'] = 'UTC';
$a->strings['W-SU'] = 'W-SU';
$a->strings['WET'] = 'WET';
$a->strings['Zulu'] = 'Zulu';