• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

inc/H07-Oct-2020-4,3392,441

qa/cppunit/H07-Oct-2020-1,5611,175

source/H07-Oct-2020-479,732468,211

util/H07-Oct-2020-505486

CppunitTest_i18npool_test_breakiterator.mkH A D07-Oct-20201.1 KiB3819

CppunitTest_i18npool_test_characterclassification.mkH A D07-Oct-2020980 3215

CppunitTest_i18npool_test_ordinalsuffix.mkH A D07-Oct-2020910 3215

CppunitTest_i18npool_test_textsearch.mkH A D07-Oct-20201 KiB3921

CustomTarget_breakiterator.mkH A D07-Oct-20205.3 KiB12285

CustomTarget_collator.mkH A D07-Oct-20202.4 KiB6852

CustomTarget_indexentry.mkH A D07-Oct-20201.4 KiB3823

CustomTarget_localedata.mkH A D07-Oct-20201.4 KiB3619

CustomTarget_textconversion.mkH A D07-Oct-20201.1 KiB2713

Executable_gencoll_rule.mkH A D07-Oct-2020832 3317

Executable_genconv_dict.mkH A D07-Oct-2020586 217

Executable_gendict.mkH A D07-Oct-2020741 2914

Executable_genindex_data.mkH A D07-Oct-2020668 2611

Executable_saxparser.mkH A D07-Oct-2020727 2712

IwyuFilter_i18npool.yamlH A D07-Oct-20203.8 KiB10099

Library_collator_data.mkH A D07-Oct-2020847 228

Library_dict_ja.mkH A D07-Oct-2020509 174

Library_dict_zh.mkH A D07-Oct-2020509 174

Library_i18npool.mkH A D07-Oct-20206.3 KiB149122

Library_i18nsearch.mkH A D07-Oct-2020860 3518

Library_index_data.mkH A D07-Oct-2020612 185

Library_localedata_en.mkH A D07-Oct-20201.5 KiB3623

Library_localedata_es.mkH A D07-Oct-20201.6 KiB4026

Library_localedata_euro.mkH A D07-Oct-20205.2 KiB11095

Library_localedata_others.mkH A D07-Oct-20207.6 KiB156141

Library_textconv_dict.mkH A D07-Oct-2020868 3115

MakefileH A D07-Oct-2020478 152

Module_i18npool.mkH A D07-Oct-20201.3 KiB4934

READMEH A D07-Oct-20201.1 KiB2015

Rdb_saxparser.mkH A D07-Oct-2020468 174

README

1Internationalisation (i18npool) framework ensures that the suite is adaptable to the requirements of different
2native languages, their local settings and customs, etc without source code modification. (Wow, that is such marketing-speak...)
3
4Specifically for locale data documentation please see i18npool/source/localedata/data/locale.dtd
5
6See also [http://wiki.documentfoundation.org/Category:I18n]
7
8On iOS we put the largest data generated here, the dict_ja and dict_zh
9stuff, into separate files and not into code to keep the size of an
10app binary down. Temporary test code:
11
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    }
20