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
|
(*
Tux Commander - UTranslation_SV - Swedish Localization constants
Copyright (C) 2004 Johan Ćkesson <johan@badanka.com>
!! Currently unmaintained, new translator needed !!
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*)
unit UTranslation_SV;
interface
implementation
uses ULocale;
const LANGsvF2Button_Caption = 'F2 - Byt namn';
LANGsvF3Button_Caption = 'F3 - LĂ€s';
LANGsvF4Button_Caption = 'F4 - Editera';
LANGsvF5Button_Caption = 'F5 - Kopiera';
LANGsvF6Button_Caption = 'F6 - Flytta';
LANGsvF7Button_Caption = 'F7 - MkDir';
LANGsvF8Button_Caption = 'F8 - Ta bort';
LANGsvmnuFile_Caption = '_Arkiv';
LANGsvmnuMark_Caption = '_Markera';
LANGsvmnuCommands_Caption = '_Kommandon';
LANGsvmnuHelp_Caption = '_HjÀlp';
LANGsvmiExit_Caption = 'E_xit';
LANGsvmiSelectGroup_Caption = 'VĂ€lj _Grupp...';
LANGsvmiUnselectGroup_Caption = '_Avmarkera Grupp...';
LANGsvmiSelectAll_Caption = '_VĂ€lj Alla';
LANGsvmiUnselectAll_Caption = 'A_vmarkera Allt';
LANGsvmiInvertSelection_Caption = '_OmvÀnt Val';
LANGsvmiRefresh_Caption = '_Uppdatera';
LANGsvmiAbout_Caption = '_Om...';
LANGsvColumn1_Caption = 'Namn';
LANGsvColumn2_Caption = 'Ext';
LANGsvColumn3_Caption = 'Strl';
LANGsvColumn4_Caption = 'Datum';
LANGsvColumn5_Caption = 'Attr';
LANGsvExpandSelection = 'Expandera val';
LANGsvShrinkSelection = 'Minimera val';
LANGsvNoMatchesFound = 'Inga trÀffar funna';
LANGsvNoFilesSelected = 'Inga filer valda!';
LANGsvSelectedFilesDirectories = '%d valda filer/kataloger';
LANGsvDirectoryS = 'katalog %s';
LANGsvFileS = 'fil %s';
LANGsvDoYouReallyWantToDeleteTheS = 'Vill du verkligen radera %s ?';
LANGsvDoYouReallyWantToDeleteTheSS = 'Vill du verkligen radera %s ?'#10'%s';
LANGsvCopyFiles = 'Kopiera filer';
LANGsvMoveRenameFiles = 'Flytta/Döp om files';
LANGsvCopyDFileDirectoriesTo = 'Kopiera %d fil/kataloger till';
LANGsvMoveRenameDFileDirectoriesTo = 'Flytta/Döp om %d fil/kataloger till';
LANGsvCopySC = 'Kopiera:';
LANGsvMoveRenameSC = 'Flytta/Döp om:';
LANGsvQuickFind = ' Snabbsök:';
LANGsvAboutString = 'Tux Commander'#10'Version %s'#10'Build date: %s'#10#10'Copyright (c) 2008 Tomas Bzatek'#10'E-mail: tbzatek@users.sourceforge.net'#10'Website: http://tuxcmd.sourceforge.net/';
LANGsvAboutStringGnome = 'version %s'#10'Build date: %s'#10'Website: http://tuxcmd.sourceforge.net/';
LANGsvDiskStatFmt = '%s of %s kB ledigt';
LANGsvDiskStatVolNameFmt = '[%s] %s av %s kB ledigt';
LANGsvStatusLineFmt = '%s of %s kB i %d av %d filer valda';
LANGsvPanelStrings : array[boolean] of string = ('höger', 'vÀnster');
LANGsvDIR = '<DIR>';
LANGsvErrorGettingListingForSPanel = 'Fel vid hÀmtning av listning for %s panel:'#10' %s'#10#10'SökvÀg = ''%s''';
LANGsvErrorGettingListingForSPanelNoPath = 'Fel vid hÀmtning av listning för %s panel:'#10' %s';
LANGsvErrorCreatingNewDirectorySInSPanel = 'Fel vid skapande av ny katalog ''%s'' i %s panel:'#10' %s';
LANGsvErrorCreatingNewDirectorySInSPanelNoPath = 'Fel vid skapande av ny katalog i %s panel:'#10' %s';
LANGsvTheFileDirectory = 'Filen/katalogen';
LANGsvCouldNotBeDeleted = 'kunde inte raderas';
LANGsvCouldNotBeDeletedS = 'kunde inte raderas: %s';
LANGsvUserCancelled = 'AnvÀndaren avbröt!';
LANGsvTheDirectorySIsNotEmpty = 'Katalogen %s Àr inte tom!';
LANGsvCannotCopyFile = 'Kan inte kopiera fil';
LANGsvCopyError = 'Kopieringsfel';
LANGsvMoveError = 'Flyttningsfel';
LANGsvOverwriteS = 'Skriv över: %s';
LANGsvWithFileS = 'Med fil: %s';
LANGsvOvewriteSBytesS = '%s bytes, %s';
LANGsvTheFile = 'Filen';
LANGsvCopy = 'Kopiera';
LANGsvMove = 'Flytta';
LANGsvTheDirectory = 'Katalogen';
LANGsvTheSymbolicLink = 'Den symboliska lÀnken';
LANGsvCannotMoveFile = 'Kan inte flytta fil';
LANGsvCouldNotBeCreated = 'kunde inte skapas';
LANGsvCouldNotBeCreatedS = 'kunde inte skapas: %s';
LANGsvFromS = 'FrÄn: %s';
LANGsvToS = 'Till: %s';
LANGsvCannotCopyFileToItself = 'Kan inte kopiera fil till sig sjÀlv';
LANGsvMemoryAllocationFailed = 'Minnesallokation misslyckades:';
LANGsvCannotOpenSourceFile = 'Kan inte öppna kÀllfil';
LANGsvCannotOpenDestinationFile = 'Kan inte öppna mÄlfil';
LANGsvCannotCloseDestinationFile = 'Kan inte stÀnga mÄlfil';
LANGsvCannotCloseSourceFile = 'Kan inte stÀnga kÀllfil';
LANGsvCannotReadFromSourceFile = 'Kan inte lÀsa frÄn kÀllfil';
LANGsvCannotWriteToDestinationFile = 'Kan inte skriva till mÄlfil';
LANGsvUnknownException = 'OkÀnd Avvikelse';
LANGsvNoAccess = 'Ingen Behörighet';
LANGsvUnknownError = 'OkÀnt Fel';
LANGsvCreateANewDirectory = 'Skapa en ny katalog';
LANGsvEnterDirectoryName = 'Fyll i _katalognamn:';
LANGsvOverwriteQuestion = 'Skriv över frÄga';
LANGsvOverwriteButton_Caption = '_Skriv över';
LANGsvOverwriteAllButton_Caption = 'Skriv över _allt';
LANGsvSkipButton_Caption = '_Skippa';
LANGsvOverwriteAllOlderButton_Caption = 'Skriv över alla Àldre';
LANGsvSkipAllButton_Caption = 'S_kippa alla';
LANGsvRenameButton_Caption = '_Byt namn';
LANGsvAppendButton_Caption = 'L_Ă€gg till';
LANGsvRename = 'Byt namn';
LANGsvRenameFile = 'Byt namn pÄ ''%s'' till';
LANGsvIgnoreButton_Caption = '_Ignorera';
LANGsvProgress = 'Framsteg';
LANGsvCancel = '_Avbryt';
LANGsvDelete = 'Radera:';
LANGsvSpecifyFileType = '_Specifiera filtyp:';
LANGsvRemoveDirectory = 'Radera katalog';
LANGsvDoYouWantToDeleteItWithAllItsFilesAndSubdirectories = 'Vill du radera den med alla dess filer och underkataloger?';
LANGsvRetry = '_Försök igen';
LANGsvDeleteButton_Caption = '_Radera';
LANGsvAll = '_Allt';
LANGsvCopyFilesSC = 'Kopiera filer:';
LANGsvAppendQuestion = 'Ăr du sĂ€ker pĂ„ att du vill lĂ€gga till fil ''%s'' till ''%s''?';
LANGsvPreparingList = 'Förbereder lista...';
LANGsvYouMustSelectAValidFile = 'Du mÄste vÀlja en giltig fil!';
LANGsvmiVerifyChecksums = '_Verifierar checksums';
LANGsvVerifyChecksumsCaption = 'Verifiera checksums';
LANGsvCheckButtonCaptionCheck = '_Kontrollera';
LANGsvCheckButtonCaptionStop = '_Stopp';
LANGsvFileListTooltip = '[?] - Inte kontrollerad'#10'[OK] - Checksum OK'#10'[BAD] - Checksum BAD'#10'[N/A] - Filen inte tillgÀnglig';
LANGsvFilenameColumnCaption = 'Filnamn';
LANGsvTheFileSYouAreTryingToOpenIsQuiteBig = 'Filen ''%s'' som du försöker öppna Àr relativt stor (%s bytes). Det kanske inte Àr en giltig checksum-fil.'#10#10'Vill du ladda den ÀndÄ?';
LANGsvAnErrorOccuredWhileInitializingMemoryBlock = 'Ett fel uppstod medan minnesblocket initierades. StÀng alla program och försök igen.';
LANGsvAnErrorOccuredWhileOpeningFileSS = 'Ett fel uppstod vid öppnandet av ''%s'':'#10' %s';
LANGsvAnErrorOccuredWhileReadingFileSS = 'Ett fel uppstod vid lÀsning av ''%s'':'#10' %s';
LANGsvChecksumNotChecked = '<span weight="bold">Status:</span> Inte kontrollerad';
LANGsvChecksumChecking = '<span weight="bold">Status:</span> Kontrollerar...';
LANGsvChecksumInterrupted = '<span weight="bold">Status:</span> Avbruten';
LANGsvChecksumDOK = '<span weight="bold">Status:</span> %d%% OK';
LANGsvmiCreateChecksumsCaption = '_Skapa checksums...';
LANGsvYouMustSelectAtLeastOneFileToCalculateChecksum = 'Du mÄste vÀlja Ätminstone en fil för att rÀkna ut checksums!';
LANGsvCreateChecksumsCaption = 'Skapa checksums';
LANGsvCCHKSUMPage1Text = 'Du kommer att skapa checksums för'#10'de valda filerna. Om du inte valde'#10'alla filer du vill anvÀndat, stÀng den hÀr druiden och'#10'vÀlj fler filer.';
LANGsvCCHKSUMPage4Text = 'Druiden Àr redo att skapa checksums för dina'#10'valda filer. Den hÀr processen kan ta ett par minuter.'#10'Tryck FramÄt för att fortsÀtta.';
LANGsvCCHKSUMPage6Text = 'Det uppstod fel vid skapandet av checksums:';
LANGsvCCHKSUMPage7Text = 'Skapandet av checksums Àr fÀrdigt och'#10'dina filer Àr fÀrdiga.'#10#10'Klicka "Avsluta" för att avsluta.';
LANGsvCCHKSUMPage1Title = '<span size="xx-large" weight="ultrabold">Förbered filer för checksum</span>';
LANGsvCCHKSUMPage2Title = '<span size="xx-large" weight="ultrabold">VĂ€lj checksums-filtyper</span>';
LANGsvCCHKSUMPage3Title = '<span size="xx-large" weight="ultrabold">VĂ€lj filnamn</span>';
LANGsvCCHKSUMPage4Title = '<span size="xx-large" weight="ultrabold">Redo att kontrollera</span>';
LANGsvCCHKSUMPage5Title = '<span size="xx-large" weight="ultrabold">Kontrollerar...</span>';
LANGsvCCHKSUMPage6Title = '<span size="xx-large" weight="ultrabold">Fel!</span>';
LANGsvCCHKSUMPage7Title = '<span size="xx-large" weight="ultrabold">FĂ€rdig</span>';
LANGsvCCHKSUMSFVFile = 'SFV-fil';
LANGsvCCHKSUMMD5sumFile = 'MD5sum-fil';
LANGsvCCHKSUMFileName = 'Fil _namn:';
LANGsvCCHKSUMCreateSeparateChecksumFiles = 'Skapa _separata checksum-filer';
LANGsvCCHKSUMNowProcessingFileS = 'Kontrollerar nu fil: %s';
LANGsvCCHKSUMFinishCaption = '_Avsluta';
LANGsvCCHKSUMAreYouSureYouWantToAbortTheProcessing = 'Ăr du sĂ€ker pĂ„ att du vill avbryta?';
LANGsvCCHKSUMAnErrorOccuredWhileOpeningFileSS = 'Ett fel uppstod vid öppnandet av ''%s'': %s'#10;
LANGsvCCHKSUMAnErrorOccuredWhileReadingFileSS = 'Ett fel uppstod vid lÀsandet av ''%s'': %s'#10;
LANGsvCCHKSUMAnErrorOccuredWhileWritingFileSS = 'Ett fel uppstod vid skrivandet till ''%s'': %s'#10;
LANGsvAnErrorOccuredWhileWritingFileSS = 'Ett fel uppstod vid skrivandet till ''%s'':'#10' %s';
LANGsvTheTargetFileSAlreadyExistsDoYouWantToOverwriteIt = 'MÄlfilen ''%s'' existerar redan. Vill du skriva över den?';
LANGsvTheTargetFileSCannotBeRemovedS = 'MÄlfilen ''%s'' kan inte raderas: %s';
LANGsvMergeCaption = 'Förena';
LANGsvPleaseInsertNextDiskOrGiveDifferentLocation = 'Var god sÀtt i nÀsta disk eller ange annan plats:';
LANGsvMergeOfSSucceeded = 'Förening av ''%s'' lyckades (CRC checksum OK).';
LANGsvWarningCreatedFileFailsCRCCheck = 'Varning: Skapad fil passerar inte CRC-kontrollen!';
LANGsvMergeOfSSucceeded_NoCRCFileAvailable = 'Förening av ''%s'' lyckades (ingen CRC-fil tillgÀnglig).';
LANGsvMergeSAndAllFilesWithAscendingNamesToTheFollowingDirectory = 'Förena ''%s'' och alla filer med stigande namn till följande katalog:';
LANGsvMergeSC = 'Förena:';
LANGsvmiSplitFileCaption = '_Dela Fil...';
LANGsvmiMergeFilesCaption = '_Förena Filer...';
LANGsvSplitTheFileSToDirectory = '_Dela filen ''%s'' till katalog:';
LANGsvSplitSC = 'Dela:';
LANGsvSplitFile = 'Dela Fil';
LANGsvBytesPerFile = '_Bytes per fil:';
LANGsvAutomatic = 'Automatisk';
LANGsvDeleteFilesOnTargetDisk = '_Radera filer pÄ mÄldisk (anvÀndbart pÄ flyttbara enheter)';
LANGsvSplitCaption = 'Dela';
LANGsvCannotOpenFileS = 'Kan inte öppna fil ''%s''';
LANGsvCannotSplitTheFileToMoreThan999Parts = 'Kan inte dela filen i mer Àn 999 delar!';
LANGsvThereAreSomeFilesInTheTargetDirectorySDoYouWantToDeleteThem = 'Det existerar nÄgra filer i mÄlkatalogen:'#10'%s'#10'Vill du radera dem?';
LANGsvThereAreDFilesInTheTargetDirectoryDoYouWantToDeleteThem = 'Det finns %d filer i mÄlkatalogen. Vill du radera dem?';
LANGsvAnErrorOccuredWhileOperationS = 'Ett fel uppstod vid: %s';
LANGsvSplitOfSSucceeded = 'Delning av ''%s'' lyckades.';
LANGsvSplitOfSFailed = 'Delning av ''%s'' misslyckades!';
LANGsvmnuShow_Caption = 'Vis_a';
LANGsvmiShowDotFiles_Caption = 'Visa _punktfiler';
LANGsvTheFileYouAreTryingToOpenIsQuiteBig = 'Filen du försöker öppna Àr relativt stor. Genom att ladda den i ett externt program (som gedit) kan systemet bli lÄngsamt.'#10'Vill du fortsÀtta?';
LANGsvCannotExecuteSPleaseCheckTheConfiguration = 'Kan inte exekvera ''%s''. Var god kontrollera konfigurationen eller stÀll in filtyps-associationen korrekt.';
LANGsvEdit = 'Editera';
LANGsvEnterFilenameToEdit = '_Fyll i filnamn att editera:';
LANGsvmnuSettings_Caption = 'In_stÀllningar';
LANGsvmiFileTypes_Caption = 'Fil_typer...';
LANGsvThereIsNoApplicationAssociatedWithS = 'Det finns inget program associerat med "%s".'#10#10'Du kan konfigurera Tux Commander att associera program med filtyper. Vill du associera ett program med den hÀr filen?';
LANGsvErrorExecutingCommand = 'Kommandot misslyckades!';
LANGsvEditFileTypesCaption = 'Editera filtyper';
LANGsvTitleLabel_Caption = '<span size="x-large" weight="ultrabold">Filtypskonfiguration</span>';
LANGsvExtensionsColumn = 'Extensions';
LANGsvDescriptionColumn = 'Beskrivning';
LANGsvFileTypesList = 'Filtypslista';
LANGsvActionName = 'HĂ€ndelsenamn';
LANGsvCommand = 'Kommando';
LANGsvSetDefaultActionButton_Caption = '_SĂ€tt som standard';
LANGsvRunInTerminalCheckBox_Caption = 'Kör i _Terminal';
LANGsvAutodetectCheckBox_Caption = 'AutoupptÀck _GUI-program';
LANGsvBrowseButton_Caption = '_BlÀddra...';
LANGsvCommandLabel_Caption = 'Ko_mmando:';
LANGsvDescriptionLabel_Caption = 'B_eskrivning:';
LANGsvFNameExtLabel_Caption = 'L_Ă€gg till extension:';
LANGsvNotebookPageExtensions = 'Filtyp';
LANGsvNotebookPageActions = 'HĂ€ndelser';
LANGsvDefault = ' (standard)';
LANGsvCannotSaveFileTypeAssociationsBecauseOtherProcess = 'Kan inte spara filtypsassociation dÀrför att en annan process har uppdaterat den under tiden som det hÀr programmet körts.';
LANGsvDefaultColor = 'St_andardfÀrg';
LANGsvIcon = '_Ikon:';
LANGsvBrowseForIcon = 'BlÀddra efter ikon';
LANGsvSelectFileTypeColor = 'VÀlj filtypsfÀrg';
LANGsvColor = 'FĂ€_rg:';
LANGsvmiChangePermissions_Caption = 'Ăndra RĂ€t_ttigheter...';
LANGsvmiChangeOwner_Caption = 'Ăndra _Ăgare/Grupp...';
LANGsvmiCreateSymlink_Caption = 'Skapa Sym_lÀnk...';
LANGsvmiEditSymlink_Caption = '_Editera SymlÀnk...';
LANGsvChmodProgress = 'Ăndra rĂ€ttigheter:';
LANGsvChownProgress = 'Ăndra Ă€gare:';
LANGsvYouMustSelectAValidSymbolicLink = 'Du mÄste vÀlja en giltig symbolisk lÀnk!';
LANGsvPopupRunS = 'E_xekvera %s';
LANGsvPopupOpenS = 'Ă_ppna %s';
LANGsvPopupGoUp = '_GĂ„ upp';
LANGsvPopupOpenWithS = 'Ăppna med %s';
LANGsvPopupDefault = ' (standard)';
LANGsvPopupOpenWith = 'Ă_ppna med...';
LANGsvPopupViewFile = '_LĂ€s fil';
LANGsvPopupEditFile = 'Ed_itera fil';
LANGsvPopupMakeSymlink = 'Skapa _symlÀnk';
LANGsvPopupRename = '_Döp om';
LANGsvPopupDelete = '_Radera';
LANGsvDialogChangePermissions = 'Ăndra rĂ€ttigheter';
LANGsvCouldNotBeChmoddedS = 'kunde inte chmoddas: %s';
LANGsvDialogChangeOwner = 'Ăndra Ă€gare';
LANGsvCouldNotBeChownedS = 'kunde inte chownas: %s';
LANGsvDialogMakeSymlink = 'Skapa symlÀnk';
LANGsvDialogEditSymlink = 'Editera symlÀnk';
LANGsvFEditSymlink_Caption = 'Editera symbolisk lÀnk';
LANGsvFEditSymlink_SymbolicLinkFilename = '_Symbolisk lÀnk filnamn:';
LANGsvFEditSymlink_SymbolicLinkPointsTo = 'Symbolisk lÀnk pekar _pÄ:';
LANGsvFChmod_Caption = 'TillgÄ RÀttigheter';
LANGsvFChmod_PermissionFrame = 'RĂ€ttigheter';
LANGsvFChmod_FileFrame = 'Fil';
LANGsvFChmod_ApplyRecursivelyFor = 'Applicera _rekursivt för';
LANGsvFChmod_miAllFiles = 'Alla filer och kataloger';
LANGsvFChmod_miDirectories = 'Endast kataloger';
LANGsvFChmod_OctalLabel = '_Oktal:';
LANGsvFChmod_SUID = 'SUID - SÀtt anvÀndar ID vid exekvering';
LANGsvFChmod_SGID = 'SGID - SÀtt anvÀndar group ID vid exekvering';
LANGsvFChmod_Sticky = 'Sticky bit';
LANGsvFChmod_RUSR = 'RUSR - LÀs av Àgare';
LANGsvFChmod_WUSR = 'WUSR - Skriv av Àgare';
LANGsvFChmod_XUSR = 'XUSR - Exekvera/Sök av Àgare';
LANGsvFChmod_RGRP = 'RGRP - LĂ€s av grupp';
LANGsvFChmod_WGRP = 'WGRP - Skriv av grupp';
LANGsvFChmod_XGRP = 'XGRP - Exekvera/Sök av grupp';
LANGsvFChmod_ROTH = 'ROTH - LĂ€s av andra';
LANGsvFChmod_WOTH = 'WOTH - Skriv av andra';
LANGsvFChmod_XOTH = 'XOTH - Exekvera/Sök av andra';
LANGsvFChmod_TextLabel = '<span weight="ultrabold">Text:</span> %s';
LANGsvFChmod_FileLabel = '<span weight="ultrabold">Fil:</span> %s'#10'<span weight="ultrabold">Text:</span> %s'#10 +
'<span weight="ultrabold">Oktal:</span> %d'#10'<span weight="ultrabold">Ăgare:</span> %s'#10 +
'<span weight="ultrabold">Grupp:</span> %s';
LANGsvFChown_Caption = 'Ăndra Ă€gare/grupp';
LANGsvFChown_OwnerFrame = 'AnvÀndarnamn';
LANGsvFChown_GroupFrame = 'Gruppname';
LANGsvFChown_FileFrame = 'Fil';
LANGsvFChown_ApplyRecursively = 'Applicera _rekursivt';
LANGsvFSymlink_Caption = 'Skapa symbolisk lÀnk';
LANGsvFSymlink_ExistingFilename = '_Befintligt filnamn (filnamnets symlÀnk kommer peka pÄ):';
LANGsvFSymlink_SymlinkFilename = '_Symbolisk lÀnks filnamn:';
LANGsvmnuBookmarks_Caption = '_BokmÀrken';
LANGsvmiAddBookmark_Caption = 'LÀgg till BokmÀrke';
LANGsvmiEditBookmarks_Caption = 'Editera BokmÀrken';
LANGsvBookmarkPopupDelete_Caption = '_Radera';
LANGsvmiPreferences_Caption = '_InstÀllningar...';
LANGsvTheCurrentDirectoryAlreadyExistsInTheBookmarksList = 'Nuvarande katalog finns redan i bokmÀrkelistan';
LANGsvSomeOtherInstanceChanged = 'En annan instans av Tux Commander Àndrade konfigurationen. Vill du applicera de nya instÀllningarna?'#10#10'Varning: Om du trycker Nej nu kommer konfigurationen skrivas över frÄn den hÀr instansen'' exit!';
LANGsvPreferences_Caption = 'InstÀllningar';
LANGsvPreferences_TitleLabel_Caption = '<span size="x-large" weight="ultrabold">ApplikationsinstÀllningar</span>';
LANGsvPreferences_GeneralPage = 'AllmÀnt';
LANGsvPreferences_FontsPage = 'Teckensnitt';
LANGsvPreferences_ColorsPage = 'FĂ€rger';
LANGsvPreferences_RowHeight = 'Rad _höjd:';
LANGsvPreferences_NumHistoryItems = '_Kommandoradens gamla poster:';
LANGsvPreferences_Default = 'Standard';
LANGsvPreferences_ClearReadonlyAttribute = 'Ta bort _skrivskydd-sattribut vid kopiering frÄn CD-ROM';
LANGsvPreferences_DisableMouseRenaming = 'Inaktivera namnbyte via _mus';
LANGsvPreferences_ShowFiletypeIconsInList = 'Visa _filtypsikoner';
LANGsvPreferences_ExternalAppsLabel = '<span weight="ultrabold">Externa program</span>';
LANGsvPreferences_Viewer = '_Visningsprogram:';
LANGsvPreferences_Editor = '_Editerare:';
LANGsvPreferences_Terminal = '_Terminal:';
LANGsvPreferences_ListFont = 'List-teckensnitt:';
LANGsvPreferences_Change = 'Ăndra...';
LANGsvPreferences_UseDefaultFont = 'AnvÀnd _standardteckensnitt';
LANGsvPreferences_Foreground = 'Förgrund';
LANGsvPreferences_Background = 'Bakgrund';
LANGsvPreferences_NormalItem = 'Normalt:';
LANGsvPreferences_SetToDefaultToUseGTKThemeColors = 'SÀtt som standard att anvÀnda GTK-temafÀrger';
LANGsvPreferences_Cursor = 'Muspekare:';
LANGsvPreferences_InactiveItem = 'Inaktiva:';
LANGsvPreferences_SelectedItem = 'Valda:';
LANGsvPreferences_LinkItem = 'Symboliska lÀnkar:';
LANGsvPreferences_LinkItemHint = 'SÀtt som standard att visa symlÀnkar med normala fÀrger';
LANGsvPreferences_DotFileItem = 'Punktfiler:';
LANGsvPreferences_DotFileItemHint = 'SÀtt som standard att visa punktfiler med normala fÀrger';
LANGsvPreferences_BrowseForApplication = 'BlÀddra efter applikation';
LANGsvPreferences_DefaultS = 'Standard: %s';
LANGsvPreferences_SelectFont = 'VĂ€lj teckensnitt';
(*************** STRINGS ADDED TO v0.4.101 **********************************************************************************)
LANGsvBookmarkButton_Tooltip = 'Visa bokmÀrken';
LANGsvUpButton_Tooltip = 'GÄ till övre katalog';
LANGsvRootButton_Tooltip = 'GĂ„ till rotkatalog (/)';
LANGsvHomeButton_Tooltip = 'GĂ„ till hemkatalog (/home/user)';
LANGsvLeftEqualButton_Tooltip = 'Byt högerpanalen till samma katalog';
LANGsvRightEqualButton_Tooltip = 'Byt högerpanalen till samma katalog';
LANGsvmiShowDirectorySizes_Caption = 'Visa k_atalogstorlek';
LANGsvmiTargetSource_Caption = 'MÄl = KÀlla';
LANGsvFileTypeDirectory = 'Katalog';
LANGsvFileTypeFile = 'Fil';
LANGsvFileTypeMetafile = 'Detta Àr en vanlig meta';
LANGsvPreferencesPanelsPage = 'Paneler';
LANGsvPreferencesApplicationsPage = 'Applikationer';
LANGsvPreferencesExperimentalPage = 'Experimentiell';
LANGsvPreferencesSelectAllDirectoriesCheckBox_Caption = 'VÀlj _Àven kataloger nÀr allt markeras';
LANGsvPreferencesNewStyleAltOCheckBox_Caption = '_Ny stil Alt+O';
LANGsvPreferencesNewStyleAltOCheckBox_Tooltip = 'Stanna i samma katalog vid byte av katalog mittemot panel genom att trycka Ctrl/Alt+O';
LANGsvPreferencesShowFuncButtonsCheckBox_Caption = 'Visa funktion_knappar';
LANGsvPreferencesSizeFormatLabel_Caption = '_Storleksformat:';
LANGsvPreferencesmiSizeFormat1 = 'System';
LANGsvPreferencesmiSizeFormat6 = 'Grupperad';
LANGsvPreferencesAutodetectXApp = 'Autodetecta X app';
LANGsvPreferencesAlwaysRunInTerminal = 'Kör alltid i terminal';
LANGsvPreferencesNeverRunInTerminal = 'Kör aldrig i terminal';
LANGsvPreferencesCmdLineBehaviourLabel_Caption = '_Exekverar frÄn kommandoraden:';
LANGsvPreferencesFeatures = 'Finesser';
LANGsvPreferencesDisableMouseRename_Tooltip = 'Du kan fortfarande göra snabb omdöpning av filer genom att trycka Shift+F6';
LANGsvPreferencesDisableFileTipsCheckBox_Caption = 'Avaktivera fil _tips';
LANGsvPreferencesDisableFileTipsCheckBox_Tooltip = 'Visa inte tips om texten i en kolumn Àr avskuren';
LANGsvPreferencesShow = 'Visa';
LANGsvPreferencesDirsInBoldCheckBox_Caption = 'Kataloger i _fetstil';
LANGsvPreferencesDisableDirectoryBracketsCheckBox_Caption = 'Avaktivera katalog p_aranteser';
LANGsvPreferencesOctalPermissionsCheckBox_Caption = 'Visa _oktala rÀttigheter';
LANGsvPreferencesOctalPermissionsCheckBox_Tooltip = 'Visa fil/katalog-rÀttigheter som nummer istÀllet för i textform (-rw-rw-rw-)';
LANGsvPreferencesMovement = 'Rörelse';
LANGsvPreferencesLynxLikeMotionCheckBox_Caption = '_Lynx-liknande rörelse';
LANGsvPreferencesInsertMovesDownCheckBox_Caption = '_Insert scrollar uppÄt';
LANGsvPreferencesSpaceMovesDownCheckBox_Caption = '_Space scrollar nerÄt';
LANGsvPreferencesViewer = 'LĂ€sare';
LANGsvPreferencesCommandSC = 'Kommando:';
LANGsvPreferencesUseInternalViewer = 'AnvÀnd _intern lÀsare';
LANGsvPreferencesEditor = 'Redigerare';
LANGsvPreferencesTerminal = 'Terminal';
LANGsvPreferencesExperimentalFeatures = 'Experimentiella finesser';
LANGsvPreferencesExperimentalWarningLabel_Caption = '<span weight="ultrabold">Warning:</span> Dessa funktioner Àr under utveckling och kanske inte fungerar som vÀntat. AnvÀnd dem pÄ egen risk!';
LANGsvPreferencesFocusRefreshCheckBox_Caption = '_Uppdatera vid fönsterfokusering';
LANGsvPreferencesFocusRefreshCheckBox_Tooltip = 'VÀldigt lÄngsam panel-uppdatering just nu';
LANGsvPreferencesWMCompatModeCheckBox_Caption = '_WM KompatibilitetslÀge';
LANGsvPreferencesWMCompatModeCheckBox_Tooltip = 'AnvÀnd om du har problem med din window manager (IceWM kan inte maximera fönster riktigt tex.)';
LANGsvPreferencesCompatUseLibcSystemCheckBox_Caption = 'AnvÀnd libc _system() för att köra program';
LANGsvPreferencesCompatUseLibcSystemCheckBox_Tooltip = 'AnvÀnd mot frysning eller krasch vid start av externa applikationer';
(*************** STRINGS ADDED TO v0.5.70 **********************************************************************************)
LANGsvmiSearchCaption2 = '_Search...';
LANGsvmiNoMounterBarCaption = 'Do_n''t show mounter bar';
LANGsvmiShowOneMounterBarCaption = 'Show _one mounter bar';
LANGsvmiShowTwoMounterBarCaption = 'Show _two mounter bars';
LANGsvmnuNetworkCaption = 'N_etwork';
LANGsvmiConnectionsCaption = '_Connections...';
LANGsvmiOpenConnectionCaption = '_Open connection...';
LANGsvmiQuickConnectCaption = '_Quick connect...';
LANGsvmnuPluginsCaption = 'Pl_ugins';
LANGsvmiTestPluginCaption = '_Test plugin...';
LANGsvmiMounterSettingsCaption = '_Mounter Settings...';
LANGsvmiColumnsCaption = 'P_anel Columns...';
LANGsvmiSavePositionCaption = '_Save position';
LANGsvmiMountCaption = '_Mount';
LANGsvmiUmountCaption = '_Umount';
LANGsvmiEjectCaption = '_Eject';
LANGsvmiDuplicateTabCaption = 'Duplicate current tab';
LANGsvmiCloseTabCaption = 'Close current tab';
LANGsvmiCloseAllTabsCaption = 'Close all tabs';
LANGsvCannotDetermineDestinationEngine = 'Cannot determine destination engine. Please enter correct path and try it again.';
LANGsvCannotLoadFile = 'Cannot load file ''%s''. Please check the permissions.';
LANGsvMountPointDevice = 'Mount Point: %s'#10'Device: %s';
LANGsvMountSC = 'Mount:';
LANGsvNoPluginsFound = 'No plugins found';
LANGsvPluginAbout = 'About...';
LANGsvCouldntOpenURI = 'Couldn''t open the URI specified. Please check the consistency of the resource identifier and the access permission.';
LANGsvPluginAboutInside = 'Plugin: %s'#10#10'%s'#10'%s';
LANGsvAreYouSureCloseAllTabs = 'Are you sure you want to close all inactive tabs?';
LANGsvCouldntOpenURIArchive = 'Couldn''t open the archive. Please check consistency and access permissions.';
LANGsvThereIsNoModuleAvailable = 'There are no VFS modules available that can handle this connection';
LANGsvIgnoreError = 'Do you really want to ignore the error? The source file will be then deleted';
LANGsvErrorMount = 'There was an error while mounting the device ''%s'':'#10#10;
LANGsvErrorUmount = 'There was an error while umounting the device ''%s'':'#10#10;
LANGsvErrorEject = 'There was an error while ejecting the device ''%s'':'#10#10;
LANGsvMounterPrefs_Caption = 'Mounter Settings';
LANGsvMounterPrefs_TitleLabelCaption = 'Mounter Settings';
LANGsvMounterPrefs_ListViewFrameCaption = 'Mounter';
LANGsvMounterPrefs_MountName = 'Mount Name';
LANGsvMounterPrefs_MountPoint = 'Mount Point';
LANGsvMounterPrefs_Device = 'Device';
LANGsvMounterPrefs_MoveUpButtonTooltip = 'Move item up';
LANGsvMounterPrefs_MoveDownButtonTooltip = 'Move item down';
LANGsvMounterPrefs_UseFSTabDefaultsCheckBox = 'Use _fstab default items';
LANGsvMounterPrefs_UseFSTabDefaultsCheckBoxTooltip = 'By checking this, the mounter bar will be filled by default items found in the /etc/fstab (system mountlist file)';
LANGsvMounterPrefs_ToggleModeCheckBox = 'Buttons stay _down when mounted';
LANGsvMounterPrefs_ToggleModeCheckBoxTooltip = 'When checked, the mounter buttons will stay down if the device is mounted; another click will cause umounting them (eject in this case)';
LANGsvMounterPrefs_PropertiesFrameCaption = 'Mounter item properties';
LANGsvMounterPrefs_DisplayTextLabelCaption = 'Displayed _Text:';
LANGsvMounterPrefs_MountPointLabelCaption = 'Mount _Point:';
LANGsvMounterPrefs_MountDeviceLabelCaption = '_Device:';
LANGsvMounterPrefs_DeviceTypeLabelCaption = 'Device T_ype:';
LANGsvMounterPrefs_miLocalDiskCaption = 'Local disk';
LANGsvMounterPrefs_miRemovableCaption = 'Removable';
LANGsvMounterPrefs_miCDCaption = 'CD/DVD drive';
LANGsvMounterPrefs_miFloppyCaption = 'Floppy drive';
LANGsvMounterPrefs_miNetworkCaption = 'Network';
LANGsvMounterPrefs_MountCommandLabelCaption = 'Mount _Command:';
LANGsvMounterPrefs_UmountCommandLabelCaption = 'Umount C_ommand:';
LANGsvMounterPrefs_MountCommandEntryTooltip = 'Syntax: use %dev for substitution of the device and %dir for the mount point or leave blank for default mount'#10'Note: beware of interactive commands, tuxcmd could freeze!'#10'Example: smbmount %dev %dir -o username=netuser,password=somepass';
LANGsvMounterPrefs_UmountCommandEntryTooltip = 'Syntax: use %dev for substitution of the device and %dir for the mount point or leave blank for default umount'#10'Example: smbumount $dir';
LANGsvMounterPrefs_IconLabelCaption = '_Icon:';
LANGsvConnMgr_Caption = 'Open New Connection';
LANGsvConnMgr_ConnectButton = 'Co_nnect';
LANGsvConnMgr_OpenConnection = 'Open Connection';
LANGsvConnMgr_NameColumn = 'Name';
LANGsvConnMgr_URIColumn = 'URI';
LANGsvConnMgr_AddConnectionButtonCaption = '_Add site...';
LANGsvConnMgr_AddConnectionButtonTooltip = 'Add new connection';
LANGsvConnMgr_EditButtonCaption = '_Edit...';
LANGsvConnMgr_EditButtonTooltip = 'Edit selected connection';
LANGsvConnMgr_RemoveButtonCaption = '_Remove site';
LANGsvConnMgr_RemoveButtonTooltip = 'Delete selected connection';
LANGsvConnMgr_DoYouWantDelete = 'Do you really want to delete the connection ''%s''?';
LANGsvConnProp_FTP = 'FTP';
LANGsvConnProp_SFTP = 'SFTP (ssh subsystem)';
LANGsvConnProp_SMB = 'Windows share (SMB)';
LANGsvConnProp_HTTP = 'WebDAV (HTTP)';
LANGsvConnProp_HTTPS = 'Secure WebDAV (HTTPS)';
LANGsvConnProp_Other = 'Other <span style="italic">(please specify in URI)</span>';
LANGsvConnProp_Caption = 'Connection properties';
LANGsvConnProp_VFSModule = '_VFS module:';
LANGsvConnProp_URI = '_URI:';
LANGsvConnProp_URIEntryTooltip = 'Correct URI should contain service type prefix and server address';
LANGsvConnProp_DetailedInformations = 'Detailed informations';
LANGsvConnProp_Name = '_Name:';
LANGsvConnProp_Server = 'Ser_ver[:port]:';
LANGsvConnProp_Username = 'Userna_me:';
LANGsvConnProp_UserNameEntryTooltip = 'Leave blank for anonymous login';
LANGsvConnProp_Password = '_Password:';
LANGsvConnProp_TargetDirectory = 'Target _directory:';
LANGsvConnProp_ServiceType = '_Service type:';
LANGsvConnProp_MaskPassword = '_Mask password';
LANGsvConnProp_MenuItemCaption = 'Default <span style="italic">(all suitable modules)</span>';
LANGsvConnLogin_Caption = 'Authentication required';
LANGsvConnLogin_Login = 'Login';
LANGsvConnLogin_ExperimentalWarningLabelCaption = 'You must log in to access %s';
LANGsvConnLogin_Username = '_Username:';
LANGsvConnLogin_Password = '_Password:';
LANGsvConnLogin_AnonymousCheckButton = '_Anonymous';
LANGsvColumns_Caption = 'Panel Columns Settings';
LANGsvColumns_Title = 'Panel Columns Settings';
LANGsvColumns_MoveUpButtonTooltip = 'Move item up';
LANGsvColumns_MoveDownButtonTooltip = 'Move item down';
LANGsvColumns_TitlesLongName = 'Name';
LANGsvColumns_TitlesLongNameExt = 'Name + Extension';
LANGsvColumns_TitlesLongExt = 'Extension';
LANGsvColumns_TitlesLongSize = 'Size';
LANGsvColumns_TitlesLongDateTime = 'Date + Time';
LANGsvColumns_TitlesLongDate = 'Date';
LANGsvColumns_TitlesLongTime = 'Time';
LANGsvColumns_TitlesLongUser = 'User';
LANGsvColumns_TitlesLongGroup = 'Group';
LANGsvColumns_TitlesLongAttr = 'Attributes';
LANGsvColumns_TitlesShortName = 'Name';
LANGsvColumns_TitlesShortNameExt = 'Name';
LANGsvColumns_TitlesShortExt = 'Ext';
LANGsvColumns_TitlesShortSize = 'Size';
LANGsvColumns_TitlesShortDateTime = 'Date';
LANGsvColumns_TitlesShortDate = 'Date';
LANGsvColumns_TitlesShortTime = 'Time';
LANGsvColumns_TitlesShortUser = 'User';
LANGsvColumns_TitlesShortGroup = 'Group';
LANGsvColumns_TitlesShortAttr = 'Attr';
LANGsvTestPlugin_Caption = 'Test VFS Plugin';
LANGsvTestPlugin_Title = 'Test VFS Plugin';
LANGsvTestPlugin_ExperimentalWarningLabelCaption = '<span weight="ultrabold">Warning:</span> The VFS subsystem and its plugins are under heavy development and may contain bugs. Use this function under your own risk!';
LANGsvTestPlugin_Plugin = '_Plugin:';
LANGsvTestPlugin_Command = 'Co_mmand:';
LANGsvTestPlugin_Username = '_Username:';
LANGsvTestPlugin_Password = '_Password:';
LANGsvTestPlugin_AnonymousCheckButton = '_Anonymous login (doesn''t call VFSLogin)';
LANGsvTestPlugin_NoPluginsFound = 'No plugins found';
LANGsvRemoteWait_Caption = 'Operation in progress';
LANGsvRemoteWait_OperationInProgress = 'Operation in progress, please be patient...';
LANGsvRemoteWait_ItemsFound = 'Items found so far: %d';
LANGsvSearch_Bytes = 'Bytes';
LANGsvSearch_kB = 'kB';
LANGsvSearch_MB = 'MB';
LANGsvSearch_days = 'days';
LANGsvSearch_weeks = 'weeks';
LANGsvSearch_months = 'months';
LANGsvSearch_years = 'years';
LANGsvSearch_Caption = 'Find Files';
LANGsvSearch_General = 'General';
LANGsvSearch_Advanced = 'Advanced';
LANGsvSearch_SearchResults = 'Search _Results:';
LANGsvSearch_SearchFor = 'Search _for:';
LANGsvSearch_FileMaskEntryTooltip = 'Tip: Use colons (";") to specify multiple files to find';
LANGsvSearch_SearchIn = 'Search _in:';
LANGsvSearch_SearchArchivesCheckButton = 'Search _archives';
LANGsvSearch_FindText = 'Find _text:';
LANGsvSearch_FindTextEntryTooltip = 'Leave blank for no text matching'#10'Please note that we are using UTF-8 in GUI part';
LANGsvSearch_CaseSensitiveCheckButton = 'Cas_e sensitive';
LANGsvSearch_StayCurrentFSCheckButton = 'Include other files_ystems';
LANGsvSearch_CaseSensitiveMatchCheckButton = 'Ca_se sensitive';
LANGsvSearch_Size = 'Size';
LANGsvSearch_Date = 'Date';
LANGsvSearch_BiggerThan = '_Bigger than';
LANGsvSearch_SmallerThan = '_Smaller than';
LANGsvSearch_ModifiedBetweenRadioButton = '_Modified between';
LANGsvSearch_NotModifiedAfterRadioButton = '_Not modified after';
LANGsvSearch_ModifiedLastRadioButton = 'Mod_ified in the last';
LANGsvSearch_ModifiedNotLastRadionButton = 'No_t modified in the last';
LANGsvSearch_ModifiedBetweenEntry1 = '"Please use this date format:" c';
LANGsvSearch_ViewButtonCaption = '_View file';
LANGsvSearch_NewSearchButtonCaption = '_New search';
LANGsvSearch_GoToFileButtonCaption = '_Go to file';
LANGsvSearch_FeedToListboxButtonCaption = 'Feed to _listbox';
LANGsvSearch_StatusSC = 'Status:';
LANGsvSearch_Ready = 'Ready.';
LANGsvSearch_PreparingToSearch = 'Preparing to search.';
LANGsvSearch_SearchInProgress = 'Search in progress:';
LANGsvSearch_UserCancelled = 'User cancelled.';
LANGsvSearch_SearchFinished = 'Search finished';
LANGsvSearch_FilesFound = '%d files found';
LANGsvSearch_And = 'and';
(*************** STRINGS ADDED TO v0.5.82 **********************************************************************************)
LANGsvCloseOpenConnection = 'You''re trying to open new connection over the another active connection. By continuing, the previous connection will be closed and replaced by the new requested one.'#10#10'Do you want to continue?';
LANGsvDuplicateTabWarning = 'You are trying to open a new tab from a remote directory. However, engine cloning is not supported. The directory in the new tab will point to a local filesystem.';
LANGsvDontShowAgain = '_Don''t show this message again';
LANGsvSwitchOtherPanelWarning = 'You are trying to open the remote directory in the opposite panel. However, engine cloning is not supported. The target directory will not be switched.';
LANGsvOpenConnectionsWarning = 'There are some active connections opened in the panel. By closing the application, these connections will be disconnected.'#10#10'Do you want to continue quit?';
LANGsvmiDisconnect_Caption = '_Disconnect';
LANGsvDisconnectButton_Tooltip = 'Disconnect active connection';
LANGsvLeaveArchiveButton_Tooltip = 'Close current archive';
LANGsvOpenTerminalButton_Tooltip = 'Opens a new terminal windows from the current directory';
LANGsvOpenTerminalButton_Caption = 'Open Te_rminal';
LANGsvShowTextUIDsCheckBox_Caption = 'Show text _UIDs';
LANGsvShowTextUIDsCheckBox_Tooltip = 'Show textual User and Group informations instead of numbers (UID/GID)';
(*************** STRINGS ADDED TO v0.5.100 **********************************************************************************)
LANGsvmiNewTab_Caption = 'New folder _tab';
LANGsvFilePopupMenu_Properties = '_Properties';
LANGsvCommandEntry_Tooltip = 'Use %s as file/directory placeholder';
LANGsvmiFiles_Caption = 'Files only';
(*************** STRINGS ADDED TO v0.6.31 **********************************************************************************)
LANGsvPasswordButton_Tooltip = 'Archive requires password.'#10'Click to set';
LANGsvHandleRunFromArchive_Bytes = 'bytes';
LANGsvHandleRunFromArchive_FileTypeDesc_Unknown = '(unknown)';
LANGsvHandleRunFromArchive_NotAssociated = '(not associated)';
LANGsvHandleRunFromArchive_SelfExecutable = '(self-executable)';
LANGsvHandleRunFromArchive_CouldntCreateTemporaryDirectory = 'Couldn''t create temporary directory "%s": %s.'#10#10'Please check the temporary directory settings and try it again.';
LANGsvFRunFromVFS_Caption = 'Packed file properties';
LANGsvFRunFromVFS_TitleLabel = 'File Properties';
LANGsvFRunFromVFS_FileNameLabel = 'File name:';
LANGsvFRunFromVFS_FileTypeLabel = 'File type:';
LANGsvFRunFromVFS_SizeLabel = 'Size:';
LANGsvFRunFromVFS_PackedSizeLabel = 'Compressed size:';
LANGsvFRunFromVFS_DateLabel = 'Modify date:';
LANGsvFRunFromVFS_InfoLabel = 'Opening files directly from archives is not supported. By clicking the buttons below the file (all files respectively) will be extracted to a temporary location. Temporary files will be deleted when you close Tux Commander.';
LANGsvFRunFromVFS_OpensWithLabel = 'Open with:';
LANGsvFRunFromVFS_ExecuteButton = 'E_xtract and open';
LANGsvFRunFromVFS_ExecuteAllButton = 'Extract _all and open';
LANGsvFSetPassword_Caption = 'Set password';
LANGsvFSetPassword_Label1_Caption = 'Password required';
LANGsvFSetPassword_Label2_Caption = 'The archive is encrypted and requires password in order to extract the data';
LANGsvFSetPassword_ShowPasswordCheckButton = 'Un_mask password';
(********************************************************************************************************************************)
procedure SetTranslation;
begin
LANGF2Button_Caption := LANGsvF2Button_Caption;
LANGF3Button_Caption := LANGsvF3Button_Caption;
LANGF4Button_Caption := LANGsvF4Button_Caption;
LANGF5Button_Caption := LANGsvF5Button_Caption;
LANGF6Button_Caption := LANGsvF6Button_Caption;
LANGF7Button_Caption := LANGsvF7Button_Caption;
LANGF8Button_Caption := LANGsvF8Button_Caption;
LANGmnuFile_Caption := LANGsvmnuFile_Caption;
LANGmnuMark_Caption := LANGsvmnuMark_Caption;
LANGmnuCommands_Caption := LANGsvmnuCommands_Caption;
LANGmnuHelp_Caption := LANGsvmnuHelp_Caption;
LANGmiExit_Caption := LANGsvmiExit_Caption;
LANGmiSelectGroup_Caption := LANGsvmiSelectGroup_Caption;
LANGmiUnselectGroup_Caption := LANGsvmiUnselectGroup_Caption;
LANGmiSelectAll_Caption := LANGsvmiSelectAll_Caption;
LANGmiUnselectAll_Caption := LANGsvmiUnselectAll_Caption;
LANGmiInvertSelection_Caption := LANGsvmiInvertSelection_Caption;
LANGmiRefresh_Caption := LANGsvmiRefresh_Caption;
LANGmiAbout_Caption := LANGsvmiAbout_Caption;
LANGColumn1_Caption := LANGsvColumn1_Caption;
LANGColumn2_Caption := LANGsvColumn2_Caption;
LANGColumn3_Caption := LANGsvColumn3_Caption;
LANGColumn4_Caption := LANGsvColumn4_Caption;
LANGColumn5_Caption := LANGsvColumn5_Caption;
LANGExpandSelection := LANGsvExpandSelection;
LANGShrinkSelection := LANGsvShrinkSelection;
LANGNoMatchesFound := LANGsvNoMatchesFound;
LANGNoFilesSelected := LANGsvNoFilesSelected;
LANGSelectedFilesDirectories := LANGsvSelectedFilesDirectories;
LANGDirectoryS := LANGsvDirectoryS;
LANGFileS := LANGsvFileS;
LANGDoYouReallyWantToDeleteTheS := LANGsvDoYouReallyWantToDeleteTheS;
LANGDoYouReallyWantToDeleteTheSS := LANGsvDoYouReallyWantToDeleteTheSS;
LANGCopyFiles := LANGsvCopyFiles;
LANGMoveRenameFiles := LANGsvMoveRenameFiles;
LANGCopyDFileDirectoriesTo := LANGsvCopyDFileDirectoriesTo;
LANGMoveRenameDFileDirectoriesTo := LANGsvMoveRenameDFileDirectoriesTo;
LANGCopySC := LANGsvCopySC;
LANGMoveRenameSC := LANGsvMoveRenameSC;
LANGQuickFind := LANGsvQuickFind;
LANGAboutString := LANGsvAboutString;
LANGAboutStringGnome := LANGsvAboutStringGnome;
LANGDiskStatFmt := LANGsvDiskStatFmt;
LANGDiskStatVolNameFmt := LANGsvDiskStatVolNameFmt;
LANGStatusLineFmt := LANGsvStatusLineFmt;
LANGPanelStrings[False] := LANGsvPanelStrings[False];
LANGPanelStrings[True] := LANGsvPanelStrings[True];
LANGDIR := LANGsvDIR;
LANGErrorGettingListingForSPanel := LANGsvErrorGettingListingForSPanel;
LANGErrorGettingListingForSPanelNoPath := LANGsvErrorGettingListingForSPanelNoPath;
LANGErrorCreatingNewDirectorySInSPanel := LANGsvErrorCreatingNewDirectorySInSPanel;
LANGErrorCreatingNewDirectorySInSPanelNoPath := LANGsvErrorCreatingNewDirectorySInSPanelNoPath;
LANGTheFileDirectory := LANGsvTheFileDirectory;
LANGCouldNotBeDeleted := LANGsvCouldNotBeDeleted;
LANGCouldNotBeDeletedS := LANGsvCouldNotBeDeletedS;
LANGUserCancelled := LANGsvUserCancelled;
LANGTheDirectorySIsNotEmpty := LANGsvTheDirectorySIsNotEmpty;
LANGCannotCopyFile := LANGsvCannotCopyFile;
LANGCopyError := LANGsvCopyError;
LANGMoveError := LANGsvMoveError;
LANGOverwriteS := LANGsvOverwriteS;
LANGWithFileS := LANGsvWithFileS;
LANGOvewriteSBytesS := LANGsvOvewriteSBytesS;
LANGTheFile := LANGsvTheFile;
LANGCopy := LANGsvCopy;
LANGMove := LANGsvMove;
LANGTheDirectory := LANGsvTheDirectory;
LANGTheSymbolicLink := LANGsvTheSymbolicLink;
LANGCannotMoveFile := LANGsvCannotMoveFile;
LANGCouldNotBeCreated := LANGsvCouldNotBeCreated;
LANGCouldNotBeCreatedS := LANGsvCouldNotBeCreatedS;
LANGFromS := LANGsvFromS;
LANGToS := LANGsvToS;
LANGCannotCopyFileToItself := LANGsvCannotCopyFileToItself;
LANGMemoryAllocationFailed := LANGsvMemoryAllocationFailed;
LANGCannotOpenSourceFile := LANGsvCannotOpenSourceFile;
LANGCannotOpenDestinationFile := LANGsvCannotOpenDestinationFile;
LANGCannotCloseDestinationFile := LANGsvCannotCloseDestinationFile;
LANGCannotCloseSourceFile := LANGsvCannotCloseSourceFile;
LANGCannotReadFromSourceFile := LANGsvCannotReadFromSourceFile;
LANGCannotWriteToDestinationFile := LANGsvCannotWriteToDestinationFile;
LANGUnknownException := LANGsvUnknownException;
LANGNoAccess := LANGsvNoAccess;
LANGUnknownError := LANGsvUnknownError;
LANGCreateANewDirectory := LANGsvCreateANewDirectory;
LANGEnterDirectoryName := LANGsvEnterDirectoryName;
LANGOverwriteQuestion := LANGsvOverwriteQuestion;
LANGOverwriteButton_Caption := LANGsvOverwriteButton_Caption;
LANGOverwriteAllButton_Caption := LANGsvOverwriteAllButton_Caption;
LANGSkipButton_Caption := LANGsvSkipButton_Caption;
LANGOverwriteAllOlderButton_Caption := LANGsvOverwriteAllOlderButton_Caption;
LANGSkipAllButton_Caption := LANGsvSkipAllButton_Caption;
LANGRenameButton_Caption := LANGsvRenameButton_Caption;
LANGAppendButton_Caption := LANGsvAppendButton_Caption;
LANGRename := LANGsvRename;
LANGRenameFile := LANGsvRenameFile;
LANGIgnoreButton_Caption := LANGsvIgnoreButton_Caption;
LANGProgress := LANGsvProgress;
LANGCancel := LANGsvCancel;
LANGDelete := LANGsvDelete;
LANGSpecifyFileType := LANGsvSpecifyFileType;
LANGRemoveDirectory := LANGsvRemoveDirectory;
LANGDoYouWantToDeleteItWithAllItsFilesAndSubdirectories := LANGsvDoYouWantToDeleteItWithAllItsFilesAndSubdirectories;
LANGRetry := LANGsvRetry;
LANGDeleteButton_Caption := LANGsvDeleteButton_Caption;
LANGAll := LANGsvAll;
LANGCopyFilesSC := LANGsvCopyFilesSC;
LANGAppendQuestion := LANGsvAppendQuestion;
LANGPreparingList := LANGsvPreparingList;
LANGYouMustSelectAValidFile := LANGsvYouMustSelectAValidFile;
LANGmiVerifyChecksums := LANGsvmiVerifyChecksums;
LANGVerifyChecksumsCaption := LANGsvVerifyChecksumsCaption;
LANGCheckButtonCaptionCheck := LANGsvCheckButtonCaptionCheck;
LANGCheckButtonCaptionStop := LANGsvCheckButtonCaptionStop;
LANGFileListTooltip := LANGsvFileListTooltip;
LANGFilenameColumnCaption := LANGsvFilenameColumnCaption;
LANGTheFileSYouAreTryingToOpenIsQuiteBig := LANGsvTheFileSYouAreTryingToOpenIsQuiteBig;
LANGAnErrorOccuredWhileInitializingMemoryBlock := LANGsvAnErrorOccuredWhileInitializingMemoryBlock;
LANGAnErrorOccuredWhileOpeningFileSS := LANGsvAnErrorOccuredWhileOpeningFileSS;
LANGAnErrorOccuredWhileReadingFileSS := LANGsvAnErrorOccuredWhileReadingFileSS;
LANGChecksumNotChecked := LANGsvChecksumNotChecked;
LANGChecksumChecking := LANGsvChecksumChecking;
LANGChecksumInterrupted := LANGsvChecksumInterrupted;
LANGChecksumDOK := LANGsvChecksumDOK;
LANGmiCreateChecksumsCaption := LANGsvmiCreateChecksumsCaption;
LANGYouMustSelectAtLeastOneFileToCalculateChecksum := LANGsvYouMustSelectAtLeastOneFileToCalculateChecksum;
LANGCreateChecksumsCaption := LANGsvCreateChecksumsCaption;
LANGCCHKSUMPage1Text := LANGsvCCHKSUMPage1Text;
LANGCCHKSUMPage4Text := LANGsvCCHKSUMPage4Text;
LANGCCHKSUMPage6Text := LANGsvCCHKSUMPage6Text;
LANGCCHKSUMPage7Text := LANGsvCCHKSUMPage7Text;
LANGCCHKSUMPage1Title := LANGsvCCHKSUMPage1Title;
LANGCCHKSUMPage2Title := LANGsvCCHKSUMPage2Title;
LANGCCHKSUMPage3Title := LANGsvCCHKSUMPage3Title;
LANGCCHKSUMPage4Title := LANGsvCCHKSUMPage4Title;
LANGCCHKSUMPage5Title := LANGsvCCHKSUMPage5Title;
LANGCCHKSUMPage6Title := LANGsvCCHKSUMPage6Title;
LANGCCHKSUMPage7Title := LANGsvCCHKSUMPage7Title;
LANGCCHKSUMSFVFile := LANGsvCCHKSUMSFVFile;
LANGCCHKSUMMD5sumFile := LANGsvCCHKSUMMD5sumFile;
LANGCCHKSUMFileName := LANGsvCCHKSUMFileName;
LANGCCHKSUMCreateSeparateChecksumFiles := LANGsvCCHKSUMCreateSeparateChecksumFiles;
LANGCCHKSUMNowProcessingFileS := LANGsvCCHKSUMNowProcessingFileS;
LANGCCHKSUMFinishCaption := LANGsvCCHKSUMFinishCaption;
LANGCCHKSUMAreYouSureYouWantToAbortTheProcessing := LANGsvCCHKSUMAreYouSureYouWantToAbortTheProcessing;
LANGCCHKSUMAnErrorOccuredWhileOpeningFileSS := LANGsvCCHKSUMAnErrorOccuredWhileOpeningFileSS;
LANGCCHKSUMAnErrorOccuredWhileReadingFileSS := LANGsvCCHKSUMAnErrorOccuredWhileReadingFileSS;
LANGCCHKSUMAnErrorOccuredWhileWritingFileSS := LANGsvCCHKSUMAnErrorOccuredWhileWritingFileSS;
LANGAnErrorOccuredWhileWritingFileSS := LANGsvAnErrorOccuredWhileWritingFileSS;
LANGTheTargetFileSAlreadyExistsDoYouWantToOverwriteIt := LANGsvTheTargetFileSAlreadyExistsDoYouWantToOverwriteIt;
LANGTheTargetFileSCannotBeRemovedS := LANGsvTheTargetFileSCannotBeRemovedS;
LANGMergeCaption := LANGsvMergeCaption;
LANGPleaseInsertNextDiskOrGiveDifferentLocation := LANGsvPleaseInsertNextDiskOrGiveDifferentLocation;
LANGMergeOfSSucceeded := LANGsvMergeOfSSucceeded;
LANGWarningCreatedFileFailsCRCCheck := LANGsvWarningCreatedFileFailsCRCCheck;
LANGMergeOfSSucceeded_NoCRCFileAvailable := LANGsvMergeOfSSucceeded_NoCRCFileAvailable;
LANGMergeSAndAllFilesWithAscendingNamesToTheFollowingDirectory := LANGsvMergeSAndAllFilesWithAscendingNamesToTheFollowingDirectory;
LANGMergeSC := LANGsvMergeSC;
LANGmiSplitFileCaption := LANGsvmiSplitFileCaption;
LANGmiMergeFilesCaption := LANGsvmiMergeFilesCaption;
LANGSplitTheFileSToDirectory := LANGsvSplitTheFileSToDirectory;
LANGSplitSC := LANGsvSplitSC;
LANGSplitFile := LANGsvSplitFile;
LANGBytesPerFile := LANGsvBytesPerFile;
LANGAutomatic := LANGsvAutomatic;
LANGDeleteFilesOnTargetDisk := LANGsvDeleteFilesOnTargetDisk;
LANGSplitCaption := LANGsvSplitCaption;
LANGCannotOpenFileS := LANGsvCannotOpenFileS;
LANGCannotSplitTheFileToMoreThan999Parts := LANGsvCannotSplitTheFileToMoreThan999Parts;
LANGThereAreSomeFilesInTheTargetDirectorySDoYouWantToDeleteThem := LANGsvThereAreSomeFilesInTheTargetDirectorySDoYouWantToDeleteThem;
LANGThereAreDFilesInTheTargetDirectoryDoYouWantToDeleteThem := LANGsvThereAreDFilesInTheTargetDirectoryDoYouWantToDeleteThem;
LANGAnErrorOccuredWhileOperationS := LANGsvAnErrorOccuredWhileOperationS;
LANGSplitOfSSucceeded := LANGsvSplitOfSSucceeded;
LANGSplitOfSFailed := LANGsvSplitOfSFailed;
LANGmnuShow_Caption := LANGsvmnuShow_Caption;
LANGmiShowDotFiles_Caption := LANGsvmiShowDotFiles_Caption;
LANGTheFileYouAreTryingToOpenIsQuiteBig := LANGsvTheFileYouAreTryingToOpenIsQuiteBig;
LANGCannotExecuteSPleaseCheckTheConfiguration := LANGsvCannotExecuteSPleaseCheckTheConfiguration;
LANGEdit := LANGsvEdit;
LANGEnterFilenameToEdit := LANGsvEnterFilenameToEdit;
LANGmnuSettings_Caption := LANGsvmnuSettings_Caption;
LANGmiFileTypes_Caption := LANGsvmiFileTypes_Caption;
LANGThereIsNoApplicationAssociatedWithS := LANGsvThereIsNoApplicationAssociatedWithS;
LANGErrorExecutingCommand := LANGsvErrorExecutingCommand;
LANGEditFileTypesCaption := LANGsvEditFileTypesCaption;
LANGTitleLabel_Caption := LANGsvTitleLabel_Caption;
LANGExtensionsColumn := LANGsvExtensionsColumn;
LANGDescriptionColumn := LANGsvDescriptionColumn;
LANGFileTypesList := LANGsvFileTypesList;
LANGActionName := LANGsvActionName;
LANGCommand := LANGsvCommand;
LANGSetDefaultActionButton_Caption := LANGsvSetDefaultActionButton_Caption;
LANGRunInTerminalCheckBox_Caption := LANGsvRunInTerminalCheckBox_Caption;
LANGAutodetectCheckBox_Caption := LANGsvAutodetectCheckBox_Caption;
LANGBrowseButton_Caption := LANGsvBrowseButton_Caption;
LANGCommandLabel_Caption := LANGsvCommandLabel_Caption;
LANGDescriptionLabel_Caption := LANGsvDescriptionLabel_Caption;
LANGFNameExtLabel_Caption := LANGsvFNameExtLabel_Caption;
LANGNotebookPageExtensions := LANGsvNotebookPageExtensions;
LANGNotebookPageActions := LANGsvNotebookPageActions;
LANGDefault := LANGsvDefault;
LANGCannotSaveFileTypeAssociationsBecauseOtherProcess := LANGsvCannotSaveFileTypeAssociationsBecauseOtherProcess;
LANGDefaultColor := LANGsvDefaultColor;
LANGIcon := LANGsvIcon;
LANGBrowseForIcon := LANGsvBrowseForIcon;
LANGSelectFileTypeColor := LANGsvSelectFileTypeColor;
LANGColor := LANGsvColor;
LANGmiChangePermissions_Caption := LANGsvmiChangePermissions_Caption;
LANGmiChangeOwner_Caption := LANGsvmiChangeOwner_Caption;
LANGmiCreateSymlink_Caption := LANGsvmiCreateSymlink_Caption;
LANGmiEditSymlink_Caption := LANGsvmiEditSymlink_Caption;
LANGChmodProgress := LANGsvChmodProgress;
LANGChownProgress := LANGsvChownProgress;
LANGYouMustSelectAValidSymbolicLink := LANGsvYouMustSelectAValidSymbolicLink;
LANGPopupRunS := LANGsvPopupRunS;
LANGPopupOpenS := LANGsvPopupOpenS;
LANGPopupGoUp := LANGsvPopupGoUp;
LANGPopupOpenWithS := LANGsvPopupOpenWithS;
LANGPopupDefault := LANGsvPopupDefault;
LANGPopupOpenWith := LANGsvPopupOpenWith;
LANGPopupViewFile := LANGsvPopupViewFile;
LANGPopupEditFile := LANGsvPopupEditFile;
LANGPopupMakeSymlink := LANGsvPopupMakeSymlink;
LANGPopupRename := LANGsvPopupRename;
LANGPopupDelete := LANGsvPopupDelete;
LANGDialogChangePermissions := LANGsvDialogChangePermissions;
LANGCouldNotBeChmoddedS := LANGsvCouldNotBeChmoddedS;
LANGDialogChangeOwner := LANGsvDialogChangeOwner;
LANGCouldNotBeChownedS := LANGsvCouldNotBeChownedS;
LANGDialogMakeSymlink := LANGsvDialogMakeSymlink;
LANGDialogEditSymlink := LANGsvDialogEditSymlink;
LANGFEditSymlink_Caption := LANGsvFEditSymlink_Caption;
LANGFEditSymlink_SymbolicLinkFilename := LANGsvFEditSymlink_SymbolicLinkFilename;
LANGFEditSymlink_SymbolicLinkPointsTo := LANGsvFEditSymlink_SymbolicLinkPointsTo;
LANGFChmod_Caption := LANGsvFChmod_Caption;
LANGFChmod_PermissionFrame := LANGsvFChmod_PermissionFrame;
LANGFChmod_FileFrame := LANGsvFChmod_FileFrame;
LANGFChmod_ApplyRecursivelyFor := LANGsvFChmod_ApplyRecursivelyFor;
LANGFChmod_miAllFiles := LANGsvFChmod_miAllFiles;
LANGFChmod_miDirectories := LANGsvFChmod_miDirectories;
LANGFChmod_OctalLabel := LANGsvFChmod_OctalLabel;
LANGFChmod_SUID := LANGsvFChmod_SUID;
LANGFChmod_SGID := LANGsvFChmod_SGID;
LANGFChmod_Sticky := LANGsvFChmod_Sticky;
LANGFChmod_RUSR := LANGsvFChmod_RUSR;
LANGFChmod_WUSR := LANGsvFChmod_WUSR;
LANGFChmod_XUSR := LANGsvFChmod_XUSR;
LANGFChmod_RGRP := LANGsvFChmod_RGRP;
LANGFChmod_WGRP := LANGsvFChmod_WGRP;
LANGFChmod_XGRP := LANGsvFChmod_XGRP;
LANGFChmod_ROTH := LANGsvFChmod_ROTH;
LANGFChmod_WOTH := LANGsvFChmod_WOTH;
LANGFChmod_XOTH := LANGsvFChmod_XOTH;
LANGFChmod_TextLabel := LANGsvFChmod_TextLabel;
LANGFChmod_FileLabel := LANGsvFChmod_FileLabel;
LANGFChown_Caption := LANGsvFChown_Caption;
LANGFChown_OwnerFrame := LANGsvFChown_OwnerFrame;
LANGFChown_GroupFrame := LANGsvFChown_GroupFrame;
LANGFChown_FileFrame := LANGsvFChown_FileFrame;
LANGFChown_ApplyRecursively := LANGsvFChown_ApplyRecursively;
LANGFSymlink_Caption := LANGsvFSymlink_Caption;
LANGFSymlink_ExistingFilename := LANGsvFSymlink_ExistingFilename;
LANGFSymlink_SymlinkFilename := LANGsvFSymlink_SymlinkFilename;
LANGmnuBookmarks_Caption := LANGsvmnuBookmarks_Caption;
LANGmiAddBookmark_Caption := LANGsvmiAddBookmark_Caption;
LANGmiEditBookmarks_Caption := LANGsvmiEditBookmarks_Caption;
LANGBookmarkPopupDelete_Caption := LANGsvBookmarkPopupDelete_Caption;
LANGmiPreferences_Caption := LANGsvmiPreferences_Caption;
LANGTheCurrentDirectoryAlreadyExistsInTheBookmarksList := LANGsvTheCurrentDirectoryAlreadyExistsInTheBookmarksList;
LANGSomeOtherInstanceChanged := LANGsvSomeOtherInstanceChanged;
LANGPreferences_Caption := LANGsvPreferences_Caption;
LANGPreferences_TitleLabel_Caption := LANGsvPreferences_TitleLabel_Caption;
LANGPreferences_GeneralPage := LANGsvPreferences_GeneralPage;
LANGPreferences_FontsPage := LANGsvPreferences_FontsPage;
LANGPreferences_ColorsPage := LANGsvPreferences_ColorsPage;
LANGPreferences_RowHeight := LANGsvPreferences_RowHeight;
LANGPreferences_NumHistoryItems := LANGsvPreferences_NumHistoryItems;
LANGPreferences_Default := LANGsvPreferences_Default;
LANGPreferences_ClearReadonlyAttribute := LANGsvPreferences_ClearReadonlyAttribute;
LANGPreferences_DisableMouseRenaming := LANGsvPreferences_DisableMouseRenaming;
LANGPreferences_ShowFiletypeIconsInList := LANGsvPreferences_ShowFiletypeIconsInList;
LANGPreferences_ExternalAppsLabel := LANGsvPreferences_ExternalAppsLabel;
LANGPreferences_Viewer := LANGsvPreferences_Viewer;
LANGPreferences_Editor := LANGsvPreferences_Editor;
LANGPreferences_Terminal := LANGsvPreferences_Terminal;
LANGPreferences_ListFont := LANGsvPreferences_ListFont;
LANGPreferences_Change := LANGsvPreferences_Change;
LANGPreferences_UseDefaultFont := LANGsvPreferences_UseDefaultFont;
LANGPreferences_Foreground := LANGsvPreferences_Foreground;
LANGPreferences_Background := LANGsvPreferences_Background;
LANGPreferences_NormalItem := LANGsvPreferences_NormalItem;
LANGPreferences_SetToDefaultToUseGTKThemeColors := LANGsvPreferences_SetToDefaultToUseGTKThemeColors;
LANGPreferences_Cursor := LANGsvPreferences_Cursor;
LANGPreferences_InactiveItem := LANGsvPreferences_InactiveItem;
LANGPreferences_SelectedItem := LANGsvPreferences_SelectedItem;
LANGPreferences_LinkItem := LANGsvPreferences_LinkItem;
LANGPreferences_LinkItemHint := LANGsvPreferences_LinkItemHint;
LANGPreferences_DotFileItem := LANGsvPreferences_DotFileItem;
LANGPreferences_DotFileItemHint := LANGsvPreferences_DotFileItemHint;
LANGPreferences_BrowseForApplication := LANGsvPreferences_BrowseForApplication;
LANGPreferences_DefaultS := LANGsvPreferences_DefaultS;
LANGPreferences_SelectFont := LANGsvPreferences_SelectFont;
LANGBookmarkButton_Tooltip := LANGsvBookmarkButton_Tooltip;
LANGUpButton_Tooltip := LANGsvUpButton_Tooltip;
LANGRootButton_Tooltip := LANGsvRootButton_Tooltip;
LANGHomeButton_Tooltip := LANGsvHomeButton_Tooltip;
LANGLeftEqualButton_Tooltip := LANGsvLeftEqualButton_Tooltip;
LANGRightEqualButton_Tooltip := LANGsvRightEqualButton_Tooltip;
LANGmiShowDirectorySizes_Caption := LANGsvmiShowDirectorySizes_Caption;
LANGmiTargetSource_Caption := LANGsvmiTargetSource_Caption;
LANGFileTypeDirectory := LANGsvFileTypeDirectory;
LANGFileTypeFile := LANGsvFileTypeFile;
LANGFileTypeMetafile := LANGsvFileTypeMetafile;
LANGPreferencesPanelsPage := LANGsvPreferencesPanelsPage;
LANGPreferencesApplicationsPage := LANGsvPreferencesApplicationsPage;
LANGPreferencesExperimentalPage := LANGsvPreferencesExperimentalPage;
LANGPreferencesSelectAllDirectoriesCheckBox_Caption := LANGsvPreferencesSelectAllDirectoriesCheckBox_Caption;
LANGPreferencesNewStyleAltOCheckBox_Caption := LANGsvPreferencesNewStyleAltOCheckBox_Caption;
LANGPreferencesNewStyleAltOCheckBox_Tooltip := LANGsvPreferencesNewStyleAltOCheckBox_Tooltip;
LANGPreferencesShowFuncButtonsCheckBox_Caption := LANGsvPreferencesShowFuncButtonsCheckBox_Caption;
LANGPreferencesSizeFormatLabel_Caption := LANGsvPreferencesSizeFormatLabel_Caption;
LANGPreferencesmiSizeFormat1 := LANGsvPreferencesmiSizeFormat1;
LANGPreferencesmiSizeFormat6 := LANGsvPreferencesmiSizeFormat6;
LANGPreferencesAutodetectXApp := LANGsvPreferencesAutodetectXApp;
LANGPreferencesAlwaysRunInTerminal := LANGsvPreferencesAlwaysRunInTerminal;
LANGPreferencesNeverRunInTerminal := LANGsvPreferencesNeverRunInTerminal;
LANGPreferencesCmdLineBehaviourLabel_Caption := LANGsvPreferencesCmdLineBehaviourLabel_Caption;
LANGPreferencesFeatures := LANGsvPreferencesFeatures;
LANGPreferencesDisableMouseRename_Tooltip := LANGsvPreferencesDisableMouseRename_Tooltip;
LANGPreferencesDisableFileTipsCheckBox_Caption := LANGsvPreferencesDisableFileTipsCheckBox_Caption;
LANGPreferencesDisableFileTipsCheckBox_Tooltip := LANGsvPreferencesDisableFileTipsCheckBox_Tooltip;
LANGPreferencesShow := LANGsvPreferencesShow;
LANGPreferencesDirsInBoldCheckBox_Caption := LANGsvPreferencesDirsInBoldCheckBox_Caption;
LANGPreferencesDisableDirectoryBracketsCheckBox_Caption := LANGsvPreferencesDisableDirectoryBracketsCheckBox_Caption;
LANGPreferencesOctalPermissionsCheckBox_Caption := LANGsvPreferencesOctalPermissionsCheckBox_Caption;
LANGPreferencesOctalPermissionsCheckBox_Tooltip := LANGsvPreferencesOctalPermissionsCheckBox_Tooltip;
LANGPreferencesMovement := LANGsvPreferencesMovement;
LANGPreferencesLynxLikeMotionCheckBox_Caption := LANGsvPreferencesLynxLikeMotionCheckBox_Caption;
LANGPreferencesInsertMovesDownCheckBox_Caption := LANGsvPreferencesInsertMovesDownCheckBox_Caption;
LANGPreferencesSpaceMovesDownCheckBox_Caption := LANGsvPreferencesSpaceMovesDownCheckBox_Caption;
LANGPreferencesViewer := LANGsvPreferencesViewer;
LANGPreferencesCommandSC := LANGsvPreferencesCommandSC;
LANGPreferencesUseInternalViewer := LANGsvPreferencesUseInternalViewer;
LANGPreferencesEditor := LANGsvPreferencesEditor;
LANGPreferencesTerminal := LANGsvPreferencesTerminal;
LANGPreferencesExperimentalFeatures := LANGsvPreferencesExperimentalFeatures;
LANGPreferencesExperimentalWarningLabel_Caption := LANGsvPreferencesExperimentalWarningLabel_Caption;
LANGPreferencesFocusRefreshCheckBox_Caption := LANGsvPreferencesFocusRefreshCheckBox_Caption;
LANGPreferencesFocusRefreshCheckBox_Tooltip := LANGsvPreferencesFocusRefreshCheckBox_Tooltip;
LANGPreferencesWMCompatModeCheckBox_Caption := LANGsvPreferencesWMCompatModeCheckBox_Caption;
LANGPreferencesWMCompatModeCheckBox_Tooltip := LANGsvPreferencesWMCompatModeCheckBox_Tooltip;
LANGPreferencesCompatUseLibcSystemCheckBox_Caption := LANGsvPreferencesCompatUseLibcSystemCheckBox_Caption;
LANGPreferencesCompatUseLibcSystemCheckBox_Tooltip := LANGsvPreferencesCompatUseLibcSystemCheckBox_Tooltip;
LANGmiSearchCaption2 := LANGsvmiSearchCaption2;
LANGmiNoMounterBarCaption := LANGsvmiNoMounterBarCaption;
LANGmiShowOneMounterBarCaption := LANGsvmiShowOneMounterBarCaption;
LANGmiShowTwoMounterBarCaption := LANGsvmiShowTwoMounterBarCaption;
LANGmnuNetworkCaption := LANGsvmnuNetworkCaption;
LANGmiConnectionsCaption := LANGsvmiConnectionsCaption;
LANGmiOpenConnectionCaption := LANGsvmiOpenConnectionCaption;
LANGmiQuickConnectCaption := LANGsvmiQuickConnectCaption;
LANGmnuPluginsCaption := LANGsvmnuPluginsCaption;
LANGmiTestPluginCaption := LANGsvmiTestPluginCaption;
LANGmiMounterSettingsCaption := LANGsvmiMounterSettingsCaption;
LANGmiColumnsCaption := LANGsvmiColumnsCaption;
LANGmiSavePositionCaption := LANGsvmiSavePositionCaption;
LANGmiMountCaption := LANGsvmiMountCaption;
LANGmiUmountCaption := LANGsvmiUmountCaption;
LANGmiEjectCaption := LANGsvmiEjectCaption;
LANGmiDuplicateTabCaption := LANGsvmiDuplicateTabCaption;
LANGmiCloseTabCaption := LANGsvmiCloseTabCaption;
LANGmiCloseAllTabsCaption := LANGsvmiCloseAllTabsCaption;
LANGCannotDetermineDestinationEngine := LANGsvCannotDetermineDestinationEngine;
LANGCannotLoadFile := LANGsvCannotLoadFile;
LANGMountPointDevice := LANGsvMountPointDevice;
LANGMountSC := LANGsvMountSC;
LANGNoPluginsFound := LANGsvNoPluginsFound;
LANGPluginAbout := LANGsvPluginAbout;
LANGCouldntOpenURI := LANGsvCouldntOpenURI;
LANGPluginAboutInside := LANGsvPluginAboutInside;
LANGAreYouSureCloseAllTabs := LANGsvAreYouSureCloseAllTabs;
LANGCouldntOpenURIArchive := LANGsvCouldntOpenURIArchive;
LANGThereIsNoModuleAvailable := LANGsvThereIsNoModuleAvailable;
LANGIgnoreError := LANGsvIgnoreError;
LANGErrorMount := LANGsvErrorMount;
LANGErrorUmount := LANGsvErrorUmount;
LANGErrorEject := LANGsvErrorEject;
LANGMounterPrefs_Caption := LANGsvMounterPrefs_Caption;
LANGMounterPrefs_TitleLabelCaption := LANGsvMounterPrefs_TitleLabelCaption;
LANGMounterPrefs_ListViewFrameCaption := LANGsvMounterPrefs_ListViewFrameCaption;
LANGMounterPrefs_MountName := LANGsvMounterPrefs_MountName;
LANGMounterPrefs_MountPoint := LANGsvMounterPrefs_MountPoint;
LANGMounterPrefs_Device := LANGsvMounterPrefs_Device;
LANGMounterPrefs_MoveUpButtonTooltip := LANGsvMounterPrefs_MoveUpButtonTooltip;
LANGMounterPrefs_MoveDownButtonTooltip := LANGsvMounterPrefs_MoveDownButtonTooltip;
LANGMounterPrefs_UseFSTabDefaultsCheckBox := LANGsvMounterPrefs_UseFSTabDefaultsCheckBox;
LANGMounterPrefs_UseFSTabDefaultsCheckBoxTooltip := LANGsvMounterPrefs_UseFSTabDefaultsCheckBoxTooltip;
LANGMounterPrefs_ToggleModeCheckBox := LANGsvMounterPrefs_ToggleModeCheckBox;
LANGMounterPrefs_ToggleModeCheckBoxTooltip := LANGsvMounterPrefs_ToggleModeCheckBoxTooltip;
LANGMounterPrefs_PropertiesFrameCaption := LANGsvMounterPrefs_PropertiesFrameCaption;
LANGMounterPrefs_DisplayTextLabelCaption := LANGsvMounterPrefs_DisplayTextLabelCaption;
LANGMounterPrefs_MountPointLabelCaption := LANGsvMounterPrefs_MountPointLabelCaption;
LANGMounterPrefs_MountDeviceLabelCaption := LANGsvMounterPrefs_MountDeviceLabelCaption;
LANGMounterPrefs_DeviceTypeLabelCaption := LANGsvMounterPrefs_DeviceTypeLabelCaption;
LANGMounterPrefs_miLocalDiskCaption := LANGsvMounterPrefs_miLocalDiskCaption;
LANGMounterPrefs_miRemovableCaption := LANGsvMounterPrefs_miRemovableCaption;
LANGMounterPrefs_miCDCaption := LANGsvMounterPrefs_miCDCaption;
LANGMounterPrefs_miFloppyCaption := LANGsvMounterPrefs_miFloppyCaption;
LANGMounterPrefs_miNetworkCaption := LANGsvMounterPrefs_miNetworkCaption;
LANGMounterPrefs_MountCommandLabelCaption := LANGsvMounterPrefs_MountCommandLabelCaption;
LANGMounterPrefs_UmountCommandLabelCaption := LANGsvMounterPrefs_UmountCommandLabelCaption;
LANGMounterPrefs_MountCommandEntryTooltip := LANGsvMounterPrefs_MountCommandEntryTooltip;
LANGMounterPrefs_UmountCommandEntryTooltip := LANGsvMounterPrefs_UmountCommandEntryTooltip;
LANGMounterPrefs_IconLabelCaption := LANGsvMounterPrefs_IconLabelCaption;
LANGConnMgr_Caption := LANGsvConnMgr_Caption;
LANGConnMgr_ConnectButton := LANGsvConnMgr_ConnectButton;
LANGConnMgr_OpenConnection := LANGsvConnMgr_OpenConnection;
LANGConnMgr_NameColumn := LANGsvConnMgr_NameColumn;
LANGConnMgr_URIColumn := LANGsvConnMgr_URIColumn;
LANGConnMgr_AddConnectionButtonCaption := LANGsvConnMgr_AddConnectionButtonCaption;
LANGConnMgr_AddConnectionButtonTooltip := LANGsvConnMgr_AddConnectionButtonTooltip;
LANGConnMgr_EditButtonCaption := LANGsvConnMgr_EditButtonCaption;
LANGConnMgr_EditButtonTooltip := LANGsvConnMgr_EditButtonTooltip;
LANGConnMgr_RemoveButtonCaption := LANGsvConnMgr_RemoveButtonCaption;
LANGConnMgr_RemoveButtonTooltip := LANGsvConnMgr_RemoveButtonTooltip;
LANGConnMgr_DoYouWantDelete := LANGsvConnMgr_DoYouWantDelete;
LANGConnProp_FTP := LANGsvConnProp_FTP;
LANGConnProp_SFTP := LANGsvConnProp_SFTP;
LANGConnProp_SMB := LANGsvConnProp_SMB;
LANGConnProp_HTTP := LANGsvConnProp_HTTP;
LANGConnProp_HTTPS := LANGsvConnProp_HTTPS;
LANGConnProp_Other := LANGsvConnProp_Other;
LANGConnProp_Caption := LANGsvConnProp_Caption;
LANGConnProp_VFSModule := LANGsvConnProp_VFSModule;
LANGConnProp_URI := LANGsvConnProp_URI;
LANGConnProp_URIEntryTooltip := LANGsvConnProp_URIEntryTooltip;
LANGConnProp_DetailedInformations := LANGsvConnProp_DetailedInformations;
LANGConnProp_Name := LANGsvConnProp_Name;
LANGConnProp_Server := LANGsvConnProp_Server;
LANGConnProp_Username := LANGsvConnProp_Username;
LANGConnProp_UserNameEntryTooltip := LANGsvConnProp_UserNameEntryTooltip;
LANGConnProp_Password := LANGsvConnProp_Password;
LANGConnProp_TargetDirectory := LANGsvConnProp_TargetDirectory;
LANGConnProp_ServiceType := LANGsvConnProp_ServiceType;
LANGConnProp_MaskPassword := LANGsvConnProp_MaskPassword;
LANGConnProp_MenuItemCaption := LANGsvConnProp_MenuItemCaption;
LANGConnLogin_Caption := LANGsvConnLogin_Caption;
LANGConnLogin_Login := LANGsvConnLogin_Login;
LANGConnLogin_ExperimentalWarningLabelCaption := LANGsvConnLogin_ExperimentalWarningLabelCaption;
LANGConnLogin_Username := LANGsvConnLogin_Username;
LANGConnLogin_Password := LANGsvConnLogin_Password;
LANGConnLogin_AnonymousCheckButton := LANGsvConnLogin_AnonymousCheckButton;
LANGColumns_Caption := LANGsvColumns_Caption;
LANGColumns_Title := LANGsvColumns_Title;
LANGColumns_MoveUpButtonTooltip := LANGsvColumns_MoveUpButtonTooltip;
LANGColumns_MoveDownButtonTooltip := LANGsvColumns_MoveDownButtonTooltip;
LANGColumns_TitlesLongName := LANGsvColumns_TitlesLongName;
LANGColumns_TitlesLongNameExt := LANGsvColumns_TitlesLongNameExt;
LANGColumns_TitlesLongExt := LANGsvColumns_TitlesLongExt;
LANGColumns_TitlesLongSize := LANGsvColumns_TitlesLongSize;
LANGColumns_TitlesLongDateTime := LANGsvColumns_TitlesLongDateTime;
LANGColumns_TitlesLongDate := LANGsvColumns_TitlesLongDate;
LANGColumns_TitlesLongTime := LANGsvColumns_TitlesLongTime;
LANGColumns_TitlesLongUser := LANGsvColumns_TitlesLongUser;
LANGColumns_TitlesLongGroup := LANGsvColumns_TitlesLongGroup;
LANGColumns_TitlesLongAttr := LANGsvColumns_TitlesLongAttr;
LANGColumns_TitlesShortName := LANGsvColumns_TitlesShortName;
LANGColumns_TitlesShortNameExt := LANGsvColumns_TitlesShortNameExt;
LANGColumns_TitlesShortExt := LANGsvColumns_TitlesShortExt;
LANGColumns_TitlesShortSize := LANGsvColumns_TitlesShortSize;
LANGColumns_TitlesShortDateTime := LANGsvColumns_TitlesShortDateTime;
LANGColumns_TitlesShortDate := LANGsvColumns_TitlesShortDate;
LANGColumns_TitlesShortTime := LANGsvColumns_TitlesShortTime;
LANGColumns_TitlesShortUser := LANGsvColumns_TitlesShortUser;
LANGColumns_TitlesShortGroup := LANGsvColumns_TitlesShortGroup;
LANGColumns_TitlesShortAttr := LANGsvColumns_TitlesShortAttr;
LANGTestPlugin_Caption := LANGsvTestPlugin_Caption;
LANGTestPlugin_Title := LANGsvTestPlugin_Title;
LANGTestPlugin_ExperimentalWarningLabelCaption := LANGsvTestPlugin_ExperimentalWarningLabelCaption;
LANGTestPlugin_Plugin := LANGsvTestPlugin_Plugin;
LANGTestPlugin_Command := LANGsvTestPlugin_Command;
LANGTestPlugin_Username := LANGsvTestPlugin_Username;
LANGTestPlugin_Password := LANGsvTestPlugin_Password;
LANGTestPlugin_AnonymousCheckButton := LANGsvTestPlugin_AnonymousCheckButton;
LANGTestPlugin_NoPluginsFound := LANGsvTestPlugin_NoPluginsFound;
LANGRemoteWait_Caption := LANGsvRemoteWait_Caption;
LANGRemoteWait_OperationInProgress := LANGsvRemoteWait_OperationInProgress;
LANGRemoteWait_ItemsFound := LANGsvRemoteWait_ItemsFound;
LANGSearch_Bytes := LANGsvSearch_Bytes;
LANGSearch_kB := LANGsvSearch_kB;
LANGSearch_MB := LANGsvSearch_MB;
LANGSearch_days := LANGsvSearch_days;
LANGSearch_weeks := LANGsvSearch_weeks;
LANGSearch_months := LANGsvSearch_months;
LANGSearch_years := LANGsvSearch_years;
LANGSearch_Caption := LANGsvSearch_Caption;
LANGSearch_General := LANGsvSearch_General;
LANGSearch_Advanced := LANGsvSearch_Advanced;
LANGSearch_SearchResults := LANGsvSearch_SearchResults;
LANGSearch_SearchFor := LANGsvSearch_SearchFor;
LANGSearch_FileMaskEntryTooltip := LANGsvSearch_FileMaskEntryTooltip;
LANGSearch_SearchIn := LANGsvSearch_SearchIn;
LANGSearch_SearchArchivesCheckButton := LANGsvSearch_SearchArchivesCheckButton;
LANGSearch_FindText := LANGsvSearch_FindText;
LANGSearch_FindTextEntryTooltip := LANGsvSearch_FindTextEntryTooltip;
LANGSearch_CaseSensitiveCheckButton := LANGsvSearch_CaseSensitiveCheckButton;
LANGSearch_StayCurrentFSCheckButton := LANGsvSearch_StayCurrentFSCheckButton;
LANGSearch_CaseSensitiveMatchCheckButton := LANGsvSearch_CaseSensitiveMatchCheckButton;
LANGSearch_Size := LANGsvSearch_Size;
LANGSearch_Date := LANGsvSearch_Date;
LANGSearch_BiggerThan := LANGsvSearch_BiggerThan;
LANGSearch_SmallerThan := LANGsvSearch_SmallerThan;
LANGSearch_ModifiedBetweenRadioButton := LANGsvSearch_ModifiedBetweenRadioButton;
LANGSearch_NotModifiedAfterRadioButton := LANGsvSearch_NotModifiedAfterRadioButton;
LANGSearch_ModifiedLastRadioButton := LANGsvSearch_ModifiedLastRadioButton;
LANGSearch_ModifiedNotLastRadionButton := LANGsvSearch_ModifiedNotLastRadionButton;
LANGSearch_ModifiedBetweenEntry1 := LANGsvSearch_ModifiedBetweenEntry1;
LANGSearch_ViewButtonCaption := LANGsvSearch_ViewButtonCaption;
LANGSearch_NewSearchButtonCaption := LANGsvSearch_NewSearchButtonCaption;
LANGSearch_GoToFileButtonCaption := LANGsvSearch_GoToFileButtonCaption;
LANGSearch_FeedToListboxButtonCaption := LANGsvSearch_FeedToListboxButtonCaption;
LANGSearch_StatusSC := LANGsvSearch_StatusSC;
LANGSearch_Ready := LANGsvSearch_Ready;
LANGSearch_PreparingToSearch := LANGsvSearch_PreparingToSearch;
LANGSearch_SearchInProgress := LANGsvSearch_SearchInProgress;
LANGSearch_UserCancelled := LANGsvSearch_UserCancelled;
LANGSearch_SearchFinished := LANGsvSearch_SearchFinished;
LANGSearch_FilesFound := LANGsvSearch_FilesFound;
LANGSearch_And := LANGsvSearch_And;
LANGCloseOpenConnection := LANGsvCloseOpenConnection;
LANGDuplicateTabWarning := LANGsvDuplicateTabWarning;
LANGDontShowAgain := LANGsvDontShowAgain;
LANGSwitchOtherPanelWarning := LANGsvSwitchOtherPanelWarning;
LANGOpenConnectionsWarning := LANGsvOpenConnectionsWarning;
LANGmiDisconnect_Caption := LANGsvmiDisconnect_Caption;
LANGDisconnectButton_Tooltip := LANGsvDisconnectButton_Tooltip;
LANGLeaveArchiveButton_Tooltip := LANGsvLeaveArchiveButton_Tooltip;
LANGOpenTerminalButton_Tooltip := LANGsvOpenTerminalButton_Tooltip;
LANGOpenTerminalButton_Caption := LANGsvOpenTerminalButton_Caption;
LANGShowTextUIDsCheckBox_Caption := LANGsvShowTextUIDsCheckBox_Caption;
LANGShowTextUIDsCheckBox_Tooltip := LANGsvShowTextUIDsCheckBox_Tooltip;
LANGmiNewTab_Caption := LANGsvmiNewTab_Caption;
LANGFilePopupMenu_Properties := LANGsvFilePopupMenu_Properties;
LANGCommandEntry_Tooltip := LANGsvCommandEntry_Tooltip;
LANGmiFiles_Caption := LANGsvmiFiles_Caption;
LANGPasswordButton_Tooltip := LANGsvPasswordButton_Tooltip;
LANGHandleRunFromArchive_Bytes := LANGsvHandleRunFromArchive_Bytes;
LANGHandleRunFromArchive_FileTypeDesc_Unknown := LANGsvHandleRunFromArchive_FileTypeDesc_Unknown;
LANGHandleRunFromArchive_NotAssociated := LANGsvHandleRunFromArchive_NotAssociated;
LANGHandleRunFromArchive_SelfExecutable := LANGsvHandleRunFromArchive_SelfExecutable;
LANGHandleRunFromArchive_CouldntCreateTemporaryDirectory := LANGsvHandleRunFromArchive_CouldntCreateTemporaryDirectory;
LANGFRunFromVFS_Caption := LANGsvFRunFromVFS_Caption;
LANGFRunFromVFS_TitleLabel := LANGsvFRunFromVFS_TitleLabel;
LANGFRunFromVFS_FileNameLabel := LANGsvFRunFromVFS_FileNameLabel;
LANGFRunFromVFS_FileTypeLabel := LANGsvFRunFromVFS_FileTypeLabel;
LANGFRunFromVFS_SizeLabel := LANGsvFRunFromVFS_SizeLabel;
LANGFRunFromVFS_PackedSizeLabel := LANGsvFRunFromVFS_PackedSizeLabel;
LANGFRunFromVFS_DateLabel := LANGsvFRunFromVFS_DateLabel;
LANGFRunFromVFS_InfoLabel := LANGsvFRunFromVFS_InfoLabel;
LANGFRunFromVFS_OpensWithLabel := LANGsvFRunFromVFS_OpensWithLabel;
LANGFRunFromVFS_ExecuteButton := LANGsvFRunFromVFS_ExecuteButton;
LANGFRunFromVFS_ExecuteAllButton := LANGsvFRunFromVFS_ExecuteAllButton;
LANGFSetPassword_Caption := LANGsvFSetPassword_Caption;
LANGFSetPassword_Label1_Caption := LANGsvFSetPassword_Label1_Caption;
LANGFSetPassword_Label2_Caption := LANGsvFSetPassword_Label2_Caption;
LANGFSetPassword_ShowPasswordCheckButton := LANGsvFSetPassword_ShowPasswordCheckButton;
end;
initialization
AddTranslation('sv_SE', @SetTranslation);
AddTranslation('SV', @SetTranslation);
end.
|