aboutsummaryrefslogtreecommitdiffstats
path: root/editors/omegaT/pkg-plist
blob: 71145449019f5d58020df5d47590e6091eff336c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
bin/omegaT
%%DATADIR%%/OmegaT.jar
%%DATADIR%%/native/hunspell-win32.dll
%%DATADIR%%/native/hunspell-win64.dll
%%DATADIR%%/native/libhunspell-linux32.so
%%DATADIR%%/native/libhunspell-linux64.so
%%DATADIR%%/native/libhunspell-macos32.dylib
%%DATADIR%%/native/libhunspell-macos64.dylib
%%DATADIR%%/lib/lib-mnemonics.jar
%%DATADIR%%/lib/MRJAdapter.jar
%%DATADIR%%/lib/jsch-0.1.49.jar
%%DATADIR%%/lib/org.eclipse.jgit-2.1.0.201209190230-r.jar
%%DATADIR%%/lib/sequence-library-1.0.2.jar
%%DATADIR%%/lib/svnkit-1.7.5.jar
%%DATADIR%%/lib/antlr-runtime-3.4.jar
%%DATADIR%%/lib/sqljet-1.1.3.jar
%%DATADIR%%/lib/htmlparser.jar
%%DATADIR%%/lib/vldocking_2.1.4.jar
%%DATADIR%%/lib/swing-worker-1.2.jar
%%DATADIR%%/lib/jna.jar
%%DATADIR%%/lib/swing-layout-1.0.jar
%%DATADIR%%/lib/jmyspell-core-1.0.0-beta-2.jar
%%DATADIR%%/lib/activation.jar
%%DATADIR%%/lib/jaxb-api.jar
%%DATADIR%%/lib/jaxb-impl.jar
%%DATADIR%%/lib/jsr173_1.0_api.jar
%%DATADIR%%/lib/diff.jar
%%DATADIR%%/lib/JSAP-2.1.jar
%%DATADIR%%/lib/ANTLR_3_License.txt
%%DATADIR%%/lib/CDDL+GPLv2.txt
%%DATADIR%%/lib/EDL-1.0.txt
%%DATADIR%%/lib/Licence_CeCILL_V2-en.txt
%%DATADIR%%/lib/Licence_CeCILL_V2-fr.txt
%%DATADIR%%/lib/Licenses.txt
%%DATADIR%%/lib/MPL-1.1.txt
%%DATADIR%%/lib/TMate_License.txt
%%DATADIR%%/lib/gpl-1.txt
%%DATADIR%%/lib/gpl-2.0.txt
%%DATADIR%%/lib/jsch_License.txt
%%DATADIR%%/lib/lgpl-2.1.txt
%%DATADIR%%/lib/sequence-library_License.txt
%%DATADIR%%/lib/sjsxp-1.0.2.jar
%%DATADIR%%/changes.txt
%%DATADIR%%/doc-license.txt
%%DATADIR%%/index.html
%%DATADIR%%/join.html
%%DATADIR%%/license.txt
%%DATADIR%%/readme_ar.txt
%%DATADIR%%/readme_ca.txt
%%DATADIR%%/readme_cs.txt
%%DATADIR%%/readme_cy.txt
%%DATADIR%%/readme_da.txt
%%DATADIR%%/readme_de.txt
%%DATADIR%%/readme_es.txt
%%DATADIR%%/readme_eu.txt
%%DATADIR%%/readme_fr.txt
%%DATADIR%%/readme_gl.txt
%%DATADIR%%/readme_hu.txt
%%DATADIR%%/readme_ia.txt
%%DATADIR%%/readme_it.txt
%%DATADIR%%/readme_ja.txt
%%DATADIR%%/readme_nl.txt
%%DATADIR%%/readme_pl.txt
%%DATADIR%%/readme_pt_BR.txt
%%DATADIR%%/readme_ru.txt
%%DATADIR%%/readme_sh.txt
%%DATADIR%%/readme_sk.txt
%%DATADIR%%/readme_sl.txt
%%DATADIR%%/readme_sq.txt
%%DATADIR%%/readme_sv.txt
%%DATADIR%%/readme_tr.txt
%%DATADIR%%/readme_zh_CN.txt
%%DATADIR%%/readme_zh_TW.txt
%%DATADIR%%/OmegaT.bat
%%DATADIR%%/OmegaT
%%DATADIR%%/OmegaT-JRE
%%DATADIR%%/linux-install.sh
%%DATADIR%%/omegat.kaptn
%%DATADIR%%/readme.txt
%%DATADIR%%/plugins/Readme-plugins.txt
%%DATADIR%%/docs/ar/images/AppleKey.gif
%%DATADIR%%/docs/ar/images/Dock.gif
%%DATADIR%%/docs/ar/images/Maximize.gif
%%DATADIR%%/docs/ar/images/Minimize.gif
%%DATADIR%%/docs/ar/images/NewProject.png
%%DATADIR%%/docs/ar/images/Restore.gif
%%DATADIR%%/docs/ar/images/Undock.gif
%%DATADIR%%/docs/ar/instantStartGuideNoTOC.html
%%DATADIR%%/docs/ar/version.properties
%%DATADIR%%/docs/be/Edit.html
%%DATADIR%%/docs/be/FilesDirs.html
%%DATADIR%%/docs/be/Fonts.html
%%DATADIR%%/docs/be/GettingStarted.html
%%DATADIR%%/docs/be/Gloss.html
%%DATADIR%%/docs/be/Important.html
%%DATADIR%%/docs/be/Install.html
%%DATADIR%%/docs/be/Intro.html
%%DATADIR%%/docs/be/Matches.html
%%DATADIR%%/docs/be/Navigating.html
%%DATADIR%%/docs/be/OmegaT.png
%%DATADIR%%/docs/be/SO.html
%%DATADIR%%/docs/be/Saving.html
%%DATADIR%%/docs/be/Searches.html
%%DATADIR%%/docs/be/Segmentation.html
%%DATADIR%%/docs/be/Shortcuts.html
%%DATADIR%%/docs/be/SysReqs.html
%%DATADIR%%/docs/be/TMFormats.html
%%DATADIR%%/docs/be/Tags.html
%%DATADIR%%/docs/be/Tips.html
%%DATADIR%%/docs/be/Translating.html
%%DATADIR%%/docs/be/UI.html
%%DATADIR%%/docs/be/WPFormats.html
%%DATADIR%%/docs/be/index.html
%%DATADIR%%/docs/be/omegat.css
%%DATADIR%%/docs/be/version.properties
%%DATADIR%%/docs/ca/GoogleTranslate.html
%%DATADIR%%/docs/ca/OmegaT.css
%%DATADIR%%/docs/ca/aboutOmegaT.html
%%DATADIR%%/docs/ca/commandlineArguments.html
%%DATADIR%%/docs/ca/consoleMode.html
%%DATADIR%%/docs/ca/dictionaries.html
%%DATADIR%%/docs/ca/fileFilters.html
%%DATADIR%%/docs/ca/filesAndDirectories.html
%%DATADIR%%/docs/ca/filesToTranslate.html
%%DATADIR%%/docs/ca/fontSettings.html
%%DATADIR%%/docs/ca/formattedText.html
%%DATADIR%%/docs/ca/glossaries.html
%%DATADIR%%/docs/ca/images/AppleKey.gif
%%DATADIR%%/docs/ca/images/AsciiFilteroptions.png
%%DATADIR%%/docs/ca/images/DictMerriamWebster.png
%%DATADIR%%/docs/ca/images/Dock.gif
%%DATADIR%%/docs/ca/images/Glossary_pane.png
%%DATADIR%%/docs/ca/images/Main_pane_counters.png
%%DATADIR%%/docs/ca/images/MatchesPane.png
%%DATADIR%%/docs/ca/images/Maximize.gif
%%DATADIR%%/docs/ca/images/Minimize.gif
%%DATADIR%%/docs/ca/images/MobyDick.png
%%DATADIR%%/docs/ca/images/NewProject.png
%%DATADIR%%/docs/ca/images/OmegaT_icon.png
%%DATADIR%%/docs/ca/images/OmegaT_panes.png
%%DATADIR%%/docs/ca/images/OmegaT_projects_and_subdirectories.png
%%DATADIR%%/docs/ca/images/Omegatproject.png
%%DATADIR%%/docs/ca/images/RegexTester.png
%%DATADIR%%/docs/ca/images/Restore.gif
%%DATADIR%%/docs/ca/images/TagValidator.png
%%DATADIR%%/docs/ca/images/SpellcheckerSetup2.png
%%DATADIR%%/docs/ca/images/SpellcheckingText.png
%%DATADIR%%/docs/ca/images/TextSearch.png
%%DATADIR%%/docs/ca/images/Undock.gif
%%DATADIR%%/docs/ca/images/saveglossary.png
%%DATADIR%%/docs/ca/images/tagged_segment.png
%%DATADIR%%/docs/ca/images/tagged_segment_target.png
%%DATADIR%%/docs/ca/index.html
%%DATADIR%%/docs/ca/installingAndRunning.html
%%DATADIR%%/docs/ca/instantStartGuide.html
%%DATADIR%%/docs/ca/instantStartGuideNoTOC.html
%%DATADIR%%/docs/ca/languages.html
%%DATADIR%%/docs/ca/legalNotices.html
%%DATADIR%%/docs/ca/license.txt
%%DATADIR%%/docs/ca/menu.html
%%DATADIR%%/docs/ca/plainText.html
%%DATADIR%%/docs/ca/preventingDataLoss.html
%%DATADIR%%/docs/ca/projectProperties.html
%%DATADIR%%/docs/ca/regexp.html
%%DATADIR%%/docs/ca/searches.html
%%DATADIR%%/docs/ca/segmentation.html
%%DATADIR%%/docs/ca/spellchecker.html
%%DATADIR%%/docs/ca/translationEditing.html
%%DATADIR%%/docs/ca/translationMemories.html
%%DATADIR%%/docs/ca/userInterface.html
%%DATADIR%%/docs/ca/version.properties
%%DATADIR%%/docs/ca/website.html
%%DATADIR%%/docs/ca/xindex.html
%%DATADIR%%/docs/cs/OmegaT.css
%%DATADIR%%/docs/cs/appendix.LanguageToolPlugin.inOmegaT.html
%%DATADIR%%/docs/cs/appendix.ScriptingPlugin.inOmegaT.html
%%DATADIR%%/docs/cs/appendix.TokenizerPlugin.inOmegaT.html
%%DATADIR%%/docs/cs/appendix.acknowledgements.html
%%DATADIR%%/docs/cs/appendix.keyboard.html
%%DATADIR%%/docs/cs/appendix.languages.html
%%DATADIR%%/docs/cs/appendix.legal.notices.html
%%DATADIR%%/docs/cs/appendix.shortcut.custom.html
%%DATADIR%%/docs/cs/appendix.website.html
%%DATADIR%%/docs/cs/chapter.about.OmegaT.html
%%DATADIR%%/docs/cs/chapter.dictionaries.html
%%DATADIR%%/docs/cs/chapter.file.filters.html
%%DATADIR%%/docs/cs/chapter.files.and.directories.html
%%DATADIR%%/docs/cs/chapter.files.to.translate.html
%%DATADIR%%/docs/cs/chapter.formatted.text.html
%%DATADIR%%/docs/cs/chapter.glossaries.html
%%DATADIR%%/docs/cs/chapter.installing.and.running.html
%%DATADIR%%/docs/cs/chapter.instant.start.guide.html
%%DATADIR%%/docs/cs/chapter.machine.translate.html
%%DATADIR%%/docs/cs/chapter.menu.html
%%DATADIR%%/docs/cs/chapter.misc.html
%%DATADIR%%/docs/cs/chapter.plain.text.html
%%DATADIR%%/docs/cs/chapter.project.properties.html
%%DATADIR%%/docs/cs/chapter.regexp.html
%%DATADIR%%/docs/cs/chapter.searches.html
%%DATADIR%%/docs/cs/chapter.segmentation.html
%%DATADIR%%/docs/cs/chapter.spellchecker.html
%%DATADIR%%/docs/cs/chapter.translation.editing.html
%%DATADIR%%/docs/cs/chapter.translation.memories.html
%%DATADIR%%/docs/cs/chapter.user.interface.html
%%DATADIR%%/docs/cs/images/AppleKey.gif
%%DATADIR%%/docs/cs/images/AsciiFilteroptions.png
%%DATADIR%%/docs/cs/images/Comments_25.png
%%DATADIR%%/docs/cs/images/DictMerriamWebster.png
%%DATADIR%%/docs/cs/images/Dock.gif
%%DATADIR%%/docs/cs/images/EditingBehaviourOptions25.png
%%DATADIR%%/docs/cs/images/GlossaryEntry_25.png
%%DATADIR%%/docs/cs/images/GlossaryPane_25.png
%%DATADIR%%/docs/cs/images/Glossary_pane.png
%%DATADIR%%/docs/cs/images/InstantGuide_1.png
%%DATADIR%%/docs/cs/images/InstantGuide_2.png
%%DATADIR%%/docs/cs/images/LanguageToolExample.png
%%DATADIR%%/docs/cs/images/Main_pane_counters.png
%%DATADIR%%/docs/cs/images/MatchStatistics.png
%%DATADIR%%/docs/cs/images/MatchesPane.png
%%DATADIR%%/docs/cs/images/MatchesPane_25.png
%%DATADIR%%/docs/cs/images/Maximize.gif
%%DATADIR%%/docs/cs/images/Minimize.gif
%%DATADIR%%/docs/cs/images/MobyDick.png
%%DATADIR%%/docs/cs/images/MultiTerm_Glossary_25.png
%%DATADIR%%/docs/cs/images/NewProject.png
%%DATADIR%%/docs/cs/images/NewProject_25.png
%%DATADIR%%/docs/cs/images/OmT_Cyrillic.png
%%DATADIR%%/docs/cs/images/OmT_Japanese.png
%%DATADIR%%/docs/cs/images/OmegaT_icon.png
%%DATADIR%%/docs/cs/images/OmegaT_panes.png
%%DATADIR%%/docs/cs/images/OmegaT_panes_25.png
%%DATADIR%%/docs/cs/images/OmegaT_projects_and_subdirectories.png
%%DATADIR%%/docs/cs/images/Omegatproject.png
%%DATADIR%%/docs/cs/images/OptionsTabValidation_25.png
%%DATADIR%%/docs/cs/images/ProjectFiles.png
%%DATADIR%%/docs/cs/images/RegexTester.png
%%DATADIR%%/docs/cs/images/Restore.gif
%%DATADIR%%/docs/cs/images/ScriptingDialog.png
%%DATADIR%%/docs/cs/images/TagValidation.png
%%DATADIR%%/docs/cs/images/SpellcheckerSetup2.png
%%DATADIR%%/docs/cs/images/SpellcheckerSetup_25.png
%%DATADIR%%/docs/cs/images/SpellcheckingText.png
%%DATADIR%%/docs/cs/images/StatisticsWindow_25.png
%%DATADIR%%/docs/cs/images/TagValidator.png
%%DATADIR%%/docs/cs/images/TextSearch.png
%%DATADIR%%/docs/cs/images/TextSearch25.png
%%DATADIR%%/docs/cs/images/Undock.gif
%%DATADIR%%/docs/cs/images/saveglossary.png
%%DATADIR%%/docs/cs/images/tagged_segment.png
%%DATADIR%%/docs/cs/images/tagged_segment_target.png
%%DATADIR%%/docs/cs/index.html
%%DATADIR%%/docs/cs/instantStartGuideNoTOC.html
%%DATADIR%%/docs/cs/ix01.html
%%DATADIR%%/docs/cs/license.txt
%%DATADIR%%/docs/cs/version.properties
%%DATADIR%%/docs/cy/images/NewProject.png
%%DATADIR%%/docs/cy/images/tagged_segment.png
%%DATADIR%%/docs/cy/images/tagged_segment_target.png
%%DATADIR%%/docs/cy/instantStartGuideNoTOC.html
%%DATADIR%%/docs/cy/license.txt
%%DATADIR%%/docs/cy/version.properties
%%DATADIR%%/docs/da/images/AppleKey.gif
%%DATADIR%%/docs/da/images/Dock.gif
%%DATADIR%%/docs/da/images/MatchesPane.png
%%DATADIR%%/docs/da/images/Maximize.gif
%%DATADIR%%/docs/da/images/Minimize.gif
%%DATADIR%%/docs/da/images/NewProject.png
%%DATADIR%%/docs/da/images/Restore.gif
%%DATADIR%%/docs/da/images/Undock.gif
%%DATADIR%%/docs/da/images/tagged_segment.png
%%DATADIR%%/docs/da/images/tagged_segment_target.png
%%DATADIR%%/docs/da/instantStartGuideNoTOC.html
%%DATADIR%%/docs/da/version.properties
%%DATADIR%%/docs/de/Searches.html
%%DATADIR%%/docs/de/Segmentation.html
%%DATADIR%%/docs/de/UserInterface.html
%%DATADIR%%/docs/de/aboutOmegaT.html
%%DATADIR%%/docs/de/consoleMode.html
%%DATADIR%%/docs/de/fileFilters.html
%%DATADIR%%/docs/de/filesAndDirectories.html
%%DATADIR%%/docs/de/filesToTranslate.html
%%DATADIR%%/docs/de/fontSettings.html
%%DATADIR%%/docs/de/formattedText.html
%%DATADIR%%/docs/de/glossaries.html
%%DATADIR%%/docs/de/images/AppleKey.gif
%%DATADIR%%/docs/de/images/AsciiFilteroptions.jpg
%%DATADIR%%/docs/de/images/Dock.gif
%%DATADIR%%/docs/de/images/Glossary_pane.png
%%DATADIR%%/docs/de/images/MatchesPane.png
%%DATADIR%%/docs/de/images/Maximize.gif
%%DATADIR%%/docs/de/images/Minimize.gif
%%DATADIR%%/docs/de/images/NewProject.png
%%DATADIR%%/docs/de/images/OmegaT_icon.png
%%DATADIR%%/docs/de/images/OmegaT_panes.png
%%DATADIR%%/docs/de/images/OmegaT_projects_and_subdirectories.png
%%DATADIR%%/docs/de/images/Omegatproject.png
%%DATADIR%%/docs/de/images/Restore.gif
%%DATADIR%%/docs/de/images/SpellcheckerSetup2.png
%%DATADIR%%/docs/de/images/SpellcheckingText.png
%%DATADIR%%/docs/de/images/TagValidator.png
%%DATADIR%%/docs/de/images/TextSearch.png
%%DATADIR%%/docs/de/images/Undock.gif
%%DATADIR%%/docs/de/images/saveglossary.jpg
%%DATADIR%%/docs/de/images/tagged_segment.png
%%DATADIR%%/docs/de/images/tagged_segment_target.png
%%DATADIR%%/docs/de/index.html
%%DATADIR%%/docs/de/installingAndRunning.html
%%DATADIR%%/docs/de/instantStartGuide.html
%%DATADIR%%/docs/de/instantStartGuideNoTOC.html
%%DATADIR%%/docs/de/languages.html
%%DATADIR%%/docs/de/legalNotices.html
%%DATADIR%%/docs/de/license.txt
%%DATADIR%%/docs/de/menu.html
%%DATADIR%%/docs/de/omegat.css
%%DATADIR%%/docs/de/plainText.html
%%DATADIR%%/docs/de/preventingDataLoss.html
%%DATADIR%%/docs/de/projectProperties.html
%%DATADIR%%/docs/de/regexp.html
%%DATADIR%%/docs/de/spellchecker.html
%%DATADIR%%/docs/de/translationEditing.html
%%DATADIR%%/docs/de/translationMemories.html
%%DATADIR%%/docs/de/version.properties
%%DATADIR%%/docs/de/website.html
%%DATADIR%%/docs/de/xindex.html
%%DATADIR%%/docs/el/images/NewProject.png
%%DATADIR%%/docs/el/instantStartGuideNoTOC.html
%%DATADIR%%/docs/el/omegat.css
%%DATADIR%%/docs/el/version.properties
%%DATADIR%%/docs/en/OmegaT.css
%%DATADIR%%/docs/en/appendix.LanguageToolPlugin.inOmegaT.html
%%DATADIR%%/docs/en/appendix.ScriptingPlugin.inOmegaT.html
%%DATADIR%%/docs/en/appendix.TeamProjects.html
%%DATADIR%%/docs/en/appendix.TokenizerPlugin.inOmegaT.html
%%DATADIR%%/docs/en/appendix.acknowledgements.html
%%DATADIR%%/docs/en/appendix.keyboard.html
%%DATADIR%%/docs/en/appendix.languages.html
%%DATADIR%%/docs/en/appendix.legal.notices.html
%%DATADIR%%/docs/en/appendix.shortcut.custom.html
%%DATADIR%%/docs/en/appendix.website.html
%%DATADIR%%/docs/en/chapter.about.OmegaT.html
%%DATADIR%%/docs/en/chapter.dictionaries.html
%%DATADIR%%/docs/en/chapter.file.filters.html
%%DATADIR%%/docs/en/chapter.files.and.directories.html
%%DATADIR%%/docs/en/chapter.files.to.translate.html
%%DATADIR%%/docs/en/chapter.formatted.text.html
%%DATADIR%%/docs/en/chapter.glossaries.html
%%DATADIR%%/docs/en/chapter.installing.and.running.html
%%DATADIR%%/docs/en/chapter.instant.start.guide.html
%%DATADIR%%/docs/en/chapter.machine.translate.html
%%DATADIR%%/docs/en/chapter.menu.html
%%DATADIR%%/docs/en/chapter.misc.html
%%DATADIR%%/docs/en/chapter.plain.text.html
%%DATADIR%%/docs/en/chapter.project.properties.html
%%DATADIR%%/docs/en/chapter.regexp.html
%%DATADIR%%/docs/en/chapter.searches.html
%%DATADIR%%/docs/en/chapter.segmentation.html
%%DATADIR%%/docs/en/chapter.spellchecker.html
%%DATADIR%%/docs/en/chapter.translation.editing.html
%%DATADIR%%/docs/en/chapter.translation.memories.html
%%DATADIR%%/docs/en/chapter.user.interface.html
%%DATADIR%%/docs/en/images/AppleKey.gif
%%DATADIR%%/docs/en/images/AsciiFilteroptions.png
%%DATADIR%%/docs/en/images/Comments_25.png
%%DATADIR%%/docs/en/images/DictMerriamWebster.png
%%DATADIR%%/docs/en/images/Dock.gif
%%DATADIR%%/docs/en/images/EditingBehaviourOptions.png
%%DATADIR%%/docs/en/images/EditingBehaviourOptions25.png
%%DATADIR%%/docs/en/images/GlossaryEntry_25.png
%%DATADIR%%/docs/en/images/GlossaryPane_25.png
%%DATADIR%%/docs/en/images/InstantGuide_1.png
%%DATADIR%%/docs/en/images/InstantGuide_2.png
%%DATADIR%%/docs/en/images/LanguageToolExample.png
%%DATADIR%%/docs/en/images/Main_pane_counters.png
%%DATADIR%%/docs/en/images/MatchStatistics.png
%%DATADIR%%/docs/en/images/MatchesPaneSetup.png
%%DATADIR%%/docs/en/images/MatchesPane_25.png
%%DATADIR%%/docs/en/images/Maximize.gif
%%DATADIR%%/docs/en/images/Minimize.gif
%%DATADIR%%/docs/en/images/MobyDick.png
%%DATADIR%%/docs/en/images/MultiTerm_Glossary_25.png
%%DATADIR%%/docs/en/images/NewProject_26.png
%%DATADIR%%/docs/en/images/OmT_Cyrillic.png
%%DATADIR%%/docs/en/images/OmT_Japanese.png
%%DATADIR%%/docs/en/images/OmegaT_icon.png
%%DATADIR%%/docs/en/images/OmegaT_panes_25.png
%%DATADIR%%/docs/en/images/OmegaT_projects_and_subdirectories.png
%%DATADIR%%/docs/en/images/Omegatproject.png
%%DATADIR%%/docs/en/images/OptionsTabValidation_25.png
%%DATADIR%%/docs/en/images/OptionsTagValidation_25.png
%%DATADIR%%/docs/en/images/RegexTester.png
%%DATADIR%%/docs/en/images/Restore.gif
%%DATADIR%%/docs/en/images/ScriptingDialog.png
%%DATADIR%%/docs/en/images/SpellcheckerSetup_25.png
%%DATADIR%%/docs/en/images/SpellcheckingText.png
%%DATADIR%%/docs/en/images/StatisticsWindow_25.png
%%DATADIR%%/docs/en/images/TagValidation.png
%%DATADIR%%/docs/en/images/TagValidator.png
%%DATADIR%%/docs/en/images/Team_projects_Add.png
%%DATADIR%%/docs/en/images/Team_projects_checkout.png
%%DATADIR%%/docs/en/images/Team_projects_checkoutAddFolder.png
%%DATADIR%%/docs/en/images/Team_projects_checkoutSVNupdate.png
%%DATADIR%%/docs/en/images/Team_projects_inSync.png
%%DATADIR%%/docs/en/images/Team_projects_initialCommit.png
%%DATADIR%%/docs/en/images/TextSearch25.png
%%DATADIR%%/docs/en/images/TortoiseExplorerExtension.png
%%DATADIR%%/docs/en/images/Undock.gif
%%DATADIR%%/docs/en/images/saveglossary.png
%%DATADIR%%/docs/en/images/tagged_segment.png
%%DATADIR%%/docs/en/images/tagged_segment_target.png
%%DATADIR%%/docs/en/index.html
%%DATADIR%%/docs/en/instantStartGuideNoTOC.html
%%DATADIR%%/docs/en/ix01.html
%%DATADIR%%/docs/en/license.txt
%%DATADIR%%/docs/en/version.properties
%%DATADIR%%/docs/eo/Edit.html
%%DATADIR%%/docs/eo/FilesDirs.html
%%DATADIR%%/docs/eo/Fonts.html
%%DATADIR%%/docs/eo/GettingStarted.html
%%DATADIR%%/docs/eo/Gloss.html
%%DATADIR%%/docs/eo/Important.html
%%DATADIR%%/docs/eo/Install.html
%%DATADIR%%/docs/eo/Intro.html
%%DATADIR%%/docs/eo/Matches.html
%%DATADIR%%/docs/eo/Navigating.html
%%DATADIR%%/docs/eo/OmegaT.png
%%DATADIR%%/docs/eo/SO.html
%%DATADIR%%/docs/eo/Saving.html
%%DATADIR%%/docs/eo/Searches.html
%%DATADIR%%/docs/eo/Segmentation.html
%%DATADIR%%/docs/eo/Shortcuts.html
%%DATADIR%%/docs/eo/SysReqs.html
%%DATADIR%%/docs/eo/TMFormats.html
%%DATADIR%%/docs/eo/Tags.html
%%DATADIR%%/docs/eo/Tips.html
%%DATADIR%%/docs/eo/Translating.html
%%DATADIR%%/docs/eo/UI.html
%%DATADIR%%/docs/eo/WPFormats.html
%%DATADIR%%/docs/eo/index.html
%%DATADIR%%/docs/eo/omegat.css
%%DATADIR%%/docs/eo/version.properties
%%DATADIR%%/docs/es/OmegaT.css
%%DATADIR%%/docs/es/appendix.acknowledgements.html
%%DATADIR%%/docs/es/appendix.keyboard.html
%%DATADIR%%/docs/es/appendix.languages.html
%%DATADIR%%/docs/es/appendix.legal.notices.html
%%DATADIR%%/docs/es/appendix.website.html
%%DATADIR%%/docs/es/chapter.about.OmegaT.html
%%DATADIR%%/docs/es/chapter.dictionaries.html
%%DATADIR%%/docs/es/chapter.file.filters.html
%%DATADIR%%/docs/es/chapter.files.and.directories.html
%%DATADIR%%/docs/es/chapter.files.to.translate.html
%%DATADIR%%/docs/es/chapter.font.html
%%DATADIR%%/docs/es/chapter.formatted.text.html
%%DATADIR%%/docs/es/chapter.glossaries.html
%%DATADIR%%/docs/es/chapter.installing.and.running.html
%%DATADIR%%/docs/es/chapter.instant.start.guide.html
%%DATADIR%%/docs/es/chapter.machine.translate.html
%%DATADIR%%/docs/es/chapter.menu.html
%%DATADIR%%/docs/es/chapter.misc.html
%%DATADIR%%/docs/es/chapter.plain.text.html
%%DATADIR%%/docs/es/chapter.project.properties.html
%%DATADIR%%/docs/es/chapter.regexp.html
%%DATADIR%%/docs/es/chapter.searches.html
%%DATADIR%%/docs/es/chapter.segmentation.html
%%DATADIR%%/docs/es/chapter.spellchecker.html
%%DATADIR%%/docs/es/chapter.translation.editing.html
%%DATADIR%%/docs/es/chapter.translation.memories.html
%%DATADIR%%/docs/es/chapter.user.interface.html
%%DATADIR%%/docs/es/images/AppleKey.gif
%%DATADIR%%/docs/es/images/AsciiFilteroptions.png
%%DATADIR%%/docs/es/images/DictMerriamWebster.png
%%DATADIR%%/docs/es/images/Dock.gif
%%DATADIR%%/docs/es/images/EditingBehaviourOptions.png
%%DATADIR%%/docs/es/images/Glossary_pane.png
%%DATADIR%%/docs/es/images/Main_pane_counters.png
%%DATADIR%%/docs/es/images/MatchStatistics.png
%%DATADIR%%/docs/es/images/MatchesPane.png
%%DATADIR%%/docs/es/images/Maximize.gif
%%DATADIR%%/docs/es/images/Minimize.gif
%%DATADIR%%/docs/es/images/MobyDick.png
%%DATADIR%%/docs/es/images/MultiTerm_Glossary.png
%%DATADIR%%/docs/es/images/NewProject.png
%%DATADIR%%/docs/es/images/OmT_Cyrillic.png
%%DATADIR%%/docs/es/images/OmT_Japanese.png
%%DATADIR%%/docs/es/images/OmegaT_icon.png
%%DATADIR%%/docs/es/images/RegexTester.png
%%DATADIR%%/docs/es/images/OmegaT_panes.png
%%DATADIR%%/docs/es/images/OmegaT_projects_and_subdirectories.png
%%DATADIR%%/docs/es/images/Omegatproject.png
%%DATADIR%%/docs/es/images/Restore.gif
%%DATADIR%%/docs/es/images/SpellcheckerSetup2.png
%%DATADIR%%/docs/es/images/SpellcheckingText.png
%%DATADIR%%/docs/es/images/TagValidation.png
%%DATADIR%%/docs/es/images/TagValidator.png
%%DATADIR%%/docs/es/images/TextSearch.png
%%DATADIR%%/docs/es/images/Undock.gif
%%DATADIR%%/docs/es/images/saveglossary.png
%%DATADIR%%/docs/es/images/tagged_segment.png
%%DATADIR%%/docs/es/images/tagged_segment_target.png
%%DATADIR%%/docs/es/index.html
%%DATADIR%%/docs/es/instantStartGuideNoTOC.html
%%DATADIR%%/docs/es/ix01.html
%%DATADIR%%/docs/es/license.txt
%%DATADIR%%/docs/es/version.properties
%%DATADIR%%/docs/eu/GoogleTranslate.html
%%DATADIR%%/docs/eu/OmegaT.css
%%DATADIR%%/docs/eu/aboutOmegaT.html
%%DATADIR%%/docs/eu/consoleMode.html
%%DATADIR%%/docs/eu/dictionaries.html
%%DATADIR%%/docs/eu/fileFilters.html
%%DATADIR%%/docs/eu/filesAndDirectories.html
%%DATADIR%%/docs/eu/filesToTranslate.html
%%DATADIR%%/docs/eu/fontSettings.html
%%DATADIR%%/docs/eu/formattedText.html
%%DATADIR%%/docs/eu/glossaries.html
%%DATADIR%%/docs/eu/images/AppleKey.gif
%%DATADIR%%/docs/eu/images/AsciiFilteroptions.jpg
%%DATADIR%%/docs/eu/images/DictMerriamWebster.png
%%DATADIR%%/docs/eu/images/Dock.gif
%%DATADIR%%/docs/eu/images/Glossary_pane.png
%%DATADIR%%/docs/eu/images/MatchesPane.png
%%DATADIR%%/docs/eu/images/Maximize.gif
%%DATADIR%%/docs/eu/images/Minimize.gif
%%DATADIR%%/docs/eu/images/MobyDick.png
%%DATADIR%%/docs/eu/images/NewProject.png
%%DATADIR%%/docs/eu/images/OmegaT_icon.png
%%DATADIR%%/docs/eu/images/OmegaT_panes.png
%%DATADIR%%/docs/eu/images/OmegaT_projects_and_subdirectories.png
%%DATADIR%%/docs/eu/images/Omegatproject.png
%%DATADIR%%/docs/eu/images/RegexTester.png
%%DATADIR%%/docs/eu/images/Restore.gif
%%DATADIR%%/docs/eu/images/SpellcheckerSetup2.png
%%DATADIR%%/docs/eu/images/TagValidator.png
%%DATADIR%%/docs/eu/images/SpellcheckingText.png
%%DATADIR%%/docs/eu/images/TextSearch.png
%%DATADIR%%/docs/eu/images/Undock.gif
%%DATADIR%%/docs/eu/images/saveglossary.jpg
%%DATADIR%%/docs/eu/images/tagged_segment.png
%%DATADIR%%/docs/eu/images/tagged_segment_target.png
%%DATADIR%%/docs/eu/index.html
%%DATADIR%%/docs/eu/installingAndRunning.html
%%DATADIR%%/docs/eu/instantStartGuide.html
%%DATADIR%%/docs/eu/instantStartGuideNoTOC.html
%%DATADIR%%/docs/eu/languages.html
%%DATADIR%%/docs/eu/legalNotices.html
%%DATADIR%%/docs/eu/license.txt
%%DATADIR%%/docs/eu/menu.html
%%DATADIR%%/docs/eu/plainText.html
%%DATADIR%%/docs/eu/preventingDataLoss.html
%%DATADIR%%/docs/eu/projectProperties.html
%%DATADIR%%/docs/eu/regexp.html
%%DATADIR%%/docs/eu/searches.html
%%DATADIR%%/docs/eu/segmentation.html
%%DATADIR%%/docs/eu/spellchecker.html
%%DATADIR%%/docs/eu/translationEditing.html
%%DATADIR%%/docs/eu/translationMemories.html
%%DATADIR%%/docs/eu/userInterface.html
%%DATADIR%%/docs/eu/version.properties
%%DATADIR%%/docs/eu/website.html
%%DATADIR%%/docs/eu/xindex.html
%%DATADIR%%/docs/fr/Edit.html
%%DATADIR%%/docs/fr/FilesDirs.html
%%DATADIR%%/docs/fr/Fonts.html
%%DATADIR%%/docs/fr/GettingStarted.html
%%DATADIR%%/docs/fr/Gloss.html
%%DATADIR%%/docs/fr/Important.html
%%DATADIR%%/docs/fr/Install.html
%%DATADIR%%/docs/fr/InstantStart_NoNav.html
%%DATADIR%%/docs/fr/Intro.html
%%DATADIR%%/docs/fr/Matches.html
%%DATADIR%%/docs/fr/Navigating.html
%%DATADIR%%/docs/fr/OmegaT.png
%%DATADIR%%/docs/fr/SO.html
%%DATADIR%%/docs/fr/Saving.html
%%DATADIR%%/docs/fr/Searches.html
%%DATADIR%%/docs/fr/Segmentation.html
%%DATADIR%%/docs/fr/Shortcuts.html
%%DATADIR%%/docs/fr/SysReqs.html
%%DATADIR%%/docs/fr/TMFormats.html
%%DATADIR%%/docs/fr/Tags.html
%%DATADIR%%/docs/fr/Tips.html
%%DATADIR%%/docs/fr/Translating.html
%%DATADIR%%/docs/fr/UI.html
%%DATADIR%%/docs/fr/WPFormats.html
%%DATADIR%%/docs/fr/createproj.png
%%DATADIR%%/docs/fr/images/AppleKey.gif
%%DATADIR%%/docs/fr/images/Dock.gif
%%DATADIR%%/docs/fr/images/InstantGuide_1.png
%%DATADIR%%/docs/fr/images/InstantGuide_2.png
%%DATADIR%%/docs/fr/images/Maximize.gif
%%DATADIR%%/docs/fr/images/Minimize.gif
%%DATADIR%%/docs/fr/images/Restore.gif
%%DATADIR%%/docs/fr/images/Undock.gif
%%DATADIR%%/docs/fr/index.html
%%DATADIR%%/docs/fr/instantStartGuideNoTOC.html
%%DATADIR%%/docs/fr/license.txt
%%DATADIR%%/docs/fr/omegat.css
%%DATADIR%%/docs/fr/version.properties
%%DATADIR%%/docs/gl/OmegaT.css
%%DATADIR%%/docs/gl/images/MatchesPane.png
%%DATADIR%%/docs/gl/images/NewProject.png
%%DATADIR%%/docs/gl/images/tagged_segment.png
%%DATADIR%%/docs/gl/images/tagged_segment_target.png
%%DATADIR%%/docs/gl/instantStartGuideNoTOC.html
%%DATADIR%%/docs/gl/license.txt
%%DATADIR%%/docs/hu/GoogleTranslate.html
%%DATADIR%%/docs/hu/OmegaT.css
%%DATADIR%%/docs/hu/aboutOmegaT.html
%%DATADIR%%/docs/hu/commandlineArguments.html
%%DATADIR%%/docs/hu/consoleMode.html
%%DATADIR%%/docs/hu/dictionaries.html
%%DATADIR%%/docs/hu/fileFilters.html
%%DATADIR%%/docs/hu/filesAndDirectories.html
%%DATADIR%%/docs/hu/filesToTranslate.html
%%DATADIR%%/docs/hu/fontSettings.html
%%DATADIR%%/docs/hu/formattedText.html
%%DATADIR%%/docs/hu/glossaries.html
%%DATADIR%%/docs/hu/images/AppleKey.gif
%%DATADIR%%/docs/hu/images/AsciiFilteroptions.png
%%DATADIR%%/docs/hu/images/DictMerriamWebster.png
%%DATADIR%%/docs/hu/images/Dock.gif
%%DATADIR%%/docs/hu/images/Glossary_pane.png
%%DATADIR%%/docs/hu/images/Main_pane_counters.png
%%DATADIR%%/docs/hu/images/MatchesPane.png
%%DATADIR%%/docs/hu/images/Maximize.gif
%%DATADIR%%/docs/hu/images/Minimize.gif
%%DATADIR%%/docs/hu/images/MobyDick.png
%%DATADIR%%/docs/hu/images/NewProject.png
%%DATADIR%%/docs/hu/images/OmegaT_icon.png
%%DATADIR%%/docs/hu/images/OmegaT_panes.png
%%DATADIR%%/docs/hu/images/OmegaT_projects_and_subdirectories.png
%%DATADIR%%/docs/hu/images/Omegatproject.png
%%DATADIR%%/docs/hu/images/RegexTester.png
%%DATADIR%%/docs/hu/images/Restore.gif
%%DATADIR%%/docs/hu/images/TagValidator.png
%%DATADIR%%/docs/hu/images/SpellcheckerSetup2.png
%%DATADIR%%/docs/hu/images/SpellcheckingText.png
%%DATADIR%%/docs/hu/images/TextSearch.png
%%DATADIR%%/docs/hu/images/Undock.gif
%%DATADIR%%/docs/hu/images/saveglossary.png
%%DATADIR%%/docs/hu/images/tagged_segment.png
%%DATADIR%%/docs/hu/images/tagged_segment_target.png
%%DATADIR%%/docs/hu/index.html
%%DATADIR%%/docs/hu/installingAndRunning.html
%%DATADIR%%/docs/hu/instantStartGuide.html
%%DATADIR%%/docs/hu/instantStartGuideNoTOC.html
%%DATADIR%%/docs/hu/languages.html
%%DATADIR%%/docs/hu/legalNotices.html
%%DATADIR%%/docs/hu/license.txt
%%DATADIR%%/docs/hu/menu.html
%%DATADIR%%/docs/hu/plainText.html
%%DATADIR%%/docs/hu/preventingDataLoss.html
%%DATADIR%%/docs/hu/projectProperties.html
%%DATADIR%%/docs/hu/regexp.html
%%DATADIR%%/docs/hu/searches.html
%%DATADIR%%/docs/hu/segmentation.html
%%DATADIR%%/docs/hu/spellchecker.html
%%DATADIR%%/docs/hu/translationEditing.html
%%DATADIR%%/docs/hu/translationMemories.html
%%DATADIR%%/docs/hu/userInterface.html
%%DATADIR%%/docs/hu/version.properties
%%DATADIR%%/docs/hu/website.html
%%DATADIR%%/docs/hu/xindex.html
%%DATADIR%%/docs/ia/OmegaT.css
%%DATADIR%%/docs/ia/images/InstantGuide_1.png
%%DATADIR%%/docs/ia/images/InstantGuide_2.png
%%DATADIR%%/docs/ia/instantStartGuideNoTOC.html
%%DATADIR%%/docs/id/images/InstantGuide_1.png
%%DATADIR%%/docs/id/images/InstantGuide_2.png
%%DATADIR%%/docs/id/instantStartGuideNoTOC.html
%%DATADIR%%/docs/id/omegat.css
%%DATADIR%%/docs/index.html
%%DATADIR%%/docs/it/OmegaT.css
%%DATADIR%%/docs/it/appendix.LanguageToolPlugin.inOmegaT.html
%%DATADIR%%/docs/it/appendix.ScriptingPlugin.inOmegaT.html
%%DATADIR%%/docs/it/appendix.TeamProjects.html
%%DATADIR%%/docs/it/appendix.TokenizerPlugin.inOmegaT.html
%%DATADIR%%/docs/it/appendix.acknowledgements.html
%%DATADIR%%/docs/it/appendix.keyboard.html
%%DATADIR%%/docs/it/appendix.languages.html
%%DATADIR%%/docs/it/appendix.legal.notices.html
%%DATADIR%%/docs/it/appendix.shortcut.custom.html
%%DATADIR%%/docs/it/appendix.website.html
%%DATADIR%%/docs/it/chapter.about.OmegaT.html
%%DATADIR%%/docs/it/chapter.dictionaries.html
%%DATADIR%%/docs/it/chapter.file.filters.html
%%DATADIR%%/docs/it/chapter.files.and.directories.html
%%DATADIR%%/docs/it/chapter.files.to.translate.html
%%DATADIR%%/docs/it/chapter.formatted.text.html
%%DATADIR%%/docs/it/chapter.glossaries.html
%%DATADIR%%/docs/it/chapter.installing.and.running.html
%%DATADIR%%/docs/it/chapter.instant.start.guide.html
%%DATADIR%%/docs/it/chapter.machine.translate.html
%%DATADIR%%/docs/it/chapter.menu.html
%%DATADIR%%/docs/it/chapter.misc.html
%%DATADIR%%/docs/it/chapter.plain.text.html
%%DATADIR%%/docs/it/chapter.project.properties.html
%%DATADIR%%/docs/it/chapter.regexp.html
%%DATADIR%%/docs/it/chapter.searches.html
%%DATADIR%%/docs/it/chapter.segmentation.html
%%DATADIR%%/docs/it/chapter.spellchecker.html
%%DATADIR%%/docs/it/chapter.translation.editing.html
%%DATADIR%%/docs/it/chapter.translation.memories.html
%%DATADIR%%/docs/it/chapter.user.interface.html
%%DATADIR%%/docs/it/images/AppleKey.gif
%%DATADIR%%/docs/it/images/AsciiFilteroptions.png
%%DATADIR%%/docs/it/images/Comments_25.png
%%DATADIR%%/docs/it/images/DictMerriamWebster.png
%%DATADIR%%/docs/it/images/Dock.gif
%%DATADIR%%/docs/it/images/EditingBehaviourOptions.png
%%DATADIR%%/docs/it/images/EditingBehaviourOptions25.png
%%DATADIR%%/docs/it/images/GlossaryEntry_25.png
%%DATADIR%%/docs/it/images/GlossaryPane_25.png
%%DATADIR%%/docs/it/images/Glossary_pane.png
%%DATADIR%%/docs/it/images/InstantGuide_1.png
%%DATADIR%%/docs/it/images/InstantGuide_2.png
%%DATADIR%%/docs/it/images/LanguageToolExample.png
%%DATADIR%%/docs/it/images/Main_pane_counters.png
%%DATADIR%%/docs/it/images/MatchStatistics.png
%%DATADIR%%/docs/it/images/MatchesPane.png
%%DATADIR%%/docs/it/images/Restore.gif
%%DATADIR%%/docs/it/images/MatchesPaneSetup.png
%%DATADIR%%/docs/it/images/MatchesPane_25.png
%%DATADIR%%/docs/it/images/Maximize.gif
%%DATADIR%%/docs/it/images/Minimize.gif
%%DATADIR%%/docs/it/images/MobyDick.png
%%DATADIR%%/docs/it/images/MultiTerm_Glossary.png
%%DATADIR%%/docs/it/images/MultiTerm_Glossary_25.png
%%DATADIR%%/docs/it/images/NewProject.png
%%DATADIR%%/docs/it/images/NewProject_25.png
%%DATADIR%%/docs/it/images/NewProject_26.png
%%DATADIR%%/docs/it/images/OmT_Cyrillic.png
%%DATADIR%%/docs/it/images/OmT_Japanese.png
%%DATADIR%%/docs/it/images/OmegaT_icon.png
%%DATADIR%%/docs/it/images/OmegaT_panes.png
%%DATADIR%%/docs/it/images/OmegaT_panes_25.png
%%DATADIR%%/docs/it/images/OmegaT_projects_and_subdirectories.png
%%DATADIR%%/docs/it/images/Omegatproject.png
%%DATADIR%%/docs/it/images/Undock.gif
%%DATADIR%%/docs/it/images/OptionsTabValidation_25.png
%%DATADIR%%/docs/it/images/OptionsTagValidation_25.png
%%DATADIR%%/docs/it/images/RegexTester.png
%%DATADIR%%/docs/it/images/ScriptingDialog.png
%%DATADIR%%/docs/it/images/SpellcheckerSetup2.png
%%DATADIR%%/docs/it/images/SpellcheckerSetup_25.png
%%DATADIR%%/docs/it/images/SpellcheckingText.png
%%DATADIR%%/docs/it/images/StatisticsWindow_25.png
%%DATADIR%%/docs/it/images/TagValidation.png
%%DATADIR%%/docs/it/images/TagValidator.png
%%DATADIR%%/docs/it/images/Team_projects_Add.png
%%DATADIR%%/docs/it/images/Team_projects_checkout.png
%%DATADIR%%/docs/it/images/Team_projects_checkoutAddFolder.png
%%DATADIR%%/docs/it/images/Team_projects_checkoutSVNupdate.png
%%DATADIR%%/docs/it/images/Team_projects_inSync.png
%%DATADIR%%/docs/it/images/Team_projects_initialCommit.png
%%DATADIR%%/docs/it/images/TextSearch.png
%%DATADIR%%/docs/it/images/TextSearch25.png
%%DATADIR%%/docs/it/images/TortoiseExplorerExtension.png
%%DATADIR%%/docs/it/images/project_files.png
%%DATADIR%%/docs/it/images/saveglossary.png
%%DATADIR%%/docs/it/images/tagged_segment.png
%%DATADIR%%/docs/it/images/tagged_segment_target.png
%%DATADIR%%/docs/it/index.html
%%DATADIR%%/docs/it/instantStartGuideNoTOC.html
%%DATADIR%%/docs/it/ix01.html
%%DATADIR%%/docs/it/version.properties
%%DATADIR%%/docs/ja/OmegaT.css
%%DATADIR%%/docs/ja/appendix.LanguageToolPlugin.inOmegaT.html
%%DATADIR%%/docs/ja/appendix.ScriptingPlugin.inOmegaT.html
%%DATADIR%%/docs/ja/appendix.TeamProjects.html
%%DATADIR%%/docs/ja/appendix.TokenizerPlugin.inOmegaT.html
%%DATADIR%%/docs/ja/appendix.acknowledgements.html
%%DATADIR%%/docs/ja/appendix.keyboard.html
%%DATADIR%%/docs/ja/appendix.languages.html
%%DATADIR%%/docs/ja/appendix.legal.notices.html
%%DATADIR%%/docs/ja/appendix.shortcut.custom.html
%%DATADIR%%/docs/ja/appendix.website.html
%%DATADIR%%/docs/ja/chapter.about.OmegaT.html
%%DATADIR%%/docs/ja/chapter.dictionaries.html
%%DATADIR%%/docs/ja/chapter.file.filters.html
%%DATADIR%%/docs/ja/chapter.files.and.directories.html
%%DATADIR%%/docs/ja/chapter.files.to.translate.html
%%DATADIR%%/docs/ja/chapter.formatted.text.html
%%DATADIR%%/docs/ja/chapter.glossaries.html
%%DATADIR%%/docs/ja/chapter.installing.and.running.html
%%DATADIR%%/docs/ja/chapter.instant.start.guide.html
%%DATADIR%%/docs/ja/chapter.machine.translate.html
%%DATADIR%%/docs/ja/chapter.menu.html
%%DATADIR%%/docs/ja/chapter.misc.html
%%DATADIR%%/docs/ja/chapter.plain.text.html
%%DATADIR%%/docs/ja/chapter.project.properties.html
%%DATADIR%%/docs/ja/chapter.regexp.html
%%DATADIR%%/docs/ja/chapter.searches.html
%%DATADIR%%/docs/ja/chapter.segmentation.html
%%DATADIR%%/docs/ja/chapter.spellchecker.html
%%DATADIR%%/docs/ja/chapter.translation.editing.html
%%DATADIR%%/docs/ja/chapter.translation.memories.html
%%DATADIR%%/docs/ja/chapter.user.interface.html
%%DATADIR%%/docs/ja/images/AppleKey.gif
%%DATADIR%%/docs/ja/images/Comments_25.png
%%DATADIR%%/docs/ja/images/DictMerriamWebster.png
%%DATADIR%%/docs/ja/images/Dock.gif
%%DATADIR%%/docs/ja/images/EditingBehaviourOptions.png
%%DATADIR%%/docs/ja/images/EditingBehaviourOptions25.png
%%DATADIR%%/docs/ja/images/GlossaryEntry_25.png
%%DATADIR%%/docs/ja/images/GlossaryPane_25.png
%%DATADIR%%/docs/ja/images/InstantGuide_1.png
%%DATADIR%%/docs/ja/images/InstantGuide_2.png
%%DATADIR%%/docs/ja/images/LanguageToolExample.png
%%DATADIR%%/docs/ja/images/MatchStatistics.png
%%DATADIR%%/docs/ja/images/MatchesPaneSetup.png
%%DATADIR%%/docs/ja/images/MatchesPane_25.png
%%DATADIR%%/docs/ja/images/Maximize.gif
%%DATADIR%%/docs/ja/images/Minimize.gif
%%DATADIR%%/docs/ja/images/MobyDick.png
%%DATADIR%%/docs/ja/images/MultiTerm_Glossary_25.png
%%DATADIR%%/docs/ja/images/NewProject_26.png
%%DATADIR%%/docs/ja/images/OmT_Cyrillic.png
%%DATADIR%%/docs/ja/images/OmT_Japanese.png
%%DATADIR%%/docs/ja/images/OmegaT_icon.png
%%DATADIR%%/docs/ja/images/OmegaT_panes_25.png
%%DATADIR%%/docs/ja/images/OmegaT_projects_and_subdirectories.png
%%DATADIR%%/docs/ja/images/Omegatproject.png
%%DATADIR%%/docs/ja/images/OptionsTagValidation_25.png
%%DATADIR%%/docs/ja/images/RegexTester.png
%%DATADIR%%/docs/ja/images/Restore.gif
%%DATADIR%%/docs/ja/images/ScriptingDialog.png
%%DATADIR%%/docs/ja/images/SpellcheckerSetup_25.png
%%DATADIR%%/docs/ja/images/SpellcheckingText.png
%%DATADIR%%/docs/ja/images/StatisticsWindow_25.png
%%DATADIR%%/docs/ja/images/TagValidation.png
%%DATADIR%%/docs/ja/images/TagValidator.png
%%DATADIR%%/docs/ja/images/Team_projects_Add.png
%%DATADIR%%/docs/ja/images/Team_projects_checkout.png
%%DATADIR%%/docs/ja/images/Team_projects_checkoutAddFolder.png
%%DATADIR%%/docs/ja/images/Team_projects_checkoutSVNupdate.png
%%DATADIR%%/docs/ja/images/Team_projects_inSync.png
%%DATADIR%%/docs/ja/images/Team_projects_initialCommit.png
%%DATADIR%%/docs/ja/images/TextSearch25.png
%%DATADIR%%/docs/ja/images/TortoiseExplorerExtension.png
%%DATADIR%%/docs/ja/images/Undock.gif
%%DATADIR%%/docs/ja/images/saveglossary.png
%%DATADIR%%/docs/ja/index.html
%%DATADIR%%/docs/ja/instantStartGuideNoTOC.html
%%DATADIR%%/docs/ja/ix01.html
%%DATADIR%%/docs/ja/license.txt
%%DATADIR%%/docs/ja/version.properties
%%DATADIR%%/docs/nl/OmegaT.css
%%DATADIR%%/docs/nl/appendix.LanguageToolPlugin.inOmegaT.html
%%DATADIR%%/docs/nl/appendix.ScriptingPlugin.inOmegaT.html
%%DATADIR%%/docs/nl/appendix.TeamProjects.html
%%DATADIR%%/docs/nl/appendix.TokenizerPlugin.inOmegaT.html
%%DATADIR%%/docs/nl/appendix.acknowledgements.html
%%DATADIR%%/docs/nl/appendix.keyboard.html
%%DATADIR%%/docs/nl/appendix.languages.html
%%DATADIR%%/docs/nl/appendix.legal.notices.html
%%DATADIR%%/docs/nl/appendix.shortcut.custom.html
%%DATADIR%%/docs/nl/appendix.website.html
%%DATADIR%%/docs/nl/chapter.about.OmegaT.html
%%DATADIR%%/docs/nl/chapter.dictionaries.html
%%DATADIR%%/docs/nl/chapter.file.filters.html
%%DATADIR%%/docs/nl/chapter.files.and.directories.html
%%DATADIR%%/docs/nl/chapter.files.to.translate.html
%%DATADIR%%/docs/nl/chapter.formatted.text.html
%%DATADIR%%/docs/nl/chapter.glossaries.html
%%DATADIR%%/docs/nl/chapter.installing.and.running.html
%%DATADIR%%/docs/nl/chapter.instant.start.guide.html
%%DATADIR%%/docs/nl/chapter.machine.translate.html
%%DATADIR%%/docs/nl/chapter.menu.html
%%DATADIR%%/docs/nl/chapter.misc.html
%%DATADIR%%/docs/nl/chapter.plain.text.html
%%DATADIR%%/docs/nl/chapter.project.properties.html
%%DATADIR%%/docs/nl/chapter.regexp.html
%%DATADIR%%/docs/nl/chapter.searches.html
%%DATADIR%%/docs/nl/chapter.segmentation.html
%%DATADIR%%/docs/nl/chapter.spellchecker.html
%%DATADIR%%/docs/nl/chapter.translation.editing.html
%%DATADIR%%/docs/nl/chapter.translation.memories.html
%%DATADIR%%/docs/nl/chapter.user.interface.html
%%DATADIR%%/docs/nl/images/AppleKey.gif
%%DATADIR%%/docs/nl/images/Comments_25.png
%%DATADIR%%/docs/nl/images/DictMerriamWebster.png
%%DATADIR%%/docs/nl/images/Dock.gif
%%DATADIR%%/docs/nl/images/EditingBehaviourOptions.png
%%DATADIR%%/docs/nl/images/EditingBehaviourOptions25.png
%%DATADIR%%/docs/nl/images/GlossaryEntry_25.png
%%DATADIR%%/docs/nl/images/GlossaryPane_25.png
%%DATADIR%%/docs/nl/images/InstantGuide_1.png
%%DATADIR%%/docs/nl/images/InstantGuide_2.png
%%DATADIR%%/docs/nl/images/LanguageToolExample.png
%%DATADIR%%/docs/nl/images/Main_pane_counters.png
%%DATADIR%%/docs/nl/images/MatchStatistics.png
%%DATADIR%%/docs/nl/images/MatchesPaneSetup.png
%%DATADIR%%/docs/nl/images/MatchesPane_25.png
%%DATADIR%%/docs/nl/images/Maximize.gif
%%DATADIR%%/docs/nl/images/Restore.gif
%%DATADIR%%/docs/nl/images/Minimize.gif
%%DATADIR%%/docs/nl/images/MobyDick.png
%%DATADIR%%/docs/nl/images/MultiTerm_Glossary_25.png
%%DATADIR%%/docs/nl/images/NewProject_25.png
%%DATADIR%%/docs/nl/images/NewProject_26.png
%%DATADIR%%/docs/nl/images/OmT_Cyrillic.png
%%DATADIR%%/docs/nl/images/OmT_Japanese.png
%%DATADIR%%/docs/nl/images/OmegaT projects_and_subdirectories.png
%%DATADIR%%/docs/nl/images/OmegaT_icon.png
%%DATADIR%%/docs/nl/images/OmegaT_panes.png
%%DATADIR%%/docs/nl/images/OmegaT_panes_25.png
%%DATADIR%%/docs/nl/images/OmegaT_projects_and_subdirectories.png
%%DATADIR%%/docs/nl/images/Omegatproject.png
%%DATADIR%%/docs/nl/images/OptionsTabValidation_25.png
%%DATADIR%%/docs/nl/images/ProjectFiles.png
%%DATADIR%%/docs/nl/images/RegexTester.png
%%DATADIR%%/docs/nl/images/TextSearch.png
%%DATADIR%%/docs/nl/images/ScriptingDialog.png
%%DATADIR%%/docs/nl/images/SpellcheckerSetup.png
%%DATADIR%%/docs/nl/images/SpellcheckerSetup2.png
%%DATADIR%%/docs/nl/images/SpellcheckerSetup_25.png
%%DATADIR%%/docs/nl/images/SpellcheckingText.png
%%DATADIR%%/docs/nl/images/StatisticsWindow_25.png
%%DATADIR%%/docs/nl/images/TagValidation.png
%%DATADIR%%/docs/nl/images/TagValidator.png
%%DATADIR%%/docs/nl/images/Team_projects_Add.png
%%DATADIR%%/docs/nl/images/Team_projects_checkout.png
%%DATADIR%%/docs/nl/images/Team_projects_checkoutAddFolder.png
%%DATADIR%%/docs/nl/images/Team_projects_checkoutSVNupdate.png
%%DATADIR%%/docs/nl/images/Team_projects_inSync.png
%%DATADIR%%/docs/nl/images/Team_projects_initialCommit.png
%%DATADIR%%/docs/nl/images/TextSearch25.png
%%DATADIR%%/docs/nl/images/TortoiseExplorerExtension.png
%%DATADIR%%/docs/nl/images/Undock.gif
%%DATADIR%%/docs/nl/images/saveglossary.png
%%DATADIR%%/docs/nl/images/tagged_segment.png
%%DATADIR%%/docs/nl/images/tagged_segment_target.png
%%DATADIR%%/docs/nl/index.html
%%DATADIR%%/docs/nl/instantStartGuideNoTOC.html
%%DATADIR%%/docs/nl/ix01.html
%%DATADIR%%/docs/nl/license.txt
%%DATADIR%%/docs/nl/version.properties
%%DATADIR%%/docs/pl/GoogleTranslate.html
%%DATADIR%%/docs/pl/OmegaT.css
%%DATADIR%%/docs/pl/aboutOmegaT.html
%%DATADIR%%/docs/pl/commandlineArguments.html
%%DATADIR%%/docs/pl/consoleMode.html
%%DATADIR%%/docs/pl/dictionaries.html
%%DATADIR%%/docs/pl/fileFilters.html
%%DATADIR%%/docs/pl/filesAndDirectories.html
%%DATADIR%%/docs/pl/filesToTranslate.html
%%DATADIR%%/docs/pl/fontSettings.html
%%DATADIR%%/docs/pl/formattedText.html
%%DATADIR%%/docs/pl/glossaries.html
%%DATADIR%%/docs/pl/images/AppleKey.gif
%%DATADIR%%/docs/pl/images/AsciiFilteroptions.png
%%DATADIR%%/docs/pl/images/DictMerriamWebster.png
%%DATADIR%%/docs/pl/images/Dock.gif
%%DATADIR%%/docs/pl/images/Glossary_pane.png
%%DATADIR%%/docs/pl/images/Main_pane_counters.png
%%DATADIR%%/docs/pl/images/MatchesPane.png
%%DATADIR%%/docs/pl/images/Maximize.gif
%%DATADIR%%/docs/pl/images/Minimize.gif
%%DATADIR%%/docs/pl/images/MobyDick.png
%%DATADIR%%/docs/pl/images/NewProject.png
%%DATADIR%%/docs/pl/images/OmegaT_icon.png
%%DATADIR%%/docs/pl/images/OmegaT_panes.png
%%DATADIR%%/docs/pl/images/OmegaT_projects_and_subdirectories.png
%%DATADIR%%/docs/pl/images/Omegatproject.png
%%DATADIR%%/docs/pl/images/RegexTester.png
%%DATADIR%%/docs/pl/images/Restore.gif
%%DATADIR%%/docs/pl/images/TagValidator.png
%%DATADIR%%/docs/pl/images/SpellcheckerSetup2.png
%%DATADIR%%/docs/pl/images/SpellcheckingText.png
%%DATADIR%%/docs/pl/images/TextSearch.png
%%DATADIR%%/docs/pl/images/Undock.gif
%%DATADIR%%/docs/pl/images/saveglossary.png
%%DATADIR%%/docs/pl/images/tagged_segment.png
%%DATADIR%%/docs/pl/images/tagged_segment_target.png
%%DATADIR%%/docs/pl/index.html
%%DATADIR%%/docs/pl/installingAndRunning.html
%%DATADIR%%/docs/pl/instantStartGuide.html
%%DATADIR%%/docs/pl/instantStartGuideNoTOC.html
%%DATADIR%%/docs/pl/languages.html
%%DATADIR%%/docs/pl/legalNotices.html
%%DATADIR%%/docs/pl/license.txt
%%DATADIR%%/docs/pl/menu.html
%%DATADIR%%/docs/pl/plainText.html
%%DATADIR%%/docs/pl/preventingDataLoss.html
%%DATADIR%%/docs/pl/projectProperties.html
%%DATADIR%%/docs/pl/regexp.html
%%DATADIR%%/docs/pl/searches.html
%%DATADIR%%/docs/pl/segmentation.html
%%DATADIR%%/docs/pl/spellchecker.html
%%DATADIR%%/docs/pl/translationEditing.html
%%DATADIR%%/docs/pl/translationMemories.html
%%DATADIR%%/docs/pl/userInterface.html
%%DATADIR%%/docs/pl/version.properties
%%DATADIR%%/docs/pl/website.html
%%DATADIR%%/docs/pl/xindex.html
%%DATADIR%%/docs/pt_BR/OmegaT.css
%%DATADIR%%/docs/pt_BR/aboutOmegaT.html
%%DATADIR%%/docs/pt_BR/fileFilters.html
%%DATADIR%%/docs/pt_BR/fileFormats.html
%%DATADIR%%/docs/pt_BR/filesToTranslate.html
%%DATADIR%%/docs/pt_BR/fontSettings.html
%%DATADIR%%/docs/pt_BR/formattedText.html
%%DATADIR%%/docs/pt_BR/glossaries.html
%%DATADIR%%/docs/pt_BR/images/AppleKey.gif
%%DATADIR%%/docs/pt_BR/images/Dock.gif
%%DATADIR%%/docs/pt_BR/images/MatchesPane.png
%%DATADIR%%/docs/pt_BR/images/MatchesPane_25.png
%%DATADIR%%/docs/pt_BR/images/Maximize.gif
%%DATADIR%%/docs/pt_BR/images/Minimize.gif
%%DATADIR%%/docs/pt_BR/images/NewProject.png
%%DATADIR%%/docs/pt_BR/images/NewProject_26.png
%%DATADIR%%/docs/pt_BR/images/Restore.gif
%%DATADIR%%/docs/pt_BR/images/Undock.gif
%%DATADIR%%/docs/pt_BR/images/tagged_segment.png
%%DATADIR%%/docs/pt_BR/images/tagged_segment_target.png
%%DATADIR%%/docs/pt_BR/index.html
%%DATADIR%%/docs/pt_BR/instantStartGuide.html
%%DATADIR%%/docs/pt_BR/instantStartGuideNoTOC.html
%%DATADIR%%/docs/pt_BR/keyboardShortcuts.html
%%DATADIR%%/docs/pt_BR/legalNotices.html
%%DATADIR%%/docs/pt_BR/license.txt
%%DATADIR%%/docs/pt_BR/menu.html
%%DATADIR%%/docs/pt_BR/plainText.html
%%DATADIR%%/docs/pt_BR/preventingDataLoss.html
%%DATADIR%%/docs/pt_BR/projectProperties.html
%%DATADIR%%/docs/pt_BR/searches.html
%%DATADIR%%/docs/pt_BR/segmentation.html
%%DATADIR%%/docs/pt_BR/translationEditing.html
%%DATADIR%%/docs/pt_BR/translationMemories.html
%%DATADIR%%/docs/pt_BR/userInterface.html
%%DATADIR%%/docs/pt_BR/version.properties
%%DATADIR%%/docs/pt_BR/website.html
%%DATADIR%%/docs/ru/OmegaT.css
%%DATADIR%%/docs/ru/appendix.LanguageToolPlugin.inOmegaT.html
%%DATADIR%%/docs/ru/appendix.ScriptingPlugin.inOmegaT.html
%%DATADIR%%/docs/ru/appendix.TeamProjects.html
%%DATADIR%%/docs/ru/appendix.TokenizerPlugin.inOmegaT.html
%%DATADIR%%/docs/ru/appendix.acknowledgements.html
%%DATADIR%%/docs/ru/appendix.keyboard.html
%%DATADIR%%/docs/ru/appendix.languages.html
%%DATADIR%%/docs/ru/appendix.legal.notices.html
%%DATADIR%%/docs/ru/appendix.shortcut.custom.html
%%DATADIR%%/docs/ru/appendix.website.html
%%DATADIR%%/docs/ru/chapter.about.OmegaT.html
%%DATADIR%%/docs/ru/chapter.dictionaries.html
%%DATADIR%%/docs/ru/chapter.file.filters.html
%%DATADIR%%/docs/ru/chapter.files.and.directories.html
%%DATADIR%%/docs/ru/chapter.files.to.translate.html
%%DATADIR%%/docs/ru/chapter.formatted.text.html
%%DATADIR%%/docs/ru/chapter.glossaries.html
%%DATADIR%%/docs/ru/chapter.installing.and.running.html
%%DATADIR%%/docs/ru/chapter.instant.start.guide.html
%%DATADIR%%/docs/ru/chapter.machine.translate.html
%%DATADIR%%/docs/ru/chapter.menu.html
%%DATADIR%%/docs/ru/chapter.misc.html
%%DATADIR%%/docs/ru/chapter.plain.text.html
%%DATADIR%%/docs/ru/chapter.project.properties.html
%%DATADIR%%/docs/ru/chapter.regexp.html
%%DATADIR%%/docs/ru/chapter.searches.html
%%DATADIR%%/docs/ru/chapter.segmentation.html
%%DATADIR%%/docs/ru/chapter.spellchecker.html
%%DATADIR%%/docs/ru/chapter.translation.editing.html
%%DATADIR%%/docs/ru/chapter.translation.memories.html
%%DATADIR%%/docs/ru/chapter.user.interface.html
%%DATADIR%%/docs/ru/images/AppleKey.gif
%%DATADIR%%/docs/ru/images/AsciiFilteroptions.jpg
%%DATADIR%%/docs/ru/images/Comments_25.png
%%DATADIR%%/docs/ru/images/DictMerriamWebster.png
%%DATADIR%%/docs/ru/images/Dock.gif
%%DATADIR%%/docs/ru/images/EditingBehaviourOptions.png
%%DATADIR%%/docs/ru/images/EditingBehaviourOptions25.png
%%DATADIR%%/docs/ru/images/GlossaryEntry_25.png
%%DATADIR%%/docs/ru/images/GlossaryPane_25.png
%%DATADIR%%/docs/ru/images/InstantGuide_1.png
%%DATADIR%%/docs/ru/images/InstantGuide_2.png
%%DATADIR%%/docs/ru/images/LanguageToolExample.png
%%DATADIR%%/docs/ru/images/MatchStatistics.png
%%DATADIR%%/docs/ru/images/MatchesPaneSetup.png
%%DATADIR%%/docs/ru/images/MatchesPane_25.png
%%DATADIR%%/docs/ru/images/Maximize.gif
%%DATADIR%%/docs/ru/images/Restore.gif
%%DATADIR%%/docs/ru/images/Minimize.gif
%%DATADIR%%/docs/ru/images/MobyDick.png
%%DATADIR%%/docs/ru/images/MultiTerm_Glossary_25.png
%%DATADIR%%/docs/ru/images/NewProject_25.png
%%DATADIR%%/docs/ru/images/NewProject_26.png
%%DATADIR%%/docs/ru/images/OmT_Cyrillic.png
%%DATADIR%%/docs/ru/images/OmT_Japanese.png
%%DATADIR%%/docs/ru/images/OmegaT_icon.png
%%DATADIR%%/docs/ru/images/OmegaT_panes_25.png
%%DATADIR%%/docs/ru/images/OmegaT_projects_and_subdirectories.png
%%DATADIR%%/docs/ru/images/Omegatproject.png
%%DATADIR%%/docs/ru/images/OptionsTabValidation_25.png
%%DATADIR%%/docs/ru/images/OptionsTagValidation_25.png
%%DATADIR%%/docs/ru/images/RegexTester.png
%%DATADIR%%/docs/ru/images/ScriptingDialog.png
%%DATADIR%%/docs/ru/images/SpellcheckerSetup_25.png
%%DATADIR%%/docs/ru/images/TagValidation.png
%%DATADIR%%/docs/ru/images/SpellcheckingText.png
%%DATADIR%%/docs/ru/images/StatisticsWindow_25.png
%%DATADIR%%/docs/ru/images/TagValidator.png
%%DATADIR%%/docs/ru/images/Team_projects_Add.png
%%DATADIR%%/docs/ru/images/Team_projects_checkout.png
%%DATADIR%%/docs/ru/images/Team_projects_checkoutAddFolder.png
%%DATADIR%%/docs/ru/images/Team_projects_checkoutSVNupdate.png
%%DATADIR%%/docs/ru/images/Team_projects_inSync.png
%%DATADIR%%/docs/ru/images/Team_projects_initialCommit.png
%%DATADIR%%/docs/ru/images/TextSearch25.png
%%DATADIR%%/docs/ru/images/TortoiseExplorerExtension.png
%%DATADIR%%/docs/ru/images/Undock.gif
%%DATADIR%%/docs/ru/images/saveglossary.png
%%DATADIR%%/docs/ru/images/tagged_segment.png
%%DATADIR%%/docs/ru/images/tagged_segment_target.png
%%DATADIR%%/docs/ru/index.html
%%DATADIR%%/docs/ru/instantStartGuideNoTOC.html
%%DATADIR%%/docs/ru/ix01.html
%%DATADIR%%/docs/ru/version.properties
%%DATADIR%%/docs/sh/OmegaT.css
%%DATADIR%%/docs/sh/aboutOmegaT.html
%%DATADIR%%/docs/sh/fileFilters.html
%%DATADIR%%/docs/sh/filesAndDirectories.html
%%DATADIR%%/docs/sh/filesToTranslate.html
%%DATADIR%%/docs/sh/fontSettings.html
%%DATADIR%%/docs/sh/formattedText.html
%%DATADIR%%/docs/sh/glossaries.html
%%DATADIR%%/docs/sh/images/AppleKey.gif
%%DATADIR%%/docs/sh/images/Dock.gif
%%DATADIR%%/docs/sh/images/Maximize.gif
%%DATADIR%%/docs/sh/images/Minimize.gif
%%DATADIR%%/docs/sh/images/NewProject.png
%%DATADIR%%/docs/sh/images/Restore.gif
%%DATADIR%%/docs/sh/images/Undock.gif
%%DATADIR%%/docs/sh/index.html
%%DATADIR%%/docs/sh/installingAndRunning.html
%%DATADIR%%/docs/sh/instantStartGuide.html
%%DATADIR%%/docs/sh/instantStartGuideNoTOC.html
%%DATADIR%%/docs/sh/languages.html
%%DATADIR%%/docs/sh/legalNotices.html
%%DATADIR%%/docs/sh/license.txt
%%DATADIR%%/docs/sh/menu.html
%%DATADIR%%/docs/sh/plainText.html
%%DATADIR%%/docs/sh/preventingDataLoss.html
%%DATADIR%%/docs/sh/projectProperties.html
%%DATADIR%%/docs/sh/regexp.html
%%DATADIR%%/docs/sh/searches.html
%%DATADIR%%/docs/sh/segmentation.html
%%DATADIR%%/docs/sh/translationEditing.html
%%DATADIR%%/docs/sh/translationMemories.html
%%DATADIR%%/docs/sh/userInterface.html
%%DATADIR%%/docs/sh/version.properties
%%DATADIR%%/docs/sh/website.html
%%DATADIR%%/docs/sk/OmegaT.css
%%DATADIR%%/docs/sk/aboutOmegaT.html
%%DATADIR%%/docs/sk/fileFilters.html
%%DATADIR%%/docs/sk/filesAndDirectories.html
%%DATADIR%%/docs/sk/filesToTranslate.html
%%DATADIR%%/docs/sk/fontSettings.html
%%DATADIR%%/docs/sk/formattedText.html
%%DATADIR%%/docs/sk/glossaries.html
%%DATADIR%%/docs/sk/images/AppleKey.gif
%%DATADIR%%/docs/sk/images/Dock.gif
%%DATADIR%%/docs/sk/images/Maximize.gif
%%DATADIR%%/docs/sk/images/Minimize.gif
%%DATADIR%%/docs/sk/images/NewProject.png
%%DATADIR%%/docs/sk/images/Restore.gif
%%DATADIR%%/docs/sk/images/Undock.gif
%%DATADIR%%/docs/sk/index.html
%%DATADIR%%/docs/sk/installingAndRunning.html
%%DATADIR%%/docs/sk/instantStartGuide.html
%%DATADIR%%/docs/sk/instantStartGuideNoTOC.html
%%DATADIR%%/docs/sk/languages.html
%%DATADIR%%/docs/sk/legalNotices.html
%%DATADIR%%/docs/sk/license.txt
%%DATADIR%%/docs/sk/menu.html
%%DATADIR%%/docs/sk/plainText.html
%%DATADIR%%/docs/sk/preventingDataLoss.html
%%DATADIR%%/docs/sk/projectProperties.html
%%DATADIR%%/docs/sk/regexp.html
%%DATADIR%%/docs/sk/searches.html
%%DATADIR%%/docs/sk/segmentation.html
%%DATADIR%%/docs/sk/translationEditing.html
%%DATADIR%%/docs/sk/translationMemories.html
%%DATADIR%%/docs/sk/userInterface.html
%%DATADIR%%/docs/sk/version.properties
%%DATADIR%%/docs/sk/website.html
%%DATADIR%%/docs/sl/GoogleTranslate.html
%%DATADIR%%/docs/sl/OmegaT.css
%%DATADIR%%/docs/sl/aboutOmegaT.html
%%DATADIR%%/docs/sl/consoleMode.html
%%DATADIR%%/docs/sl/dictionaries.html
%%DATADIR%%/docs/sl/fileFilters.html
%%DATADIR%%/docs/sl/filesAndDirectories.html
%%DATADIR%%/docs/sl/filesToTranslate.html
%%DATADIR%%/docs/sl/fontSettings.html
%%DATADIR%%/docs/sl/formattedText.html
%%DATADIR%%/docs/sl/glossaries.html
%%DATADIR%%/docs/sl/images/AppleKey.gif
%%DATADIR%%/docs/sl/images/AsciiFilteroptions.png
%%DATADIR%%/docs/sl/images/DictMerriamWebster.png
%%DATADIR%%/docs/sl/images/Dock.gif
%%DATADIR%%/docs/sl/images/Glossary_pane.png
%%DATADIR%%/docs/sl/images/Main_pane_counters.png
%%DATADIR%%/docs/sl/images/MatchesPane.png
%%DATADIR%%/docs/sl/images/Maximize.gif
%%DATADIR%%/docs/sl/images/Minimize.gif
%%DATADIR%%/docs/sl/images/MobyDick.png
%%DATADIR%%/docs/sl/images/NewProject.png
%%DATADIR%%/docs/sl/images/OmegaT_icon.png
%%DATADIR%%/docs/sl/images/OmegaT_panes.png
%%DATADIR%%/docs/sl/images/OmegaT_projects_and_subdirectories.png
%%DATADIR%%/docs/sl/images/Omegatproject.png
%%DATADIR%%/docs/sl/images/ProjectFiles.png
%%DATADIR%%/docs/sl/images/Restore.gif
%%DATADIR%%/docs/sl/images/TextSearch.png
%%DATADIR%%/docs/sl/images/SpellcheckerSetup2.png
%%DATADIR%%/docs/sl/images/SpellcheckingText.png
%%DATADIR%%/docs/sl/images/TagValidator.png
%%DATADIR%%/docs/sl/images/Undock.gif
%%DATADIR%%/docs/sl/images/saveglossary.jpg
%%DATADIR%%/docs/sl/images/tagged_segment.png
%%DATADIR%%/docs/sl/images/tagged_segment_target.png
%%DATADIR%%/docs/sl/index.html
%%DATADIR%%/docs/sl/installingAndRunning.html
%%DATADIR%%/docs/sl/instantStartGuide.html
%%DATADIR%%/docs/sl/instantStartGuideNoTOC.html
%%DATADIR%%/docs/sl/languages.html
%%DATADIR%%/docs/sl/legalNotices.html
%%DATADIR%%/docs/sl/license.txt
%%DATADIR%%/docs/sl/menu.html
%%DATADIR%%/docs/sl/plainText.html
%%DATADIR%%/docs/sl/preventingDataLoss.html
%%DATADIR%%/docs/sl/projectProperties.html
%%DATADIR%%/docs/sl/regexp.html
%%DATADIR%%/docs/sl/searches.html
%%DATADIR%%/docs/sl/segmentation.html
%%DATADIR%%/docs/sl/spellchecker.html
%%DATADIR%%/docs/sl/tokenizers.html
%%DATADIR%%/docs/sl/translationEditing.html
%%DATADIR%%/docs/sl/translationMemories.html
%%DATADIR%%/docs/sl/userInterface.html
%%DATADIR%%/docs/sl/version.properties
%%DATADIR%%/docs/sl/website.html
%%DATADIR%%/docs/sl/xindex.html
%%DATADIR%%/docs/sq/aboutOmegaT.html
%%DATADIR%%/docs/sq/fileFilters.html
%%DATADIR%%/docs/sq/fileFormats.html
%%DATADIR%%/docs/sq/filesToTranslate.html
%%DATADIR%%/docs/sq/fontSettings.html
%%DATADIR%%/docs/sq/formattedText.html
%%DATADIR%%/docs/sq/glossaries.html
%%DATADIR%%/docs/sq/images/AppleKey.gif
%%DATADIR%%/docs/sq/images/Dock.gif
%%DATADIR%%/docs/sq/images/Maximize.gif
%%DATADIR%%/docs/sq/images/Minimize.gif
%%DATADIR%%/docs/sq/images/NewProject.png
%%DATADIR%%/docs/sq/images/Restore.gif
%%DATADIR%%/docs/sq/images/Undock.gif
%%DATADIR%%/docs/sq/index.html
%%DATADIR%%/docs/sq/instantStartGuide.html
%%DATADIR%%/docs/sq/instantStartGuideNoTOC.html
%%DATADIR%%/docs/sq/keyboardShortcuts.html
%%DATADIR%%/docs/sq/legalNotices.html
%%DATADIR%%/docs/sq/license.txt
%%DATADIR%%/docs/sq/menu.html
%%DATADIR%%/docs/sq/plainText.html
%%DATADIR%%/docs/sq/preventingDataLoss.html
%%DATADIR%%/docs/sq/projectProperties.html
%%DATADIR%%/docs/sq/searches.html
%%DATADIR%%/docs/sq/segmentation.html
%%DATADIR%%/docs/sq/translationEditing.html
%%DATADIR%%/docs/sq/translationMemories.html
%%DATADIR%%/docs/sq/userInterface.html
%%DATADIR%%/docs/sq/version.properties
%%DATADIR%%/docs/sq/website.html
%%DATADIR%%/docs/sv/OmegaT.css
%%DATADIR%%/docs/sv/images/MatchesPane.png
%%DATADIR%%/docs/sv/images/NewProject.png
%%DATADIR%%/docs/sv/images/tagged_segment.png
%%DATADIR%%/docs/sv/images/tagged_segment_target.png
%%DATADIR%%/docs/sv/instantStartGuideNoTOC.html
%%DATADIR%%/docs/sv/license.txt
%%DATADIR%%/docs/sv/version.properties
%%DATADIR%%/docs/tr/OmegaT.css
%%DATADIR%%/docs/tr/images/NewProject.png
%%DATADIR%%/docs/tr/images/tagged_segment.png
%%DATADIR%%/docs/tr/images/tagged_segment_target.png
%%DATADIR%%/docs/tr/instantStartGuideNoTOC.html
%%DATADIR%%/docs/tr/version.properties
%%DATADIR%%/docs/zh_CN/OmegaT.css
%%DATADIR%%/docs/zh_CN/appendix.acknowledgements.html
%%DATADIR%%/docs/zh_CN/appendix.keyboard.html
%%DATADIR%%/docs/zh_CN/appendix.languages.html
%%DATADIR%%/docs/zh_CN/appendix.legal.notices.html
%%DATADIR%%/docs/zh_CN/appendix.website.html
%%DATADIR%%/docs/zh_CN/chapter.about.OmegaT.html
%%DATADIR%%/docs/zh_CN/chapter.dictionaries.html
%%DATADIR%%/docs/zh_CN/chapter.file.filters.html
%%DATADIR%%/docs/zh_CN/chapter.files.and.directories.html
%%DATADIR%%/docs/zh_CN/chapter.files.to.translate.html
%%DATADIR%%/docs/zh_CN/chapter.font.html
%%DATADIR%%/docs/zh_CN/chapter.formatted.text.html
%%DATADIR%%/docs/zh_CN/chapter.glossaries.html
%%DATADIR%%/docs/zh_CN/chapter.installing.and.running.html
%%DATADIR%%/docs/zh_CN/chapter.instant.start.guide.html
%%DATADIR%%/docs/zh_CN/chapter.machine.translate.html
%%DATADIR%%/docs/zh_CN/chapter.menu.html
%%DATADIR%%/docs/zh_CN/chapter.misc.html
%%DATADIR%%/docs/zh_CN/chapter.plain.text.html
%%DATADIR%%/docs/zh_CN/chapter.project.properties.html
%%DATADIR%%/docs/zh_CN/chapter.regexp.html
%%DATADIR%%/docs/zh_CN/chapter.searches.html
%%DATADIR%%/docs/zh_CN/chapter.segmentation.html
%%DATADIR%%/docs/zh_CN/chapter.spellchecker.html
%%DATADIR%%/docs/zh_CN/chapter.translation.editing.html
%%DATADIR%%/docs/zh_CN/chapter.translation.memories.html
%%DATADIR%%/docs/zh_CN/chapter.user.interface.html
%%DATADIR%%/docs/zh_CN/images/AppleKey.gif
%%DATADIR%%/docs/zh_CN/images/AsciiFilteroptions.png
%%DATADIR%%/docs/zh_CN/images/DictMerriamWebster.png
%%DATADIR%%/docs/zh_CN/images/Dock.gif
%%DATADIR%%/docs/zh_CN/images/EditingBehaviourOptions.png
%%DATADIR%%/docs/zh_CN/images/Glossary_pane.png
%%DATADIR%%/docs/zh_CN/images/MatchStatistics.png
%%DATADIR%%/docs/zh_CN/images/MatchesPane.png
%%DATADIR%%/docs/zh_CN/images/Maximize.gif
%%DATADIR%%/docs/zh_CN/images/Minimize.gif
%%DATADIR%%/docs/zh_CN/images/MobyDick.png
%%DATADIR%%/docs/zh_CN/images/MultiTerm_Glossary.png
%%DATADIR%%/docs/zh_CN/images/NewProject.png
%%DATADIR%%/docs/zh_CN/images/OmT_Cyrillic.png
%%DATADIR%%/docs/zh_CN/images/OmT_Japanese.png
%%DATADIR%%/docs/zh_CN/images/OmegaT_icon.png
%%DATADIR%%/docs/zh_CN/images/OmegaT_panes.png
%%DATADIR%%/docs/zh_CN/images/Omegatproject.png
%%DATADIR%%/docs/zh_CN/images/OmegaT_projects_and_subdirectories.png
%%DATADIR%%/docs/zh_CN/images/RegexTester.png
%%DATADIR%%/docs/zh_CN/images/Restore.gif
%%DATADIR%%/docs/zh_CN/images/SpellcheckerSetup2.png
%%DATADIR%%/docs/zh_CN/images/SpellcheckingText.png
%%DATADIR%%/docs/zh_CN/images/TagValidation.png
%%DATADIR%%/docs/zh_CN/images/TagValidator.png
%%DATADIR%%/docs/zh_CN/images/TextSearch.png
%%DATADIR%%/docs/zh_CN/images/Undock.gif
%%DATADIR%%/docs/zh_CN/images/saveglossary.png
%%DATADIR%%/docs/zh_CN/images/tagged_segment.png
%%DATADIR%%/docs/zh_CN/images/tagged_segment_target.png
%%DATADIR%%/docs/zh_CN/index.html
%%DATADIR%%/docs/zh_CN/instantStartGuideNoTOC.html
%%DATADIR%%/docs/zh_CN/ix01.html
%%DATADIR%%/docs/zh_CN/license.txt
%%DATADIR%%/docs/zh_CN/version.properties
%%DATADIR%%/docs/zh_TW/images/NewProject.png
%%DATADIR%%/docs/zh_TW/instantStartGuideNoTOC.html
%%DATADIR%%/docs/zh_TW/version.properties
%%DATADIR%%/images/OmegaT.gif
%%DATADIR%%/images/OmegaT.ico
%%DATADIR%%/images/OmegaT.png
%%DATADIR%%/images/OmegaT_small.gif
%%DATADIR%%/omegat.prefs
@dirrm %%DATADIR%%/plugins
@dirrm %%DATADIR%%/native
@dirrm %%DATADIR%%/lib
@dirrm %%DATADIR%%/images
@dirrm %%DATADIR%%/docs/zh_TW/images
@dirrm %%DATADIR%%/docs/zh_TW
@dirrm %%DATADIR%%/docs/zh_CN/images
@dirrm %%DATADIR%%/docs/zh_CN
@dirrm %%DATADIR%%/docs/tr/images
@dirrm %%DATADIR%%/docs/tr
@dirrm %%DATADIR%%/docs/sv/images
@dirrm %%DATADIR%%/docs/sv
@dirrm %%DATADIR%%/docs/sq/images
@dirrm %%DATADIR%%/docs/sq
@dirrm %%DATADIR%%/docs/sl/images
@dirrm %%DATADIR%%/docs/sl
@dirrm %%DATADIR%%/docs/sk/images
@dirrm %%DATADIR%%/docs/sk
@dirrm %%DATADIR%%/docs/sh/images
@dirrm %%DATADIR%%/docs/sh
@dirrm %%DATADIR%%/docs/ru/images
@dirrm %%DATADIR%%/docs/ru
@dirrm %%DATADIR%%/docs/pt_BR/images
@dirrm %%DATADIR%%/docs/pt_BR
@dirrm %%DATADIR%%/docs/pl/images
@dirrm %%DATADIR%%/docs/pl
@dirrm %%DATADIR%%/docs/nl/images
@dirrm %%DATADIR%%/docs/nl
@dirrm %%DATADIR%%/docs/ja/images
@dirrm %%DATADIR%%/docs/ja
@dirrm %%DATADIR%%/docs/it/images
@dirrm %%DATADIR%%/docs/it
@dirrm %%DATADIR%%/docs/id/images
@dirrm %%DATADIR%%/docs/id
@dirrm %%DATADIR%%/docs/ia/images
@dirrm %%DATADIR%%/docs/ia
@dirrm %%DATADIR%%/docs/hu/images
@dirrm %%DATADIR%%/docs/hu
@dirrm %%DATADIR%%/docs/gl/images
@dirrm %%DATADIR%%/docs/gl
@dirrm %%DATADIR%%/docs/fr/images
@dirrm %%DATADIR%%/docs/fr
@dirrm %%DATADIR%%/docs/eu/images
@dirrm %%DATADIR%%/docs/eu
@dirrm %%DATADIR%%/docs/es/images
@dirrm %%DATADIR%%/docs/es
@dirrm %%DATADIR%%/docs/eo
@dirrm %%DATADIR%%/docs/en/images
@dirrm %%DATADIR%%/docs/en
@dirrm %%DATADIR%%/docs/el/images
@dirrm %%DATADIR%%/docs/el
@dirrm %%DATADIR%%/docs/de/images
@dirrm %%DATADIR%%/docs/de
@dirrm %%DATADIR%%/docs/da/images
@dirrm %%DATADIR%%/docs/da
@dirrm %%DATADIR%%/docs/cy/images
@dirrm %%DATADIR%%/docs/cy
@dirrm %%DATADIR%%/docs/cs/images
@dirrm %%DATADIR%%/docs/cs
@dirrm %%DATADIR%%/docs/ca/images
@dirrm %%DATADIR%%/docs/ca
@dirrm %%DATADIR%%/docs/be
@dirrm %%DATADIR%%/docs/ar/images
@dirrm %%DATADIR%%/docs/ar
@dirrm %%DATADIR%%/docs
@dirrm %%DATADIR%%/