How to add a new language:
-------------------------

1. Set or make sure your $LANG, $LANGUAGE and $LC_ALL variables are set
   AND exported
   $ echo $LANG $LANGUAGE $LC_ALL
   This should output your language, for example:
   fr_FR@euro fr_FR@euro fr_FR@euro
   This will be the example in the next sections, please replace
   it with your own language.

2. Copy po/messages to po/fr_FR.po (not fr_FR@euro.po)

3. Edit the file:
	* Change the header
	* Fill all occurences of ``msgstr' in your own language
	* Take care of the quotes and format strings (%s, %i, \n, \t)
	* If you are unsure of the translation, look it up in the
	program, or ask the RSBAC team. (http://www.rsbac.org/contact)

4. Make sure you have the Gettext package with development files installed:
	* compile your file:
		$ msgfmt -o po/fr_FR.mo po/fr.po
	
   If everything goes right, go to step 5, else correct.

5. Compile and install the RSBAC tools using (see the ``INSTALL' file)
	* Try the programs and check everything works

6. Send the .po (fr_FR.po) file to the RSBAC team so that it's included
   in the next release.

7. Once we release the new version, please test the translation again to
   make sure nothing was forgotten.

Thanks for contributing!
