Re: Howto load StringResources from Database for Iternationalization?

2010-01-29 Thread Riyad Kalla
; Implementation "Settings" looks very complicated to me. > >> or is it enough to implement *IStringResourceLoader*? But then, where > can > >> i > >> add my own loader to the "Chain" of processing? > >> > >> Thanks a lot for any hint

Re: Howto load StringResources from Database for Iternationalization?

2010-01-29 Thread MattyDE
ot;Chain" of processing? >> >> Thanks a lot for any hints. Its very urgently to know and to understand >> if >> wicket is useful for our "wishes" before we really >> decide which framework we "want" to use. >> >> Please apologise f

Re: Howto load StringResources from Database for Iternationalization?

2010-01-29 Thread German Morales
Hoi Martin, we have a subclass of ComponentStringResourceLoader, overriding #loadStringResource methods, which we then register in our application #init method: getResourceSettings().addStringResourceLoader(new YourStringResourceLoader()); and it works well for our needs. Then you should decid

Re: Howto load StringResources from Database for Iternationalization?

2010-01-29 Thread Ilja Pavkovic
Hi, > i don't know if this question was ever done, but i didn't find anything > suitable for me. > > In a huge webapplication which is being in the first steps of > implementation, we want to use a Database (table) to store there > any "String Resources" by locale for translation. > > I have bee

Howto load StringResources from Database for Iternationalization?

2010-01-28 Thread Martin U
Hello Folks, i don't know if this question was ever done, but i didn't find anything suitable for me. In a huge webapplication which is being in the first steps of implementation, we want to use a Database (table) to store there any "String Resources" by locale for translation. I have been jump