lok: vcl: fix multiple floatwin removal case more robustly.
[LibreOffice.git] / i18npool / README
blob9e1a04f3f32990778465aa7ac173095033c23ce6
1 Internationalisation (i18npool) framework ensures that the suite is adaptable to the requirements of different
2 native languages, their local settings and customs, etc without source code modification. (Wow, that is such marketing-speak...)
4 Specifically for locale data documentation please see i18npool/source/localedata/data/locale.dtd
6 See also [http://wiki.documentfoundation.org/Category:I18n]
8 On iOS we put the largest data generated here, the dict_ja and dict_zh
9 stuff, into separate files and not into code to keep the size of an
10 app binary down. Temporary test code:
12     static bool beenhere = false;
13     if (!beenhere) {
14         beenhere = true;
15         uno::Reference< uno::XComponentContext > xComponentContext(::cppu::defaultBootstrap_InitialComponentContext());
16         uno::Reference< lang::XMultiComponentFactory > xMultiComponentFactoryClient( xComponentContext->getServiceManager() );
17         uno::Reference< uno::XInterface > xInterface =
18             xMultiComponentFactoryClient->createInstanceWithContext( "com.sun.star.i18n.BreakIterator_ja", xComponentContext );
19     }