Provide here voice translation in boards/sounds/yy
It is best to choose somebody that speaks and articulate well your language.

- Record with rec, grecord, bcast2000, gnoise, audacity
  (mono wav 16bit/44khz gives the best quality/space ratio)
- Save as WAV file
- Apply loudness transform with sox if necessary.
	You may such script if the sound is too low :
	#!/bin/sh
	for i; do
			sox $i modif/$i vol 5.0 amplitude 0.05
	done
- Transforming stereo to mono if needed
        sox y.wav -c 1 y2.wav
- In the directory where WAV files are run i
        oggenc -c "Copyright 2002 (name of author). This file is distributed under the terms of the GNU General Public License, either version 2 or ( at your option) any later version. See the file COPYING for details." *.wav
	if ogginfo doesn't show you the comment, replace the -c to -a to store
	the copyright in the author field
- Copy OGG files in the corresponding directory

