RE: An open source git server written with Wicket

2019-01-27 Thread Chris Colman
Wow, that looks amazing! Which component are you using to display the source code - it looks very nice. > -Original Message- > From: Robin Shen [mailto:ro...@pmease.com] > Sent: Monday, 7 January 2019 10:25 AM > To: users@wicket.apache.org > Subject: An open source git server written

Re: Internationalization

2019-01-27 Thread Zbynek Vavros
Aha the index! Thanks On Sun, Jan 27, 2019 at 11:21 PM Martin Grigorov wrote: > Hi, > > if MyWicketApplication is the name of your application class then all you > need to do is to create MyWicketApplication.properties next to it and it > will be used with priority overthe defaults. > > If

Re: Internationalization

2019-01-27 Thread Martin Grigorov
Hi, if MyWicketApplication is the name of your application class then all you need to do is to create MyWicketApplication.properties next to it and it will be used with priority overthe defaults. If this is not the case then use .add(0, new Bundle) and it will be consulted first. On Mon,

Internationalization

2019-01-27 Thread Zbynek Vavros
Hi, I'm trying to provide custom properties file for Wicket application. I was going to use BundleStringResourceLoader using getResourceSettings().getStringResourceLoaders().add(new BundleStringResourceLoader("MyWicketApplication")). Then I replaced "Required" message with my message it is not