]> git.lyx.org Git - lyx.git/blob - development/scons/scons_manifest.py
- new Spanish translation of the math manual
[lyx.git] / development / scons / scons_manifest.py
1 from SCons.Util import Split
2
3 TOP_extra_files = Split('''
4     ABOUT-NLS
5     ANNOUNCE
6     COPYING
7     INSTALL
8     INSTALL.MacOSX
9     INSTALL.Win32
10     INSTALL.autoconf
11     INSTALL.cmake
12     INSTALL.scons
13     Makefile.am
14     NEWS
15     README
16     README.Cygwin
17     README.Win32
18     README.localization
19     RELEASE-NOTES
20     UPGRADING
21     autogen.sh
22     config.log
23     configure.ac
24     lyx.man
25     rename.sh
26     scons_lyx.log
27 ''')
28
29
30 src_header_files = Split('''
31     ASpell_local.h
32     Author.h
33     BaseClassList.h
34     BiblioInfo.h
35     Bidi.h
36     Box.h
37     BranchList.h
38     Buffer.h
39     BufferList.h
40     BufferParams.h
41     BufferView.h
42     Bullet.h
43     Changes.h
44     Chktex.h
45     CmdDef.h
46     Color.h
47     ColorCode.h
48     Converter.h
49     ConverterCache.h
50     CoordCache.h
51     Counters.h
52     Cursor.h
53     CursorSlice.h
54     CutAndPaste.h
55     DepTable.h
56     Dimension.h
57     DispatchResult.h
58     DocIterator.h
59     EmbeddedFiles.h
60     Encoding.h
61     ErrorList.h
62     Exporter.h
63     FloatList.h
64     Floating.h
65     Font.h
66     FontEnums.h
67     FontInfo.h
68     FontIterator.h
69     FontList.h
70     Format.h
71     FuncRequest.h
72     FuncStatus.h
73     Graph.h
74     ISpell.h
75     InsetIterator.h
76     InsetList.h
77     Intl.h
78     KeyMap.h
79     KeySequence.h
80     LaTeX.h
81     LaTeXFeatures.h
82     Language.h
83     Layout.h
84     LayoutEnums.h
85     LayoutPtr.h
86     Length.h
87     Lexer.h
88     LyX.h
89     LyXAction.h
90     LyXFunc.h
91     LyXRC.h
92     LyXVC.h
93     MenuBackend.h
94     MetricsInfo.h
95     ModuleList.h
96     Mover.h
97     OutputParams.h
98     ParIterator.h
99     Paragraph.h
100     ParagraphList.h
101     ParagraphMetrics.h
102     ParagraphParameters.h
103     PDFOptions.h
104     PrinterParams.h
105     PSpell.h
106     Row.h
107     Section.h
108     Server.h
109     ServerSocket.h
110     Session.h
111     Spacing.h
112     SpellBase.h
113     TexRow.h
114     Text.h
115     TextClass.h
116     TextMetrics.h
117     Thesaurus.h
118     TocBackend.h
119     ToolbarBackend.h
120     Trans.h
121     Undo.h
122     VCBackend.h
123     VSpace.h
124     Variables.h
125     WordLangTuple.h
126     buffer_funcs.h
127     factory.h
128     lfuns.h
129     lyxfind.h
130     output.h
131     output_docbook.h
132     output_latex.h
133     output_plaintext.h
134     paper.h
135     paragraph_funcs.h
136     rowpainter.h
137     sgml.h
138     update_flags.h
139     version.h
140     WordList.h
141 ''')
142
143
144 src_pre_files = Split('''
145     Author.cpp
146     BaseClassList.cpp
147     BiblioInfo.cpp
148     Bidi.cpp
149     BranchList.cpp
150     Buffer.cpp
151     BufferList.cpp
152     BufferParams.cpp
153     BufferView.cpp
154     Bullet.cpp
155     Changes.cpp
156     Chktex.cpp
157     CmdDef.cpp
158     Color.cpp
159     Converter.cpp
160     ConverterCache.cpp
161     CoordCache.cpp
162     Counters.cpp
163     Cursor.cpp
164     CursorSlice.cpp
165     CutAndPaste.cpp
166     DepTable.cpp
167     DocIterator.cpp
168     EmbeddedFiles.cpp
169     Encoding.cpp
170     ErrorList.cpp
171     Exporter.cpp
172     FloatList.cpp
173     Floating.cpp
174     Font.cpp
175     FontInfo.cpp
176     FontIterator.cpp
177     FontList.cpp
178     Format.cpp
179     FuncRequest.cpp
180     FuncStatus.cpp
181     Graph.cpp
182     InsetIterator.cpp
183     InsetList.cpp
184     Intl.cpp
185     KeyMap.cpp
186     KeySequence.cpp
187     LaTeX.cpp
188     LaTeXFeatures.cpp
189     Language.cpp
190     Layout.cpp
191     Length.cpp
192     Lexer.cpp
193     LyX.cpp
194     LyXAction.cpp
195     LyXFunc.cpp
196     LyXRC.cpp
197     LyXVC.cpp
198     MenuBackend.cpp
199     MetricsInfo.cpp
200     Mover.cpp
201     OutputParams.cpp
202     PDFOptions.cpp
203     ParIterator.cpp
204     Paragraph.cpp
205     ParagraphMetrics.cpp
206     ParagraphParameters.cpp
207     Row.cpp
208     Server.cpp
209     ServerSocket.cpp
210     Session.cpp
211     Spacing.cpp
212     TexRow.cpp
213     Text.cpp
214     Text2.cpp
215     Text3.cpp
216     TextClass.cpp
217     TextMetrics.cpp
218     TocBackend.cpp
219     ToolbarBackend.cpp
220     Trans.cpp
221     Undo.cpp
222     VCBackend.cpp
223     VSpace.cpp
224     boost.cpp
225     buffer_funcs.cpp
226     factory.cpp
227     lengthcommon.cpp
228     lyxfind.cpp
229     output.cpp
230     output_docbook.cpp
231     output_latex.cpp
232     output_plaintext.cpp
233     paragraph_funcs.cpp
234     rowpainter.cpp
235     sgml.cpp
236     version.cpp
237     WordList.cpp
238 ''')
239
240
241 src_post_files = Split('''
242     Box.cpp
243     Dimension.cpp
244     ModuleList.cpp
245     PrinterParams.cpp
246     SpellBase.cpp
247     Thesaurus.cpp
248 ''')
249
250
251 src_extra_src_files = Split('''
252     ASpell.cpp
253     ISpell.cpp
254     PSpell.cpp
255     Section.cpp
256     Variables.cpp
257     main.cpp
258 ''')
259
260
261 src_extra_files = Split('''
262     Makefile.am
263     pch.h
264 ''')
265
266
267 src_client_header_files = Split('''
268     Messages.h
269     debug.h
270 ''')
271
272
273 src_client_files = Split('''
274     Messages.cpp
275     boost.cpp
276     client.cpp
277     debug.cpp
278     gettext.cpp
279 ''')
280
281
282 src_client_extra_files = Split('''
283     Makefile.am
284     lyxclient.man
285     pch.h
286 ''')
287
288
289 src_support_header_files = Split('''
290     ExceptionMessage.h
291     FileFilterList.h
292     FileMonitor.h
293     FileName.h
294     ForkedCalls.h
295     Messages.h
296     Package.h
297     Path.h
298     RandomAccessList.h
299     SignalSlot.h
300     SignalSlotPrivate.h
301     Systemcall.h
302     Timeout.h
303     Translator.h
304     convert.h
305     copied_ptr.h
306     debug.h
307     docstream.h
308     docstring.h
309     environment.h
310     filetools.h
311     gettext.h
312     gzstream.h
313     limited_stack.h
314     lstrings.h
315     lyxalgo.h
316     lyxlib.h
317     lyxtime.h
318     os.h
319     os_win32.h
320     qstring_helpers.h
321     socktools.h
322     textutils.h
323     types.h
324     unicode.h
325     userinfo.h
326 ''')
327
328
329 src_support_files = Split('''
330     FileFilterList.cpp
331     FileMonitor.cpp
332     FileName.cpp
333     ForkedCalls.cpp
334     Messages.cpp
335     Package.cpp
336     Path.cpp
337     SignalSlot.cpp
338     SignalSlotPrivate.cpp
339     Systemcall.cpp
340     Timeout.cpp
341     convert.cpp
342     debug.cpp
343     docstream.cpp
344     docstring.cpp
345     environment.cpp
346     filetools.cpp
347     gzstream.cpp
348     gettext.cpp
349     kill.cpp
350     lstrings.cpp
351     lyxsum.cpp
352     lyxtime.cpp
353     os.cpp
354     socktools.cpp
355     unicode.cpp
356     userinfo.cpp
357 ''')
358
359
360 src_support_extra_header_files = Split('''
361     
362 ''')
363
364
365 src_support_extra_src_files = Split('''
366     atexit.c
367     os_cygwin.cpp
368     os_unix.cpp
369     os_win32.cpp
370     strerror.c
371 ''')
372
373
374 src_support_extra_files = Split('''
375     Makefile.am
376     pch.h
377 ''')
378
379
380 src_support_tests_extra_files = Split('''
381     Makefile.am
382     boost.cpp
383     convert.cpp
384     filetools.cpp
385     lstrings.cpp
386     pch.h
387     test_convert
388     test_filetools
389     test_lstrings
390 ''')
391
392
393 src_support_tests_regfiles_extra_files = Split('''
394     convert
395     filetools
396     lstrings
397 ''')
398
399
400 src_support_minizip_header_files = Split('''
401     crypt.h
402     ioapi.h 
403     iowin32.h
404     unzip.h
405     zip.h
406 ''')
407
408
409 src_support_minizip_files = Split('''
410     ioapi.c
411     iowin32.c
412     zip.c
413     zipunzip.cpp
414     unzip.c
415 ''')
416
417
418 src_graphics_header_files = Split('''
419     GraphicsCache.h
420     GraphicsCacheItem.h
421     GraphicsConverter.h
422     GraphicsImage.h
423     GraphicsLoader.h
424     GraphicsParams.h
425     GraphicsTypes.h
426     PreviewImage.h
427     PreviewLoader.h
428     Previews.h
429 ''')
430
431
432 src_graphics_files = Split('''
433     GraphicsCache.cpp
434     GraphicsCacheItem.cpp
435     GraphicsConverter.cpp
436     GraphicsImage.cpp
437     GraphicsLoader.cpp
438     GraphicsParams.cpp
439     GraphicsTypes.cpp
440     PreviewImage.cpp
441     PreviewLoader.cpp
442     Previews.cpp
443 ''')
444
445
446 src_graphics_extra_files = Split('''
447     Makefile.am
448     pch.h
449 ''')
450
451
452 src_mathed_header_files = Split('''
453     CommandInset.h
454     InsetMath.h
455     InsetMathAMSArray.h
456     InsetMathArray.h
457     InsetMathBig.h
458     InsetMathBoldSymbol.h
459     InsetMathBox.h
460     InsetMathBrace.h
461     InsetMathCases.h
462     InsetMathChar.h
463     InsetMathColor.h
464     InsetMathComment.h
465     InsetMathDecoration.h
466     InsetMathDelim.h
467     InsetMathDiff.h
468     InsetMathDots.h
469     InsetMathEnv.h
470     InsetMathExFunc.h
471     InsetMathExInt.h
472     InsetMathFont.h
473     InsetMathFontOld.h
474     InsetMathFrac.h
475     InsetMathGrid.h
476     InsetMathHull.h
477     InsetMathKern.h
478     InsetMathLefteqn.h
479     InsetMathLim.h
480     InsetMathMatrix.h
481     InsetMathNest.h
482     InsetMathNumber.h
483     InsetMathOverset.h
484     InsetMathPar.h
485     InsetMathPhantom.h
486     InsetMathRef.h
487     InsetMathRoot.h
488     InsetMathScript.h
489     InsetMathSize.h
490     InsetMathSpace.h
491     InsetMathSplit.h
492     InsetMathSqrt.h
493     InsetMathStackrel.h
494     InsetMathString.h
495     InsetMathSubstack.h
496     InsetMathSymbol.h
497     InsetMathTabular.h
498     InsetMathUnderset.h
499     InsetMathUnknown.h
500     InsetMathXArrow.h
501     InsetMathXYMatrix.h
502     MacroTable.h
503     MathAtom.h
504     MathAutoCorrect.h
505     MathData.h
506     MathExtern.h
507     MathFactory.h
508     MathGridInfo.h
509     MathMacro.h
510     MathMacroArgument.h
511     MathMacroTemplate.h
512     MathParser.h
513     MathStream.h
514     MathSupport.h
515     ReplaceData.h
516     TextPainter.h
517 ''')
518
519
520 src_mathed_files = Split('''
521     CommandInset.cpp
522     InsetMath.cpp
523     InsetMathAMSArray.cpp
524     InsetMathArray.cpp
525     InsetMathBig.cpp
526     InsetMathBoldSymbol.cpp
527     InsetMathBox.cpp
528     InsetMathBrace.cpp
529     InsetMathCases.cpp
530     InsetMathChar.cpp
531     InsetMathColor.cpp
532     InsetMathComment.cpp
533     InsetMathDecoration.cpp
534     InsetMathDelim.cpp
535     InsetMathDiff.cpp
536     InsetMathDots.cpp
537     InsetMathEnv.cpp
538     InsetMathExFunc.cpp
539     InsetMathExInt.cpp
540     InsetMathFont.cpp
541     InsetMathFontOld.cpp
542     InsetMathFrac.cpp
543     InsetMathGrid.cpp
544     InsetMathHull.cpp
545     InsetMathKern.cpp
546     InsetMathLefteqn.cpp
547     InsetMathLim.cpp
548     InsetMathMatrix.cpp
549     InsetMathNest.cpp
550     InsetMathNumber.cpp
551     InsetMathOverset.cpp
552     InsetMathPar.cpp
553     InsetMathPhantom.cpp
554     InsetMathRef.cpp
555     InsetMathRoot.cpp
556     InsetMathScript.cpp
557     InsetMathSize.cpp
558     InsetMathSpace.cpp
559     InsetMathSplit.cpp
560     InsetMathSqrt.cpp
561     InsetMathStackrel.cpp
562     InsetMathString.cpp
563     InsetMathSubstack.cpp
564     InsetMathSymbol.cpp
565     InsetMathTabular.cpp
566     InsetMathUnderset.cpp
567     InsetMathUnknown.cpp
568     InsetMathXArrow.cpp
569     InsetMathXYMatrix.cpp
570     MacroTable.cpp
571     MathAtom.cpp
572     MathAutoCorrect.cpp
573     MathData.cpp
574     MathExtern.cpp
575     MathFactory.cpp
576     MathMacro.cpp
577     MathMacroArgument.cpp
578     MathMacroTemplate.cpp
579     MathParser.cpp
580     MathStream.cpp
581     MathSupport.cpp
582     TextPainter.cpp
583 ''')
584
585
586 src_mathed_extra_files = Split('''
587     BUGS
588     InsetFormulaMacro.cpp
589     InsetFormulaMacro.h
590     InsetMathMBox.cpp
591     InsetMathMBox.h
592     InsetMathXYArrow.cpp
593     InsetMathXYArrow.h
594     Makefile.am
595     README
596     pch.h
597     texify
598 ''')
599
600
601 src_tex2lyx_header_files = Split('''
602     Context.h
603     Font.h
604     Parser.h
605     Spacing.h
606     tex2lyx.h
607 ''')
608
609
610 src_tex2lyx_files = Split('''
611     Context.cpp
612     Font.cpp
613     Parser.cpp
614     boost.cpp
615     gettext.cpp
616     lengthcommon.cpp
617     math.cpp
618     preamble.cpp
619     table.cpp
620     tex2lyx.cpp
621     text.cpp
622 ''')
623
624
625 src_tex2lyx_copied_header_files = Split('''
626     insets/InsetLayout.h
627 ''')
628
629
630 src_tex2lyx_copied_files = Split('''
631     Color.cpp
632     Counters.cpp
633     FloatList.cpp
634     Floating.cpp
635     Layout.cpp
636     Lexer.cpp
637     TextClass.cpp
638     insets/InsetLayout.cpp
639 ''')
640
641
642 src_tex2lyx_extra_files = Split('''
643     Makefile.am
644     pch.h
645     test-insets.tex
646     test-structure.tex
647     test.ltx
648     tex2lyx.man
649 ''')
650
651
652 src_frontends_header_files = Split('''
653     Application.h
654     Clipboard.h
655     FontLoader.h
656     FontMetrics.h
657     KeyModifier.h
658     KeySymbol.h
659     LyXView.h
660     Painter.h
661     Selection.h
662     WorkArea.h
663     WorkAreaManager.h
664     alert.h
665     mouse_state.h
666 ''')
667
668
669 src_frontends_files = Split('''
670     WorkAreaManager.cpp
671 ''')
672
673
674 src_frontends_extra_files = Split('''
675     Makefile.am
676     pch.h
677 ''')
678
679
680 src_frontends_controllers_extra_files = Split('''
681     Makefile.am
682     pch.h
683 ''')
684
685
686 src_frontends_controllers_tests_extra_files = Split('''
687     Makefile.am
688     biblio.cpp
689     boost.cpp
690     pch.h
691     test_biblio
692 ''')
693
694
695 src_frontends_controllers_tests_regfiles_extra_files = Split('''
696     biblio
697 ''')
698
699
700 src_frontends_qt4_header_files = Split('''
701         ButtonPolicy.h
702         Dialog.h
703     Action.h
704     BulletsModule.h
705     ButtonController.h
706     ColorCache.h
707     CustomizedWidgets.h
708     DialogView.h
709     DockView.h
710     EmptyTable.h
711     FileDialog.h
712     FloatPlacement.h
713     GuiAbout.h
714     GuiApplication.h
715     GuiBibitem.h
716     GuiBibtex.h
717     GuiBox.h
718     GuiBranches.h
719     GuiBranch.h
720     GuiChanges.h
721     GuiCharacter.h
722     GuiCharacter.h
723     GuiCitation.h
724     GuiClipboard.h
725     GuiCommandBuffer.h
726     GuiCommandEdit.h
727     GuiCompleter.h
728     GuiDelimiter.h
729     GuiDialog.h
730     GuiDocument.h
731     GuiErrorList.h
732     GuiERT.h
733     GuiExternal.h
734     GuiFloat.h
735     GuiFontExample.h
736     GuiFontLoader.h
737     GuiGraphics.h
738     GuiGraphicsUi.h
739     GuiHyperlink.h
740     GuiIdListModel.h
741     GuiImage.h
742     GuiInclude.h
743     GuiKeySymbol.h
744     GuiLabel.h
745     GuiListings.h
746     GuiLog.h
747     GuiMath.h
748     GuiMathMatrix.h
749     GuiNomencl.h
750     GuiNote.h
751     GuiPainter.h
752     GuiParagraph.h
753     GuiPopupMenu.h
754     GuiPrefs.h
755     GuiPrint.h
756     GuiRef.h
757     GuiSearch.h
758     GuiSelection.h
759     GuiSelectionManager.h
760     GuiSendto.h
761     GuiSetBorder.h
762     GuiShowFile.h
763     GuiSpellchecker.h
764     GuiSymbols.h
765     GuiTabularCreate.h
766     GuiTabular.h
767     GuiTexinfo.h
768     GuiThesaurus.h
769     GuiToc.h
770     GuiToolbar.h
771     GuiToolbars.h
772     GuiView.h
773     GuiViewSource.h
774     GuiVSpace.h
775     GuiWorkArea.h
776     GuiWrap.h
777     IconPalette.h
778     InsertTableWidget.h
779     LaTeXHighlighter.h
780     LengthCombo.h
781     LyXFileDialog.h
782     Menus.h
783     PanelStack.h
784     TocModel.h
785     TocWidget.h
786     Validator.h
787     qlkey.h
788     qt_helpers.h
789 ''')
790
791
792 src_frontends_qt4_files = Split('''
793         ButtonPolicy.cpp
794         Dialog.cpp
795     Action.cpp
796     BulletsModule.cpp
797     ButtonController.cpp
798     ColorCache.cpp
799     CustomizedWidgets.cpp
800     DialogView.cpp
801     EmptyTable.cpp
802     FileDialog.cpp
803     FloatPlacement.cpp
804     GuiAbout.cpp
805     GuiAlert.cpp
806     GuiApplication.cpp
807     GuiBibitem.cpp
808     GuiBibtex.cpp
809     GuiBox.cpp
810     GuiBranch.cpp
811     GuiBranches.cpp
812     GuiChanges.cpp
813     GuiCharacter.cpp
814     GuiCitation.cpp
815     GuiClipboard.cpp
816     GuiCommandBuffer.cpp
817     GuiCommandEdit.cpp
818     GuiCompleter.cpp
819     GuiDelimiter.cpp
820     GuiDialog.cpp
821     GuiDocument.cpp
822     GuiErrorList.cpp
823     GuiERT.cpp
824     GuiExternal.cpp
825     GuiFloat.cpp
826     GuiFontExample.cpp
827     GuiFontLoader.cpp
828     GuiFontMetrics.cpp
829     GuiGraphics.cpp
830     GuiHyperlink.cpp
831     GuiIdListModel.cpp 
832     GuiImage.cpp
833     GuiInclude.cpp
834     GuiKeySymbol.cpp
835     GuiLabel.cpp
836     GuiListings.cpp
837     GuiLog.cpp
838     GuiMath.cpp
839     GuiMathMatrix.cpp
840     GuiNomencl.cpp
841     GuiNote.cpp
842     GuiPainter.cpp
843     GuiParagraph.cpp
844     GuiPopupMenu.cpp
845     GuiPrefs.cpp
846     GuiPrint.cpp
847     GuiRef.cpp
848     GuiSearch.cpp
849     GuiSelection.cpp
850     GuiSelectionManager.cpp
851     GuiSendto.cpp
852     GuiSetBorder.cpp
853     GuiShowFile.cpp
854     GuiSpellchecker.cpp
855     GuiSymbols.cpp
856     GuiTabular.cpp
857     GuiTabularCreate.cpp
858     GuiTexinfo.cpp
859     GuiThesaurus.cpp
860     GuiToc.cpp
861     GuiToolbar.cpp
862     GuiToolbars.cpp
863     GuiView.cpp
864     GuiViewSource.cpp
865     GuiVSpace.cpp
866     GuiWorkArea.cpp
867     GuiWrap.cpp
868     IconPalette.cpp
869     InsertTableWidget.cpp
870     LengthCombo.cpp
871     LaTeXHighlighter.cpp
872     LyXFileDialog.cpp
873     Menus.cpp
874     PanelStack.cpp
875     TocModel.cpp
876     TocWidget.cpp
877     Validator.cpp
878     qt_helpers.cpp
879 ''')
880
881
882 src_frontends_qt4_extra_files = Split('''
883     GuiFontMetrics.h
884     Makefile.am
885     README
886     pch.h
887 ''')
888
889
890 src_frontends_qt4_ui_files = Split('''
891     AboutUi.ui
892     AskForTextUi.ui
893     BibitemUi.ui
894     BiblioUi.ui
895     BibtexAddUi.ui
896     BibtexUi.ui
897     BoxUi.ui
898     BranchUi.ui
899     BranchesUi.ui
900     BulletsUi.ui
901     ChangesUi.ui
902     CharacterUi.ui
903     CitationUi.ui
904     DelimiterUi.ui
905     DocumentUi.ui
906     ERTUi.ui
907     ErrorListUi.ui
908     EmbeddedFilesUi.ui
909     ExternalUi.ui
910     FloatPlacementUi.ui
911     FloatUi.ui
912     FontUi.ui
913     GraphicsUi.ui
914     HyperlinkUi.ui
915     IncludeUi.ui
916     LabelUi.ui
917     LaTeXUi.ui
918     LanguageUi.ui
919     ListingsUi.ui
920     LogUi.ui
921     MarginsUi.ui
922     MathMatrixUi.ui
923     MathsUi.ui
924     NomenclUi.ui
925     NoteUi.ui
926     NumberingUi.ui
927     PageLayoutUi.ui
928     ParagraphUi.ui
929     PDFSupportUi.ui
930     PreambleUi.ui
931     PrefColorsUi.ui
932     PrefConvertersUi.ui
933     PrefDateUi.ui
934     PrefDisplayUi.ui
935     PrefFileformatsUi.ui
936     PrefIdentityUi.ui
937     PrefInputUi.ui
938     PrefLanguageUi.ui
939     PrefLatexUi.ui
940     PrefPathsUi.ui
941     PrefPlaintextUi.ui
942     PrefPrinterUi.ui
943     PrefScreenFontsUi.ui
944     PrefShortcutsUi.ui
945     PrefSpellcheckerUi.ui
946     PrefUi.ui
947     PrefsUi.ui
948     PrintUi.ui
949     RefUi.ui
950     SearchUi.ui
951     SendtoUi.ui
952     ShortcutUi.ui
953     ShowFileUi.ui
954     SpellcheckerUi.ui
955     SymbolsUi.ui
956     TabularCreateUi.ui
957     TabularUi.ui
958     TexinfoUi.ui
959     TextLayoutUi.ui
960     ThesaurusUi.ui
961     TocUi.ui
962     VSpaceUi.ui
963     ViewSourceUi.ui
964     WrapUi.ui
965 ''')
966
967
968 src_frontends_qt4_ui_extra_files = Split('''
969     Makefile.am
970     compile_uic.sh
971 ''')
972
973
974 src_insets_header_files = Split('''
975     ExternalSupport.h
976     ExternalTemplate.h
977     ExternalTransforms.h
978     Inset.h
979     InsetBibitem.h
980     InsetBibtex.h
981     InsetBox.h
982     InsetBranch.h
983     InsetCaption.h
984     InsetCitation.h
985     InsetCode.h
986     InsetCollapsable.h
987     InsetCommand.h
988     InsetCommandParams.h
989     InsetERT.h
990     InsetEnvironment.h
991     InsetExternal.h
992     InsetFlex.h
993     InsetFloat.h
994     InsetFloatList.h
995     InsetFoot.h
996     InsetFootlike.h
997     InsetGraphics.h
998     InsetGraphicsParams.h
999     InsetHFill.h
1000     InsetHyperlink.h
1001     InsetInclude.h
1002     InsetIndex.h
1003     InsetInfo.h
1004     InsetLabel.h
1005     InsetLayout.h
1006     InsetLine.h
1007     InsetListings.h
1008     InsetListingsParams.h
1009     InsetMarginal.h
1010     InsetNewline.h
1011     InsetNewpage.h
1012     InsetNomencl.h
1013     InsetNote.h
1014     InsetOptArg.h
1015     InsetQuotes.h
1016     InsetRef.h
1017     InsetSpace.h
1018     InsetSpecialChar.h
1019     InsetTOC.h
1020     InsetTabular.h
1021     InsetText.h
1022     InsetVSpace.h
1023     InsetWrap.h
1024     MailInset.h
1025     RenderBase.h
1026     RenderButton.h
1027     RenderGraphic.h
1028     RenderPreview.h
1029 ''')
1030
1031
1032 src_insets_files = Split('''
1033     ExternalSupport.cpp
1034     ExternalTemplate.cpp
1035     ExternalTransforms.cpp
1036     Inset.cpp
1037     InsetBibitem.cpp
1038     InsetBibtex.cpp
1039     InsetBox.cpp
1040     InsetBranch.cpp
1041     InsetCaption.cpp
1042     InsetCitation.cpp
1043     InsetCollapsable.cpp
1044     InsetCommand.cpp
1045     InsetCommandParams.cpp
1046     InsetERT.cpp
1047     InsetEnvironment.cpp
1048     InsetExternal.cpp
1049     InsetFlex.cpp
1050     InsetFloat.cpp
1051     InsetFloatList.cpp
1052     InsetFoot.cpp
1053     InsetFootlike.cpp
1054     InsetGraphics.cpp
1055     InsetGraphicsParams.cpp
1056     InsetHFill.cpp
1057     InsetHyperlink.cpp
1058     InsetInclude.cpp
1059     InsetIndex.cpp
1060     InsetInfo.cpp
1061     InsetLabel.cpp
1062     InsetLayout.cpp
1063     InsetLine.cpp
1064     InsetListings.cpp
1065     InsetListingsParams.cpp
1066     InsetMarginal.cpp
1067     InsetNewline.cpp
1068     InsetNewpage.cpp
1069     InsetNomencl.cpp
1070     InsetNote.cpp
1071     InsetOptArg.cpp
1072     InsetQuotes.cpp
1073     InsetRef.cpp
1074     InsetSpace.cpp
1075     InsetSpecialChar.cpp
1076     InsetTOC.cpp
1077     InsetTabular.cpp
1078     InsetText.cpp
1079     InsetVSpace.cpp
1080     InsetWrap.cpp
1081     MailInset.cpp
1082     RenderButton.cpp
1083     RenderGraphic.cpp
1084     RenderPreview.cpp
1085 ''')
1086
1087
1088 src_insets_extra_files = Split('''
1089     InsetTheorem.cpp
1090     InsetTheorem.h
1091     Makefile.am
1092     pch.h
1093 ''')
1094
1095
1096 intl_header_files = Split('''
1097     eval-plural.h
1098     gettextP.h
1099     gmo.h
1100     hash-string.h
1101     loadinfo.h
1102     localcharset.h
1103     os2compat.h
1104     plural-exp.h
1105     printf-args.h
1106     printf-parse.h
1107     relocatable.h
1108     vasnprintf.h
1109     vasnwprintf.h
1110     wprintf-parse.h
1111     xsize.h
1112 ''')
1113
1114
1115 intl_files = Split('''
1116     bindtextdom.c
1117     dcgettext.c
1118     dcigettext.c
1119     dcngettext.c
1120     dgettext.c
1121     dngettext.c
1122     explodename.c
1123     finddomain.c
1124     gettext.c
1125     intl-compat.c
1126     l10nflist.c
1127     langprefs.c
1128     loadmsgcat.c
1129     localcharset.c
1130     localealias.c
1131     localename.c
1132     log.c
1133     ngettext.c
1134     osdep.c
1135     plural-exp.c
1136     plural.c
1137     printf.c
1138     relocatable.c
1139     textdomain.c
1140 ''')
1141
1142
1143 intl_extra_files = Split('''
1144     VERSION
1145     config.charset
1146     libgnuintl.h.in
1147     locale.alias
1148     os2compat.c
1149     plural.y
1150     printf-args.c
1151     printf-parse.c
1152     ref-add.sin
1153     ref-del.sin
1154     vasnprintf.c
1155 ''')
1156
1157
1158 config_extra_files = Split('''
1159     Makefile.am
1160     common.am
1161     config.guess
1162     config.rpath
1163     config.sub
1164     depcomp
1165     install-sh
1166     libtool.m4
1167     ltmain.sh
1168     lyxinclude.m4
1169     missing
1170     mkinstalldirs
1171     pkg.m4
1172     py-compile
1173     qt4.m4
1174     spell.m4
1175 ''')
1176
1177
1178 sourcedoc_extra_files = Split('''
1179     Doxyfile.in
1180     Makefile.am
1181 ''')
1182
1183
1184 po_extra_files = Split('''
1185     LINGUAS
1186     Makefile.in.in
1187     Makevars
1188     POTFILES.in
1189     README
1190     Rules-quot
1191     bg.po
1192     boldquot.sed
1193     ca.po
1194     cs.po
1195     da.po
1196     de.po
1197     en@boldquot.header
1198     en@quot.header
1199     es.po
1200     eu.po
1201     fi.po
1202     fr.po
1203     gl.po
1204     he.po
1205     hu.po
1206     insert-header.sin
1207     it.po
1208     ja.po
1209     ko.po
1210     lyx_pot.py
1211     nb.po
1212     nl.po
1213     nn.po
1214     pl.po
1215     pocheck.pl
1216     postats.sh
1217     pt.po
1218     quot.sed
1219     remove-potcdate.sin
1220     ro.po
1221     ru.po
1222     sk.po
1223     sl.po
1224     sv.po
1225     tr.po
1226     wa.po
1227     zh_CN.po
1228     zh_TW.po
1229 ''')
1230
1231
1232 lib_files = Split('''
1233     CREDITS
1234     chkconfig.ltx
1235     configure.py
1236     encodings
1237     external_templates
1238     languages
1239     symbols
1240     syntax.default
1241     unicodesymbols
1242 ''')
1243
1244
1245 lib_extra_files = Split('''
1246     Makefile.am
1247     autocorrect
1248     build-listerrors
1249     generate_contributions.py
1250 ''')
1251
1252
1253 lib_kbd_files = Split('''
1254     american-2.kmap
1255     american.kmap
1256     arabic.kmap
1257     bg-bds-1251.kmap
1258     brazil.kmap
1259     brazil2.kmap
1260     czech-prg.kmap
1261     czech.kmap
1262     espanol.kmap
1263     european.kmap
1264     farsi.kmap
1265     francais.kmap
1266     french.kmap
1267     german-2.kmap
1268     german-3.kmap
1269     german.kmap
1270     greek.kmap
1271     hebrew.kmap
1272     koi8-r.kmap
1273     koi8-u.kmap
1274     latvian.kmap
1275     magyar-2.kmap
1276     magyar-3.kmap
1277     magyar.kmap
1278     null.kmap
1279     polish.kmap
1280     polski.kmap
1281     portuges.kmap
1282     romanian.kmap
1283     serbian.kmap
1284     serbocroatian.kmap
1285     sf.kmap
1286     sg.kmap
1287     slovak.kmap
1288     slovene.kmap
1289     thai-kedmanee.kmap
1290     transilvanian.kmap
1291     turkish-f.kmap
1292     turkish.kmap
1293 ''')
1294
1295
1296 lib_templates_files = Split('''
1297     IEEEtran.lyx
1298     README.new_templates
1299     aa.lyx
1300     aastex.lyx
1301     agu_article.lyx
1302     apa.lyx
1303     beamer-conference-ornate-20min.lyx
1304     de_beamer-conference-ornate-20min.lyx
1305     dinbrief.lyx
1306     docbook_article.lyx
1307     elsart.lyx
1308     fr_beamer-conference-ornate-20min.lyx
1309     g-brief-de.lyx
1310     g-brief-en.lyx
1311     g-brief2.lyx
1312     hollywood.lyx
1313     ijmpc.lyx
1314     ijmpd.lyx
1315     iop-article.lyx
1316     kluwer.lyx
1317     koma-letter2.lyx
1318     latex8.lyx
1319     letter.lyx
1320     revtex.lyx
1321     revtex4.lyx
1322     slides.lyx
1323 ''')
1324
1325
1326 lib_ui_files = Split('''
1327     classic.ui
1328     default.ui
1329     stdmenus.inc
1330     stdtoolbars.inc
1331 ''')
1332
1333
1334 lib_fonts_files = Split('''
1335     BaKoMaFontLicense.txt
1336     ReadmeBaKoMa4LyX.txt
1337     cmex10.ttf
1338     cmmi10.ttf
1339     cmr10.ttf
1340     cmsy10.ttf
1341     esint10.ttf
1342     eufm10.ttf
1343     msam10.ttf
1344     msbm10.ttf
1345     wasy10.ttf
1346 ''')
1347
1348
1349 lib_images_files = Split('''
1350     all-changes-accept.png
1351     all-changes-reject.png
1352     amssymb.png
1353     banner.png
1354     bookmark-goto.png
1355     bookmark-save.png
1356     box-insert.png
1357     break-line.png
1358     buffer-close.png
1359     buffer-export_dvi.png
1360     buffer-export_latex.png
1361     buffer-export_pdf2.png
1362     buffer-export_ps.png
1363     buffer-export_text.png
1364     buffer-new.png
1365     buffer-reload.png
1366     buffer-update_dvi.png
1367     buffer-update_pdf2.png
1368     buffer-update_ps.png
1369     buffer-view_dvi.png
1370     buffer-view_pdf2.png
1371     buffer-view_ps.png
1372     buffer-write-as.png
1373     buffer-write.png
1374     build-program.png
1375     change-accept.png
1376     change-next.png
1377     change-reject.png
1378     changes-merge.png
1379     changes-output.png
1380     changes-track.png
1381     closetab.png
1382     copy.png
1383     cut.png
1384     demote.png
1385     depth-decrement.png
1386     depth-increment.png
1387     dialog-preferences.png
1388     dialog-show-new-inset_citation.png
1389     dialog-show-new-inset_graphics.png
1390     dialog-show-new-inset_include.png
1391     dialog-show-new-inset_ref.png
1392     dialog-show_character.png
1393     dialog-show_findreplace.png
1394     dialog-show_mathdelimiter.png
1395     dialog-show_mathmatrix.png
1396     dialog-show_print.png
1397     dialog-show_spellchecker.png
1398     dialog-toggle_toc.png
1399     down.png
1400     ert-insert.png
1401     file-open.png
1402     float-insert_figure.png
1403     float-insert_table.png
1404     font-bold.png
1405     font-emph.png
1406     font-free-apply.png
1407     font-noun.png
1408     font-sans.png
1409     footnote-insert.png
1410     href-insert.png
1411     hidetab.png
1412     index-insert.png
1413     label-insert.png
1414     layout-document.png
1415     layout-paragraph.png
1416     layout.png
1417     layout_Description.png
1418     layout_Enumerate.png
1419     layout_Itemize.png
1420     layout_List.png
1421     layout_LyX-Code.png
1422     layout_Scrap.png
1423     layout_Section.png
1424     lyx-quit.png
1425     lyx.png
1426     marginalnote-insert.png
1427     math-display.png
1428     math-macro-add-greedy-optional-param.png
1429     math-macro-add-optional-param.png
1430     math-macro-add-param.png
1431     math-macro-append-greedy-param.png
1432     math-macro-make-nonoptional.png
1433     math-macro-make-optional.png
1434     math-macro-remove-greedy-param.png
1435     math-macro-remove-optional-param.png
1436     math-macro-remove-param.png
1437     math-macro_newmacroname_newcommand.png
1438     math-matrix.png
1439     math-mode.png
1440     math-subscript.png
1441     math-superscript.png
1442     nomencl-insert.png
1443     note-insert.png
1444     note-next.png
1445     paste.png
1446     promote.png
1447     pin.png
1448     psnfss1.png
1449     psnfss2.png
1450     psnfss3.png
1451     psnfss4.png
1452     redo.png
1453     reload.png
1454     standard.png
1455     tabular-feature_align-center.png
1456     tabular-feature_align-left.png
1457     tabular-feature_align-right.png
1458     tabular-feature_append-column.png
1459     tabular-feature_append-row.png
1460     tabular-feature_delete-column.png
1461     tabular-feature_delete-row.png
1462     tabular-feature_multicolumn.png
1463     tabular-feature_set-all-lines.png
1464     tabular-feature_set-longtabular.png
1465     tabular-feature_set-rotate-cell.png
1466     tabular-feature_toggle-rotate-cell.png
1467     tabular-feature_set-rotate-tabular.png
1468     tabular-feature_toggle-rotate-tabular.png
1469     tabular-feature_toggle-line-bottom.png
1470     tabular-feature_toggle-line-left.png
1471     tabular-feature_toggle-line-right.png
1472     tabular-feature_toggle-line-top.png
1473     tabular-feature_unset-all-lines.png
1474     tabular-feature_valign-bottom.png
1475     tabular-feature_valign-middle.png
1476     tabular-feature_valign-top.png
1477     tabular-insert.png
1478     thesaurus-entry.png
1479     toolbar-toggle_math.png
1480     toolbar-toggle_math_panels.png
1481     toolbar-toggle_table.png
1482     undo.png
1483     unknown.png
1484     up.png
1485     url-insert.png
1486 ''')
1487
1488
1489 lib_images_extra_files = Split('''
1490     README
1491     font-smallcaps.png
1492 ''')
1493
1494
1495 lib_images_math_files = Split('''
1496     Bbbk.png
1497     Finv.png
1498     Game.png
1499     Im.png
1500     Lleftarrow.png
1501     Lsh.png
1502     Re.png
1503     Rrightarrow.png
1504     Rsh.png
1505     Vert.png
1506     Vvdash.png
1507     acute.png
1508     aleph.png
1509     alpha.png
1510     amalg.png
1511     angle.png
1512     approx.png
1513     approxeq.png
1514     asymp.png
1515     backepsilon.png
1516     backprime.png
1517     backsim.png
1518     backsimeq.png
1519     backslash.png
1520     bar.png
1521     bars.png
1522     barwedge.png
1523     because.png
1524     beta.png
1525     beth.png
1526     between.png
1527     bigcap.png
1528     bigcirc.png
1529     bigcup.png
1530     bigodot.png
1531     bigoplus.png
1532     bigotimes.png
1533     bigsqcup.png
1534     bigstar.png
1535     bigtriangledown.png
1536     bigtriangleup.png
1537     biguplus.png
1538     bigvee.png
1539     bigwedge.png
1540     blacklozenge.png
1541     blacksquare.png
1542     blacktriangle.png
1543     blacktriangledown.png
1544     blacktriangleleft.png
1545     blacktriangleright.png
1546     bot.png
1547     bowtie.png
1548     boxdot.png
1549     boxminus.png
1550     boxplus.png
1551     boxtimes.png
1552     breve.png
1553     bullet.png
1554     bumpeq.png
1555     bumpeq2.png
1556     cap.png
1557     cap2.png
1558     cases.png
1559     cdot.png
1560     cdots.png
1561     centerdot.png
1562     check.png
1563     chi.png
1564     circ.png
1565     circeq.png
1566     circlearrowleft.png
1567     circlearrowright.png
1568     circledS.png
1569     circledast.png
1570     circledcirc.png
1571     circleddash.png
1572     clubsuit.png
1573     complement.png
1574     cong.png
1575     coprod.png
1576     cup.png
1577     cup2.png
1578     curlyeqprec.png
1579     curlyeqsucc.png
1580     curlyvee.png
1581     curlywedge.png
1582     curvearrowleft.png
1583     curvearrowright.png
1584     dagger.png
1585     daleth.png
1586     dashleftarrow.png
1587     dashrightarrow.png
1588     dashv.png
1589     ddagger.png
1590     ddot.png
1591     ddots.png
1592     delim.png
1593     delta.png
1594     delta2.png
1595     diagdown.png
1596     diagup.png
1597     diamond.png
1598     diamondsuit.png
1599     digamma.png
1600     div.png
1601     divideontimes.png
1602     dot.png
1603     doteq.png
1604     doteqdot.png
1605     dotplus.png
1606     dotsint.png
1607     dotsintop.png
1608     doublebarwedge.png
1609     downarrow.png
1610     downarrow2.png
1611     downdownarrows.png
1612     downharpoonleft.png
1613     downharpoonright.png
1614     ell.png
1615     empty.png
1616     emptyset.png
1617     epsilon.png
1618     eqcirc.png
1619     eqslantgtr.png
1620     eqslantless.png
1621     equation.png
1622     equiv.png
1623     eta.png
1624     eth.png
1625     exists.png
1626     fallingdotseq.png
1627     flat.png
1628     font.png
1629     forall.png
1630     frac-square.png
1631     frac.png
1632     frown.png
1633     functions.png
1634     gamma.png
1635     gamma2.png
1636     geq.png
1637     geqq.png
1638     geqslant.png
1639     gg.png
1640     ggg.png
1641     gimel.png
1642     gnapprox.png
1643     gneq.png
1644     gneqq.png
1645     gnsim.png
1646     grave.png
1647     gtrapprox.png
1648     gtrdot.png
1649     gtreqless.png
1650     gtreqqless.png
1651     gtrless.png
1652     gtrsim.png
1653     gvertneqq.png
1654     hat.png
1655     hbar.png
1656     heartsuit.png
1657     hookleftarrow.png
1658     hookrightarrow.png
1659     hphantom.png
1660     hslash.png
1661     iiiint.png
1662     iiiintop.png
1663     iiint.png
1664     iiintop.png
1665     iint.png
1666     iintop.png
1667     imath.png
1668     in.png
1669     infty.png
1670     int.png
1671     intercal.png
1672     intop.png
1673     iota.png
1674     jmath.png
1675     kappa.png
1676     lambda.png
1677     lambda2.png
1678     langle.png
1679     lbrace.png
1680     lbrace_rbrace.png
1681     lbracket.png
1682     lbracket_rbracket.png
1683     lceil.png
1684     lceil_rceil.png
1685     ldots.png
1686     leftarrow.png
1687     leftarrow2.png
1688     leftarrowtail.png
1689     leftharpoondown.png
1690     leftharpoonup.png
1691     leftleftarrows.png
1692     leftrightarrow.png
1693     leftrightarrow2.png
1694     leftrightarrows.png
1695     leftrightharpoons.png
1696     leftrightsquigarrow.png
1697     leftthreetimes.png
1698     leq.png
1699     leqq.png
1700     leqslant.png
1701     lessapprox.png
1702     lessdot.png
1703     lesseqgtr.png
1704     lesseqqgtr.png
1705     lessgtr.png
1706     lesssim.png
1707     lfloor.png
1708     lfloor_rfloor.png
1709     ll.png
1710     llcorner.png
1711     lll.png
1712     lnapprox.png
1713     lneq.png
1714     lneqq.png
1715     lnsim.png
1716     longleftarrow.png
1717     longleftarrow2.png
1718     longleftrightarrow.png
1719     longleftrightarrow2.png
1720     longmapsto.png
1721     longrightarrow.png
1722     longrightarrow2.png
1723     looparrowleft.png
1724     looparrowright.png
1725     lozenge.png
1726     lparen.png
1727     lparen_rparen.png
1728     lrcorner.png
1729     ltimes.png
1730     lvertneqq.png
1731     mapsto.png
1732     mathbb_C.png
1733     mathbb_H.png
1734     mathbb_N.png
1735     mathbb_Q.png
1736     mathbb_R.png
1737     mathbb_Z.png
1738     mathcal_F.png
1739     mathcal_H.png
1740     mathcal_L.png
1741     mathcal_O.png
1742     mathcircumflex.png
1743     mathrm_T.png
1744     matrix.png
1745     measuredangle.png
1746     mho.png
1747     mid.png
1748     models.png
1749     mp.png
1750     mu.png
1751     multimap.png
1752     nabla.png
1753     natural.png
1754     ncong.png
1755     nearrow.png
1756     neg.png
1757     neq.png
1758     nexists.png
1759     ngeq.png
1760     ngeqq.png
1761     ngeqslant.png
1762     ngtr.png
1763     ni.png
1764     nleftarrow.png
1765     nleftarrow2.png
1766     nleftrightarrow.png
1767     nleftrightarrow2.png
1768     nleq.png
1769     nleqq.png
1770     nleqslant.png
1771     nless.png
1772     nmid.png
1773     notin.png
1774     nparallel.png
1775     nprec.png
1776     npreceq.png
1777     nrightarrow.png
1778     nrightarrow2.png
1779     nshortmid.png
1780     nshortparallel.png
1781     nsim.png
1782     nsubseteq.png
1783     nsucc.png
1784     nsucceq.png
1785     nsupseteq.png
1786     nsupseteqq.png
1787     ntriangleleft.png
1788     ntrianglelefteq.png
1789     ntriangleright.png
1790     ntrianglerighteq.png
1791     nu.png
1792     nvdash.png
1793     nvdash2.png
1794     nvdash3.png
1795     nwarrow.png
1796     odot.png
1797     oiint.png
1798     oiintop.png
1799     oint.png
1800     ointclockwise.png
1801     ointclockwiseop.png
1802     ointctrclockwise.png
1803     ointctrclockwiseop.png
1804     ointop.png
1805     omega.png
1806     omega2.png
1807     ominus.png
1808     oplus.png
1809     oslash.png
1810     otimes.png
1811     overbrace.png
1812     overleftarrow.png
1813     overleftrightarrow.png
1814     overline.png
1815     overrightarrow.png
1816     overset.png
1817     parallel.png
1818     partial.png
1819     perp.png
1820     phantom.png
1821     phi.png
1822     phi2.png
1823     pi.png
1824     pi2.png
1825     pitchfork.png
1826     pm.png
1827     prec.png
1828     precapprox.png
1829     preccurlyeq.png
1830     preceq.png
1831     precnapprox.png
1832     precnsim.png
1833     precsim.png
1834     prime.png
1835     prod.png
1836     propto.png
1837     psi.png
1838     psi2.png
1839     rangle.png
1840     rbrace.png
1841     rbracket.png
1842     rceil.png
1843     rfloor.png
1844     rho.png
1845     rightarrow.png
1846     rightarrow2.png
1847     rightarrowtail.png
1848     rightharpoondown.png
1849     rightharpoonup.png
1850     rightleftarrows.png
1851     rightleftharpoons.png
1852     rightrightarrows.png
1853     rightsquigarrow.png
1854     rightthreetimes.png
1855     risingdotseq.png
1856     root.png
1857     rparen.png
1858     rtimes.png
1859     searrow.png
1860     setminus.png
1861     sharp.png
1862     shortmid.png
1863     shortparallel.png
1864     sigma.png
1865     sigma2.png
1866     sim.png
1867     simeq.png
1868     slash.png
1869     smallfrown.png
1870     smallsetminus.png
1871     smallsmile.png
1872     smile.png
1873     space.png
1874     spadesuit.png
1875     sphericalangle.png
1876     sqcap.png
1877     sqcup.png
1878     sqiint.png
1879     sqiintop.png
1880     sqint.png
1881     sqintop.png
1882     sqrt-square.png
1883     sqrt.png
1884     sqsubset.png
1885     sqsubseteq.png
1886     sqsupset.png
1887     sqsupseteq.png
1888     square.png
1889     star.png
1890     style.png
1891     style.png
1892     sub.png
1893     subset.png
1894     subset2.png
1895     subseteq.png
1896     subseteqq.png
1897     subsetneq.png
1898     subsetneqq.png
1899     succ.png
1900     succapprox.png
1901     succcurlyeq.png
1902     succeq.png
1903     succnapprox.png
1904     succnsim.png
1905     succsim.png
1906     sum.png
1907     super.png
1908     supset.png
1909     supset2.png
1910     supseteq.png
1911     supseteqq.png
1912     supsetneq.png
1913     supsetneqq.png
1914     surd.png
1915     swarrow.png
1916     tau.png
1917     textrm_AA.png
1918     textrm_O.png
1919     therefore.png
1920     theta.png
1921     theta2.png
1922     thickapprox.png
1923     thicksim.png
1924     tilde.png
1925     times.png
1926     top.png
1927     triangle.png
1928     triangledown.png
1929     triangleleft.png
1930     trianglelefteq.png
1931     triangleq.png
1932     triangleright.png
1933     trianglerighteq.png
1934     twoheadleftarrow.png
1935     twoheadrightarrow.png
1936     ulcorner.png
1937     underbrace.png
1938     underleftarrow.png
1939     underleftrightarrow.png
1940     underline.png
1941     underrightarrow.png
1942     underscore.png
1943     underset.png
1944     uparrow.png
1945     uparrow2.png
1946     updownarrow.png
1947     updownarrow2.png
1948     upharpoonleft.png
1949     upharpoonright.png
1950     uplus.png
1951     upsilon.png
1952     upsilon2.png
1953     upuparrows.png
1954     urcorner.png
1955     varepsilon.png
1956     varkappa.png
1957     varnothing.png
1958     varphi.png
1959     varpi.png
1960     varpropto.png
1961     varrho.png
1962     varsigma.png
1963     varsubsetneq.png
1964     varsubsetneqq.png
1965     varsupsetneq.png
1966     varsupsetneqq.png
1967     vartheta.png
1968     vartriangle.png
1969     vartriangleleft.png
1970     vartriangleright.png
1971     vdash.png
1972     vdash2.png
1973     vdash3.png
1974     vdots.png
1975     vec.png
1976     vee.png
1977     veebar.png
1978     vphantom.png
1979     wedge.png
1980     widehat.png
1981     widetilde.png
1982     wp.png
1983     wr.png
1984     xi.png
1985     xi2.png
1986     zeta.png
1987 ''')
1988
1989
1990 lib_images_math_extra_files = Split('''
1991     ams_arrows.png
1992     ams_misc.png
1993     ams_nrel.png
1994     ams_ops.png
1995     ams_rel.png
1996     arrows.png
1997     bop.png
1998     brel.png
1999     deco.png
2000     deco.png
2001     delim.png
2002     delim0.png
2003     delim1.png
2004     dots.png
2005     font.png
2006     functions.png
2007     greek.png
2008     misc.png
2009     varsz.png
2010 ''')
2011
2012
2013 lib_images_commands_files = Split('''
2014 ''')
2015
2016
2017 lib_images_attic_extra_files = Split('''
2018     dialog-show_mathpanel.png
2019 ''')
2020
2021
2022 lib_tex_files = Split('''
2023     broadway.cls
2024     hollywood.cls
2025     lyxchess.sty
2026     lyxskak.sty
2027     revtex.cls
2028 ''')
2029
2030
2031 lib_doc_files = Split('''
2032     Customization.lyx
2033     DocStyle.lyx
2034     DummyDocument1.lyx
2035     DummyDocument2.lyx
2036     DummyTextDocument.txt
2037     EmbeddedObjects.lyx
2038     Extended.lyx
2039     FAQ.lyx
2040     Formula-numbering.lyx
2041     Intro.lyx
2042     LaTeXConfig.lyx
2043     Math.lyx
2044     Reference.lyx
2045     Shortcuts.lyx
2046     Tutorial.lyx
2047     UserGuide.lyx
2048 ''')
2049
2050
2051 lib_doc_biblio_files = Split('''
2052     alphadin.bst
2053     LyXDocs.bib
2054 ''')
2055
2056
2057 lib_doc_clipart_files = Split('''
2058     Abstract.pdf
2059     BoxInsetDefaultQt4.png
2060     ChangesToolbar.png
2061     ChildDocumentQt4.png
2062     CommentNoteImageQt4.png
2063     ERT.png
2064     ExternalMaterialQt4.png
2065     ExtraToolbar.png
2066     FramedNoteImageQt4.png
2067     GreyedOutNoteImageQt4.png
2068     LaTeX.png
2069     LyXNoteImageQt4.png
2070     ShadedNoteImageQt4.png
2071     SpaceMarker.png
2072     StandardToolbar.png
2073     ToolbarEnvBox.png
2074     endnotes.pdf
2075     escher-lsd.eps
2076     floatQt4.png
2077     footnoteQt4.png
2078     labelQt4.png
2079     macrobox.png
2080     macrouse.png
2081     mbox.png
2082     mobius.eps
2083     platypus.eps
2084     referenceQt4.png
2085     ViewToolbar.png
2086     with_fntright.pdf
2087     without_fntright.pdf
2088 ''')
2089
2090
2091 lib_doc_extra_files = Split('''
2092     Makefile.am
2093     Makefile.depend
2094     README.Documentation
2095     depend.py
2096     doc_toc.py
2097 ''')
2098
2099
2100 lib_doc_cs_files = Split('''
2101     Tutorial.lyx
2102 ''')
2103
2104
2105 lib_doc_de_files = Split('''
2106     Customization.lyx
2107     DummyDocument1.lyx
2108     DummyDocument2.lyx
2109     DummyTextDocument.txt
2110     EmbeddedObjects.lyx
2111     Extended.lyx
2112     FAQ.lyx
2113     Formelnummerierung.lyx
2114     Intro.lyx
2115     Math.lyx
2116     Tutorial.lyx
2117     UserGuide.lyx
2118 ''')
2119
2120
2121 lib_doc_de_clipart_files = Split('''
2122     ERT.png
2123     ExternesMaterialQt4.png
2124     FussnoteQt4.png
2125     GerahmteNotizQt4.png
2126     GleitobjektQt4.png
2127     GrauschriftNotizQt4.png
2128     KommentarQt4.png
2129     LyXNotizQt4.png
2130     Marke.png
2131     Querverweis.png
2132     SchattierteNotizQt4.png
2133     StandardBoxQt4.png
2134     UnterdokumentQt4.png
2135 ''')
2136
2137
2138 lib_doc_da_files = Split('''
2139     Intro.lyx
2140 ''')
2141
2142
2143 lib_doc_es_files = Split('''
2144     DocumentoPostizo1.lyx
2145     DocumentoPostizo2.lyx
2146     DocumentoTextoPostizo.txt
2147     EmbeddedObjects.lyx
2148     Extended.lyx
2149     FAQ.lyx
2150     Formula-numbering.lyx
2151     Intro.lyx
2152     Math.lyx
2153     Tutorial.lyx
2154     UserGuide.lyx
2155 ''')
2156
2157
2158 lib_doc_es_clipart_files = Split('''
2159     ComentNotaImagenQt4.png
2160     CuadroMinipagQt4.png
2161     DocumentoHijoQt4.png
2162     GrisNotaImagenQt4.png
2163     MaterialExternoQt4.png
2164     NotaEnmarcadaImg.png
2165     NotaLyXImagenQt4.png
2166     NotaSombreadaImg.png
2167     Resumen.pdf
2168     es_ERT.png
2169     etiquetaQt4.png
2170     flotanteQt4.png
2171     notapieQt4.png
2172     referenciaQt4.png
2173 ''')
2174
2175
2176 lib_doc_eu_files = Split('''
2177     Customization.lyx
2178     Extended.lyx
2179     FAQ.lyx
2180     Intro.lyx
2181     Tutorial.lyx
2182     UserGuide.lyx
2183 ''')
2184
2185
2186 lib_doc_fr_files = Split('''
2187     Customization.lyx
2188     DocumentBidon1.lyx
2189     DocumentBidon2.lyx
2190     DocumentTexteBidon.txt
2191     EmbeddedObjects.lyx
2192     Extended.lyx
2193     FAQ.lyx
2194     Intro.lyx
2195     Math.lyx
2196     Tutorial.lyx
2197     UserGuide.lyx
2198 ''')
2199
2200
2201 lib_doc_fr_clipart_files = Split('''
2202     BoxInsetDefaultQt4.png
2203     ChildDocumentQt4.png
2204     CommentNoteImageQt4.png
2205     FramedNoteImageQt4.png
2206     GreyedOutNoteImageQt4.png
2207     LyXNoteImageQt4.png
2208     ShadedNoteImageQt4.png
2209     floatQt4.png
2210     footnoteQt4.png
2211     labelQt4.png
2212 ''')
2213
2214
2215 lib_doc_gl_extra_files = Split('''
2216     Intro.lyx
2217     Tutorial.lyx
2218 ''')
2219
2220
2221 lib_doc_he_files = Split('''
2222     Intro.lyx
2223     Tutorial.lyx
2224 ''')
2225
2226
2227 lib_doc_hu_files = Split('''
2228     Intro.lyx
2229     Tutorial.lyx
2230 ''')
2231
2232
2233 lib_doc_it_files = Split('''
2234     Customization.lyx
2235     Intro.lyx
2236     Tutorial.lyx
2237     UserGuide.lyx
2238 ''')
2239
2240
2241 lib_doc_nb_files = Split('''
2242     Intro.lyx
2243 ''')
2244
2245
2246 lib_doc_nl_files = Split('''
2247     Intro.lyx
2248     Tutorial.lyx
2249 ''')
2250
2251
2252 lib_doc_pl_files = Split('''
2253     Extended.lyx
2254     Intro.lyx
2255     Tutorial.lyx
2256 ''')
2257
2258
2259 lib_doc_pt_files = Split('''
2260     Intro.lyx
2261     Tutorial.lyx
2262 ''')
2263
2264
2265 lib_doc_ro_files = Split('''
2266     Intro.lyx
2267 ''')
2268
2269
2270 lib_doc_ru_files = Split('''
2271     FAQ.lyx
2272     Intro.lyx
2273     Tutorial.lyx
2274 ''')
2275
2276
2277 lib_doc_sl_files = Split('''
2278     Intro.lyx
2279     Tutorial.lyx
2280 ''')
2281
2282
2283 lib_doc_sk_files = Split('''
2284     Tutorial.lyx
2285     UserGuide.lyx
2286 ''')
2287
2288
2289 lib_doc_sv_files = Split('''
2290     Intro.lyx
2291     Tutorial.lyx
2292 ''')
2293
2294
2295 lib_examples_files = Split('''
2296     Braille.lyx
2297     CV-image.eps
2298     CV-image.png
2299     Foils.lyx
2300     ItemizeBullets.lyx
2301     Literate.lyx
2302     Minipage.lyx
2303     aa_sample.lyx
2304     aas_sample.lyx
2305     addressExample.adr
2306     amsart-test.lyx
2307     amsbook-test.lyx
2308     armenian-article.lyx
2309     beamer-g4-mask.jpg
2310     beamer-g4.jpg
2311     beamer-icsi-logo.pdf
2312     beamer-knight1-mask.png
2313     beamer-knight1.png
2314     beamer-knight2-mask.png
2315     beamer-knight2.png
2316     beamer-knight3-mask.png
2317     beamer-knight3.png
2318     beamer-knight4-mask.png
2319     beamer-knight4.png
2320     beamerlyxexample1.lyx
2321     biblioExample.bib
2322     chess-article.lyx
2323     chessgame.lyx
2324     docbook_article.lyx
2325     europeCV.lyx
2326     example_lyxified.lyx
2327     example_raw.lyx
2328     iecc05.fen
2329     iecc07.fen
2330     iecc12.fen
2331     landslide.lyx
2332     linguistics.lyx
2333     listerrors.lyx
2334     listings.lyx
2335     modernCV.lyx
2336     multicol.lyx
2337     noweb2lyx.lyx
2338     powerdot-example.lyx
2339     script_form.lyx
2340     serial_letter1.lyx
2341     serial_letter2.lyx
2342     serial_letter3.lyx
2343     simplecv.lyx
2344     splash.lyx
2345 ''')
2346
2347
2348 lib_examples_ca_files = Split('''
2349     splash.lyx
2350 ''')
2351
2352
2353 lib_examples_cs_files = Split('''
2354     splash.lyx
2355 ''')
2356
2357
2358 lib_examples_da_files = Split('''
2359     splash.lyx
2360 ''')
2361
2362
2363 lib_examples_de_files = Split('''
2364     Dezimal.lyx
2365     ItemizeBullets.lyx
2366     Lebenslauf.lyx
2367     Minipage.lyx
2368     beispiel_gelyxt.lyx
2369     beispiel_roh.lyx
2370     multicol.lyx
2371     serienbrief1.lyx
2372     serienbrief2.lyx
2373     serienbrief3.lyx
2374     splash.lyx
2375 ''')
2376
2377
2378 lib_examples_fa_files = Split('''
2379     splash.lyx
2380 ''')
2381
2382
2383 lib_examples_fr_files = Split('''
2384     AlignementDecimal.lyx
2385     Foils.lyx
2386     ListesPuces.lyx
2387     Minipage.lyx
2388     exemple_brut.lyx
2389     exemple_lyxifie.lyx
2390     multicol.lyx
2391     simplecv.lyx
2392     splash.lyx
2393 ''')
2394
2395
2396 lib_examples_es_files = Split('''
2397     ItemizeBullets.lyx
2398     ejemplo_con_lyx.lyx
2399     ejemplo_sin_lyx.lyx
2400     mathed.lyx
2401     splash.lyx
2402 ''')
2403
2404
2405 lib_examples_eu_files = Split('''
2406     adibide_gordina.lyx
2407     adibide_lyx-atua.lyx
2408     splash.lyx
2409 ''')
2410
2411
2412 lib_examples_gl_extra_files = Split('''
2413     exemplo_bruto.lyx
2414     exemplo_lyxificado.lyx
2415     splash.lyx
2416 ''')
2417
2418
2419 lib_examples_he_files = Split('''
2420     example_lyxified.lyx
2421     example_raw.lyx
2422     splash.lyx
2423 ''')
2424
2425
2426 lib_examples_hu_files = Split('''
2427     example_lyxified.lyx
2428     example_raw.lyx
2429     splash.lyx
2430 ''')
2431
2432
2433 lib_examples_it_files = Split('''
2434     ItemizeBullets.lyx
2435     splash.lyx
2436 ''')
2437
2438
2439 lib_examples_ja_files = Split('''
2440     splash.lyx
2441 ''')
2442
2443
2444 lib_examples_nl_files = Split('''
2445     multicol.lyx
2446     opsommingstekens.lyx
2447     splash.lyx
2448     voorbeeld_ruw.lyx
2449     voorbeeld_verlyxt.lyx
2450 ''')
2451
2452
2453 lib_examples_pl_files = Split('''
2454     splash.lyx
2455 ''')
2456
2457
2458 lib_examples_pt_files = Split('''
2459     splash.lyx
2460 ''')
2461
2462
2463 lib_examples_ro_files = Split('''
2464     splash.lyx
2465 ''')
2466
2467
2468 lib_examples_ru_files = Split('''
2469     splash.lyx
2470 ''')
2471
2472
2473 lib_examples_sl_files = Split('''
2474     primer_lyxan.lyx
2475     primer_surov.lyx
2476     splash.lyx
2477 ''')
2478
2479
2480 lib_lyx2lyx_files = Split('''
2481     LyX.py
2482     generate_encoding_info.py
2483     lyx2lyx
2484     lyx2lyx_lang.py
2485     lyx_0_06.py
2486     lyx_0_08.py
2487     lyx_0_10.py
2488     lyx_0_12.py
2489     lyx_1_0.py
2490     lyx_1_1.py
2491     lyx_1_1_5.py
2492     lyx_1_1_6_0.py
2493     lyx_1_1_6_3.py
2494     lyx_1_2.py
2495     lyx_1_3.py
2496     lyx_1_4.py
2497     lyx_1_5.py
2498     lyx_1_6.py
2499     parser_tools.py
2500     profiling.py
2501     test_parser_tools.py
2502 ''')
2503
2504
2505 lib_lyx2lyx_extra_files = Split('''
2506     Makefile.am
2507     lyx2lyx_version.py.in
2508 ''')
2509
2510
2511 lib_layouts_files = Split('''
2512     IEEEtran.layout
2513     aa.layout
2514     aapaper.layout
2515     aastex.layout
2516     agu-dtd.layout
2517     agums.layout
2518     amsart.layout
2519     amsbook.layout
2520     apa.layout
2521     arab-article.layout
2522     armenian-article.layout
2523     article.layout
2524     beamer.layout
2525     book.layout
2526     broadway.layout
2527     chess.layout
2528     cl2emult.layout
2529     dinbrief.layout
2530     docbook-book.layout
2531     docbook-chapter.layout
2532     docbook-section.layout
2533     docbook.layout
2534     dtk.layout
2535     egs.layout
2536     elsart.layout
2537     entcs.layout
2538     europecv.layout
2539     extarticle.layout
2540     extbook.layout
2541     extletter.layout
2542     extreport.layout
2543     foils.layout
2544     g-brief-de.layout
2545     g-brief-en.layout
2546     g-brief2.layout
2547     heb-article.layout
2548     heb-letter.layout
2549     hollywood.layout
2550     ijmpc.layout
2551     ijmpd.layout
2552     iopart.layout
2553     isprs.layout
2554     jarticle.layout
2555     jbook.layout
2556     jgrga.layout
2557     jreport.layout
2558     jsarticle.layout
2559     jsbook.layout
2560     kluwer.layout
2561     latex8.layout
2562     letter.layout
2563     literate-article.layout
2564     literate-book.layout
2565     literate-report.layout
2566     llncs.layout
2567     ltugboat.layout
2568     manpage.layout
2569     memoir.layout
2570     moderncv.layout
2571     mwart.layout
2572     mwbk.layout
2573     mwrep.layout
2574     paper.layout
2575     powerdot.layout
2576     report.layout
2577     revtex.layout
2578     revtex4.layout
2579     scrartcl.layout
2580     scrbook.layout
2581     scrlettr.layout
2582     scrlttr2.layout
2583     scrreprt.layout
2584     seminar.layout
2585     siamltex.layout
2586     simplecv.layout
2587     slides.layout
2588     spie.layout
2589     svglobal.layout
2590     svjog.layout
2591     svprobth.layout
2592     tarticle.layout
2593     tbook.layout
2594     treport.layout
2595 ''')
2596
2597
2598 lib_layouts_inc_files = Split('''
2599     aapaper.inc
2600     agu_stdclass.inc
2601     agu_stdcounters.inc
2602     agu_stdlists.inc
2603     agu_stdsections.inc
2604     agu_stdtitle.inc
2605     aguplus.inc
2606     amsdefs.inc
2607     db_lyxmacros.inc
2608     db_stdcharstyles.inc
2609     db_stdclass.inc
2610     db_stdcounters.inc
2611     db_stdlayouts.inc
2612     db_stdlists.inc
2613     db_stdsections.inc
2614     db_stdstarsections.inc
2615     db_stdstruct.inc
2616     db_stdtitle.inc
2617     literate-scrap.inc
2618     lyxmacros.inc
2619     numarticle.inc
2620     numreport.inc
2621     numrevtex.inc
2622     scrclass.inc
2623     stdcharstyles.inc
2624     stdclass.inc
2625     stdcounters.inc
2626     stdcustom.inc
2627     stdfloats.inc
2628     stdinsets.inc
2629     stdlayouts.inc
2630     stdletter.inc
2631     stdlists.inc
2632     stdsections.inc
2633     stdstarsections.inc
2634     stdstruct.inc
2635     stdtitle.inc
2636     svjour.inc
2637     theorems.inc
2638     theorems-ams.inc
2639     theorems-order.inc
2640     theorems-proof.inc
2641     theorems-starred.inc
2642     theorems-starred-equivalents.inc
2643 ''')
2644
2645
2646 lib_layouts_module_files = Split('''
2647     braille.module
2648     endnotes.module
2649     foottoend.module
2650     hanging.module
2651     linguistics.module
2652     logicalmkup.module
2653     minimalistic.module
2654     theorems-ams-extended.module
2655     theorems-ams.module
2656     theorems-chap.module
2657     theorems-sec.module
2658     theorems-starred.module
2659     theorems-std.module
2660 ''')
2661
2662 lib_scripts_files = Split('''
2663     TeXFiles.py
2664     clean_dvi.py
2665     convertDefault.py
2666     date.py
2667     ext_copy.py
2668     fen2ascii.py
2669     fig2pdftex.py
2670     fig2pstex.py
2671     fig_copy.py
2672     layout2layout.py
2673     legacy_lyxpreview2ppm.py
2674     listerrors
2675     lyxpreview2bitmap.py
2676     lyxpreview_tools.py
2677     tex_copy.py
2678 ''')
2679
2680
2681 lib_bind_files = Split('''
2682     aqua.bind
2683     broadway.bind
2684     cua.bind
2685     cyrkeys.bind
2686     emacs.bind
2687     greekkeys.bind
2688     hollywood.bind
2689     latinkeys.bind
2690     mac.bind
2691     math.bind
2692     menus.bind
2693     sciword.bind
2694     site.bind
2695     xemacs.bind
2696 ''')
2697
2698
2699 lib_bind_fi_files = Split('''
2700     menus.bind
2701 ''')
2702
2703
2704 lib_bind_sv_files = Split('''
2705     menus.bind
2706 ''')
2707
2708
2709 lib_bind_pt_files = Split('''
2710     menus.bind
2711 ''')
2712
2713
2714 lib_bind_de_files = Split('''
2715     menus.bind
2716 ''')
2717
2718
2719 lib_commands_files = Split('''
2720     default.def
2721 ''')
2722
2723
2724 boost_extra_files = Split('''
2725     LICENSE_1_0.txt
2726     Makefile.am
2727 ''')
2728
2729
2730 boost_libs_extra_files = Split('''
2731     Makefile.am
2732     README
2733 ''')
2734
2735
2736 boost_libs_signals_extra_files = Split('''
2737     Makefile.am
2738     signals.vcproj
2739 ''')
2740
2741
2742 boost_libs_signals_src_files = Split('''
2743     connection.cpp
2744     named_slot_map.cpp
2745     signal_base.cpp
2746     slot.cpp
2747     trackable.cpp
2748 ''')
2749
2750
2751 boost_libs_signals_src_extra_files = Split('''
2752     Makefile.am
2753     pch.h
2754 ''')
2755
2756
2757 boost_libs_regex_extra_files = Split('''
2758     Makefile.am
2759     regex.vcproj
2760 ''')
2761
2762
2763 boost_libs_regex_src_files = Split('''
2764     c_regex_traits.cpp
2765     cpp_regex_traits.cpp
2766     cregex.cpp
2767     fileiter.cpp
2768     instances.cpp
2769     posix_api.cpp
2770     regex.cpp
2771     regex_debug.cpp
2772     regex_raw_buffer.cpp
2773     regex_traits_defaults.cpp
2774     w32_regex_traits.cpp
2775     wide_posix_api.cpp
2776     winstances.cpp
2777 ''')
2778
2779
2780 boost_libs_regex_src_extra_files = Split('''
2781     Makefile.am
2782     pch.h
2783 ''')
2784
2785
2786 boost_libs_filesystem_extra_files = Split('''
2787     Makefile.am
2788     filesystem.vcproj
2789 ''')
2790
2791
2792 boost_libs_filesystem_src_files = Split('''
2793     exception.cpp
2794     operations.cpp
2795     path.cpp
2796     portability.cpp
2797 ''')
2798
2799
2800 boost_libs_filesystem_src_extra_files = Split('''
2801     Makefile.am
2802     pch.h
2803 ''')
2804
2805
2806 development_Win32_packaging_installer = Split('''
2807     license.rtf
2808     lyx.nsi
2809     settings.nsh
2810     settings.user.nsh
2811 ''')
2812
2813
2814 development_Win32_packaging_installer_components = Split('''
2815     configure.nsh
2816     core.nsh
2817     dicts.nsh
2818     external.nsh
2819     langselect.nsh
2820     reinstall.nsh
2821     uninstall.nsh
2822     user.nsh
2823     viewer.nsh
2824 ''')
2825
2826
2827 development_Win32_packaging_installer_dialogs = Split('''
2828     external.ini
2829     langselect.ini
2830     reinstall.ini
2831     user.ini
2832     viewer.ini
2833 ''')
2834
2835
2836 development_Win32_packaging_installer_graphics = Split('''
2837     header.bmp
2838     wizard.bmp
2839 ''')
2840
2841
2842 development_Win32_packaging_installer_include = Split('''
2843     declarations.nsh
2844     detection.nsh
2845     filelists.nsh
2846     gui.nsh
2847     init.nsh
2848     lang.nsh
2849     windows.nsh
2850 ''')
2851
2852
2853 development_Win32_packaging_installer_lang = Split('''
2854     english.nsh
2855     french.nsh
2856     german.nsh
2857     italian.nsh
2858 ''')
2859