Actually, if it's a concern about bandwidth, it's even more of a moot
point than Stefan indicated, since (1) you were going to be putting
those labels in regardless of internationalization, and (2) GWT
already extracts String constants into a tightly packed bunch of
global variables with minified names.

Theoretically, the size of your application should not be affected by
internationalization.

On Jun 10, 6:31 am, Stefan Bachert <stefanbach...@yahoo.de> wrote:
> Hi Brian,
>
> let us calculate
>
> 1000 Labels, average 10 characters in size.
> makes 10KByte
>
> How fast do you expect your network?
> 10KB/s -> 10 Sec (Modem)
> 100KB/s -> 1 Sec (ISDN)
> 1MB/s -> 0.1 Sec (DSL)
> 10MB/s -> 0.01 Sec (ADSL)
> 100MB/s -> 0.001 Sec (intranet)
>
> How often this addition time applies?
> Exactly the first time you download the app. After that, it is in the
> cache.
> OK, each release requires a further download
>
> When your figures are in that range, is it really worth to care about
> it?
>
> Do what is good for modularisation but do not care about download
> performance.
>
> Stefan Bacherthttp://gwtworld.de
>
> On Jun 10, 1:29 pm, Brian <bboyl...@gmail.com> wrote:
>
>
>
> > Hi,
>
> > I am developing a massive enterprise application from scratch using
> > GWT.
> > I want to use GWT's implementation of localisation but I have some
> > concerns with performance.
> > I will have thousands of labels across all my screens that will
> > require conversion to the appropriate language. Do I have to put all
> > these label tags into one .properties file? If so, I fear this will
> > add alot of time to the application startup.
> > Another approach I was thinking of taking was having multiple
> > properties files per module and implementing code splitting for each
> > module. Will code splitting work with loading locale properties files?
>
> > It would be great to hear of other people's experience developing
> > large enterprise apps with regards to localisation.
>
> > Thanks
>
> > Brian

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to