:
:

Please ask the site administrators to add your locale, or provide one yourself :).")?>

', ''), $msg); ?>

".$lang["complete"].""; } ?>
en_US 100% (builtin)
%

To add a new locale, please use your authenticated SVN access.
First, checkout the locale/ directory:

$ svn co svn+ssh://myaliothlogin@svn.debian.org/svn/debian-med/trunk/community/website/locale/
					
After this, create a new directory for your locale (let's suppose it's de_DE):
$ mkdir de_DE/LC_MESSAGES/
					
Next step is actually adding the .po catalog. Copy the .pot template to your newly created directory, and start translating:
$ cp messages.pot de_DE/LC_MESSAGES/messages.po
$ cd de_DE/LC_MESSAGES/
$ vi messages.po
					
Now you need to compile the catalog you've just translated, and add everything under SVN control (we're in the LC_MESSAGES/ directory in this example):
$ msgfmt messages.po
$ ls
messages.mo messages.po
$ cd ../../ # up to the locale/ directory
$ ls
it_IT/ de_DE/ messages.pot
$ svn add de_DE/
A de_DE/
A de_DE/LC_MESSAGES/
A de_DE/LC_MESSAGES/messages.mo
A de_DE/LC_MESSAGES/messages.po
$
					
Now it's time to commit the changes:
$ svn commit -m "Adding de_DE locale"
Sending      locale/de_DE/
Sending      locale/de_DE/LC_MESSAGES/
Sending      locale/de_DE/LC_MESSAGES/messages.mo
Sending      locale/de_DE/LC_MESSAGES/messages.po
Sending data ....
Commit of Revision xxx done.
$
					
Please note that the automatic loading of locales has not been tested yet. Please send an e-mail to debian-med@lists.debian.org if you encounter any problems.