An updated Alpha version has been released.
Here is the change log:
1) Added copyright information to all source modules.
2) Fixed bug that caused unknown country information to stop searching for a known language. This prevented the example given in a previous news post from working. The example now works.
import java.util.*;
public class TestProgram {
public static void main(String[] args) {
Locale loc = new Locale(System.getProperty("user.language"), System.getProperty("user.country"));
ResourceBundle res = ResourceBundle.getBundle("com.javanetworkframework.rb.webtranslator.WebTranslator", loc);
System.out.println(res.getString("Hello world!"));
}
}... read more
The initial Alpha version of WebTranslator has been released. This version supports language translations to/from the following languages:
de - German (Deutsch)
el - Greek (Ελληνικά)
en - English
es - Spanish (Espaol)
fr - French (Franais)
it - Italian (Italiano)
ja - Japanese (日本語)
ko - Korean (한국어)
nl - Dutch (Nederlands)
no - Norwegian ()
pt - Portuguese (Portugus)
ru - Russian (Русско)
zh - Simplified Chinese (简体中文)
zt - Traditional Chinese (繁體中文)... read more