summaryrefslogtreecommitdiff
path: root/translations/UTranslation_CHT.pas
blob: 70a4da20891df5d22ebf7d977946371534be86ea (plain)
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
(*
    Tux Commander - UTranslation_CHT - Traditional Chinese Localization constants
    Copyright (C) 2008 Kend <kendling@21cn.com>
    Check for updates on tuxcmd.sourceforge.net

    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_CHT;

(***************************************************************************
 * Info for translators:
     - please use UTF-8 encoding when making translations, the whole GTK+ 2
       is using it to display non-ASCII characters properly
     - please change the few lines at the bottom of this file to your
       locale string (e.g. en_US for English translation)
***************************************************************************)

interface

implementation

uses ULocale;

const LANGchtF2Button_Caption = 'F2 - 重命名';
      LANGchtF3Button_Caption = 'F3 - 查看';
      LANGchtF4Button_Caption = 'F4 - 編輯';
      LANGchtF5Button_Caption = 'F5 - 複製';
      LANGchtF6Button_Caption = 'F6 - 移動';
      LANGchtF7Button_Caption = 'F7 - 新建目錄';
      LANGchtF8Button_Caption = 'F8 - 刪除';

      LANGchtmnuFile_Caption = '文件(_F)';
      LANGchtmnuMark_Caption = '標記_M)';
      LANGchtmnuCommands_Caption = '命令(_C)';
      LANGchtmnuHelp_Caption = '幫助(_H)';
      LANGchtmiExit_Caption = '退出(_X)';
      LANGchtmiSelectGroup_Caption = '選擇組(_G)...';
      LANGchtmiUnselectGroup_Caption = '取消選擇組(_U)...';
      LANGchtmiSelectAll_Caption = '全選(_S)';
      LANGchtmiUnselectAll_Caption = '取消全選(_N)';
      LANGchtmiInvertSelection_Caption = '反選(_I)';
      LANGchtmiRefresh_Caption = '刷新(_R)';
      LANGchtmiAbout_Caption = '關於(_A)...';

      LANGchtColumn1_Caption = '名稱';
      LANGchtColumn2_Caption = '擴展名';
      LANGchtColumn3_Caption = '大小';
      LANGchtColumn4_Caption = '日期';
      LANGchtColumn5_Caption = '屬性';

      LANGchtExpandSelection = '擴大選擇';
      LANGchtShrinkSelection = '收縮選擇';
      LANGchtNoMatchesFound = '沒有找到匹配項';
      LANGchtNoFilesSelected = '沒有文件被選擇!';
      LANGchtSelectedFilesDirectories = '%d 文件/目錄被選擇';
      LANGchtDirectoryS = '目錄 %s';
      LANGchtFileS = '文件 %s';
      LANGchtDoYouReallyWantToDeleteTheS = '你真的想刪除 %s ?';
      LANGchtDoYouReallyWantToDeleteTheSS = '你真的想刪除 %s ?'#10'%s';
      LANGchtCopyFiles = '複製文件';
      LANGchtMoveRenameFiles = '移動/重命名文件';
      LANGchtCopyDFileDirectoriesTo = '複製 %d 文件/目錄到';
      LANGchtMoveRenameDFileDirectoriesTo = '移動/重命名 %d 文件/目錄到';
      LANGchtCopySC = '複製:';
      LANGchtMoveRenameSC = '移動/重命名:';

      LANGchtQuickFind = '  快速查找:';

      LANGchtAboutString = 'Tux Commander'#10'版本 %s'#10'建立日期: %s'#10#10'版權所有 (c) 2002-2024 Tomas Bzatek'#10'E-mail: tbzatek@users.sourceforge.net'#10'Website: http://tuxcmd.sourceforge.net/'#10'漢化: Kend [kendling@21cn.com]';
      LANGchtAboutStringGnome = '版本 %s'#10'建立日期: %s'#10'網站: http://tuxcmd.sourceforge.net/';
      LANGchtDiskStatFmt = '%s 空閑,共 %s';
      LANGchtDiskStatVolNameFmt = '[%s] %s 空閑,共 %s';
      LANGchtStatusLineFmt = '%s 共 %s 在 %d 共 %d 文件被選擇';
      LANGchtPanelStrings : array[boolean] of string = ('right', 'left');

      LANGchtDIR = '<DIR>';
      LANGchtErrorGettingListingForSPanel = '獲取 %s 面板的列表時出錯:'#10'    %s'#10#10'路徑 = ''%s''';
      LANGchtErrorGettingListingForSPanelNoPath = '獲取 %s 面板的列表時出錯:'#10'    %s';
      LANGchtErrorCreatingNewDirectorySInSPanel = '新建目錄 ''%s'' 在 %s 面板時出錯:'#10'    %s';
      LANGchtErrorCreatingNewDirectorySInSPanelNoPath = '新建目錄在 %s 面板時出錯:'#10'    %s';
      LANGchtTheFileDirectory = '文件/目錄';
      LANGchtCouldNotBeDeleted = '不能刪除';
      LANGchtCouldNotBeDeletedS = '不能刪除:  %s';
      LANGchtUserCancelled = '用戶已取消!';
      LANGchtTheDirectorySIsNotEmpty = '目錄 %s 不為空!';
      LANGchtCannotCopyFile = '不能複製文件';
      LANGchtCopyError = '複製錯誤';
      LANGchtMoveError = '移動錯誤';
      LANGchtOverwriteS = '複蓋: %s';
      LANGchtWithFileS = '為文件: %s';
      LANGchtOvewriteSBytesS = '%s 字節, %s';
      LANGchtTheFile = '文件';
      LANGchtCopy = '複製';
      LANGchtMove = '移動';
      LANGchtTheDirectory = '目錄';
      LANGchtTheSymbolicLink = '符號連接';
      LANGchtCannotMoveFile = '不能移動文件';
      LANGchtCouldNotBeCreated = '不能創建';
      LANGchtCouldNotBeCreatedS = '不能創建創:  %s';
      LANGchtFromS = '從: %s';
      LANGchtToS = '到: %s';
      LANGchtCannotCopyFileToItself = '不能複製文件到自身';
      LANGchtMemoryAllocationFailed = '內存分配失敗:';
      LANGchtCannotOpenSourceFile = '不能打開源文件';
      LANGchtCannotOpenDestinationFile = '不能打開目標文件';
      LANGchtCannotCloseDestinationFile = '不能關閉目標文件';
      LANGchtCannotCloseSourceFile = '不能關閉源文件';
      LANGchtCannotReadFromSourceFile = '不能從源文件讀取';
      LANGchtCannotWriteToDestinationFile = '不能寫到目標文件';

      LANGchtUnknownException = '未知異常';
      LANGchtNoAccess = '沒有訪問';
      LANGchtUnknownError = '未知錯誤';

      LANGchtCreateANewDirectory = '創建新目錄';
      LANGchtEnterDirectoryName = '輸入目錄名(_D):';

      LANGchtOverwriteQuestion = '複蓋提示';
      LANGchtOverwriteButton_Caption = '複蓋(_O)';
      LANGchtOverwriteAllButton_Caption = '複蓋所有(_A)';
      LANGchtSkipButton_Caption = '跳過(_S)';
      LANGchtOverwriteAllOlderButton_Caption = '複蓋舊文件(_D)';
      LANGchtSkipAllButton_Caption = '全部跳過(_K)';
      LANGchtRenameButton_Caption = '重命名(_R)';
      LANGchtAppendButton_Caption = '附加(_P)';
      LANGchtRename = '重命名';
      LANGchtRenameFile = '重命名文件 ''%s'' 到';
      LANGchtIgnoreButton_Caption = '忽略(_I)';

      LANGchtProgress = '進度';
      LANGchtCancel = '取消(_C)';
      LANGchtDelete = '刪除:';

      LANGchtSpecifyFileType = '指定文件類型(_S):';

      LANGchtRemoveDirectory = '刪除目錄';
      LANGchtDoYouWantToDeleteItWithAllItsFilesAndSubdirectories = '你確定刪除該目錄以及裏面的所有文件和子目錄?';
      LANGchtRetry = '重試(_R)';
      LANGchtDeleteButton_Caption = '刪除(_D)';
      LANGchtAll = '全部(_A)';

      LANGchtCopyFilesSC = '複製文件:';
      LANGchtAppendQuestion = '你確定要附加文件 ''%s'' 到 ''%s''?';
      LANGchtPreparingList = '正在准備列表...';

      LANGchtYouMustSelectAValidFile = '你必需選擇一個有效的文件!';
      LANGchtmiVerifyChecksums = '檢驗校驗和(_V)';
      LANGchtVerifyChecksumsCaption = '檢驗校驗和';
      LANGchtCheckButtonCaptionCheck = '檢查(_C)';
      LANGchtCheckButtonCaptionStop = '停止(_S)';
      LANGchtFileListTooltip = '[?] - 沒有選擇'#10'[OK] - 校驗和正確'#10'[BAD] - 校驗和失敗'#10'[N/A] - 文件不可用';
      LANGchtFilenameColumnCaption = '文件名';
      LANGchtTheFileSYouAreTryingToOpenIsQuiteBig = '你嘗試打開的文件 ''%s'' 太大 (%s 字節). 它可能不是一個有效的校驗和文件.'#10#10'你是否想加載它?';
      LANGchtAnErrorOccuredWhileInitializingMemoryBlock = '初始化內存塊時發生錯誤. 請關閉一些程序後再試.';
      LANGchtAnErrorOccuredWhileOpeningFileSS = '打開文件 ''%s'' 時發生錯誤:'#10'  %s';
      LANGchtAnErrorOccuredWhileReadingFileSS = '讀取文件 ''%s'' 時發生錯誤:'#10'  %s';
      LANGchtChecksumNotChecked = '<span weight="bold">狀態:</span> 沒有選擇';
      LANGchtChecksumChecking = '<span weight="bold">狀態:</span> 正在檢驗...';
      LANGchtChecksumInterrupted = '<span weight="bold">狀態:</span> 中斷';
      LANGchtChecksumDOK = '<span weight="bold">狀態:</span> %d%% 正確';

      LANGchtmiCreateChecksumsCaption = '創建校驗和(_C)...';
      LANGchtYouMustSelectAtLeastOneFileToCalculateChecksum = '你必須選擇一個或多個文件進行校驗和計算!';
      LANGchtCreateChecksumsCaption = '創建校驗和';
      LANGchtCCHKSUMPage1Text = '你正在為選擇的文件創建校驗和文件.'#10'如果你沒有選擇文件,'#10'請關閉並重新選擇文件.';
      LANGchtCCHKSUMPage4Text = '你已經准備好為選擇的文件創建校驗和.'#10'這個操作可能需要幾分鍾時間.'#10'單擊前進繼續.';
      LANGchtCCHKSUMPage6Text = '創建校驗和時發生以下錯誤:';
      LANGchtCCHKSUMPage7Text = '校驗和創建完成.'#10#10'單擊 "完成" 按鈕退出.';
      LANGchtCCHKSUMPage1Title = '<span size="xx-large" weight="ultrabold">為校驗和准備文件</span>';
      LANGchtCCHKSUMPage2Title = '<span size="xx-large" weight="ultrabold">選擇校驗和文件類型</span>';
      LANGchtCCHKSUMPage3Title = '<span size="xx-large" weight="ultrabold">選擇文件名</span>';
      LANGchtCCHKSUMPage4Title = '<span size="xx-large" weight="ultrabold">准備檢驗</span>';
      LANGchtCCHKSUMPage5Title = '<span size="xx-large" weight="ultrabold">正在檢驗...</span>';
      LANGchtCCHKSUMPage6Title = '<span size="xx-large" weight="ultrabold">錯誤!</span>';
      LANGchtCCHKSUMPage7Title = '<span size="xx-large" weight="ultrabold">完成</span>';
      LANGchtCCHKSUMSFVFile = 'SFV 文件';
      LANGchtCCHKSUMMD5sumFile = 'MD5sum 文件';
      LANGchtCCHKSUMFileName = '文件名(_N):';
      LANGchtCCHKSUMCreateSeparateChecksumFiles = '為每個文件獨立創建校驗和文件(_S)';
      LANGchtCCHKSUMNowProcessingFileS = '正在處理文件: %s';
      LANGchtCCHKSUMFinishCaption = '完成(_F)';
      LANGchtCCHKSUMAreYouSureYouWantToAbortTheProcessing = '你確定要中斷當前操作?';
      LANGchtCCHKSUMAnErrorOccuredWhileOpeningFileSS = '打開文件 ''%s'' 時發生一個錯誤: %s'#10;
      LANGchtCCHKSUMAnErrorOccuredWhileReadingFileSS = '讀取文件 ''%s'' 時發生一個錯誤: %s'#10;
      LANGchtCCHKSUMAnErrorOccuredWhileWritingFileSS = '寫入文件 ''%s'' 時發生一個錯誤: %s'#10;

      LANGchtAnErrorOccuredWhileWritingFileSS = '寫入文件 ''%s'' 時發生一個錯誤:'#10'  %s';
      LANGchtTheTargetFileSAlreadyExistsDoYouWantToOverwriteIt = '目標文件 ''%s'' 已經存在. 你是否要複蓋它?';
      LANGchtTheTargetFileSCannotBeRemovedS = '目標文件 ''%s'' 不能創建: %s';
      LANGchtMergeCaption = '合並';
      LANGchtPleaseInsertNextDiskOrGiveDifferentLocation = '請插入下一個磁盤, 或選擇其他路徑:';
      LANGchtMergeOfSSucceeded = '合並 ''%s'' 成功 (CRC 校驗和正確).';
      LANGchtWarningCreatedFileFailsCRCCheck = '警告: 創建文件失敗 CRC 檢查!';
      LANGchtMergeOfSSucceeded_NoCRCFileAvailable = '合並 ''%s'' 成功 (沒有 CRC 文件可用).';
      LANGchtMergeSAndAllFilesWithAscendingNamesToTheFollowingDirectory = '以字母順序合並 ''%s'' 和所有文件到以下目錄:';
      LANGchtMergeSC = '合並:';
      LANGchtmiSplitFileCaption = '拆分文件(_S)...';
      LANGchtmiMergeFilesCaption = '合並文件(_M)...';

      LANGchtSplitTheFileSToDirectory = '拆分文件 ''%s'' 到目錄(_S):';
      LANGchtSplitSC = '拆分:';
      LANGchtSplitFile = '拆分文件';
      LANGchtBytesPerFile = '每個文件字節數(_B):';
      LANGchtAutomatic = '自動';
      LANGchtDeleteFilesOnTargetDisk = '在目標磁盤刪除文件(_D) (僅可移動媒體)';
      LANGchtSplitCaption = '拆分';
      LANGchtCannotOpenFileS = '不能打開文件 ''%s''';
      LANGchtCannotSplitTheFileToMoreThan999Parts = '不能把文件拆分為 999 部份以上!';
      LANGchtThereAreSomeFilesInTheTargetDirectorySDoYouWantToDeleteThem = '某些文件已經在目標目錄存在:'#10'%s'#10'是否刪除這些文件?';
      LANGchtThereAreDFilesInTheTargetDirectoryDoYouWantToDeleteThem = '%d 文件在目標目錄中. 是否刪除這些文件?';
      LANGchtAnErrorOccuredWhileOperationS = '執行操作時發生下一個錯誤: %s';
      LANGchtSplitOfSSucceeded = '拆分 ''%s'' 成功.';
      LANGchtSplitOfSFailed = '拆分 ''%s'' 失敗!';

      LANGchtmnuShow_Caption = '顯示(_W)';
      LANGchtmiShowDotFiles_Caption = '顯示以"."開頭的文件(_D)(隱藏文件)';
      LANGchtTheFileYouAreTryingToOpenIsQuiteBig = '你嘗試打開的文件太大. 在外部程序(可能為 gedit)中加載可能導致系統緩慢.'#10'是否繼續?';
      LANGchtCannotExecuteSPleaseCheckTheConfiguration = '不能執行 ''%s''. 請檢查配置或設置文件可執行屬性是否正常.';
      LANGchtEdit = '編輯';
      LANGchtEnterFilenameToEdit = '輸入要編輯的文件名(_E):';

      LANGchtmnuSettings_Caption = '設置(_T)';
      LANGchtmiFileTypes_Caption = '文件類型(_T)...';
      LANGchtThereIsNoApplicationAssociatedWithS = '沒有程序關聯到 "%s".'#10#10'你可以配置 Tux Commander 關聯到該文件類型. 是否現在關聯該文件類型到一個程序?';
      LANGchtErrorExecutingCommand = '執行命令錯誤!';
      LANGchtEditFileTypesCaption = '編輯文件類型';
      LANGchtTitleLabel_Caption = '<span size="x-large" weight="ultrabold">文件類型配置</span>';
      LANGchtExtensionsColumn = '擴展名';
      LANGchtDescriptionColumn = '描述';
      LANGchtFileTypesList = '文件類型列表';
      LANGchtActionName = '運作名稱';
      LANGchtCommand = '命令';
      LANGchtSetDefaultActionButton_Caption = '設為缺省(_S)';
      LANGchtRunInTerminalCheckBox_Caption = '在終端中運行(_T)';
      LANGchtAutodetectCheckBox_Caption = '自動檢測 _GUI 程序';
      LANGchtBrowseButton_Caption = '瀏覽(_B)...';
      LANGchtCommandLabel_Caption = '命令(_M):';
      LANGchtDescriptionLabel_Caption = '描述(_E):';
      LANGchtFNameExtLabel_Caption = '添加擴展名(_D):';
      LANGchtNotebookPageExtensions = '文件類型';
      LANGchtNotebookPageActions = '運作';
      LANGchtDefault = ' (缺省)';
      LANGchtCannotSaveFileTypeAssociationsBecauseOtherProcess = '不能保存文件類型關聯, 因為該程序的另一個實例已經更新.';

      LANGchtDefaultColor = '缺省顏色(_F)';
      LANGchtIcon = '圖標(_I):';
      LANGchtBrowseForIcon = '瀏覽圖標';
      LANGchtSelectFileTypeColor = '選擇文件類型顏色';
      LANGchtColor = '顏色(_L):';

      LANGchtmiChangePermissions_Caption = '更改權限(_M)...';
      LANGchtmiChangeOwner_Caption = '更改所有者/組...';
      LANGchtmiCreateSymlink_Caption = '創建符號連接(_L)...';
      LANGchtmiEditSymlink_Caption = '編輯符號連接(_E)...';
      LANGchtChmodProgress = '更改權限:';
      LANGchtChownProgress = '更改所有者:';
      LANGchtYouMustSelectAValidSymbolicLink = '你必需選擇一個有效的符號為連接!';
      LANGchtPopupRunS = '執行(_X) %s';
      LANGchtPopupOpenS = '打開(_P) %s';
      LANGchtPopupGoUp = '上一級(_G)';
      LANGchtPopupOpenWithS = '打開為 %s';
      LANGchtPopupDefault = ' (缺省)';
      LANGchtPopupOpenWith = '打開為(_P)...';
      LANGchtPopupViewFile = '查看文件(_V)';
      LANGchtPopupEditFile = '編輯文件(_I))';
      LANGchtPopupMakeSymlink = '創建符號連接(_S)';
      LANGchtPopupRename = '重命名(_R)';
      LANGchtPopupDelete = '刪除(_D)';
      LANGchtDialogChangePermissions = '更改僅限';
      LANGchtCouldNotBeChmoddedS = '不能更改權限:  %s';
      LANGchtDialogChangeOwner = '更改所有者';
      LANGchtCouldNotBeChownedS = '不能更改所有者:  %s';
      LANGchtDialogMakeSymlink = '創建符號連接';
      LANGchtDialogEditSymlink = '編輯符號連接';
      LANGchtFEditSymlink_Caption = '編輯符號連接';
      LANGchtFEditSymlink_SymbolicLinkFilename = '編輯符號連接文件名(_S):';
      LANGchtFEditSymlink_SymbolicLinkPointsTo = '符號連接到(_T):';

      LANGchtFChmod_Caption = '訪問權限';
      LANGchtFChmod_PermissionFrame = '';
      LANGchtFChmod_FileFrame = '文件';
      LANGchtFChmod_ApplyRecursivelyFor = '應用到子文件和目錄(_R)';
      LANGchtFChmod_miAllFiles = '所有文件和目錄';
      LANGchtFChmod_miDirectories = '僅目錄';
      LANGchtFChmod_OctalLabel = '八進制(_O):';
      LANGchtFChmod_SUID = 'SUID - 運行時設置用戶 ID';
      LANGchtFChmod_SGID = 'SGID - 運行時設置組 ID';
      LANGchtFChmod_Sticky = '粘貼位';
      LANGchtFChmod_RUSR = 'RUSR - 以所有者讀';
      LANGchtFChmod_WUSR = 'WUSR - 以所有者寫';
      LANGchtFChmod_XUSR = 'XUSR - 以所有者執行/搜索';
      LANGchtFChmod_RGRP = 'RGRP - 以組讀';
      LANGchtFChmod_WGRP = 'WGRP - 以組寫';
      LANGchtFChmod_XGRP = 'XGRP - 以組執行/搜索';
      LANGchtFChmod_ROTH = 'ROTH - 以其他讀';
      LANGchtFChmod_WOTH = 'WOTH - 以其他寫';
      LANGchtFChmod_XOTH = 'XOTH - 以其他執行/搜索';
      LANGchtFChmod_TextLabel = '<span weight="ultrabold">文本:</span>  %s';
      LANGchtFChmod_FileLabel = '<span weight="ultrabold">文件:</span> %s'#10'<span weight="ultrabold">文本:</span> %s'#10 +
                               '<span weight="ultrabold">八進制:</span> %d'#10'<span weight="ultrabold">所有者:</span> %s'#10 +
                               '<span weight="ultrabold">組:</span> %s';

      LANGchtFChown_Caption = '更改 所有者/組';
      LANGchtFChown_OwnerFrame = '用戶名';
      LANGchtFChown_GroupFrame = '組名';
      LANGchtFChown_FileFrame = '文件';
      LANGchtFChown_ApplyRecursively = '應用到子文件和目錄(_R)';

      LANGchtFSymlink_Caption = '創建符號連接';
      LANGchtFSymlink_ExistingFilename = '已存在文件名(_E) (符號連接到的文件名):';
      LANGchtFSymlink_SymlinkFilename = '符號連接文件名(_S):';

      LANGchtmnuBookmarks_Caption = '書簽(_B)';
      LANGchtmiAddBookmark_Caption = '添加添加';
      LANGchtmiEditBookmarks_Caption = '編輯編輯';
      LANGchtBookmarkPopupDelete_Caption = '刪除(_D)';
      LANGchtmiPreferences_Caption = '參數(_P)...';
      LANGchtTheCurrentDirectoryAlreadyExistsInTheBookmarksList = '當前目錄已經在書簽中';
      LANGchtSomeOtherInstanceChanged = '其他 Tux Commander 實例已經更改配置. 是否應到新新設置?'#10#10'警告: 如果你點擊"否", 當前配置將會複蓋最新設置'' 退出!';
      
      LANGchtPreferences_Caption = '參數';
      LANGchtPreferences_TitleLabel_Caption = '<span size="x-large" weight="ultrabold">程序參數</span>';
      LANGchtPreferences_GeneralPage = '常規';
      LANGchtPreferences_FontsPage = '字體';
      LANGchtPreferences_ColorsPage = '顏色';
      LANGchtPreferences_RowHeight = '行高度(_H):';
      LANGchtPreferences_NumHistoryItems = '命令行曆史項目數(_M):';
      LANGchtPreferences_Default = '缺省(_D)';
      LANGchtPreferences_ClearReadonlyAttribute = '從 CD-ROM 複製文件晨清除只讀屬性(_R)';
      LANGchtPreferences_DisableMouseRenaming = '禁用鼠標重命名(_M)';
      LANGchtPreferences_ShowFiletypeIconsInList = '顯示文件類型圖標(_F)';
      LANGchtPreferences_ExternalAppsLabel = '<span weight="ultrabold">外部程序</span>';
      LANGchtPreferences_Viewer = '查看器(_V):';
      LANGchtPreferences_Editor = '編輯器(_E):';
      LANGchtPreferences_Terminal = '終端(_T):';
      LANGchtPreferences_ListFont = '列表字體:';
      LANGchtPreferences_Change = '更改...';
      LANGchtPreferences_UseDefaultFont = '使用缺省字體(_D)';
      LANGchtPreferences_Foreground = '前景';
      LANGchtPreferences_Background = '背景';
      LANGchtPreferences_NormalItem = '缺省項:';
      LANGchtPreferences_SetToDefaultToUseGTKThemeColors = '設置缺省為 GTK 主題顏色';
      LANGchtPreferences_Cursor = '顏色:';
      LANGchtPreferences_InactiveItem = '不激動項:';
      LANGchtPreferences_SelectedItem = '已選擇項:';
      LANGchtPreferences_LinkItem = '符號連接:';
      LANGchtPreferences_LinkItemHint = '設置缺省為顯示符號連接顏色使用正常項顏色';
      LANGchtPreferences_DotFileItem = '以"."開頭的文件:';
      LANGchtPreferences_DotFileItemHint = '設置缺省為顯示以"."開頭的文件使用正常項顏色';
      LANGchtPreferences_BrowseForApplication = '瀏覽應用程序';
      LANGchtPreferences_DefaultS = '缺省: %s';
      LANGchtPreferences_SelectFont = '選擇字體';

  (***************  STRINGS ADDED TO v0.4.101  **********************************************************************************)
      LANGchtBookmarkButton_Tooltip = '顯示書簽';
      LANGchtUpButton_Tooltip = '轉到上一層目錄';
      LANGchtRootButton_Tooltip = '轉到根目錄 (/)';
      LANGchtHomeButton_Tooltip = '轉到用戶目錄 (/home/user)';
      LANGchtLeftEqualButton_Tooltip = '切換右面板到相同目錄';
      LANGchtRightEqualButton_Tooltip = '切換左面板到相同目錄';
      LANGchtmiShowDirectorySizes_Caption = '顯示目錄大小(_I)';
      LANGchtmiTargetSource_Caption = '目標 = 源(_O)';
      LANGchtFileTypeDirectory = '目錄';
      LANGchtFileTypeFile = '文件';
      LANGchtFileTypeMetafile = '這是一個公用媒體項';
      LANGchtPreferencesPanelsPage = '面板';
      LANGchtPreferencesApplicationsPage = '應用程序';
      LANGchtPreferencesExperimentalPage = '實驗項';
      LANGchtPreferencesSelectAllDirectoriesCheckBox_Caption = '全選時包括目錄(_A)';
      LANGchtPreferencesNewStyleAltOCheckBox_Caption = '新樣式(_N) Alt+O';
      LANGchtPreferencesNewStyleAltOCheckBox_Tooltip = '按 Ctrl/Alt+O 切換目標面板的目錄時停留在相同的目錄';
      LANGchtPreferencesShowFuncButtonsCheckBox_Caption = '顯示功能按鈕(_K)';
      LANGchtPreferencesSizeFormatLabel_Caption = '大小格式(_S):';
      LANGchtPreferencesmiSizeFormat1 = '系統';
      LANGchtPreferencesmiSizeFormat6 = '組';
      LANGchtPreferencesAutodetectXApp = '自動檢測 X 程序';
      LANGchtPreferencesAlwaysRunInTerminal = '總是在終端中運行';
      LANGchtPreferencesNeverRunInTerminal = '永不在終端中運行';
      LANGchtPreferencesCmdLineBehaviourLabel_Caption = '從命令行執行(_E):';
      LANGchtPreferencesFeatures = '功能';
      LANGchtPreferencesDisableMouseRename_Tooltip = '你仍然可以通過 Shift+F6 快速重命名';
      LANGchtPreferencesDisableFileTipsCheckBox_Caption = '禁用文件提示(_T)';
      LANGchtPreferencesDisableFileTipsCheckBox_Tooltip = '面板中的文字被截斷時不顯示提示';
      LANGchtPreferencesShow = '顯示';
      LANGchtPreferencesDirsInBoldCheckBox_Caption = '目錄使用粗體(_B)';
      LANGchtPreferencesDisableDirectoryBracketsCheckBox_Caption = '隱藏目錄的方括號(_R)';
      LANGchtPreferencesOctalPermissionsCheckBox_Caption = '顯示八進制權限(_O)';
      LANGchtPreferencesOctalPermissionsCheckBox_Tooltip = '以數字格式顯示文件/目錄權限,默認以 (-rw-rw-rw-) 格式';
      LANGchtPreferencesMovement = 'Movement';
      LANGchtPreferencesLynxLikeMotionCheckBox_Caption = '_Lynx-like motion';
      LANGchtPreferencesInsertMovesDownCheckBox_Caption = '按 _Insert 光標下移';
      LANGchtPreferencesSpaceMovesDownCheckBox_Caption = '按空格光標下移(_S)';
      LANGchtPreferencesViewer = '查看器';
      LANGchtPreferencesCommandSC = '命令:';
      LANGchtPreferencesUseInternalViewer = '使用內置查看器(_I)';
      LANGchtPreferencesEditor = '編輯器';
      LANGchtPreferencesTerminal = '終端';
      LANGchtPreferencesExperimentalFeatures = '體驗功能';
      LANGchtPreferencesExperimentalWarningLabel_Caption = '<span weight="ultrabold">警告:</span> 這些功能當前還在開發階段, 可能並不能正常工作. 使用他們你將自行承擔風險!';
      LANGchtPreferencesFocusRefreshCheckBox_Caption = '窗口獲取焦點時進行刷新(_R)';
      LANGchtPreferencesFocusRefreshCheckBox_Tooltip = '這時候面板刷新非常慢';
      LANGchtPreferencesWMCompatModeCheckBox_Caption = '_WM 兼容模式';
      LANGchtPreferencesWMCompatModeCheckBox_Tooltip = '當你使用一些窗口管理器時可以使用此選項(例如 IceWM 不能使窗口正常最大化)';
      LANGchtPreferencesCompatUseLibcSystemCheckBox_Caption = '使用 libc _system() 執行程序';
      LANGchtPreferencesCompatUseLibcSystemCheckBox_Tooltip = '執行外部程序時發生錯誤時使用';

  (***************  STRINGS ADDED TO v0.5.70  **********************************************************************************)
      LANGchtmiSearchCaption2 = '正在搜索(_S)...';
      LANGchtmiNoMounterBarCaption = '不顯示驅動器工具欄';
      LANGchtmiShowOneMounterBarCaption = '顯示一個驅動器工具欄(_O)';
      LANGchtmiShowTwoMounterBarCaption = '顯示兩個驅動器工具欄(_T)';
      LANGchtmnuNetworkCaption = '網絡(_E)';
      LANGchtmiConnectionsCaption = '連接(_C)...';
      LANGchtmiOpenConnectionCaption = '打開連接(_Open)...';
      LANGchtmiQuickConnectCaption = '快速連接(_Q)...';
      LANGchtmnuPluginsCaption = '插件(_U)';
      LANGchtmiTestPluginCaption = '測試插件(_T)...';
      LANGchtmiMounterSettingsCaption = '驅動器設置(_M)...';
      LANGchtmiColumnsCaption = '面板列(_A)...';
      LANGchtmiSavePositionCaption = '保存位置(_S)';
      LANGchtmiMountCaption = '加載(_M)';
      LANGchtmiUmountCaption = '卸載(_U)';
      LANGchtmiEjectCaption = '彈出(_E)';
      LANGchtmiDuplicateTabCaption = '複製當前標簽';
      LANGchtmiCloseTabCaption = '關閉當前標簽';
      LANGchtmiCloseAllTabsCaption = '關閉所有標簽';
      LANGchtCannotDetermineDestinationEngine = '不能確定目標引擎. 請輸入正確的路徑重試.';
      LANGchtCannotLoadFile = '不能加載文件 ''%s''. 請檢查權限.';
      LANGchtMountPointDevice = '加載點: %s'#10'設備: %s';
      LANGchtMountSC = '加載:';
      LANGchtNoPluginsFound = '沒有找到插件';
      LANGchtPluginAbout = '關於...';
      LANGchtCouldntOpenURI = '不能打開指定的URI. 請檢查資源標識的一致性和訪問權限.';
      LANGchtPluginAboutInside = '插件: %s'#10#10'%s'#10'%s';
      LANGchtAreYouSureCloseAllTabs = '確定要關閉所有非活動的標簽?';
      LANGchtCouldntOpenURIArchive = '不能打開文檔. 請檢查一致性和訪問權限.';
      LANGchtThereIsNoModuleAvailable = '沒有可用的 VFS 模塊能處理當前連接';
      LANGchtIgnoreError = '確定要忽略這個錯誤? 源文件將會被刪除';
      LANGchtErrorMount = '加載設備 ''%s'' 時發生錯誤:'#10#10;
      LANGchtErrorUmount = '卸載 ''%s'' 時發生錯誤:'#10#10;
      LANGchtErrorEject = '彈出 ''%s'' 時發生錯誤:'#10#10;

      LANGchtMounterPrefs_Caption = '驅動器設置';
      LANGchtMounterPrefs_TitleLabelCaption = '驅動器設置';
      LANGchtMounterPrefs_ListViewFrameCaption = '驅動器';
      LANGchtMounterPrefs_MountName = '加載名稱';
      LANGchtMounterPrefs_MountPoint = '加載點';
      LANGchtMounterPrefs_Device = '設備';
      LANGchtMounterPrefs_MoveUpButtonTooltip = '上移項目';
      LANGchtMounterPrefs_MoveDownButtonTooltip = '下移項目';
      LANGchtMounterPrefs_UseFSTabDefaultsCheckBox = '使用 _fstab 缺省項目';
      LANGchtMounterPrefs_UseFSTabDefaultsCheckBoxTooltip = '選中時, 驅動器工具欄將會在 /etc/fstab (系統加載列表文件) 文件中查找驅動器';
      LANGchtMounterPrefs_ToggleModeCheckBox = '加載完成後保持按鈕按下';
      LANGchtMounterPrefs_ToggleModeCheckBoxTooltip = '選中時, 當設備加載完成後加載按鈕將保持按下狀態; 再點擊將會卸載它們 (可能是彈出)';
      LANGchtMounterPrefs_PropertiesFrameCaption = '驅動器屬性';
      LANGchtMounterPrefs_DisplayTextLabelCaption = '顯示文本(_T):';
      LANGchtMounterPrefs_MountPointLabelCaption = '加載點(_P):';
      LANGchtMounterPrefs_MountDeviceLabelCaption = '設備(_D):';
      LANGchtMounterPrefs_DeviceTypeLabelCaption = '設備類型(_Y):';
      LANGchtMounterPrefs_miLocalDiskCaption = '本地磁盤';
      LANGchtMounterPrefs_miRemovableCaption = '可移動磁盤';
      LANGchtMounterPrefs_miCDCaption = 'CD/DVD 驅動器';
      LANGchtMounterPrefs_miFloppyCaption = '軟盤驅動器';
      LANGchtMounterPrefs_miNetworkCaption = '網絡';
      LANGchtMounterPrefs_MountCommandLabelCaption = '加載命令(_C):';
      LANGchtMounterPrefs_UmountCommandLabelCaption = '卸載命令(_O):';
      LANGchtMounterPrefs_MountCommandEntryTooltip = '語法: 使用 %dev 代替設備和 %dir 的加載點或者空白使用缺省加載'#10'注意: 謹防交互式命令, tuxcmd 將會假死!'#10'例子: smbmount %dev %dir -o username=netuser,password=somepass';
      LANGchtMounterPrefs_UmountCommandEntryTooltip = '語法: | %dev 代替設備和 %dir 的加載點或者空白使用缺省卸載'#10'例子: smbumount $dir';
      LANGchtMounterPrefs_IconLabelCaption = '圖標(_I):';

      LANGchtConnMgr_Caption = '打開新連接';
      LANGchtConnMgr_ConnectButton = '連接(_N)';
      LANGchtConnMgr_OpenConnection = '打開連接';
      LANGchtConnMgr_NameColumn = '名稱';
      LANGchtConnMgr_URIColumn = 'URI';
      LANGchtConnMgr_AddConnectionButtonCaption = '添加站點(_A)...';
      LANGchtConnMgr_AddConnectionButtonTooltip = '添加新連接';
      LANGchtConnMgr_EditButtonCaption = '編輯(_E)...';
      LANGchtConnMgr_EditButtonTooltip = '編輯選擇的連接';
      LANGchtConnMgr_RemoveButtonCaption = '刪除站點(_R)';
      LANGchtConnMgr_RemoveButtonTooltip = '刪除選擇的連接';
      LANGchtConnMgr_DoYouWantDelete = '確定要刪除這個連接 ''%s''?';

      LANGchtConnProp_FTP = 'FTP';
      LANGchtConnProp_SFTP = 'SFTP (ssh 子系統)';
      LANGchtConnProp_SMB = 'Windows 共享 (SMB)';
      LANGchtConnProp_HTTP = 'WebDAV (HTTP)';
      LANGchtConnProp_HTTPS = '安裝 WebDAV (HTTPS)';
      LANGchtConnProp_Other = '其他 <span style="italic">(在 URI 中指定)</span>';
      LANGchtConnProp_Caption = '連接屬性';
      LANGchtConnProp_VFSModule = '_VFS 模塊:';
      LANGchtConnProp_URI = '_URI:';
      LANGchtConnProp_URIEntryTooltip = '正確的 URI 必需包含服務類型前綴和服務器地址';
      LANGchtConnProp_DetailedInformations = '詳細信息';
      LANGchtConnProp_Name = '名稱(_N):';
      LANGchtConnProp_Server = '服務器[:端口](_V):';
      LANGchtConnProp_Username = '用戶名(_M):';
      LANGchtConnProp_UserNameEntryTooltip = '空白時使用 anonymous 登錄';
      LANGchtConnProp_Password = '密碼(_P):';
      LANGchtConnProp_TargetDirectory = '目標目錄(_D):';
      LANGchtConnProp_ServiceType = '服務類型(_S):';
      LANGchtConnProp_MaskPassword = '隱藏密碼(_M)';
      LANGchtConnProp_MenuItemCaption = '缺省 <span style="italic">(所有適當的模塊)</span>';

      LANGchtConnLogin_Caption = '必需授權';
      LANGchtConnLogin_Login = '登錄';
      LANGchtConnLogin_ExperimentalWarningLabelCaption = '你必需登錄後訪問 %s';
      LANGchtConnLogin_Username = '用戶名(_U):';
      LANGchtConnLogin_Password = '密碼(_P):';
      LANGchtConnLogin_AnonymousCheckButton = '匿名(_A)';

      LANGchtColumns_Caption = '面板列設置';
      LANGchtColumns_Title = '面板列設置';
      LANGchtColumns_MoveUpButtonTooltip = '上移項目';
      LANGchtColumns_MoveDownButtonTooltip = '下移項目';
      LANGchtColumns_TitlesLongName = '名稱';
      LANGchtColumns_TitlesLongNameExt = '名稱 + 擴展名';
      LANGchtColumns_TitlesLongExt = '擴展名';
      LANGchtColumns_TitlesLongSize = '大小';
      LANGchtColumns_TitlesLongDateTime = '日期 + 時間';
      LANGchtColumns_TitlesLongDate = '日期';
      LANGchtColumns_TitlesLongTime = '時間';
      LANGchtColumns_TitlesLongUser = '用戶';
      LANGchtColumns_TitlesLongGroup = '組';
      LANGchtColumns_TitlesLongAttr = '屬性';
      LANGchtColumns_TitlesShortName = '名稱';
      LANGchtColumns_TitlesShortNameExt = '名稱';
      LANGchtColumns_TitlesShortExt = '擴展名';
      LANGchtColumns_TitlesShortSize = '大小';
      LANGchtColumns_TitlesShortDateTime = '日期';
      LANGchtColumns_TitlesShortDate = '日期';
      LANGchtColumns_TitlesShortTime = '時間';
      LANGchtColumns_TitlesShortUser = '用戶';
      LANGchtColumns_TitlesShortGroup = '組';
      LANGchtColumns_TitlesShortAttr = '屬性';

      LANGchtTestPlugin_Caption = '測試 VFS 插件';
      LANGchtTestPlugin_Title = '測試 VFS 插件';
      LANGchtTestPlugin_ExperimentalWarningLabelCaption = '<span weight="ultrabold">警告:</span> VFS 子系統和它的插件還在緊張開發中, 它可能還有 BUG. 使用這個功能你將自行承擔風險!';
      LANGchtTestPlugin_Plugin = '插件(_P):';
      LANGchtTestPlugin_Command = '命令(_M):';
      LANGchtTestPlugin_Username = '用戶名(_U):';
      LANGchtTestPlugin_Password = '密碼(_P):';
      LANGchtTestPlugin_AnonymousCheckButton = '匿名登錄(_A) (不調用 VFSLogin)';
      LANGchtTestPlugin_NoPluginsFound = '沒有找到插件';

      LANGchtRemoteWait_Caption = '操作正在進行';
      LANGchtRemoteWait_OperationInProgress = '操作正在進行, 請稍後...';
      LANGchtRemoteWait_ItemsFound = '找到項目在: %d';

      LANGchtSearch_Bytes = '字節';
      LANGchtSearch_kB = 'kB';
      LANGchtSearch_MB = 'MB';
      LANGchtSearch_days = '日';
      LANGchtSearch_weeks = '周';
      LANGchtSearch_months = '月';
      LANGchtSearch_years = '年';
      LANGchtSearch_Caption = '找到文件';
      LANGchtSearch_General = '常規';
      LANGchtSearch_Advanced = '高級';
      LANGchtSearch_SearchResults = '搜索結果(_R):';
      LANGchtSearch_SearchFor = '搜索內容(_F):';
      LANGchtSearch_FileMaskEntryTooltip = '提示: 使用分號 (";") 指定多個查找項';
      LANGchtSearch_SearchIn = '搜索目錄(_I):';
      LANGchtSearch_SearchArchivesCheckButton = '搜索文檔(_A)';
      LANGchtSearch_FindText = '查找文本(_T):';
      LANGchtSearch_FindTextEntryTooltip = '空為不匹配文本'#10'請注意 GUI 部份 UTF-8';
      LANGchtSearch_CaseSensitiveCheckButton = '大小寫敏感(_E)';
      LANGchtSearch_StayCurrentFSCheckButton = '包括其他文件系統(_Y)';
      LANGchtSearch_CaseSensitiveMatchCheckButton = '大小寫敏感(_S)';
      LANGchtSearch_Size = '大小';
      LANGchtSearch_Date = '日期';
      LANGchtSearch_BiggerThan = '>大於(_B)';
      LANGchtSearch_SmallerThan = '<小於(_S)';
      LANGchtSearch_ModifiedBetweenRadioButton = '修改於(_M)';
      LANGchtSearch_NotModifiedAfterRadioButton = '沒有修改之後(_N)';
      LANGchtSearch_ModifiedLastRadioButton = '最後修改於(_I)';
      LANGchtSearch_ModifiedNotLastRadionButton =  '沒有修改於(_T)';
      LANGchtSearch_ModifiedBetweenEntry1 = '"請使用這個日期格式:" c';
      LANGchtSearch_ViewButtonCaption = '查看文件(_V)';
      LANGchtSearch_NewSearchButtonCaption = '新搜索(_N)';
      LANGchtSearch_GoToFileButtonCaption = '轉到文件(_G)';
      LANGchtSearch_FeedToListboxButtonCaption = '填入文件列表(_L)';
      LANGchtSearch_StatusSC = '狀態:';
      LANGchtSearch_Ready = '就緒.';
      LANGchtSearch_PreparingToSearch = '正在准備搜索.';
      LANGchtSearch_SearchInProgress = '正在搜索:';
      LANGchtSearch_UserCancelled = '用戶取消.';
      LANGchtSearch_SearchFinished = '搜索完成';
      LANGchtSearch_FilesFound = '已找到 %d 文件';
      LANGchtSearch_And = '和';

  (***************  STRINGS ADDED TO v0.5.82  **********************************************************************************)
      LANGchtCloseOpenConnection = '你正在嘗試在當前活動連中打開新連接. 如果繼續, 當前的活動連接將會關閉並被新連接代替.'#10#10'是否繼續?';
      LANGchtDuplicateTabWarning = '你正在嘗試在新標簽中打開遠程目錄. 但是引擎並不支持. 新標簽將會轉到本地文件系統.';
      LANGchtDontShowAgain = '不要再顯示此消息(_D)';
      LANGchtSwitchOtherPanelWarning = '你正在嘗試在目標面板中打開遠程目錄. 但是引擎並不支持. 目標目錄還會被切換.';
      LANGchtOpenConnectionsWarning = '當前有一些活動的連接在面板中打開. 退出程序時這些連接將會被關閉.'#10#10'是否繼續退出?';
      LANGchtmiDisconnect_Caption = '斷開(_D)';
      LANGchtDisconnectButton_Tooltip = '斷開活動的連接';
      LANGchtLeaveArchiveButton_Tooltip = '關閉當前文檔';
      LANGchtOpenTerminalButton_Tooltip = '在當前目錄打開一個新的終端窗口';
      LANGchtOpenTerminalButton_Caption = '打開終端(_R)';
      LANGchtShowTextUIDsCheckBox_Caption = '顯示文本 _UIDs';
      LANGchtShowTextUIDsCheckBox_Tooltip = '以文本格式顯示用戶/組信息(UID/GID)';

  (***************  STRINGS ADDED TO v0.5.100  **********************************************************************************)
      LANGchtmiNewTab_Caption = '新目錄標簽(_T)';
      LANGchtFilePopupMenu_Properties = '屬性(_P)';
      LANGchtCommandEntry_Tooltip = '使用 %s 作為文件/目錄的占位符';
      LANGchtmiFiles_Caption = '僅文件';

  (***************  STRINGS ADDED TO v0.6.31  **********************************************************************************)
      LANGchtPasswordButton_Tooltip = '文檔必需使用密碼.'#10'點擊設置';
      LANGchtHandleRunFromArchive_Bytes = '字節';
      LANGchtHandleRunFromArchive_FileTypeDesc_Unknown = '(未知)';
      LANGchtHandleRunFromArchive_NotAssociated = '(未關聯)';
      LANGchtHandleRunFromArchive_SelfExecutable = '(自執行)';
      LANGchtHandleRunFromArchive_CouldntCreateTemporaryDirectory = '不能創建臨時目錄 "%s": %s.'#10#10'請檢查臨時目錄設置並重試.';
      LANGchtFRunFromVFS_Caption = '打包文件屬性';
      LANGchtFRunFromVFS_TitleLabel = '文件屬性';
      LANGchtFRunFromVFS_FileNameLabel = '文件名:';
      LANGchtFRunFromVFS_FileTypeLabel = '文件類型:';
      LANGchtFRunFromVFS_SizeLabel = '大小:';
      LANGchtFRunFromVFS_PackedSizeLabel = '壓縮後大小:';
      LANGchtFRunFromVFS_DateLabel = '修改日期:';
      LANGchtFRunFromVFS_InfoLabel = '不支持直接從文檔中打開文件. 點擊文件下面的按鈕(所有文件獨立)將會解壓到臨時目錄. 臨時文件將會在關閉 Tux Commander 時刪除.';
      LANGchtFRunFromVFS_OpensWithLabel = '打開為:';
      LANGchtFRunFromVFS_ExecuteButton = '解壓並打開(_X)';
      LANGchtFRunFromVFS_ExecuteAllButton = '解壓所有並打開(_A)';
      LANGchtFSetPassword_Caption = '設置密碼';
      LANGchtFSetPassword_Label1_Caption = '必需輸入密碼';
      LANGchtFSetPassword_Label2_Caption = '該文檔已經加密, 你必需輸入密碼才能解壓文檔內的文件';
      LANGchtFSetPassword_ShowPasswordCheckButton = '顯示密碼(_M)';

  (***************  STRINGS ADDED TO v0.6.48  **********************************************************************************)
      LANGchtCopyFileNamesToClipboard = '複製文件名到剪貼板(_C)';
      LANGchtCopyFullPathNamesToClipboard = '複製文件全路徑到剪貼板(_F)';
      LANGchtCopyPathToClipboard = '複製路徑到剪貼板(_C)';
      LANGchtPreferences_DateFormatLabel_Caption = '日期格式(_F):';
      LANGchtPreferences_System = '系統';
      LANGchtPreferences_Custom = '自定義...';
      LANGchtPreferences_CustomDateFormatEntry_Tooltip = '輸入自定義日期格式.'#10'格式語法請參考 "man strftime" 命令.';
      LANGchtPreferences_TimeFormatLabel_Caption = '時間格式(_T):';
      LANGchtPreferences_CustomTimeFormatEntry_Tooltip = '輸入自定義時間格式.'#10'格式語法請參考 "man strftime" 命令.';
      LANGchtPreferences_DateTimeFormatLabel_Caption = '日期/時間排序(_O):';
      LANGchtPreferences_QuickRenameSkipExtCheckBox = '快速重命名時僅選擇文件名';
      LANGchtPreferences_QuickRenameSkipExtCheckBox_Tooltip = '快速重命名時不選擇擴展名';
      LANGchtPreferences_SortDirectoriesLikeFilesCheckBox = '目錄排在文件列表上面(_E)';
      LANGchtPreferences_SortDirectoriesLikeFilesCheckBox_Tooltip = '選中後目錄永遠排在文件列表上面.'#10'未選: 目錄總是按目錄名排序.';
      LANGchtPreferences_QuickSearchLabel_Caption = '快速搜索按鍵(_K):';
      LANGchtPreferences_QuickSearchOptionMenu_Tooltip = 'Ctrl+S/Alt+S 和 "/" 按鈕永久可用, 並不受此設置影響.';
      LANGchtPreferences_QuickSearch_Option1 = '僅 Ctrl+S/Alt+S 和 "/"';
      LANGchtPreferences_QuickSearch_Option2 = 'Ctrl + Alt + 字母';
      LANGchtPreferences_QuickSearch_Option3 = 'Alt + 字母';
      LANGchtPreferences_QuickSearch_Option4 = '僅字母';
      LANGchtPreferences_TempPathLabel_Caption = '臨時文件';
      LANGchtPreferences_VFSTempPathLabel_Caption = '_VFS 臨時文件:';
      LANGchtPreferences_VFSTempPathEntry_Tooltip = 'VFS 子系統使用的臨時文件路徑, 例如. 當直接從壓縮文檔中打開文件時. 所有臨時文件將在退出時刪除.';

  (***************  STRINGS ADDED TO v0.6.67  **********************************************************************************)
      LANGchtPreferences_RightClickSelectCheckBox = 'Right mouse button selection mode';
      LANGchtPreferences_RightClickSelectCheckBox_Tooltip = 'Use right mouse button to select, like mc.';
      LANGchtGtkMountOperation_ConnectAnonymously = 'Connect _anonymously';
      LANGchtGtkMountOperation_ConnectAsUser = 'Connect as u_ser:';
      LANGchtGtkMountOperation_Username = '_Username:';
      LANGchtGtkMountOperation_Domain = '_Domain:';
      LANGchtGtkMountOperation_Password = '_Password:';
      LANGchtGtkMountOperation_DoNotSavePassword = 'Do not save password';
      LANGchtGtkMountOperation_ForgetPasswordImmediately = 'Forget password _immediately';
      LANGchtGtkMountOperation_RememberPasswordUntilYouLogout = 'Remember password until you _logout';
      LANGchtGtkMountOperation_SavePasswordInConnectionManager = '_Save password in Connection Manager';
      LANGchtGtkMountOperation_RememberForever = 'Remember _forever';
      LANGchtFSymlink_RelativePath = '_Relative path';
      LANGchtFConnectionManager_DuplicateButton_Caption = 'D_uplicate...';
      LANGchtFConnectionManager_DuplicateButton_Tooltip = 'Duplicate selected connection';
      LANGchtFConnectionManager_DoNotSavePasswordsCheckBox_Label = '_Do not store passwords internally (but still use gnome-keyring)';
      LANGchtFConnectionManager_DoNotSavePasswordsCheckBox_Tooltip = 'By checking this option on, Tux Commander will never save passwords into its connection list. Due to the GVFS nature, gnome-keyring will still be used to retrieve stored passwords from your desktop session.';
      LANGchtFConnectionManager_DoNotSynchronizeKeyringCheckBox_Label = 'Do not synchronize passwords to gnome-_keyring';
      LANGchtFConnectionManager_DoNotSynchronizeKeyringCheckBox_Tooltip = 'Don''t tell gnome-keyring to save any passwords.';
      LANGchtFConnectionManager_DuplicateMenuItem_Caption = 'D_uplicate...';
      LANGchtFQuickConnect_Caption = 'Quick connect';
      LANGchtFQuickConnect_TitleLabel_Caption = 'Quick connect';
      LANGchtFQuickConnect_ConnectToURILabel_Caption = 'C_onnect to URI:';
      LANGchtLinkToS = 'Link to %s';
      LANGchtOpenDirectoryInBackgroundTab = 'Open directory in _background tab';
      LANGchtTheActiveConnectionHasNotBeenSaved = 'The active connection has not been saved. Do you want to save it to Connection Manager?'#10#10'%s';
      LANGchtTheArchiveIsEncryptedAndRequiresPassword = 'The archive is encrypted and requires password';


(********************************************************************************************************************************)
procedure SetTranslation;
begin
  LANGF2Button_Caption := LANGchtF2Button_Caption;
  LANGF3Button_Caption := LANGchtF3Button_Caption;
  LANGF4Button_Caption := LANGchtF4Button_Caption;
  LANGF5Button_Caption := LANGchtF5Button_Caption;
  LANGF6Button_Caption := LANGchtF6Button_Caption;
  LANGF7Button_Caption := LANGchtF7Button_Caption;
  LANGF8Button_Caption := LANGchtF8Button_Caption;

  LANGmnuFile_Caption := LANGchtmnuFile_Caption;
  LANGmnuMark_Caption := LANGchtmnuMark_Caption;
  LANGmnuCommands_Caption := LANGchtmnuCommands_Caption;
  LANGmnuHelp_Caption := LANGchtmnuHelp_Caption;
  LANGmiExit_Caption := LANGchtmiExit_Caption;
  LANGmiSelectGroup_Caption := LANGchtmiSelectGroup_Caption;
  LANGmiUnselectGroup_Caption := LANGchtmiUnselectGroup_Caption;
  LANGmiSelectAll_Caption := LANGchtmiSelectAll_Caption;
  LANGmiUnselectAll_Caption := LANGchtmiUnselectAll_Caption;
  LANGmiInvertSelection_Caption := LANGchtmiInvertSelection_Caption;
  LANGmiRefresh_Caption := LANGchtmiRefresh_Caption;
  LANGmiAbout_Caption := LANGchtmiAbout_Caption;

  LANGColumn1_Caption := LANGchtColumn1_Caption;
  LANGColumn2_Caption := LANGchtColumn2_Caption;
  LANGColumn3_Caption := LANGchtColumn3_Caption;
  LANGColumn4_Caption := LANGchtColumn4_Caption;
  LANGColumn5_Caption := LANGchtColumn5_Caption;

  LANGExpandSelection := LANGchtExpandSelection;
  LANGShrinkSelection := LANGchtShrinkSelection;
  LANGNoMatchesFound := LANGchtNoMatchesFound;
  LANGNoFilesSelected := LANGchtNoFilesSelected;
  LANGSelectedFilesDirectories := LANGchtSelectedFilesDirectories;
  LANGDirectoryS := LANGchtDirectoryS;
  LANGFileS := LANGchtFileS;
  LANGDoYouReallyWantToDeleteTheS := LANGchtDoYouReallyWantToDeleteTheS;
  LANGDoYouReallyWantToDeleteTheSS := LANGchtDoYouReallyWantToDeleteTheSS;
  LANGCopyFiles := LANGchtCopyFiles;
  LANGMoveRenameFiles := LANGchtMoveRenameFiles;
  LANGCopyDFileDirectoriesTo := LANGchtCopyDFileDirectoriesTo;
  LANGMoveRenameDFileDirectoriesTo := LANGchtMoveRenameDFileDirectoriesTo;
  LANGCopySC := LANGchtCopySC;
  LANGMoveRenameSC := LANGchtMoveRenameSC;

  LANGQuickFind := LANGchtQuickFind;

  LANGAboutString := LANGchtAboutString;
  LANGAboutStringGnome := LANGchtAboutStringGnome;
  LANGDiskStatFmt := LANGchtDiskStatFmt;
  LANGDiskStatVolNameFmt := LANGchtDiskStatVolNameFmt;
  LANGStatusLineFmt := LANGchtStatusLineFmt;
  LANGPanelStrings[False] := LANGchtPanelStrings[False];
  LANGPanelStrings[True] := LANGchtPanelStrings[True];
  LANGDIR := LANGchtDIR;
  LANGErrorGettingListingForSPanel := LANGchtErrorGettingListingForSPanel;
  LANGErrorGettingListingForSPanelNoPath := LANGchtErrorGettingListingForSPanelNoPath;
  LANGErrorCreatingNewDirectorySInSPanel := LANGchtErrorCreatingNewDirectorySInSPanel;
  LANGErrorCreatingNewDirectorySInSPanelNoPath := LANGchtErrorCreatingNewDirectorySInSPanelNoPath;
  LANGTheFileDirectory := LANGchtTheFileDirectory;
  LANGCouldNotBeDeleted := LANGchtCouldNotBeDeleted;
  LANGCouldNotBeDeletedS := LANGchtCouldNotBeDeletedS;
  LANGUserCancelled := LANGchtUserCancelled;
  LANGTheDirectorySIsNotEmpty := LANGchtTheDirectorySIsNotEmpty;
  LANGCannotCopyFile := LANGchtCannotCopyFile;
  LANGCopyError := LANGchtCopyError;
  LANGMoveError := LANGchtMoveError;
  LANGOverwriteS := LANGchtOverwriteS;
  LANGWithFileS := LANGchtWithFileS;
  LANGOvewriteSBytesS := LANGchtOvewriteSBytesS;
  LANGTheFile := LANGchtTheFile;
  LANGCopy := LANGchtCopy;
  LANGMove := LANGchtMove;
  LANGTheDirectory := LANGchtTheDirectory;
  LANGTheSymbolicLink := LANGchtTheSymbolicLink;
  LANGCannotMoveFile := LANGchtCannotMoveFile;
  LANGCouldNotBeCreated := LANGchtCouldNotBeCreated;
  LANGCouldNotBeCreatedS := LANGchtCouldNotBeCreatedS;
  LANGFromS := LANGchtFromS;
  LANGToS := LANGchtToS;
  LANGCannotCopyFileToItself := LANGchtCannotCopyFileToItself;
  LANGMemoryAllocationFailed := LANGchtMemoryAllocationFailed;
  LANGCannotOpenSourceFile := LANGchtCannotOpenSourceFile;
  LANGCannotOpenDestinationFile := LANGchtCannotOpenDestinationFile;
  LANGCannotCloseDestinationFile := LANGchtCannotCloseDestinationFile;
  LANGCannotCloseSourceFile := LANGchtCannotCloseSourceFile;
  LANGCannotReadFromSourceFile := LANGchtCannotReadFromSourceFile;
  LANGCannotWriteToDestinationFile := LANGchtCannotWriteToDestinationFile;

  LANGUnknownException := LANGchtUnknownException;
  LANGNoAccess := LANGchtNoAccess;
  LANGUnknownError := LANGchtUnknownError;

  LANGCreateANewDirectory := LANGchtCreateANewDirectory;
  LANGEnterDirectoryName := LANGchtEnterDirectoryName;

  LANGOverwriteQuestion := LANGchtOverwriteQuestion;
  LANGOverwriteButton_Caption := LANGchtOverwriteButton_Caption;
  LANGOverwriteAllButton_Caption := LANGchtOverwriteAllButton_Caption;
  LANGSkipButton_Caption := LANGchtSkipButton_Caption;
  LANGOverwriteAllOlderButton_Caption := LANGchtOverwriteAllOlderButton_Caption;
  LANGSkipAllButton_Caption := LANGchtSkipAllButton_Caption;
  LANGRenameButton_Caption := LANGchtRenameButton_Caption;
  LANGAppendButton_Caption := LANGchtAppendButton_Caption;
  LANGRename := LANGchtRename;
  LANGRenameFile := LANGchtRenameFile;
  LANGIgnoreButton_Caption := LANGchtIgnoreButton_Caption;

  LANGProgress := LANGchtProgress;
  LANGCancel := LANGchtCancel;
  LANGDelete := LANGchtDelete;

  LANGSpecifyFileType := LANGchtSpecifyFileType;

  LANGRemoveDirectory := LANGchtRemoveDirectory;
  LANGDoYouWantToDeleteItWithAllItsFilesAndSubdirectories := LANGchtDoYouWantToDeleteItWithAllItsFilesAndSubdirectories;
  LANGRetry := LANGchtRetry;
  LANGDeleteButton_Caption := LANGchtDeleteButton_Caption;
  LANGAll := LANGchtAll;

  LANGCopyFilesSC := LANGchtCopyFilesSC;
  LANGAppendQuestion := LANGchtAppendQuestion;
  LANGPreparingList := LANGchtPreparingList;

  LANGYouMustSelectAValidFile := LANGchtYouMustSelectAValidFile;
  LANGmiVerifyChecksums := LANGchtmiVerifyChecksums;
  LANGVerifyChecksumsCaption := LANGchtVerifyChecksumsCaption;
  LANGCheckButtonCaptionCheck := LANGchtCheckButtonCaptionCheck;
  LANGCheckButtonCaptionStop := LANGchtCheckButtonCaptionStop;
  LANGFileListTooltip := LANGchtFileListTooltip;
  LANGFilenameColumnCaption := LANGchtFilenameColumnCaption;
  LANGTheFileSYouAreTryingToOpenIsQuiteBig := LANGchtTheFileSYouAreTryingToOpenIsQuiteBig;
  LANGAnErrorOccuredWhileInitializingMemoryBlock := LANGchtAnErrorOccuredWhileInitializingMemoryBlock;
  LANGAnErrorOccuredWhileOpeningFileSS := LANGchtAnErrorOccuredWhileOpeningFileSS;
  LANGAnErrorOccuredWhileReadingFileSS := LANGchtAnErrorOccuredWhileReadingFileSS;
  LANGChecksumNotChecked := LANGchtChecksumNotChecked;
  LANGChecksumChecking := LANGchtChecksumChecking;
  LANGChecksumInterrupted := LANGchtChecksumInterrupted;
  LANGChecksumDOK := LANGchtChecksumDOK;

  LANGmiCreateChecksumsCaption := LANGchtmiCreateChecksumsCaption;
  LANGYouMustSelectAtLeastOneFileToCalculateChecksum := LANGchtYouMustSelectAtLeastOneFileToCalculateChecksum;
  LANGCreateChecksumsCaption := LANGchtCreateChecksumsCaption;
  LANGCCHKSUMPage1Text := LANGchtCCHKSUMPage1Text;
  LANGCCHKSUMPage4Text := LANGchtCCHKSUMPage4Text;
  LANGCCHKSUMPage6Text := LANGchtCCHKSUMPage6Text;
  LANGCCHKSUMPage7Text := LANGchtCCHKSUMPage7Text;
  LANGCCHKSUMPage1Title := LANGchtCCHKSUMPage1Title;
  LANGCCHKSUMPage2Title := LANGchtCCHKSUMPage2Title;
  LANGCCHKSUMPage3Title := LANGchtCCHKSUMPage3Title;
  LANGCCHKSUMPage4Title := LANGchtCCHKSUMPage4Title;
  LANGCCHKSUMPage5Title := LANGchtCCHKSUMPage5Title;
  LANGCCHKSUMPage6Title := LANGchtCCHKSUMPage6Title;
  LANGCCHKSUMPage7Title := LANGchtCCHKSUMPage7Title;
  LANGCCHKSUMSFVFile := LANGchtCCHKSUMSFVFile;
  LANGCCHKSUMMD5sumFile := LANGchtCCHKSUMMD5sumFile;
  LANGCCHKSUMFileName := LANGchtCCHKSUMFileName;
  LANGCCHKSUMCreateSeparateChecksumFiles := LANGchtCCHKSUMCreateSeparateChecksumFiles;
  LANGCCHKSUMNowProcessingFileS := LANGchtCCHKSUMNowProcessingFileS;
  LANGCCHKSUMFinishCaption := LANGchtCCHKSUMFinishCaption;
  LANGCCHKSUMAreYouSureYouWantToAbortTheProcessing := LANGchtCCHKSUMAreYouSureYouWantToAbortTheProcessing;
  LANGCCHKSUMAnErrorOccuredWhileOpeningFileSS := LANGchtCCHKSUMAnErrorOccuredWhileOpeningFileSS;
  LANGCCHKSUMAnErrorOccuredWhileReadingFileSS := LANGchtCCHKSUMAnErrorOccuredWhileReadingFileSS;
  LANGCCHKSUMAnErrorOccuredWhileWritingFileSS := LANGchtCCHKSUMAnErrorOccuredWhileWritingFileSS;

  LANGAnErrorOccuredWhileWritingFileSS := LANGchtAnErrorOccuredWhileWritingFileSS;
  LANGTheTargetFileSAlreadyExistsDoYouWantToOverwriteIt := LANGchtTheTargetFileSAlreadyExistsDoYouWantToOverwriteIt;
  LANGTheTargetFileSCannotBeRemovedS := LANGchtTheTargetFileSCannotBeRemovedS;
  LANGMergeCaption := LANGchtMergeCaption;
  LANGPleaseInsertNextDiskOrGiveDifferentLocation := LANGchtPleaseInsertNextDiskOrGiveDifferentLocation;
  LANGMergeOfSSucceeded := LANGchtMergeOfSSucceeded;
  LANGWarningCreatedFileFailsCRCCheck := LANGchtWarningCreatedFileFailsCRCCheck;
  LANGMergeOfSSucceeded_NoCRCFileAvailable := LANGchtMergeOfSSucceeded_NoCRCFileAvailable;
  LANGMergeSAndAllFilesWithAscendingNamesToTheFollowingDirectory := LANGchtMergeSAndAllFilesWithAscendingNamesToTheFollowingDirectory;
  LANGMergeSC := LANGchtMergeSC;
  LANGmiSplitFileCaption := LANGchtmiSplitFileCaption;
  LANGmiMergeFilesCaption := LANGchtmiMergeFilesCaption;

  LANGSplitTheFileSToDirectory := LANGchtSplitTheFileSToDirectory;
  LANGSplitSC := LANGchtSplitSC;
  LANGSplitFile := LANGchtSplitFile;
  LANGBytesPerFile := LANGchtBytesPerFile;
  LANGAutomatic := LANGchtAutomatic;
  LANGDeleteFilesOnTargetDisk := LANGchtDeleteFilesOnTargetDisk;
  LANGSplitCaption := LANGchtSplitCaption;
  LANGCannotOpenFileS := LANGchtCannotOpenFileS;
  LANGCannotSplitTheFileToMoreThan999Parts := LANGchtCannotSplitTheFileToMoreThan999Parts;
  LANGThereAreSomeFilesInTheTargetDirectorySDoYouWantToDeleteThem := LANGchtThereAreSomeFilesInTheTargetDirectorySDoYouWantToDeleteThem;
  LANGThereAreDFilesInTheTargetDirectoryDoYouWantToDeleteThem := LANGchtThereAreDFilesInTheTargetDirectoryDoYouWantToDeleteThem;
  LANGAnErrorOccuredWhileOperationS := LANGchtAnErrorOccuredWhileOperationS;
  LANGSplitOfSSucceeded := LANGchtSplitOfSSucceeded;
  LANGSplitOfSFailed := LANGchtSplitOfSFailed;

  LANGmnuShow_Caption := LANGchtmnuShow_Caption;
  LANGmiShowDotFiles_Caption := LANGchtmiShowDotFiles_Caption;
  LANGTheFileYouAreTryingToOpenIsQuiteBig := LANGchtTheFileYouAreTryingToOpenIsQuiteBig;
  LANGCannotExecuteSPleaseCheckTheConfiguration := LANGchtCannotExecuteSPleaseCheckTheConfiguration;
  LANGEdit := LANGchtEdit;
  LANGEnterFilenameToEdit := LANGchtEnterFilenameToEdit;

  LANGmnuSettings_Caption := LANGchtmnuSettings_Caption;
  LANGmiFileTypes_Caption := LANGchtmiFileTypes_Caption;
  LANGThereIsNoApplicationAssociatedWithS := LANGchtThereIsNoApplicationAssociatedWithS;
  LANGErrorExecutingCommand := LANGchtErrorExecutingCommand;
  LANGEditFileTypesCaption := LANGchtEditFileTypesCaption;
  LANGTitleLabel_Caption := LANGchtTitleLabel_Caption;
  LANGExtensionsColumn := LANGchtExtensionsColumn;
  LANGDescriptionColumn := LANGchtDescriptionColumn;
  LANGFileTypesList := LANGchtFileTypesList;
  LANGActionName := LANGchtActionName;
  LANGCommand := LANGchtCommand;
  LANGSetDefaultActionButton_Caption := LANGchtSetDefaultActionButton_Caption;
  LANGRunInTerminalCheckBox_Caption := LANGchtRunInTerminalCheckBox_Caption;
  LANGAutodetectCheckBox_Caption := LANGchtAutodetectCheckBox_Caption;
  LANGBrowseButton_Caption := LANGchtBrowseButton_Caption;
  LANGCommandLabel_Caption := LANGchtCommandLabel_Caption;
  LANGDescriptionLabel_Caption := LANGchtDescriptionLabel_Caption;
  LANGFNameExtLabel_Caption := LANGchtFNameExtLabel_Caption;
  LANGNotebookPageExtensions := LANGchtNotebookPageExtensions;
  LANGNotebookPageActions := LANGchtNotebookPageActions;
  LANGDefault := LANGchtDefault;
  LANGCannotSaveFileTypeAssociationsBecauseOtherProcess := LANGchtCannotSaveFileTypeAssociationsBecauseOtherProcess;

  LANGDefaultColor := LANGchtDefaultColor;
  LANGIcon := LANGchtIcon;
  LANGBrowseForIcon := LANGchtBrowseForIcon;
  LANGSelectFileTypeColor := LANGchtSelectFileTypeColor;
  LANGColor := LANGchtColor;

  LANGmiChangePermissions_Caption := LANGchtmiChangePermissions_Caption;
  LANGmiChangeOwner_Caption := LANGchtmiChangeOwner_Caption;
  LANGmiCreateSymlink_Caption := LANGchtmiCreateSymlink_Caption;
  LANGmiEditSymlink_Caption := LANGchtmiEditSymlink_Caption;
  LANGChmodProgress := LANGchtChmodProgress;
  LANGChownProgress := LANGchtChownProgress;
  LANGYouMustSelectAValidSymbolicLink := LANGchtYouMustSelectAValidSymbolicLink;
  LANGPopupRunS := LANGchtPopupRunS;
  LANGPopupOpenS := LANGchtPopupOpenS;
  LANGPopupGoUp := LANGchtPopupGoUp;
  LANGPopupOpenWithS := LANGchtPopupOpenWithS;
  LANGPopupDefault := LANGchtPopupDefault;
  LANGPopupOpenWith := LANGchtPopupOpenWith;
  LANGPopupViewFile := LANGchtPopupViewFile;
  LANGPopupEditFile := LANGchtPopupEditFile;
  LANGPopupMakeSymlink := LANGchtPopupMakeSymlink;
  LANGPopupRename := LANGchtPopupRename;
  LANGPopupDelete := LANGchtPopupDelete;
  LANGDialogChangePermissions := LANGchtDialogChangePermissions;
  LANGCouldNotBeChmoddedS := LANGchtCouldNotBeChmoddedS;
  LANGDialogChangeOwner := LANGchtDialogChangeOwner;
  LANGCouldNotBeChownedS := LANGchtCouldNotBeChownedS;
  LANGDialogMakeSymlink := LANGchtDialogMakeSymlink;
  LANGDialogEditSymlink := LANGchtDialogEditSymlink;
  LANGFEditSymlink_Caption := LANGchtFEditSymlink_Caption;
  LANGFEditSymlink_SymbolicLinkFilename := LANGchtFEditSymlink_SymbolicLinkFilename;
  LANGFEditSymlink_SymbolicLinkPointsTo := LANGchtFEditSymlink_SymbolicLinkPointsTo;

  LANGFChmod_Caption := LANGchtFChmod_Caption;
  LANGFChmod_PermissionFrame := LANGchtFChmod_PermissionFrame;
  LANGFChmod_FileFrame := LANGchtFChmod_FileFrame;
  LANGFChmod_ApplyRecursivelyFor := LANGchtFChmod_ApplyRecursivelyFor;
  LANGFChmod_miAllFiles := LANGchtFChmod_miAllFiles;
  LANGFChmod_miDirectories := LANGchtFChmod_miDirectories;
  LANGFChmod_OctalLabel := LANGchtFChmod_OctalLabel;
  LANGFChmod_SUID := LANGchtFChmod_SUID;
  LANGFChmod_SGID := LANGchtFChmod_SGID;
  LANGFChmod_Sticky := LANGchtFChmod_Sticky;
  LANGFChmod_RUSR := LANGchtFChmod_RUSR;
  LANGFChmod_WUSR := LANGchtFChmod_WUSR;
  LANGFChmod_XUSR := LANGchtFChmod_XUSR;
  LANGFChmod_RGRP := LANGchtFChmod_RGRP;
  LANGFChmod_WGRP := LANGchtFChmod_WGRP;
  LANGFChmod_XGRP := LANGchtFChmod_XGRP;
  LANGFChmod_ROTH := LANGchtFChmod_ROTH;
  LANGFChmod_WOTH := LANGchtFChmod_WOTH;
  LANGFChmod_XOTH := LANGchtFChmod_XOTH;
  LANGFChmod_TextLabel := LANGchtFChmod_TextLabel;
  LANGFChmod_FileLabel := LANGchtFChmod_FileLabel;
  LANGFChown_Caption := LANGchtFChown_Caption;
  LANGFChown_OwnerFrame := LANGchtFChown_OwnerFrame;
  LANGFChown_GroupFrame := LANGchtFChown_GroupFrame;
  LANGFChown_FileFrame := LANGchtFChown_FileFrame;
  LANGFChown_ApplyRecursively := LANGchtFChown_ApplyRecursively;

  LANGFSymlink_Caption := LANGchtFSymlink_Caption;
  LANGFSymlink_ExistingFilename := LANGchtFSymlink_ExistingFilename;
  LANGFSymlink_SymlinkFilename := LANGchtFSymlink_SymlinkFilename;

  LANGmnuBookmarks_Caption := LANGchtmnuBookmarks_Caption;
  LANGmiAddBookmark_Caption := LANGchtmiAddBookmark_Caption;
  LANGmiEditBookmarks_Caption := LANGchtmiEditBookmarks_Caption;
  LANGBookmarkPopupDelete_Caption := LANGchtBookmarkPopupDelete_Caption;
  LANGmiPreferences_Caption := LANGchtmiPreferences_Caption;
  LANGTheCurrentDirectoryAlreadyExistsInTheBookmarksList := LANGchtTheCurrentDirectoryAlreadyExistsInTheBookmarksList;
  LANGSomeOtherInstanceChanged := LANGchtSomeOtherInstanceChanged;

  LANGPreferences_Caption := LANGchtPreferences_Caption;
  LANGPreferences_TitleLabel_Caption := LANGchtPreferences_TitleLabel_Caption;
  LANGPreferences_GeneralPage := LANGchtPreferences_GeneralPage;
  LANGPreferences_FontsPage := LANGchtPreferences_FontsPage;
  LANGPreferences_ColorsPage := LANGchtPreferences_ColorsPage;
  LANGPreferences_RowHeight := LANGchtPreferences_RowHeight;
  LANGPreferences_NumHistoryItems := LANGchtPreferences_NumHistoryItems;
  LANGPreferences_Default := LANGchtPreferences_Default;
  LANGPreferences_ClearReadonlyAttribute := LANGchtPreferences_ClearReadonlyAttribute;
  LANGPreferences_DisableMouseRenaming := LANGchtPreferences_DisableMouseRenaming;
  LANGPreferences_ShowFiletypeIconsInList := LANGchtPreferences_ShowFiletypeIconsInList;
  LANGPreferences_ExternalAppsLabel := LANGchtPreferences_ExternalAppsLabel;
  LANGPreferences_Viewer := LANGchtPreferences_Viewer;
  LANGPreferences_Editor := LANGchtPreferences_Editor;
  LANGPreferences_Terminal := LANGchtPreferences_Terminal;
  LANGPreferences_ListFont := LANGchtPreferences_ListFont;
  LANGPreferences_Change := LANGchtPreferences_Change;
  LANGPreferences_UseDefaultFont := LANGchtPreferences_UseDefaultFont;
  LANGPreferences_Foreground := LANGchtPreferences_Foreground;
  LANGPreferences_Background := LANGchtPreferences_Background;
  LANGPreferences_NormalItem := LANGchtPreferences_NormalItem;
  LANGPreferences_SetToDefaultToUseGTKThemeColors := LANGchtPreferences_SetToDefaultToUseGTKThemeColors;
  LANGPreferences_Cursor := LANGchtPreferences_Cursor;
  LANGPreferences_InactiveItem := LANGchtPreferences_InactiveItem;
  LANGPreferences_SelectedItem := LANGchtPreferences_SelectedItem;
  LANGPreferences_LinkItem := LANGchtPreferences_LinkItem;
  LANGPreferences_LinkItemHint := LANGchtPreferences_LinkItemHint;
  LANGPreferences_DotFileItem := LANGchtPreferences_DotFileItem;
  LANGPreferences_DotFileItemHint := LANGchtPreferences_DotFileItemHint;
  LANGPreferences_BrowseForApplication := LANGchtPreferences_BrowseForApplication;
  LANGPreferences_DefaultS := LANGchtPreferences_DefaultS;
  LANGPreferences_SelectFont := LANGchtPreferences_SelectFont;

  LANGBookmarkButton_Tooltip := LANGchtBookmarkButton_Tooltip;
  LANGUpButton_Tooltip := LANGchtUpButton_Tooltip;
  LANGRootButton_Tooltip := LANGchtRootButton_Tooltip;
  LANGHomeButton_Tooltip := LANGchtHomeButton_Tooltip;
  LANGLeftEqualButton_Tooltip := LANGchtLeftEqualButton_Tooltip;
  LANGRightEqualButton_Tooltip := LANGchtRightEqualButton_Tooltip;
  LANGmiShowDirectorySizes_Caption := LANGchtmiShowDirectorySizes_Caption;
  LANGmiTargetSource_Caption := LANGchtmiTargetSource_Caption;
  LANGFileTypeDirectory := LANGchtFileTypeDirectory;
  LANGFileTypeFile := LANGchtFileTypeFile;
  LANGFileTypeMetafile := LANGchtFileTypeMetafile;
  LANGPreferencesPanelsPage := LANGchtPreferencesPanelsPage;
  LANGPreferencesApplicationsPage := LANGchtPreferencesApplicationsPage;
  LANGPreferencesExperimentalPage := LANGchtPreferencesExperimentalPage;
  LANGPreferencesSelectAllDirectoriesCheckBox_Caption := LANGchtPreferencesSelectAllDirectoriesCheckBox_Caption;
  LANGPreferencesNewStyleAltOCheckBox_Caption := LANGchtPreferencesNewStyleAltOCheckBox_Caption;
  LANGPreferencesNewStyleAltOCheckBox_Tooltip := LANGchtPreferencesNewStyleAltOCheckBox_Tooltip;
  LANGPreferencesShowFuncButtonsCheckBox_Caption := LANGchtPreferencesShowFuncButtonsCheckBox_Caption;
  LANGPreferencesSizeFormatLabel_Caption := LANGchtPreferencesSizeFormatLabel_Caption;
  LANGPreferencesmiSizeFormat1 := LANGchtPreferencesmiSizeFormat1;
  LANGPreferencesmiSizeFormat6 := LANGchtPreferencesmiSizeFormat6;
  LANGPreferencesAutodetectXApp := LANGchtPreferencesAutodetectXApp;
  LANGPreferencesAlwaysRunInTerminal := LANGchtPreferencesAlwaysRunInTerminal;
  LANGPreferencesNeverRunInTerminal := LANGchtPreferencesNeverRunInTerminal;
  LANGPreferencesCmdLineBehaviourLabel_Caption := LANGchtPreferencesCmdLineBehaviourLabel_Caption;
  LANGPreferencesFeatures := LANGchtPreferencesFeatures;
  LANGPreferencesDisableMouseRename_Tooltip := LANGchtPreferencesDisableMouseRename_Tooltip;
  LANGPreferencesDisableFileTipsCheckBox_Caption := LANGchtPreferencesDisableFileTipsCheckBox_Caption;
  LANGPreferencesDisableFileTipsCheckBox_Tooltip := LANGchtPreferencesDisableFileTipsCheckBox_Tooltip;
  LANGPreferencesShow := LANGchtPreferencesShow;
  LANGPreferencesDirsInBoldCheckBox_Caption := LANGchtPreferencesDirsInBoldCheckBox_Caption;
  LANGPreferencesDisableDirectoryBracketsCheckBox_Caption := LANGchtPreferencesDisableDirectoryBracketsCheckBox_Caption;
  LANGPreferencesOctalPermissionsCheckBox_Caption := LANGchtPreferencesOctalPermissionsCheckBox_Caption;
  LANGPreferencesOctalPermissionsCheckBox_Tooltip := LANGchtPreferencesOctalPermissionsCheckBox_Tooltip;
  LANGPreferencesMovement := LANGchtPreferencesMovement;
  LANGPreferencesLynxLikeMotionCheckBox_Caption := LANGchtPreferencesLynxLikeMotionCheckBox_Caption;
  LANGPreferencesInsertMovesDownCheckBox_Caption := LANGchtPreferencesInsertMovesDownCheckBox_Caption;
  LANGPreferencesSpaceMovesDownCheckBox_Caption := LANGchtPreferencesSpaceMovesDownCheckBox_Caption;
  LANGPreferencesViewer := LANGchtPreferencesViewer;
  LANGPreferencesCommandSC := LANGchtPreferencesCommandSC;
  LANGPreferencesUseInternalViewer := LANGchtPreferencesUseInternalViewer;
  LANGPreferencesEditor := LANGchtPreferencesEditor;
  LANGPreferencesTerminal := LANGchtPreferencesTerminal;
  LANGPreferencesExperimentalFeatures := LANGchtPreferencesExperimentalFeatures;
  LANGPreferencesExperimentalWarningLabel_Caption := LANGchtPreferencesExperimentalWarningLabel_Caption;
  LANGPreferencesFocusRefreshCheckBox_Caption := LANGchtPreferencesFocusRefreshCheckBox_Caption;
  LANGPreferencesFocusRefreshCheckBox_Tooltip := LANGchtPreferencesFocusRefreshCheckBox_Tooltip;
  LANGPreferencesWMCompatModeCheckBox_Caption := LANGchtPreferencesWMCompatModeCheckBox_Caption;
  LANGPreferencesWMCompatModeCheckBox_Tooltip := LANGchtPreferencesWMCompatModeCheckBox_Tooltip;
  LANGPreferencesCompatUseLibcSystemCheckBox_Caption := LANGchtPreferencesCompatUseLibcSystemCheckBox_Caption;
  LANGPreferencesCompatUseLibcSystemCheckBox_Tooltip := LANGchtPreferencesCompatUseLibcSystemCheckBox_Tooltip;

  LANGmiSearchCaption2 := LANGchtmiSearchCaption2;
  LANGmiNoMounterBarCaption := LANGchtmiNoMounterBarCaption;
  LANGmiShowOneMounterBarCaption := LANGchtmiShowOneMounterBarCaption;
  LANGmiShowTwoMounterBarCaption := LANGchtmiShowTwoMounterBarCaption;
  LANGmnuNetworkCaption := LANGchtmnuNetworkCaption;
  LANGmiConnectionsCaption := LANGchtmiConnectionsCaption;
  LANGmiOpenConnectionCaption := LANGchtmiOpenConnectionCaption;
  LANGmiQuickConnectCaption := LANGchtmiQuickConnectCaption;
  LANGmnuPluginsCaption := LANGchtmnuPluginsCaption;
  LANGmiTestPluginCaption := LANGchtmiTestPluginCaption;
  LANGmiMounterSettingsCaption := LANGchtmiMounterSettingsCaption;
  LANGmiColumnsCaption := LANGchtmiColumnsCaption;
  LANGmiSavePositionCaption := LANGchtmiSavePositionCaption;
  LANGmiMountCaption := LANGchtmiMountCaption;
  LANGmiUmountCaption := LANGchtmiUmountCaption;
  LANGmiEjectCaption := LANGchtmiEjectCaption;
  LANGmiDuplicateTabCaption := LANGchtmiDuplicateTabCaption;
  LANGmiCloseTabCaption := LANGchtmiCloseTabCaption;
  LANGmiCloseAllTabsCaption := LANGchtmiCloseAllTabsCaption;
  LANGCannotDetermineDestinationEngine := LANGchtCannotDetermineDestinationEngine;
  LANGCannotLoadFile := LANGchtCannotLoadFile;
  LANGMountPointDevice := LANGchtMountPointDevice;
  LANGMountSC := LANGchtMountSC;
  LANGNoPluginsFound := LANGchtNoPluginsFound;
  LANGPluginAbout := LANGchtPluginAbout;
  LANGCouldntOpenURI := LANGchtCouldntOpenURI;
  LANGPluginAboutInside := LANGchtPluginAboutInside;
  LANGAreYouSureCloseAllTabs := LANGchtAreYouSureCloseAllTabs;
  LANGCouldntOpenURIArchive := LANGchtCouldntOpenURIArchive;
  LANGThereIsNoModuleAvailable := LANGchtThereIsNoModuleAvailable;
  LANGIgnoreError := LANGchtIgnoreError;
  LANGErrorMount := LANGchtErrorMount;
  LANGErrorUmount := LANGchtErrorUmount;
  LANGErrorEject := LANGchtErrorEject;

  LANGMounterPrefs_Caption := LANGchtMounterPrefs_Caption;
  LANGMounterPrefs_TitleLabelCaption := LANGchtMounterPrefs_TitleLabelCaption;
  LANGMounterPrefs_ListViewFrameCaption := LANGchtMounterPrefs_ListViewFrameCaption;
  LANGMounterPrefs_MountName := LANGchtMounterPrefs_MountName;
  LANGMounterPrefs_MountPoint := LANGchtMounterPrefs_MountPoint;
  LANGMounterPrefs_Device := LANGchtMounterPrefs_Device;
  LANGMounterPrefs_MoveUpButtonTooltip := LANGchtMounterPrefs_MoveUpButtonTooltip;
  LANGMounterPrefs_MoveDownButtonTooltip := LANGchtMounterPrefs_MoveDownButtonTooltip;
  LANGMounterPrefs_UseFSTabDefaultsCheckBox := LANGchtMounterPrefs_UseFSTabDefaultsCheckBox;
  LANGMounterPrefs_UseFSTabDefaultsCheckBoxTooltip := LANGchtMounterPrefs_UseFSTabDefaultsCheckBoxTooltip;
  LANGMounterPrefs_ToggleModeCheckBox := LANGchtMounterPrefs_ToggleModeCheckBox;
  LANGMounterPrefs_ToggleModeCheckBoxTooltip := LANGchtMounterPrefs_ToggleModeCheckBoxTooltip;
  LANGMounterPrefs_PropertiesFrameCaption := LANGchtMounterPrefs_PropertiesFrameCaption;
  LANGMounterPrefs_DisplayTextLabelCaption := LANGchtMounterPrefs_DisplayTextLabelCaption;
  LANGMounterPrefs_MountPointLabelCaption := LANGchtMounterPrefs_MountPointLabelCaption;
  LANGMounterPrefs_MountDeviceLabelCaption := LANGchtMounterPrefs_MountDeviceLabelCaption;
  LANGMounterPrefs_DeviceTypeLabelCaption := LANGchtMounterPrefs_DeviceTypeLabelCaption;
  LANGMounterPrefs_miLocalDiskCaption := LANGchtMounterPrefs_miLocalDiskCaption;
  LANGMounterPrefs_miRemovableCaption := LANGchtMounterPrefs_miRemovableCaption;
  LANGMounterPrefs_miCDCaption := LANGchtMounterPrefs_miCDCaption;
  LANGMounterPrefs_miFloppyCaption := LANGchtMounterPrefs_miFloppyCaption;
  LANGMounterPrefs_miNetworkCaption := LANGchtMounterPrefs_miNetworkCaption;
  LANGMounterPrefs_MountCommandLabelCaption := LANGchtMounterPrefs_MountCommandLabelCaption;
  LANGMounterPrefs_UmountCommandLabelCaption := LANGchtMounterPrefs_UmountCommandLabelCaption;
  LANGMounterPrefs_MountCommandEntryTooltip := LANGchtMounterPrefs_MountCommandEntryTooltip;
  LANGMounterPrefs_UmountCommandEntryTooltip := LANGchtMounterPrefs_UmountCommandEntryTooltip;
  LANGMounterPrefs_IconLabelCaption := LANGchtMounterPrefs_IconLabelCaption;

  LANGConnMgr_Caption := LANGchtConnMgr_Caption;
  LANGConnMgr_ConnectButton := LANGchtConnMgr_ConnectButton;
  LANGConnMgr_OpenConnection := LANGchtConnMgr_OpenConnection;
  LANGConnMgr_NameColumn := LANGchtConnMgr_NameColumn;
  LANGConnMgr_URIColumn := LANGchtConnMgr_URIColumn;
  LANGConnMgr_AddConnectionButtonCaption := LANGchtConnMgr_AddConnectionButtonCaption;
  LANGConnMgr_AddConnectionButtonTooltip := LANGchtConnMgr_AddConnectionButtonTooltip;
  LANGConnMgr_EditButtonCaption := LANGchtConnMgr_EditButtonCaption;
  LANGConnMgr_EditButtonTooltip := LANGchtConnMgr_EditButtonTooltip;
  LANGConnMgr_RemoveButtonCaption := LANGchtConnMgr_RemoveButtonCaption;
  LANGConnMgr_RemoveButtonTooltip := LANGchtConnMgr_RemoveButtonTooltip;
  LANGConnMgr_DoYouWantDelete := LANGchtConnMgr_DoYouWantDelete;

  LANGConnProp_FTP := LANGchtConnProp_FTP;
  LANGConnProp_SFTP := LANGchtConnProp_SFTP;
  LANGConnProp_SMB := LANGchtConnProp_SMB;
  LANGConnProp_HTTP := LANGchtConnProp_HTTP;
  LANGConnProp_HTTPS := LANGchtConnProp_HTTPS;
  LANGConnProp_Other := LANGchtConnProp_Other;
  LANGConnProp_Caption := LANGchtConnProp_Caption;
  LANGConnProp_VFSModule := LANGchtConnProp_VFSModule;
  LANGConnProp_URI := LANGchtConnProp_URI;
  LANGConnProp_URIEntryTooltip := LANGchtConnProp_URIEntryTooltip;
  LANGConnProp_DetailedInformations := LANGchtConnProp_DetailedInformations;
  LANGConnProp_Name := LANGchtConnProp_Name;
  LANGConnProp_Server := LANGchtConnProp_Server;
  LANGConnProp_Username := LANGchtConnProp_Username;
  LANGConnProp_UserNameEntryTooltip := LANGchtConnProp_UserNameEntryTooltip;
  LANGConnProp_Password := LANGchtConnProp_Password;
  LANGConnProp_TargetDirectory := LANGchtConnProp_TargetDirectory;
  LANGConnProp_ServiceType := LANGchtConnProp_ServiceType;
  LANGConnProp_MaskPassword := LANGchtConnProp_MaskPassword;
  LANGConnProp_MenuItemCaption := LANGchtConnProp_MenuItemCaption;

  LANGConnLogin_Caption := LANGchtConnLogin_Caption;
  LANGConnLogin_Login := LANGchtConnLogin_Login;
  LANGConnLogin_ExperimentalWarningLabelCaption := LANGchtConnLogin_ExperimentalWarningLabelCaption;
  LANGConnLogin_Username := LANGchtConnLogin_Username;
  LANGConnLogin_Password := LANGchtConnLogin_Password;
  LANGConnLogin_AnonymousCheckButton := LANGchtConnLogin_AnonymousCheckButton;

  LANGColumns_Caption := LANGchtColumns_Caption;
  LANGColumns_Title := LANGchtColumns_Title;
  LANGColumns_MoveUpButtonTooltip := LANGchtColumns_MoveUpButtonTooltip;
  LANGColumns_MoveDownButtonTooltip := LANGchtColumns_MoveDownButtonTooltip;
  LANGColumns_TitlesLongName := LANGchtColumns_TitlesLongName;
  LANGColumns_TitlesLongNameExt := LANGchtColumns_TitlesLongNameExt;
  LANGColumns_TitlesLongExt := LANGchtColumns_TitlesLongExt;
  LANGColumns_TitlesLongSize := LANGchtColumns_TitlesLongSize;
  LANGColumns_TitlesLongDateTime := LANGchtColumns_TitlesLongDateTime;
  LANGColumns_TitlesLongDate := LANGchtColumns_TitlesLongDate;
  LANGColumns_TitlesLongTime := LANGchtColumns_TitlesLongTime;
  LANGColumns_TitlesLongUser := LANGchtColumns_TitlesLongUser;
  LANGColumns_TitlesLongGroup := LANGchtColumns_TitlesLongGroup;
  LANGColumns_TitlesLongAttr := LANGchtColumns_TitlesLongAttr;
  LANGColumns_TitlesShortName := LANGchtColumns_TitlesShortName;
  LANGColumns_TitlesShortNameExt := LANGchtColumns_TitlesShortNameExt;
  LANGColumns_TitlesShortExt := LANGchtColumns_TitlesShortExt;
  LANGColumns_TitlesShortSize := LANGchtColumns_TitlesShortSize;
  LANGColumns_TitlesShortDateTime := LANGchtColumns_TitlesShortDateTime;
  LANGColumns_TitlesShortDate := LANGchtColumns_TitlesShortDate;
  LANGColumns_TitlesShortTime := LANGchtColumns_TitlesShortTime;
  LANGColumns_TitlesShortUser := LANGchtColumns_TitlesShortUser;
  LANGColumns_TitlesShortGroup := LANGchtColumns_TitlesShortGroup;
  LANGColumns_TitlesShortAttr := LANGchtColumns_TitlesShortAttr;

  LANGTestPlugin_Caption := LANGchtTestPlugin_Caption;
  LANGTestPlugin_Title := LANGchtTestPlugin_Title;
  LANGTestPlugin_ExperimentalWarningLabelCaption := LANGchtTestPlugin_ExperimentalWarningLabelCaption;
  LANGTestPlugin_Plugin := LANGchtTestPlugin_Plugin;
  LANGTestPlugin_Command := LANGchtTestPlugin_Command;
  LANGTestPlugin_Username := LANGchtTestPlugin_Username;
  LANGTestPlugin_Password := LANGchtTestPlugin_Password;
  LANGTestPlugin_AnonymousCheckButton := LANGchtTestPlugin_AnonymousCheckButton;
  LANGTestPlugin_NoPluginsFound := LANGchtTestPlugin_NoPluginsFound;

  LANGRemoteWait_Caption := LANGchtRemoteWait_Caption;
  LANGRemoteWait_OperationInProgress := LANGchtRemoteWait_OperationInProgress;
  LANGRemoteWait_ItemsFound := LANGchtRemoteWait_ItemsFound;

  LANGSearch_Bytes := LANGchtSearch_Bytes;
  LANGSearch_kB := LANGchtSearch_kB;
  LANGSearch_MB := LANGchtSearch_MB;
  LANGSearch_days := LANGchtSearch_days;
  LANGSearch_weeks := LANGchtSearch_weeks;
  LANGSearch_months := LANGchtSearch_months;
  LANGSearch_years := LANGchtSearch_years;
  LANGSearch_Caption := LANGchtSearch_Caption;
  LANGSearch_General := LANGchtSearch_General;
  LANGSearch_Advanced := LANGchtSearch_Advanced;
  LANGSearch_SearchResults := LANGchtSearch_SearchResults;
  LANGSearch_SearchFor := LANGchtSearch_SearchFor;
  LANGSearch_FileMaskEntryTooltip := LANGchtSearch_FileMaskEntryTooltip;
  LANGSearch_SearchIn := LANGchtSearch_SearchIn;
  LANGSearch_SearchArchivesCheckButton := LANGchtSearch_SearchArchivesCheckButton;
  LANGSearch_FindText := LANGchtSearch_FindText;
  LANGSearch_FindTextEntryTooltip := LANGchtSearch_FindTextEntryTooltip;
  LANGSearch_CaseSensitiveCheckButton := LANGchtSearch_CaseSensitiveCheckButton;
  LANGSearch_StayCurrentFSCheckButton := LANGchtSearch_StayCurrentFSCheckButton;
  LANGSearch_CaseSensitiveMatchCheckButton := LANGchtSearch_CaseSensitiveMatchCheckButton;
  LANGSearch_Size := LANGchtSearch_Size;
  LANGSearch_Date := LANGchtSearch_Date;
  LANGSearch_BiggerThan := LANGchtSearch_BiggerThan;
  LANGSearch_SmallerThan := LANGchtSearch_SmallerThan;
  LANGSearch_ModifiedBetweenRadioButton := LANGchtSearch_ModifiedBetweenRadioButton;
  LANGSearch_NotModifiedAfterRadioButton := LANGchtSearch_NotModifiedAfterRadioButton;
  LANGSearch_ModifiedLastRadioButton := LANGchtSearch_ModifiedLastRadioButton;
  LANGSearch_ModifiedNotLastRadionButton := LANGchtSearch_ModifiedNotLastRadionButton;
  LANGSearch_ModifiedBetweenEntry1 := LANGchtSearch_ModifiedBetweenEntry1;
  LANGSearch_ViewButtonCaption := LANGchtSearch_ViewButtonCaption;
  LANGSearch_NewSearchButtonCaption := LANGchtSearch_NewSearchButtonCaption;
  LANGSearch_GoToFileButtonCaption := LANGchtSearch_GoToFileButtonCaption;
  LANGSearch_FeedToListboxButtonCaption := LANGchtSearch_FeedToListboxButtonCaption;
  LANGSearch_StatusSC := LANGchtSearch_StatusSC;
  LANGSearch_Ready := LANGchtSearch_Ready;
  LANGSearch_PreparingToSearch := LANGchtSearch_PreparingToSearch;
  LANGSearch_SearchInProgress := LANGchtSearch_SearchInProgress;
  LANGSearch_UserCancelled := LANGchtSearch_UserCancelled;
  LANGSearch_SearchFinished := LANGchtSearch_SearchFinished;
  LANGSearch_FilesFound := LANGchtSearch_FilesFound;
  LANGSearch_And := LANGchtSearch_And;
  
  LANGCloseOpenConnection := LANGchtCloseOpenConnection;
  LANGDuplicateTabWarning := LANGchtDuplicateTabWarning;
  LANGDontShowAgain := LANGchtDontShowAgain;
  LANGSwitchOtherPanelWarning := LANGchtSwitchOtherPanelWarning;
  LANGOpenConnectionsWarning := LANGchtOpenConnectionsWarning;
  LANGmiDisconnect_Caption := LANGchtmiDisconnect_Caption;
  LANGDisconnectButton_Tooltip := LANGchtDisconnectButton_Tooltip;
  LANGLeaveArchiveButton_Tooltip := LANGchtLeaveArchiveButton_Tooltip;
  LANGOpenTerminalButton_Tooltip := LANGchtOpenTerminalButton_Tooltip;
  LANGOpenTerminalButton_Caption := LANGchtOpenTerminalButton_Caption;
  LANGShowTextUIDsCheckBox_Caption := LANGchtShowTextUIDsCheckBox_Caption;
  LANGShowTextUIDsCheckBox_Tooltip := LANGchtShowTextUIDsCheckBox_Tooltip;
  
  LANGmiNewTab_Caption := LANGchtmiNewTab_Caption;
  LANGFilePopupMenu_Properties := LANGchtFilePopupMenu_Properties;
  LANGCommandEntry_Tooltip := LANGchtCommandEntry_Tooltip;
  LANGmiFiles_Caption := LANGchtmiFiles_Caption;

  LANGPasswordButton_Tooltip := LANGchtPasswordButton_Tooltip;
  LANGHandleRunFromArchive_Bytes := LANGchtHandleRunFromArchive_Bytes;
  LANGHandleRunFromArchive_FileTypeDesc_Unknown := LANGchtHandleRunFromArchive_FileTypeDesc_Unknown;
  LANGHandleRunFromArchive_NotAssociated := LANGchtHandleRunFromArchive_NotAssociated;
  LANGHandleRunFromArchive_SelfExecutable := LANGchtHandleRunFromArchive_SelfExecutable;
  LANGHandleRunFromArchive_CouldntCreateTemporaryDirectory := LANGchtHandleRunFromArchive_CouldntCreateTemporaryDirectory;
  LANGFRunFromVFS_Caption := LANGchtFRunFromVFS_Caption;
  LANGFRunFromVFS_TitleLabel := LANGchtFRunFromVFS_TitleLabel;
  LANGFRunFromVFS_FileNameLabel := LANGchtFRunFromVFS_FileNameLabel;
  LANGFRunFromVFS_FileTypeLabel := LANGchtFRunFromVFS_FileTypeLabel;
  LANGFRunFromVFS_SizeLabel := LANGchtFRunFromVFS_SizeLabel;
  LANGFRunFromVFS_PackedSizeLabel := LANGchtFRunFromVFS_PackedSizeLabel;
  LANGFRunFromVFS_DateLabel := LANGchtFRunFromVFS_DateLabel;
  LANGFRunFromVFS_InfoLabel := LANGchtFRunFromVFS_InfoLabel;
  LANGFRunFromVFS_OpensWithLabel := LANGchtFRunFromVFS_OpensWithLabel;
  LANGFRunFromVFS_ExecuteButton := LANGchtFRunFromVFS_ExecuteButton;
  LANGFRunFromVFS_ExecuteAllButton := LANGchtFRunFromVFS_ExecuteAllButton;
  LANGFSetPassword_Caption := LANGchtFSetPassword_Caption;
  LANGFSetPassword_Label1_Caption := LANGchtFSetPassword_Label1_Caption;
  LANGFSetPassword_Label2_Caption := LANGchtFSetPassword_Label2_Caption;
  LANGFSetPassword_ShowPasswordCheckButton := LANGchtFSetPassword_ShowPasswordCheckButton;

  LANGCopyFileNamesToClipboard := LANGchtCopyFileNamesToClipboard;
  LANGCopyFullPathNamesToClipboard := LANGchtCopyFullPathNamesToClipboard;
  LANGCopyPathToClipboard := LANGchtCopyPathToClipboard;
  LANGPreferences_DateFormatLabel_Caption := LANGchtPreferences_DateFormatLabel_Caption;
  LANGPreferences_System := LANGchtPreferences_System;
  LANGPreferences_Custom := LANGchtPreferences_Custom;
  LANGPreferences_CustomDateFormatEntry_Tooltip := LANGchtPreferences_CustomDateFormatEntry_Tooltip;
  LANGPreferences_TimeFormatLabel_Caption := LANGchtPreferences_TimeFormatLabel_Caption;
  LANGPreferences_CustomTimeFormatEntry_Tooltip := LANGchtPreferences_CustomTimeFormatEntry_Tooltip;
  LANGPreferences_DateTimeFormatLabel_Caption := LANGchtPreferences_DateTimeFormatLabel_Caption;
  LANGPreferences_QuickRenameSkipExtCheckBox := LANGchtPreferences_QuickRenameSkipExtCheckBox;
  LANGPreferences_QuickRenameSkipExtCheckBox_Tooltip := LANGchtPreferences_QuickRenameSkipExtCheckBox_Tooltip;
  LANGPreferences_SortDirectoriesLikeFilesCheckBox := LANGchtPreferences_SortDirectoriesLikeFilesCheckBox;
  LANGPreferences_SortDirectoriesLikeFilesCheckBox_Tooltip := LANGchtPreferences_SortDirectoriesLikeFilesCheckBox_Tooltip;
  LANGPreferences_QuickSearchLabel_Caption := LANGchtPreferences_QuickSearchLabel_Caption;
  LANGPreferences_QuickSearchOptionMenu_Tooltip := LANGchtPreferences_QuickSearchOptionMenu_Tooltip;
  LANGPreferences_QuickSearch_Option1 := LANGchtPreferences_QuickSearch_Option1;
  LANGPreferences_QuickSearch_Option2 := LANGchtPreferences_QuickSearch_Option2;
  LANGPreferences_QuickSearch_Option3 := LANGchtPreferences_QuickSearch_Option3;
  LANGPreferences_QuickSearch_Option4 := LANGchtPreferences_QuickSearch_Option4;
  LANGPreferences_TempPathLabel_Caption := LANGchtPreferences_TempPathLabel_Caption;
  LANGPreferences_VFSTempPathLabel_Caption := LANGchtPreferences_VFSTempPathLabel_Caption;
  LANGPreferences_VFSTempPathEntry_Tooltip := LANGchtPreferences_VFSTempPathEntry_Tooltip;

  LANGPreferences_RightClickSelectCheckBox := LANGchtPreferences_RightClickSelectCheckBox;
  LANGPreferences_RightClickSelectCheckBox_Tooltip := LANGchtPreferences_RightClickSelectCheckBox_Tooltip;
  LANGGtkMountOperation_ConnectAnonymously := LANGchtGtkMountOperation_ConnectAnonymously;
  LANGGtkMountOperation_ConnectAsUser := LANGchtGtkMountOperation_ConnectAsUser;
  LANGGtkMountOperation_Username := LANGchtGtkMountOperation_Username;
  LANGGtkMountOperation_Domain := LANGchtGtkMountOperation_Domain;
  LANGGtkMountOperation_Password := LANGchtGtkMountOperation_Password;
  LANGGtkMountOperation_DoNotSavePassword :=  LANGchtGtkMountOperation_DoNotSavePassword;
  LANGGtkMountOperation_ForgetPasswordImmediately := LANGchtGtkMountOperation_ForgetPasswordImmediately;
  LANGGtkMountOperation_RememberPasswordUntilYouLogout := LANGchtGtkMountOperation_RememberPasswordUntilYouLogout;
  LANGGtkMountOperation_SavePasswordInConnectionManager := LANGchtGtkMountOperation_SavePasswordInConnectionManager;
  LANGGtkMountOperation_RememberForever := LANGchtGtkMountOperation_RememberForever;
  LANGFSymlink_RelativePath := LANGchtFSymlink_RelativePath;
  LANGFConnectionManager_DuplicateButton_Caption := LANGchtFConnectionManager_DuplicateButton_Caption;
  LANGFConnectionManager_DuplicateButton_Tooltip := LANGchtFConnectionManager_DuplicateButton_Tooltip;
  LANGFConnectionManager_DoNotSavePasswordsCheckBox_Label := LANGchtFConnectionManager_DoNotSavePasswordsCheckBox_Label;
  LANGFConnectionManager_DoNotSavePasswordsCheckBox_Tooltip := LANGchtFConnectionManager_DoNotSavePasswordsCheckBox_Tooltip;
  LANGFConnectionManager_DoNotSynchronizeKeyringCheckBox_Label := LANGchtFConnectionManager_DoNotSynchronizeKeyringCheckBox_Label;
  LANGFConnectionManager_DoNotSynchronizeKeyringCheckBox_Tooltip := LANGchtFConnectionManager_DoNotSynchronizeKeyringCheckBox_Tooltip;
  LANGFConnectionManager_DuplicateMenuItem_Caption := LANGchtFConnectionManager_DuplicateMenuItem_Caption;
  LANGFQuickConnect_Caption := LANGchtFQuickConnect_Caption;
  LANGFQuickConnect_TitleLabel_Caption := LANGchtFQuickConnect_TitleLabel_Caption;
  LANGFQuickConnect_ConnectToURILabel_Caption := LANGchtFQuickConnect_ConnectToURILabel_Caption;
  LANGLinkToS := LANGchtLinkToS;
  LANGOpenDirectoryInBackgroundTab := LANGchtOpenDirectoryInBackgroundTab;
  LANGTheActiveConnectionHasNotBeenSaved := LANGchtTheActiveConnectionHasNotBeenSaved;
  LANGTheArchiveIsEncryptedAndRequiresPassword := LANGchtTheArchiveIsEncryptedAndRequiresPassword;
end;

initialization
  AddTranslation('ZH', @SetTranslation);
  AddTranslation('TW', @SetTranslation);
  AddTranslation('zh_TW', @SetTranslation);
end.