How to translate the textoutput
-------------------------------

All translations can be found in the folder 'languages', and they are simple txt-files (ending is .lng).
Rcs will detect and load them automatically. After loading a new translation there will be a new 2nd-value option with the command '#lang'. You have nothing to configure.
Not all textlines can be translated, because some text is hardcoded (command-module for example). Maybe there will be an option later.


There are some special things/rules in the textfiles:

1) All text have to be between the two ' " ',  comments begin with ' // '
2) Some lines must fit into the lfs-sendtext-limits (64 or 96 chars) (but not much of them)
3) some lines begin with '#0','#1' or '#2'. These are the chatlevels. A line with '#1' can be seen with chat level 2(full) or chatlevel 1(medium), but not with level 0. A line with '#2' can only be seen with level 2(full).
The number selects the minimum needed chatlevel to see this message. The default-chatlevel is 0!
4) some lines have one or more '%%' within. These are placeholders for variable data (playernames for example). The  variables and their order in the line are fixed, but you can move the placehholders to another position in the line.
5) Lines with ' ^x' are lines with lfs-color-codes. Dont use them to much in the teamsection, beacuse the player cant change the color for these lines

WARNING !!!! Dont do:
DONT REORDER THE LINES  ;) .
DONT BEGIN A BLOCK (<rcsm>, <orga> for example) TWO OR MORE TIMES.

How it works in rcs:
There is one masterfile (__MASTER.lng). This file is loaded first and must be present. Dont remove or change this file. RCS will not start without this file.
After loading the master rcs is scanning for other .lng-files. If there is a file, rcs creates a new text-table and initialisize it with the mastertable. After this the .lng-file will load.
This is done this way, because there could be missed text in the .lng-file. (for example an older .lng-file without the newest textlines). Missed text is filled with the mastertext if we do it this way.
