If you're interested in functional programming, you might also want to checkout my second blog which i'm actively working on!!

Thursday, June 18, 2009

Internationalization with GWT

I ran into a exception yesterday saying "no resource found for key xxx". I double checked my properties file but the key/value was there. Scanning the gwt forum for the same issue resulted in 3 hits but no answer to my problem.

My properties file looked like:

user=User
home=Home
...

Apparently you need to leave spaces between the key, = and value so when i changed the snippet above to

user = User
home = Home

everything worked.

Cheers,
Robby

No comments:

Post a Comment