home *** CD-ROM | disk | FTP | other *** search
- {What Delphi version are we using ?}
- {$I Chemware.inc}
-
- {BC++B support:}
- {$IFDEF BCB}
- {$ObjExportAll On}
- {$ENDIF}
-
- {For those poor buggers that don't have the Pro versions}
- {$DEFINE NO_MATH}
-
- {Language support:}
- {$DEFINE LANG_ENGLISH}
- {http://www.freetranslation.com/:}
- {.$ DEFINE LANG_FRENCH}
- {.$ DEFINE LANG_GERMAN}
- {.$ DEFINE LANG_ITALIAN}
- {.$ DEFINE LANG_NORWEGIAN}
- {.$ DEFINE LANG_PORTUGUESE}
- {.$ DEFINE LANG_SPANISH}
- {Universal Translator by LanguageForce:}
- {.$ DEFINE LANG_CZECH}
- {.$ DEFINE LANG_DUTCH}
- {.$ DEFINE LANG_DANISH}
- {.$ DEFINE LANG_GREEK}
- {.$ DEFINE LANG_HUNGARIAN}
- {.$ DEFINE LANG_INDONESIAN}
- {.$ DEFINE LANG_ROMANIAN}
- {.$ DEFINE LANG_RUSSIAN}
- {.$ DEFINE LANG_SLOVAK}
- {.$ DEFINE LANG_SWEDISH}
- {.$ DEFINE LANG_THAI}
- {.$ DEFINE LANG_TURKISH}
- {.$ DEFINE LANG_UKRAINIAN}
-
- {Note that I have only generated rough machine translations using :
- http://www.freetranslation.com/
- and
- Universal Translator by LanguageForce (http://www.gotoworld.com/)
- and that some refinement may be required for your own language.
- I am _NOT_ a linguist.
-
- How to use the existing language definitions ?
- Simply de-define ENGLISH, and change ".$ " to "$" for the language you want.
-
- To define a new language, say Klingon:
- 1. add a new $DEFINE LANG_KLINGON
- 2. translate the text from Misc\lang\eng.txt into Klingon;
- use TPlot\Lang\TPlot.xls to help in this process.
- 3. save it as Misc\lang\kli.txt
- 4. translate the text from TPlot\lang\eng.txt into Klingon.
- 5. save it as TPlot\lang\kli.txt
- 6. add the following line, plus brackets, to the relevant sections
- of Misc.pas, just after the "Uses" clause, in the "COMPILER3_UP" section:
- $IFDEF LANG_KLINGON $I lang\kli.txt $ENDIF
- 7. add it with forward slashes to the Linux section.
- 8. add the same lines to TPlot\Plotdefs.pas
- }
-
-