IMPORTANT:
If you are motivated to translate, here you are a few considerations to help you.

Up to now, specific scripts and programs of GALPon MiniNo are only translated
into galician "gl", spanish/spain "es" and english "en", as you can see in the
condicional construct "case" like gl*) es*) and *) respectively.

First of all, you should install the new pack language in GALPon MiniNo, running
this command in a terminal (Ctrl+Alt+T):
     sudo dpkg-reconfigure locales
And in the first screen choose the NEW language.

Then, with a plain text editor, you should create a new loop "case" for other
specific languages or translate .po files in case the program use the stantard
gettext .po. If you have any question, simply ask to the GALPon MiniNo team.

It's of great appreciation that you send us new translations for incorporate in
new releases of GALPon MiniNo.

Finally, you can modify the "changer language script" to add new languages in 
this way:

Original:
	IDIOMA=$(zenity --list --title="$TIT" \
	--text="$TEXT1" \
	--radiolist \
	--width="150" --height="263" \
	--hide-column=2 \
	--column="" \
	--column="Código" \
	--column="$DES" \
	FALSE "es_ES.UTF-8" "$CAS" \
	FALSE "gl_ES.UTF-8" "$GAL"\
	FALSE "en_US.UTF-8" "$EUS" )

Adding new languages "GB english":
	IDIOMA=$(zenity --list --title="$TIT" \
	--text="$TEXT1" \
	--radiolist \
	--width="150" --height="286" \
	--hide-column=2 \
	--column="" \
	--column="Código" \
	--column="$DES" \
	FALSE "es_ES.UTF-8" "$CAS" \
	FALSE "gl_ES.UTF-8" "$GAL" \
	FALSE "en_US.UTF-8" "$EUS" \
	FALSE "en_UK.UTF-8" "$EGB")

Remember continue line marks "/" and final mark ")".
For each field you add it is necesary increase --height="XXX"
value in +/-24 points  → 3 fields ="263", 4 fields ="286"

