rodionmoiseev / c10n

A Java library, focused on making internationalisation more modular, easier to evolve and maintain, robust-to-change and IDE-friendly without excess of external tools.
Apache License 2.0
67 stars 10 forks source link

#26 added spanish annotations to work in default configuration #27

Closed kevinrobayna closed 9 years ago

kevinrobayna commented 9 years ago

I tested it with this file: https://gist.github.com/kevinrobayna/5e702ac5ada7424b3a90

Also i tried with

C10N.configure(new C10NConfigBase() {
  @Override
  protected void configure() {
    bindAnnotation(Es.class); // also Ru and En
  }
});
rodionmoiseev commented 9 years ago

Cool, thanks!

kevinrobayna commented 9 years ago

It's been a pleasure. Thanks to your great work.