Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Good localization framework for Java [closed]

I'm looking for best localization framework for Java. Default localization framework is not enough for me.

Ideally I'm looking for localization framework with following features:

  • Style support - like Apache Wicket localization framework does
  • Formating support - dates and numbers format support
  • Plurals support - like GWT localization framework does
  • Message hierarchy - localization finding among hierarchy gained at message level. Typically is lookup path name[style][locale] -> name[locale] -> name[style] -> name, but it is gained at file level - if some message is not in file it wouldn't be translated. I would like to have localization gained at message level.

If you know about some good localization framework, please give me echo. If you think that my requirements are somehow wrong, please let me know also.

like image 496
Boris Šuška Avatar asked Dec 22 '11 11:12

Boris Šuška


Video Answer


1 Answers

Are you looking for a l10n framework or a web-framework with l10n features?

If your case is the second one, except for the Plurals support, Apache Tapestry it's a wonderful choice. :)

http://tapestry.apache.org

like image 55
everton Avatar answered Sep 30 '22 11:09

everton