summaryrefslogtreecommitdiff
path: root/i18npool
AgeCommit message (Collapse)Author
2014-04-14TypoTor Lillqvist
Change-Id: I888b4fcd6ad1bbdc95a1f6e17d2d35de193c3473
2014-04-14Need to skip these now on iOSTor Lillqvist
Change-Id: I4bf25a30152d3cbbcc2fae05e40accdde1548298
2014-04-14Put the dict_ja and _zh data in files instead of code for iOSTor Lillqvist
Map the file(s) into memory on demand. The executable file of an app needs to be as small as possible. Including additional data files in an app bundle is fine. Change-Id: Ife9bfe99a2cf0473d459f38f50dfa3304b39e282
2014-04-12Unnecessary to mention dependency on icudata as only libicuuc directly uses itTor Lillqvist
libicudata exports a single symbol, icudt52_data (for ICU version 52), and only libicuuc refers to it. Change-Id: Ia04356fda20cf8109156ccd1cbbd9091e70adf27
2014-04-11have a stab at fixing Tatar locale to pass build testsCaolán McNamara
Change-Id: I15b57365b0ecf4b6bdd7c521b7e05a954f01a0b8
2014-04-11Resolves: #i124631# Add locale data for Tatar (tt-RU)Ariel Constenla-Haile
Locale data contributed by Irek Khaziev <khazirek@mail.ru> (cherry picked from commit f5d13ffd92a71451be33f96a56a3bd75156a5901) Change-Id: Ie360e8b8ad534394e0c265a63b70fbe4e91c1b6d
2014-04-11Use valid UNOIDL identifiers in TransliterationModulesExtraStephan Bergmann
ignoreDiacritics_CTL was introduced in LO 4.2, but is unpublished and appears to be rarely used, so changing it is hopefully OK. ignoreKashida_CTL is new in LO 4.3. Change-Id: I52c6d1e8c6b30eec4af22e3bbc72dd5874ef7151
2014-04-10added one abbreviated DateAcceptancePattern for locales that didn't have anyEike Rathke
Change-Id: I0ee3f1553b4efa67701385de5c7fe32e5992b537
2014-04-09add abbreviated DateAcceptancePatternEike Rathke
Change-Id: I7cdc9b13fe950222521cb937e928da27ee55e866
2014-04-09Related: fdo#73544 change double quotation charactersJoan Montane
Change-Id: I1603dfad68261c917532f88397305eef57356da6
2014-04-08fdo#77123: Add option ignore kashida to the searchFaisal M. Al-Otaibi
This patch will add new checkbox to ignore kashida in the search and replace dialog. Change-Id: I9e7179242751103b8418d922ade5b9145170ad15
2014-04-07Related: #i124611# Correct date format in nds-DE locale dataAriel Constenla-Haile
Patch by: Timo Putzer <tputzer@gmx.de> (cherry picked from commit d1268a86dfef20ba8d2f4059180bd55764e4092d) Conflicts: i18npool/source/localedata/data/nds_DE.xml Change-Id: I83ad5057d08e5a5058f2f87bcaeeaa7d86788d31
2014-04-07Related: #i124611# - Include nds-DE locale dataAriel Constenla-Haile
(cherry picked from commit bd1eb988440fb0d1d207fd3ef590f9115d259c81) Conflicts: i18npool/source/localedata/data/localedata_euro.map i18npool/source/localedata/data/makefile.mk Change-Id: I18e828af3a51735caa3c8e70326766f998b44419
2014-04-07Resolves: #i124611# - nds-DE locale dataAriel Constenla-Haile
Locale data contributed by Timo Putzer <tputzer@gmx.de> (cherry picked from commit 7070f04ae10f0da2e33c543ff0282e252b7e7869) Change-Id: I0d0b43fe98398bec7c4f717c1be2f39b4ea832f5
2014-04-01Explicitly mark overriding destructors as "virtual"Stephan Bergmann
It appears that the C++ standard allows overriding destructors to be marked "override," but at least some MSVC versions complain about it, so at least make sure such destructors are explicitly marked "virtual." Change-Id: I0e1cafa7584fd16ebdce61f569eae2373a71b0a1
2014-04-01coverity#707923 Uninitialized scalar fieldCaolán McNamara
Change-Id: Iab2d5829b28587640058d484ef806d9e9e8c1f96
2014-03-28coverity#705185 Missing break in switchCaolán McNamara
Change-Id: I88c2fbea9265b729e21aa2f2d09bea89f91c01cb
2014-03-26First batch of adding SAL_OVERRRIDE to overriding function declarationsStephan Bergmann
...mostly done with a rewriting Clang plugin, with just some manual tweaking necessary to fix poor macro usage. Change-Id: I71fa20213e86be10de332ece0aa273239df7b61a
2014-03-20Translate names of months and the days of the week in Japanese calendarsTakeshi Abe
This affects a displayed name of months e.g. grouped by in a pivot table. See <http://listarchives.libreoffice.org/ja/discuss/msg02906.html> for the original discussion. Change-Id: I2ff0325f9ef2f2f03019291d4b760582b6dfbad8 Reviewed-on: https://gerrit.libreoffice.org/8678 Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Eike Rathke <erack@redhat.com>
2014-03-18convert sal_Char* to OUStringNoel Grandin
I can see no reason to store sBulletName as an sal_Char* instead of converting backwards and forwards from OUString Change-Id: Ib16b9f04c5738aa2346c9b5b4f28461fc8b60c4f Reviewed-on: https://gerrit.libreoffice.org/8641 Tested-by: Michael Stahl <mstahl@redhat.com> Reviewed-by: Michael Stahl <mstahl@redhat.com>
2014-03-18Find places where OUString and OString are passed by value.Noel Grandin
It's not very efficient, because we generally end up copying it twice - once into the parameter and again into the destination OUString. So I create a clang plugin that finds such places and generates a warning so that we can convert them to pass-by-reference. Change-Id: I5341a6ea9e3190f4b4c05c42c85595e3dcd83361
2014-03-11coverity#704236 Logically dead codeCaolán McNamara
the nStartPos > 0 check is inside a nStartPos == 0 block so it can't happen so we'll return immediately, and so there's no point changing numberOfChange in that case either there Change-Id: Id6d7fc31033de5c6f3bb0a9ed03234b58c0d509e
2014-03-08coverity#707923 Uninitialized scalar fieldCaolán McNamara
Change-Id: Ie1610a9e3df8e2844f4cc6b529d50db57ef8dc0e
2014-03-08coverity#707922 Uninitialized scalar fieldCaolán McNamara
Change-Id: I48f74be18664f8bf82e7b3f8576fef05b0e95630
2014-02-28remove unused code in i18npool/OFileWriterNoel Grandin
Specifically: OFileWriter::flush() OFileWriter::writeDefaultParameter(char const*, rtl::OUString const&) OFileWriter::writeParameter(char const*, char const*, rtl::OUString const&) Change-Id: Ie359be257b3c7493e31fcf4201818c29c9c3df53
2014-02-27normalize values of ICU_RECLASSIFIED_*Michael Stahl
Change-Id: I1033676fe91062b1d364a458a5964cfb78f323f0
2014-02-26added M-D abbreviated DateAcceptancePattern to [lgr-SB], fdo#72512Eike Rathke
Change-Id: Ia42f4a112a240ed38a9e8e53e4e92b48e9cacc10
2014-02-26added Lengo [lgr-SB] locale data, fdo#72512Eike Rathke
Change-Id: I1aa5e635448e2076f60c749e2640d9689a63f829
2014-02-26cppuhelper: retrofit std::exception into overriding exception specsStephan Bergmann
Change-Id: I56e32131b7991ee9948ce46765632eb823d463b3
2014-02-26Remove visual noise from i18npoolAlexander Wilms
Change-Id: I1cd4254713ce9c1bc7c232414c24e926f1f8a653 Reviewed-on: https://gerrit.libreoffice.org/8269 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2014-02-23Remove unneccessary commentsAlexander Wilms
Change-Id: I939160ae72fecbe3d4a60ce755730bd4c38497fb Reviewed-on: https://gerrit.libreoffice.org/8182 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2014-02-18coverity#984096 Uninitialized scalar fieldNorbert Thiebaud
Change-Id: If67e1c48fba43fabcaffef92d96bc1377b4d1dd8
2014-02-17Resolves: fdo#45841 fix autocorrect of single quotes in MalteseCaolán McNamara
Change-Id: Id37ad55b8994b7ed40cdd569a016a68c7386b551
2014-02-12corrected Estonian [et-EE] quote charactersMihkel Tõnnov
Namely: Estonian has several sets of correct quote mark glyphs for double quotes („”, „“, «» are all common), however the Institute of Estonian Language [1] recommends using the first of these, i.e. „” (99 low, 99 high) [2]. As for single quotes, Estonian texts rarely use them, except in a few fields such as linguistics and biology -- and both ‘’ (9-9) and ’’ (6-9) are considered correct [2, 3]. However, apostrophe in the beginning of a word (which is effectively the same as a starting single quote) can also be used to indicate omitted character(s) -- but there, only ’ (9) is correct [3]. [1] Eesti Keele Instituut, the main official body which maintains and studies the usage of Estonian language; http://en.eki.ee/index.php [2] The last page of https://docs.google.com/viewer?url=http://keeleabi.eki.ee/pdf/164.pdf (in Estonian) [3] Handbook of Estonian Language, http://www.eki.ee/books/ekk09/index.php?p=2&p1=11&id=86 (in Estonian) Change-Id: If88e6e03e3e4aa1919a25dbe2fa2ffc8c9a04f4a
2014-02-11i18npool: Ctor feature for com.sun.star.i18n.InputSequenceCheckerMatúš Kukan
Change-Id: I7937b5ba09c00448678e71c1786f775998f0f6fa
2014-02-11coverity#707927 Uninitialized pointer fieldCaolán McNamara
Change-Id: I5011c4dfea02c8fab8ca3ee08bbed7f31396e3ec
2014-02-11coverity#707926 Uninitialized scalar fieldCaolán McNamara
Change-Id: Ib6dc7e409d89e4824b373db2cd7a13449c3c18ed
2014-02-11coverity#707925 Uninitialized pointer fieldCaolán McNamara
Change-Id: I0e1034a2ef064f9a3a05a0b8837efdff767ea715
2014-02-08coverity#705400 Argument cannot be negativeCaolán McNamara
Change-Id: Idfd95810f929d6485263c0a4fb1e24bfa31c48f8
2014-02-07Avoid generation of unused replaceFrom* variablesStephan Bergmann
Change-Id: I2a65485b8dcaa7b6ed4a049f97d460878b8bb17d
2014-02-07No need for virtual functions in OFileWriterStephan Bergmann
Change-Id: Ifd18bf16213a1c4b746eab16e563f0322fbc3690
2014-02-07Remove obsolete workaroundStephan Bergmann
Change-Id: I8c8e99036fe694a2fb0160250c7c0c4fefb98a3e
2014-01-28bool improvementsStephan Bergmann
Change-Id: I64b038ad3b8d423dad6707fb0b2fd2127b2050a3
2014-01-27i18npool: Constructor feature for few more implementations.Matúš Kukan
Change-Id: I018bbe39a30582f51cdd620b3bf3240456b7bd65
2014-01-27i18npool: Ctor feature for css.i18n.CharacterClassification(_Unicode).Matúš Kukan
Change-Id: I5a0498a3871e2b90629af8ed6b725ff22f242fba
2014-01-27i18npool: Ctor feature for another services.Matúš Kukan
Change-Id: Id2346686ac2f6c537825d70cac1a537d09e351d5
2014-01-27i18npool: Ctor feature for few general services.Matúš Kukan
Change-Id: I1d489cacaf4717ab395b22a92e6dd6645cb92b1c
2014-01-21Fix bogus mass-conversion equalsAsciiL -> startsWithStephan Bergmann
3af99e4d59d89c343965a928681a30f36b1007d2 "convert equalsAsciiL calls to startsWith calls" should rather have converted to oprator ==. Change-Id: Id4a8836c5d6d570e54661c40be7214632e202b21
2014-01-10Use boolStephan Bergmann
Change-Id: I5b372ce78268d16fc629a47228875d31a298e189
2014-01-10Use proper bool operationsStephan Bergmann
Change-Id: I674ee59803fa5a1987787cf98f369dee63729adf