1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
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
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
|
<header>
<language>Svenska</language>
<translator>Åke Engelbrektson</translator>
<locale>sv_SE</locale>
<flag_image>flag_sweden.png</flag_image>
<plural_form_count>2</plural_form_count>
<plural_definition>n == 1 ? 0 : 1</plural_definition>
</header>
<source>Both sides have changed since last synchronization.</source>
<target>Bägge sidor har ändrats sedan senaste synkroniseringen.</target>
<source>Cannot determine sync-direction:</source>
<target>Kan inte bestämma synkroniseringsriktning:</target>
<source>No change since last synchronization.</source>
<target>Inga ändringar sedan senaste synkronisering.</target>
<source>The database entry is not in sync considering current settings.</source>
<target>Databasposten är inte synkroniserad, i förhållande till aktuella inställningar</target>
<source>Setting default synchronization directions: Old files will be overwritten with newer files.</source>
<target>Standardsynkronisering: Gamla filer kommer att skrivas över av nyare versioner.</target>
<source>Checking recycle bin availability for folder %x...</source>
<target>Kontrollerar papperskorgens tillgänglighet för %x...</target>
<source>Moving file %x to the recycle bin</source>
<target>Flyttar %x till papperskorgen</target>
<source>Moving folder %x to the recycle bin</source>
<target>Flyttar mappen %x till papperskorgen</target>
<source>Moving symbolic link %x to the recycle bin</source>
<target>Flyttar den symboliska länken %x till papperskorgen</target>
<source>Deleting file %x</source>
<target>Tar bort filen %x</target>
<source>Deleting folder %x</source>
<target>Tar bort mappen %x</target>
<source>Deleting symbolic link %x</source>
<target>Tar bort den symboliska länken %x</target>
<source>The recycle bin is not available for the following folders. Files will be deleted permanently instead:</source>
<target>Papperskorgen är inte tillgänglig för följande mappar. Filerna kommer istället att tas bort permanent:</target>
<source>An exception occurred</source>
<target>Ett undantag inträffade</target>
<source>A directory path is expected after %x.</source>
<target>En sökväg förväntas efter %x.</target>
<source>Syntax error</source>
<target>Syntaxfel</target>
<source>Cannot open file %x.</source>
<target>Kan inte öppna %x</target>
<source>Error</source>
<target>Fel</target>
<source>File %x does not contain a valid configuration.</source>
<target>Filen %x innehåller ingen giltig konfiguration.</target>
<source>Unequal number of left and right directories specified.</source>
<target>Ett ojämnt antal vänster- och högermappar har specificerats.</target>
<source>The config file must not contain settings at directory pair level when directories are set via command line.</source>
<target>Konfigurationsfilen kan inte innehålla inställningar på katalogparnivå när mappar anges via kommandorad.</target>
<source>Warning</source>
<target>Varning</target>
<source>Directories cannot be set for more than one configuration file.</source>
<target>Mappar kan inte anges för mer än en konfigurationsfil</target>
<source>Syntax:</source>
<target>Syntax:</target>
<source>config files</source>
<target>konfigurationsfiler</target>
<source>directory</source>
<target>mapp</target>
<source>Any number of FreeFileSync .ffs_gui and/or .ffs_batch configuration files.</source>
<target>Valfritt antal FreeFileSync .ffs_gui och/eller .ffs_batch konfigurationsfiler.</target>
<source>Any number of alternative directories for at most one config file.</source>
<target>Valfritt antal alternativa mappar för max en konfigurationsfil.</target>
<source>Command line</source>
<target>Kommandofält</target>
<source>A folder input field is empty.</source>
<target>Ett inmatningsfält är tomt</target>
<source>The corresponding folder will be considered as empty.</source>
<target>Motsvarande mapp kommer att betraktas som tom.</target>
<source>Cannot find the following folders:</source>
<target>Kan inte hitta följande mappar:</target>
<source>You can ignore this error to consider each folder as empty. The folders then will be created automatically during synchronization.</source>
<target>Du kan bortse från detta fel, och betrakta varje mapp som tom. Mapparna kommer då att skapas automatiskt, under synkroniseringen</target>
<source>The following folders have dependent paths. Be careful when setting up synchronization rules:</source>
<target>Följande mappar har beroende sökvägar. Var försiktig vid konfigurering av synkroniseringsregler:</target>
<source>File %x has an invalid date.</source>
<target>Filen %x har ett ogiltigt datum.</target>
<source>Date:</source>
<target>Datum:</target>
<source>Files %x have the same date but a different size.</source>
<target>Filerna %x har samma datum men olika storlek.</target>
<source>Size:</source>
<target>Storlek:</target>
<source>Items differ in attributes only</source>
<target>Endast attribut skiljer objekten åt</target>
<source>Resolving symbolic link %x</source>
<target>Översätter den symboliska länken %x</target>
<source>Comparing content of files %x</source>
<target>Jämför filinnehåll för %x</target>
<source>Generating file list...</source>
<target>Skapar fillista...</target>
<source>Starting comparison</source>
<target>Startar jämföelse</target>
<source>Calculating sync directions...</source>
<target>Beräknar synkroniseringsmappar...</target>
<source>Out of memory.</source>
<target>Minnesbrist.</target>
<source>Item exists on left side only</source>
<target>Objektet finns bara på vänster sida</target>
<source>Item exists on right side only</source>
<target>Objektet finns bara på höger sida</target>
<source>Left side is newer</source>
<target>Vänster sida är nyare</target>
<source>Right side is newer</source>
<target>Höger sida är nyare</target>
<source>Items have different content</source>
<target>Objekten har olika innehåll</target>
<source>Both sides are equal</source>
<target>Bägge sidor är lika</target>
<source>Conflict/item cannot be categorized</source>
<target>Konflikten/Objektet kan inte kategoriseras</target>
<source>Copy new item to left</source>
<target>Kopiera nytt objekt åt vänster</target>
<source>Copy new item to right</source>
<target>Kopiera nytt objekt åt höger</target>
<source>Delete left item</source>
<target>Ta bort vänster objekt</target>
<source>Delete right item</source>
<target>Ta bort höger objekt</target>
<source>Move file on left</source>
<target>Flytta fil på vänster sida</target>
<source>Move file on right</source>
<target>Flytta fil på höger sida</target>
<source>Overwrite left item</source>
<target>Skriv över vänster objekt</target>
<source>Overwrite right item</source>
<target>Skriv över höger objekt</target>
<source>Do nothing</source>
<target>Gör ingenting</target>
<source>Update attributes on left</source>
<target>Uppdatera attribut på vänster sida</target>
<source>Update attributes on right</source>
<target>Uppdatera attribut på höger sida</target>
<source>Database file %x is incompatible.</source>
<target>Databasfilen %x är inkompatibel</target>
<source>Initial synchronization:</source>
<target>Initial synkronisering:</target>
<source>Database file %x does not yet exist.</source>
<target>Databasfilen %x finns ännu inte</target>
<source>Database file is corrupt:</source>
<target>Databafilen är korrupt</target>
<source>Cannot write file %x.</source>
<target>Filen %x kan inte skrivas</target>
<source>Cannot read file %x.</source>
<target>Filen %x kan inte läsas in</target>
<source>Database files do not share a common session.</source>
<target>Databasfilerna har ingen gemensam session</target>
<source>Searching for folder %x...</source>
<target>Söker efter mappen %x...</target>
<source>Cannot read file attributes of %x.</source>
<target>Kan inte läsa filattribut för %x</target>
<source>Cannot get process information.</source>
<target>Processinformation kan inte inhämtas</target>
<source>Waiting while directory is locked (%x)...</source>
<target>Väntar medan mappen låses (%x)...</target>
<source>
<pluralform>1 sec</pluralform>
<pluralform>%x sec</pluralform>
</source>
<target>
<pluralform>1 sek</pluralform>
<pluralform>%x sek</pluralform>
</target>
<source>Creating file %x</source>
<target>Skapar fil %x</target>
<source>Items processed:</source>
<target>Processade poster</target>
<source>Items remaining:</source>
<target>Återstående poster:</target>
<source>Total time:</source>
<target>Total tid:</target>
<source>
<pluralform>1 byte</pluralform>
<pluralform>%x bytes</pluralform>
</source>
<target>
<pluralform>1 byte</pluralform>
<pluralform>%x byte</pluralform>
</target>
<source>%x MB</source>
<target>%x MB</target>
<source>%x KB</source>
<target>%x KB</target>
<source>%x GB</source>
<target>%x GB</target>
<source>Error parsing file %x, row %y, column %z.</source>
<target>Tolkningsfel på filen %x, rad %y, kolumn %z.</target>
<source>Cannot set directory lock for %x.</source>
<target>Kan inte låsa %x.</target>
<source>Scanning:</source>
<target>Skannar:</target>
<source>
<pluralform>1 thread</pluralform>
<pluralform>%x threads</pluralform>
</source>
<target>
<pluralform>1 tråd</pluralform>
<pluralform>%x trådar</pluralform>
</target>
<source>Encoding extended time information: %x</source>
<target>Kodar utökad tidsinformation: %x</target>
<source>/sec</source>
<target>/s</target>
<source>%x items</source>
<target>%x objekt</target>
<source>Configuration file %x loaded partially only.</source>
<target>Konfigurationsfilen %x lästes bara delvis in.</target>
<source>Show in Explorer</source>
<target>Visa i Utforskaren</target>
<source>Open with default application</source>
<target>Öppna med standardprogram</target>
<source>Browse directory</source>
<target>Sök upp mapp</target>
<source>Cannot access the Volume Shadow Copy Service.</source>
<target>Kan inte komma åt tjänsten 'Volume Shadow Copy'</target>
<source>Please use FreeFileSync 64-bit version to create shadow copies on this system.</source>
<target>Använd FreeFileSync 64-bitarsversion för att skapa skuggkopior på detta system.</target>
<source>Cannot load file %x.</source>
<target>Kan inte läsa in %x</target>
<source>Cannot determine volume name for %x.</source>
<target>Kan inte utläsa volymnamn för %x</target>
<source>Volume name %x is not part of file path %y.</source>
<target>Volymnamnet %x är inte en del av sökvägen %y.</target>
<source>Abort requested: Waiting for current operation to finish...</source>
<target>Avbryter: Väntar på att aktuell process skall slutföras...</target>
<source>Failure to create timestamp for versioning:</source>
<target>Kunde inte skapa tidsstämpel för versionshantering</target>
<source>Cannot read the following XML elements:</source>
<target>Kan inte läsa följande XML-element:</target>
<source>&Open...</source>
<target>&Öppna...</target>
<source>Save &as...</source>
<target>S¶ som...</target>
<source>&Quit</source>
<target>&Avsluta</target>
<source>&Program</source>
<target>&Program</target>
<source>&Content</source>
<target>&Innehåll</target>
<source>&About</source>
<target>&Om</target>
<source>&Help</source>
<target>&Hjälp</target>
<source>Usage:</source>
<target>Användning:</target>
<source>1. Select folders to watch.</source>
<target>1. Välj mapp att bevaka.</target>
<source>2. Enter a command line.</source>
<target>2. Mata in ett kommando.</target>
<source>3. Press 'Start'.</source>
<target>3. Tryck 'Start'.</target>
<source>To get started just import a .ffs_batch file.</source>
<target>Importera en .ffs_batch-fil för att komma igång</target>
<source>Folders to watch</source>
<target>Mappar att bevaka</target>
<source>Add folder</source>
<target>Lägg till mapp</target>
<source>Remove folder</source>
<target>Ta bort mapp</target>
<source>Browse</source>
<target>Bläddra</target>
<source>Select a folder</source>
<target>Markera en mapp</target>
<source>Idle time [seconds]</source>
<target>Inaktivitet [sekunder]</target>
<source>Idle time between last detected change and execution of command</source>
<target>Väntetid mellan senast upptäckta förändring och kommandoexekvering</target>
<source>
The command is triggered if:
- files or subfolders change
- new folders arrive (e.g. USB stick insert)
</source>
<target>
Kommandot triggas om:
- filer eller undermappar förändras
- nya mappar upptäcks (ex. USB-minne ansluts)
</target>
<source>Start</source>
<target>Start</target>
<source>&Retry</source>
<target>&Försök igen</target>
<source>Cancel</source>
<target>Avbryt</target>
<source>RealtimeSync - Automated Synchronization</source>
<target>RealtimeSync - Automatiserad synkronisering</target>
<source>Build: %x</source>
<target>Bygge: %x</target>
<source>About</source>
<target>Om</target>
<source>All files</source>
<target>Alla filer</target>
<source>Directory monitoring active</source>
<target>Mappövervakning aktiv</target>
<source>Waiting until all directories are available...</source>
<target>Väntar på att samtliga mappar skall bli tillgängliga...</target>
<source>&Restore</source>
<target>&Återställ</target>
<source>&Show error</source>
<target>&Visa fel</target>
<source>&Exit</source>
<target>&Avsluta</target>
<source>Invalid command line:</source>
<target>Ogiltig kommandorad:</target>
<source>File content</source>
<target>Filinnehåll</target>
<source>File time and size</source>
<target>Tidsstämpling och storlek</target>
<source>Two way</source>
<target>Tvåvägs</target>
<source>Mirror</source>
<target>Spegla</target>
<source>Update</source>
<target>Uppdatera</target>
<source>Custom</source>
<target>Anpassat</target>
<source>Multiple...</source>
<target>Flera...</target>
<source>Moving file %x to %y</source>
<target>Flyttar filen %x till %y</target>
<source>Moving folder %x to %y</source>
<target>Flyttar mappen %x till %y</target>
<source>Moving symbolic link %x to %y</source>
<target>Flyttar den symboliska länken %x till %y</target>
<source>Removing old versions...</source>
<target>Tar bort gamla versioner...</target>
<source>Creating symbolic link %x</source>
<target>Skapar den symboliska länken %x</target>
<source>Creating folder %x</source>
<target>Skapar mappen %x</target>
<source>Overwriting file %x</source>
<target>Skriver över filen %x</target>
<source>Overwriting symbolic link %x</source>
<target>Skriver över den symboliska länken %x</target>
<source>Verifying file %x</source>
<target>Verifierar %x</target>
<source>Updating attributes of %x</source>
<target>Uppdaterar attribut för %x</target>
<source>Cannot find %x.</source>
<target>Kan inte hitta %x.</target>
<source>Target folder %x already existing.</source>
<target>Målmappen %x finns redan.</target>
<source>Target folder input field must not be empty.</source>
<target>Indatafältet för målmapp får inte vara tomt.</target>
<source>Folder input field for versioning must not be empty.</source>
<target>Indatafältet för versionshantering får inte vara tomt.</target>
<source>Source folder %x not found.</source>
<target>Källmappen %x kan inte hittas.</target>
<source>The following items have unresolved conflicts and will not be synchronized:</source>
<target>Följande objekt har olösta konflikter, och kommer inte att synkroniseras:</target>
<source>The following folders are significantly different. Make sure you are matching the correct folders for synchronization.</source>
<target>Följande mappar är signifikant olika. Kontrollera att du jämför rätt mappar för synkronisering.</target>
<source>Not enough free disk space available in:</source>
<target>Ej tillräckligt ledigt diskutrymme på:</target>
<source>Required:</source>
<target>Utrymmeskrav:</target>
<source>Available:</source>
<target>Tillgängligt:</target>
<source>A folder will be modified which is part of multiple folder pairs. Please review synchronization settings.</source>
<target>En mapp som tillhör flera mapp-par är på väg att ändras. Kontrollera synkroniseringsinställningarna</target>
<source>Synchronizing folder pair:</source>
<target>Synkroniserar mapp-par:</target>
<source>Generating database...</source>
<target>Skapar databas...</target>
<source>Creating a Volume Shadow Copy for %x...</source>
<target>Skapar en 'Volume Shadow Copy' för %x...</target>
<source>Data verification error: %x and %y have different content.</source>
<target>Dataverifieringsfel: %x och %y har olika innehåll.</target>
<source>job name</source>
<target>åtgärdsnamn</target>
<source>Synchronization aborted</source>
<target>Synkronisering avbruten</target>
<source>Synchronization completed with errors</source>
<target>Synkronisering slutförd med fel</target>
<source>Synchronization completed with warnings</source>
<target>Synkronisering slutförd med varningar</target>
<source>Nothing to synchronize</source>
<target>Det finns inget att synkronisera</target>
<source>Synchronization completed successfully</source>
<target>Synkronisering slutförd</target>
<source>Saving log file %x...</source>
<target>Sparar loggfil %x...</target>
<source>Press "Switch" to resolve issues in FreeFileSync main dialog.</source>
<target>Tryck "Växla" för att lösa problem i FreeFileSyncs huvudfönster</target>
<source>Switching to FreeFileSync main dialog</source>
<target>Växlar till FreeFileSyncs huvuddialog</target>
<source>Retrying operation after error:</source>
<target>Försöker utföra åtgärden igen, efter fel:</target>
<source>A new version of FreeFileSync is available:</source>
<target>Det finns en ny version av FreeFileSync</target>
<source>Download now?</source>
<target>Ladda ner nu?</target>
<source>New version found</source>
<target>Ny version hittad</target>
<source>&Download</source>
<target>&Ladda ner</target>
<source>FreeFileSync is up to date.</source>
<target>FreeFileSync är uppdaterad.</target>
<source>Information</source>
<target>Information</target>
<source>Unable to connect to sourceforge.net.</source>
<target>Kan inte ansluta sourceforge.net.</target>
<source>Cannot find current FreeFileSync version number online. Do you want to check manually?</source>
<target>Kan inte hitta aktuellt versionsnummer online. Vill du kontrollera manuellt?</target>
<source>Symlink</source>
<target>Symboliska länkar</target>
<source>Folder</source>
<target>Mapp</target>
<source>Full path</source>
<target>Fullständig sökväg</target>
<source>Name</source>
<target>Namn</target>
<source>Relative path</source>
<target>Sökväg</target>
<source>Base folder</source>
<target>Basmapp</target>
<source>Size</source>
<target>Storlek</target>
<source>Date</source>
<target>Datum</target>
<source>Extension</source>
<target>Filformat</target>
<source>Category</source>
<target>Kategori</target>
<source>Action</source>
<target>Aktivitet</target>
<source>Drag && drop</source>
<target>Dra && släpp</target>
<source>Close progress dialog</source>
<target>Stäng förloppsindikator</target>
<source>Standby</source>
<target>Strömsparläge</target>
<source>Log off</source>
<target>Logga ut</target>
<source>Shut down</source>
<target>Stäng av datorn</target>
<source>Hibernate</source>
<target>Viloläge</target>
<source>Selected variant:</source>
<target>Vald variant:</target>
<source>Select alternate comparison settings</source>
<target>Välj alternativa jämförelseinställningar</target>
<source>Select alternate synchronization settings</source>
<target>Välj alternativa synkroniseringsinställningar</target>
<source>Filter is active</source>
<target>Filter är aktiverat</target>
<source>No filter selected</source>
<target>Inga filter aktiverade</target>
<source>Remove alternate settings</source>
<target>Ta bort alternativa inställningar</target>
<source>Clear filter settings</source>
<target>Rensa filterinställningar</target>
<source>Copy</source>
<target>Kopiera</target>
<source>Paste</source>
<target>Klistra in</target>
<source>&New</source>
<target>&Nytt</target>
<source>&Save</source>
<target>&Spara</target>
<source>Save as &batch job...</source>
<target>Spara som &batch-fil...</target>
<source>1. &Compare</source>
<target>1. &Jämför</target>
<source>2. &Synchronize</source>
<target>2. &Synkronisera</target>
<source>&Language</source>
<target>&Språk</target>
<source>&Export file list...</source>
<target>&Exportera fillista...</target>
<source>&Global settings</source>
<target>&Allmäna inställningar</target>
<source>&Tools</source>
<target>&Verktyg</target>
<source>&Check now</source>
<target>&Sök nu</target>
<source>Check &automatically once a week</source>
<target>Sök &automatiskt en gång per vecka</target>
<source>Check for new &version</source>
<target>Sök efter ny &version</target>
<source>Compare</source>
<target>Jämför</target>
<source>Comparison settings</source>
<target>Jämförelseinställningar</target>
<source>Synchronization settings</source>
<target>Synkroniseringsinställningar</target>
<source>Synchronize</source>
<target>Synkronisera</target>
<source>Add folder pair</source>
<target>Lägg till mapp-par</target>
<source>Remove folder pair</source>
<target>Ta bort mapp-par</target>
<source>Swap sides</source>
<target>Byt sida</target>
<source>Save as batch job</source>
<target>Spara som batch-fil</target>
<source>Hide excluded items</source>
<target>Dölj undantagna objekt</target>
<source>Show filtered or temporarily excluded files</source>
<target>Dölj filtrerade eller temporärt undantagna filer</target>
<source>Number of files and folders that will be created</source>
<target>Antal filer och mappar som kommer att skapas</target>
<source>Number of files that will be overwritten</source>
<target>Antal filer som kommer att skrivas över</target>
<source>Number of files and folders that will be deleted</source>
<target>Antal filer och mappar som kommer att tas bort</target>
<source>Total bytes to copy</source>
<target>Byte att kopiera</target>
<source>Items found:</source>
<target>Funna poster:</target>
<source>Speed:</source>
<target>Hastighet:</target>
<source>Time remaining:</source>
<target>Återstående tid:</target>
<source>Time elapsed:</source>
<target>Förfluten tid:</target>
<source>Synchronizing...</source>
<target>Synkroniserar...</target>
<source>Minimize to notification area</source>
<target>Minimera till meddelandefältet</target>
<source>On completion</source>
<target>Vid slutfört</target>
<source>Close</source>
<target>Stäng</target>
<source>&Pause</source>
<target>&Paus</target>
<source>Variant</source>
<target>Variant</target>
<source>Statistics</source>
<target>Statistik</target>
<source>&Don't show this dialog again</source>
<target>&Visa inte den här dialogen igen</target>
<source>Select a variant</source>
<target>Välj en variant</target>
<source>
Files are found equal if
- last write time and date
- file size
are the same
</source>
<target>
Filer betraktas som likvärdiga om
- tidsstämpel för 'Senast ändrad'
- filstorlek
är samma.
</target>
<source>
Files are found equal if
- file content
is the same
</source>
<target>
Filerna betecknas som lika om,
- filinnehållet
är lika
</target>
<source>Symbolic Link handling</source>
<target>Hantering av Symboliska länkar</target>
<source>Help</source>
<target>Hjälp</target>
<source>OK</source>
<target>OK</target>
<source>Identify and propagate changes on both sides. Deletions, moves and conflicts are detected automatically using a database.</source>
<target>Identifierar och sprider förändringar på båda sidor. Borttagningar, förflyttningar och konflikter detekteras automatiskt med hjälp av en databas.</target>
<source>Mirror backup of left folder. Right folder is modified to exactly match left folder after synchronization.</source>
<target>Speglar säkerhetskopia av vänster mapp. Höger mapp ändras för att exakt matcha vänster efter synkroniseringen.</target>
<source>Copy new or updated files to right folder.</source>
<target>Kopiera nya och uppdaterade filer till höger mapp.</target>
<source>Configure your own synchronization rules.</source>
<target>Konfigurera dina egna synkroniseringsregler.</target>
<source>Detect moved files</source>
<target>Hitta flyttade filer</target>
<source>Requires database files. Not supported by all file systems.</source>
<target>Kräver databasfiler som inte stöds av alla filsystem</target>
<source>Error handling</source>
<target>Felhantering</target>
<source>Ignore</source>
<target>Ignorera</target>
<source>Hide all error and warning messages</source>
<target>Visa inte fel- och varningsmeddelanden</target>
<source>Pop-up</source>
<target>Popup</target>
<source>Show pop-up on errors or warnings</source>
<target>Visa popup vid fel och varningar</target>
<source>Deletion handling</source>
<target>Borttagning</target>
<source>Permanent</source>
<target>Permanent</target>
<source>Delete or overwrite files permanently</source>
<target>Ta bort eller skriv över permanent</target>
<source>Recycle bin</source>
<target>Papperskorgen</target>
<source>Back up deleted and overwritten files in the recycle bin</source>
<target>Kopiera borttagna och överskrivna filer till papperskorgen</target>
<source>Versioning</source>
<target>Versionshantering</target>
<source>Move files to a user-defined folder</source>
<target>Flytta filer till en fördefinierad mapp</target>
<source>Naming convention:</source>
<target>Regler för namngivning</target>
<source>Batch job</source>
<target>Batch-jobb</target>
<source>Create a batch file for unattended synchronization. To start, double-click this file or schedule in a task planner: %x</source>
<target>Skapa en batch-fil för obevakad synkronisering. Dubbelklicka på filen för att starta den, eller schemalägg i en åtgärdshanterare: %x</target>
<source>Exit</source>
<target>Avsluta</target>
<source>Abort synchronization on first error</source>
<target>Avbryt synkronisering vid första felet</target>
<source>Show progress dialog</source>
<target>Visa förloppsindikator</target>
<source>Save log</source>
<target>Spara logg</target>
<source>Select folder to save log files</source>
<target>Väl en mapp att spara loggfiler i</target>
<source>Limit</source>
<target>Begränsa</target>
<source>Limit maximum number of log files</source>
<target>Begränsa antalet loggfiler</target>
<source>Source code written in C++ using:</source>
<target>Källkod skriven i C++ med hjälp av:</target>
<source>If you like FreeFileSync</source>
<target>Om du gillar FreeFileSync</target>
<source>Donate with PayPal</source>
<target>Donera via PayPal</target>
<source>Many thanks for localization:</source>
<target>Tack för översättning:</target>
<source>Feedback and suggestions are welcome</source>
<target>Återkoppling och förslag är välkommna</target>
<source>Homepage</source>
<target>Hemsida</target>
<source>Email</source>
<target>E-post</target>
<source>Published under the GNU General Public License</source>
<target>Publiserad under GNU General Public License</target>
<source>Delete on both sides</source>
<target>Ta bort på båda sidor</target>
<source>Delete on both sides even if the file is selected on one side only</source>
<target>Ta bort på båda sidor, även om filen är markerad på endast en sida</target>
<source>
Files will only be synchronized if they pass all filter rules.
Note: File paths must be relative to base directories.
</source>
<target>
Filer synkroniseras endast om de klarar alla filterregler.
OBS! Sökvägar måste vara relaterade till ursprungsmappar.
</target>
<source>Include</source>
<target>Inkludera</target>
<source>Exclude</source>
<target>Undanta</target>
<source>Time span</source>
<target>Tidsintervall</target>
<source>File size</source>
<target>Filstorlek</target>
<source>Minimum</source>
<target>Minimum</target>
<source>Maximum</source>
<target>Maximum</target>
<source>&Clear</source>
<target>&Rensa</target>
<source>Global settings</source>
<target>Allmäna inställningar</target>
<source>Fail-safe file copy</source>
<target>Felsäker filkopiering</target>
<source>Copy to a temporary file (*.ffs_tmp) first then rename it. This guarantees a consistent state even in case of a fatal error.</source>
<target>Kopiera till en temporär fil först (*.ffs_tmp), och byt sedan namn på den. Detta garanterar ett konsekvent tillstånd även vid allvarliga fel.</target>
<source>Copy locked files</source>
<target>Kopiera låsta filer</target>
<source>Copy shared or locked files using the Volume Shadow Copy Service (requires administrator rights)</source>
<target>Kopiera delade eller låsta filer med tjänsten 'Volume Shadow Copy' (kräver administratörsbehörighet)</target>
<source>Copy file access permissions</source>
<target>Kopiera filåtkomstbehörigheter</target>
<source>Transfer file and folder permissions (requires administrator rights)</source>
<target>Överför fil- och mappbehörigheter (kräver administratörsbehörighet)</target>
<source>Restore hidden dialogs</source>
<target>Återställ dolda dialoger</target>
<source>External applications</source>
<target>Externa program</target>
<source>Description</source>
<target>Beskrivning</target>
<source>&Default</source>
<target>&Standard</target>
<source>Find what:</source>
<target>Sök efter:</target>
<source>Match case</source>
<target>Matcha gemener/VERSALER</target>
<source>&Find next</source>
<target>&Sök nästa</target>
<source>Start synchronization</source>
<target>Starta synkronisering</target>
<source>Delete</source>
<target>Ta bort</target>
<source>Configure filter</source>
<target>Filterinställningar</target>
<source>Find</source>
<target>Sök</target>
<source>Select time span</source>
<target>Välj tidsintervall</target>
<source>Folder pairs</source>
<target>Mapp-par</target>
<source>Overview</source>
<target>Översikt</target>
<source>Configuration</source>
<target>Inställningar</target>
<source>Main bar</source>
<target>Huvudfält</target>
<source>Filter files</source>
<target>Undantag</target>
<source>Select view</source>
<target>Välj vy</target>
<source>Open...</source>
<target>Öppna...</target>
<source>Save</source>
<target>Spara</target>
<source>Compare both sides</source>
<target>Jämför båda sidor</target>
<source>
<pluralform>Do you really want to execute the command %y for 1 item?</pluralform>
<pluralform>Do you really want to execute the command %y for %x items?</pluralform>
</source>
<target>
<pluralform>Vill du verkligen köra kommandot %y för 1 objekt?</pluralform>
<pluralform>Vill du verkligen köra kommandot %y för %x objekt?</pluralform>
</target>
<source>Confirm</source>
<target>Bekräfta</target>
<source>&Execute</source>
<target>&Kör</target>
<source>
<pluralform>1 directory</pluralform>
<pluralform>%x directories</pluralform>
</source>
<target>
<pluralform>1 mapp</pluralform>
<pluralform>%x mappar</pluralform>
</target>
<source>
<pluralform>1 file</pluralform>
<pluralform>%x files</pluralform>
</source>
<target>
<pluralform>1 fil</pluralform>
<pluralform>%x filer</pluralform>
</target>
<source>
<pluralform>%y of 1 row in view</pluralform>
<pluralform>%y of %x rows in view</pluralform>
</source>
<target>
<pluralform>%y av 1 rad i vyn</pluralform>
<pluralform>%y av %x rader i vyn</pluralform>
</target>
<source>Set direction:</source>
<target>Ange riktning:</target>
<source>Exclude temporarily</source>
<target>Undanta tillfälligt</target>
<source>Include temporarily</source>
<target>Inkludera tillfälligt</target>
<source>multiple selection</source>
<target>flerval</target>
<source>Include via filter:</source>
<target>Inkludera via filter:</target>
<source>Exclude via filter:</source>
<target>Lägg till i undantag:</target>
<source>Include all</source>
<target>Inkludera alla</target>
<source>Exclude all</source>
<target>Exkludera alla</target>
<source>Show icons:</source>
<target>Visa ikoner</target>
<source>Small</source>
<target>Liten</target>
<source>Medium</source>
<target>Normal</target>
<source>Large</source>
<target>Stor</target>
<source>Select time span...</source>
<target>Välj tidsintervall...</target>
<source>Default view</source>
<target>Standardvy</target>
<source>Show "%x"</source>
<target>Visa "%x"</target>
<source>Last session</source>
<target>Senaste session</target>
<source>Folder Comparison and Synchronization</source>
<target>Mappjämförelse och synkronisering</target>
<source>Configuration saved</source>
<target>Inställningar sparade</target>
<source>FreeFileSync batch</source>
<target>FreeFileSync batch</target>
<source>Do you want to save changes to %x?</source>
<target>Vill du spara ändringar till %x?</target>
<source>Do&n't save</source>
<target>Spara &inte</target>
<source>Never save &changes</source>
<target>Spara aldrig &ändringar</target>
<source>Show files that exist on left side only</source>
<target>Visa filer som endast finns till vänster</target>
<source>Show files that exist on right side only</source>
<target>Visa filer som endast finns till höger</target>
<source>Show files that are newer on left</source>
<target>Visa filer som är nyare till vänster</target>
<source>Show files that are newer on right</source>
<target>Visa filer som är nyare till höger</target>
<source>Show files that are equal</source>
<target>Visa filer som är lika</target>
<source>Show files that are different</source>
<target>Visa filer som är olika</target>
<source>Show conflicts</source>
<target>Visa konflikter</target>
<source>Show files that will be created on the left side</source>
<target>Visa filer som kommer att skapas till vänster</target>
<source>Show files that will be created on the right side</source>
<target>Visa filer som kommer att skapas till höger</target>
<source>Show files that will be deleted on the left side</source>
<target>Visa filer som kommer att tas bort till vänster</target>
<source>Show files that will be deleted on the right side</source>
<target>Visa filer som kommer att tas bort till höger</target>
<source>Show files that will be overwritten on left side</source>
<target>Visa filer som skrivas över till vänster</target>
<source>Show files that will be overwritten on right side</source>
<target>Visa filer som skrivas över till höger</target>
<source>Show files that won't be copied</source>
<target>Visa filer som inte kommer att kopieras</target>
<source>Set as default</source>
<target>Ange som standard</target>
<source>Operation aborted</source>
<target>Processen avbruten</target>
<source>All folders are in sync</source>
<target>Alla mappar är synkroniserade</target>
<source>Comma-separated values</source>
<target>Kommaseparerade värden</target>
<source>File list exported</source>
<target>Fillista exporterad</target>
<source>Searching for program updates...</source>
<target>Söker efter programuppdateringar...</target>
<source>&Ignore subsequent errors</source>
<target>&Ignorera efterföljande fel</target>
<source>&Ignore</source>
<target>&Ignorera</target>
<source>Fatal Error</source>
<target>Allvarligt fel</target>
<source>&Don't show this warning again</source>
<target>&Visa inte den här varningen igen</target>
<source>&Switch</source>
<target>&Växla</target>
<source>Question</source>
<target>Fråga</target>
<source>&Yes</source>
<target>&Ja</target>
<source>&No</source>
<target>&Nej</target>
<source>Scanning...</source>
<target>Skannar...</target>
<source>Comparing content...</source>
<target>Jämför innehåll...</target>
<source>Info</source>
<target>Info</target>
<source>Paused</source>
<target>Pausad</target>
<source>Initializing...</source>
<target>Initierar...</target>
<source>Aborted</source>
<target>Användaren avbröt</target>
<source>Completed</source>
<target>Slutförd</target>
<source>&Continue</source>
<target>&Fortsätt</target>
<source>Log</source>
<target>Logg</target>
<source>Cannot find %x</source>
<target>Kan inte hitta %x</target>
<source>Inactive</source>
<target>Inaktiv</target>
<source>Today</source>
<target>Idag</target>
<source>This week</source>
<target>Denna veckan</target>
<source>This month</source>
<target>Denna månaden</target>
<source>This year</source>
<target>I år</target>
<source>Last x days</source>
<target>Senaste x dagarna</target>
<source>Byte</source>
<target>Byte</target>
<source>KB</source>
<target>KB</target>
<source>MB</source>
<target>MB</target>
<source>Filter</source>
<target>Filter</target>
<source>
<pluralform>Do you really want to move the following item to the recycle bin?</pluralform>
<pluralform>Do you really want to move the following %x items to the recycle bin?</pluralform>
</source>
<target>
<pluralform>Vill du verkligen flytta följande objekt till papperskorgen?</pluralform>
<pluralform>Vill du verkligen flytta följande %x objekt till papperskorgen?</pluralform>
</target>
<source>
<pluralform>Do you really want to delete the following item?</pluralform>
<pluralform>Do you really want to delete the following %x items?</pluralform>
</source>
<target>
<pluralform>Vill du verkligen ta bort följande objekt?</pluralform>
<pluralform>Vill du verkligen ta bort följande %x objekt?</pluralform>
</target>
<source>Direct</source>
<target>Direkt</target>
<source>Follow</source>
<target>Följ</target>
<source>Copy NTFS permissions</source>
<target>Kopiera NTFS-behörigheter</target>
<source>Integrate external applications into context menu. The following macros are available:</source>
<target>Integrera externa program i högerklicksmeny. Följande variabler finns tillgängliga:</target>
<source>- full file or folder name</source>
<target>- fullständigt fil- eller mappnamn</target>
<source>- folder part only</source>
<target>- endast mappdelen</target>
<source>- Other side's counterpart to %item_path%</source>
<target>- Andra sidans motsvarighet till %item_path%</target>
<source>- Other side's counterpart to %item_folder%</source>
<target>- Andra sidans motsvarighet till %item_folder%</target>
<source>Make hidden warnings and dialogs visible again?</source>
<target>Vill du göra dolda varningar och dialoger, synliga igen?</target>
<source>Leave as unresolved conflict</source>
<target>Ignorera konflikt</target>
<source>Replace</source>
<target>Byt ut</target>
<source>Move files and replace if existing</source>
<target>Flytta filer och byt ut om de redan finns</target>
<source>Time stamp</source>
<target>Tidsstämpel</target>
<source>Append a timestamp to each file name</source>
<target>Lägg till en tidsstämpel till varje filnamn</target>
<source>File</source>
<target>Fil</target>
<source>YYYY-MM-DD hhmmss</source>
<target>YYYY-MM-DD hhmmss</target>
<source>Files</source>
<target>Filer</target>
<source>Items</source>
<target>Objekt</target>
<source>Percentage</source>
<target>Procent</target>
<source>Cannot monitor directory %x.</source>
<target>Mappen %x kan inte övervakas.</target>
<source>Conversion error:</source>
<target>Konversionsfel:</target>
<source>Cannot delete file %x.</source>
<target>Filen %x kan inte tas bort.</target>
<source>The file is locked by another process:</source>
<target>Filen är låst av en annan process:</target>
<source>Cannot move file %x to %y.</source>
<target>Kan inte flytta filen %x till %y.</target>
<source>Cannot delete directory %x.</source>
<target>Kan inte ta bort mappen %x.</target>
<source>Cannot write file attributes of %x.</source>
<target>Kan inte skriva filattribut för %x.</target>
<source>Cannot write modification time of %x.</source>
<target>Kan inte ändra tidsangivelsen för %x.</target>
<source>Cannot read security context of %x.</source>
<target>Kan inte läsa säkerhetskontext för %x.</target>
<source>Cannot write security context of %x.</source>
<target>Kan inte skriva säkerhetskontext för %x.</target>
<source>Cannot read permissions of %x.</source>
<target>Kan inte läsa behörigheter för %x.</target>
<source>Cannot write permissions of %x.</source>
<target>Kan inte skriva behörigheter för %x.</target>
<source>Cannot create directory %x.</source>
<target>Kan inte skapa mappen %x.</target>
<source>Cannot create symbolic link %x.</source>
<target>Kan inte skapa den symboliska länken, %x</target>
<source>Cannot find system function %x.</source>
<target>Kan inte hitta systemfunktion %x</target>
<source>Cannot copy file %x to %y.</source>
<target>Kan inte kopiera filen %x till %y.</target>
<source>Type of item %x is not supported:</source>
<target>Objekttyp %x stöds ej:</target>
<source>Cannot resolve symbolic link %x.</source>
<target>Den symboliska länken %x kan inte matchas.</target>
<source>Cannot open directory %x.</source>
<target>Kan inte öppna %x.</target>
<source>Cannot enumerate directory %x.</source>
<target>Kan inte räkna upp %x.</target>
<source>%x TB</source>
<target>%x TB</target>
<source>%x PB</source>
<target>%x PB</target>
<source>
<pluralform>1 min</pluralform>
<pluralform>%x min</pluralform>
</source>
<target>
<pluralform>1 min</pluralform>
<pluralform>%x min</pluralform>
</target>
<source>
<pluralform>1 hour</pluralform>
<pluralform>%x hours</pluralform>
</source>
<target>
<pluralform>1 timma</pluralform>
<pluralform>%x timmar</pluralform>
</target>
<source>
<pluralform>1 day</pluralform>
<pluralform>%x days</pluralform>
</source>
<target>
<pluralform>1 dag</pluralform>
<pluralform>%x dagar</pluralform>
</target>
<source>Failed to register to receive system messages.</source>
<target>Kunde inte registrera att ta emot systemmeddelanden</target>
<source>Cannot set privilege %x.</source>
<target>Kan inte att ange behörigheten %x.</target>
<source>Failed to suspend system sleep mode.</source>
<target>Kunde inte avbryta systemet vänteläge</target>
<source>Cannot change process I/O priorities.</source>
<target>Kan inte ändra process I/O-prioritet</target>
<source>Unable to move %x to the recycle bin.</source>
<target>Kan inte att flytta %x till papperskorgen</target>
<source>Cannot determine final path for %x.</source>
<target>Kan inte utläsa slutlig sökväg för %x.</target>
<source>Error Code %x:</source>
<target>Felkod %x:</target>
|