This may be released earlier than expected.

I have added the ability for translations in all of the base files. Only four modules need to be altered. I'll be looking for translator volunteers.
You will need HTML knowledge and the ability to edit a text file. The PHP is pretty simple. Below is a sample. Translators would need to replace the English in the second set of quotes on each line with the translated text. So far there are about 300 words, phrases, or sentences to be translated. I expect a total of less than four hundred.
/* admin/login.php */
define("PASSWORD_REQUIRED", "Password Required");
define("LOGIN", "Login");
define("USER_PASS_NOT_FOUND", "Your username/password combination could not be found.");
define("LOGIN_NEW", "Login with your new login information.");
define("MUST_LOGIN", "You must login to access the page you requested.");
define("USERNAME", "Username");
define("LETTERS_NUMBERS_ONLY", "letters and numbers only");
define("PASSWORD", "Password");
define("CASE_SENSITIVE", "case sensitive");
define("BACK_TO_HOME", "Back to Home Page");
define("POWERED_BY_SOS", "Powered by");
define("LOGIN_TROUBLE", "Login Trouble?");
define("COOKIES_REQUIRED", "Your browser must accept Session Cookies in order to login.");
define("FORGOT_USERNAME_PASSWORD", "Forgot Username/Password");
define("COOKIE_CHECK", "Check if Cookies are Enabled.");