summaryrefslogtreecommitdiff
path: root/sc/inc/globstr.hrc
AgeCommit message (Collapse)Author
2018-03-07tdf#116108 Add option to fit images into their cellSamuel Mehrbrodt
Change-Id: I2e9a4f567049f11985e4bf914c2fa5bd1f181823 Reviewed-on: https://gerrit.libreoffice.org/50569 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
2018-02-26convert corner case warningboxes with checkboxesCaolán McNamara
Change-Id: Ic8b58b792236a733b6687148eac5c06bbf734acf Reviewed-on: https://gerrit.libreoffice.org/50325 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2018-02-26convert remaining ErrorBox to weld::MessageDialogCaolán McNamara
and convert remaining QueryBox to weld::MessageDialog Change-Id: Ifb4c316dee8eabf57c4940c44e29c65a2781aa6c
2018-01-30Clarify that links to other files can also be external resourcesEike Rathke
Change-Id: Iea299f0b895e77116623dff22fd49727b8c5c83c
2018-01-08tdf#61418 Show message on protected sheets for conditional formatting.Gulsah Kose
.uno:ConditionalFormatDialog, .uno:ColorScaleFormatDialog, .uno:DataBarFormatDialog, .uno:IconSetFormatDialog and .uno:CondDateFormatDialog show an error message on protected sheets for conditional formatting. The patch was sent for the ULAKBIM/Pardus project. Change-Id: Id3c1d6f76d1245b0395082b24fa5175c14f55555 Signed-off-by: Gulsah Kose <gulsah.1004@gmail.com> Reviewed-on: https://gerrit.libreoffice.org/47395 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Katarina Behrens <Katarina.Behrens@cib.de>
2017-12-05remove some unused definesNoel Grandin
and move the script to python Change-Id: I97bca04053d9d38b59c74fcf61caafbc2c137cc9 Reviewed-on: https://gerrit.libreoffice.org/45776 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2017-09-13tdf#107267: Fix grand total calculationJean-Sebastien Bevilacqua
To fix the grand total calculation, we add another step. This step loop through all row to find the min and max of each value. These min and max are then used by the grand total. Patch by Linagora Change-Id: If3200840764d0ad9cb63231ac9f67b5d5ed197f1 Reviewed-on: https://gerrit.libreoffice.org/42042 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Eike Rathke <erack@redhat.com>
2017-09-04Apostrophe ' is invalid as first or last character in sheet name, tdf#103027Eike Rathke
So hint in dialog. Change-Id: I04c85c9fc8d89ecc1be4d8d7fddc58672314d2dc
2017-08-29remove some unused macro definitionsNoel Grandin
Change-Id: I253e5108161b932e3dc588b656e550bb9dc022b0 Reviewed-on: https://gerrit.libreoffice.org/41672 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2017-08-10tdf#111318: Improve msg about pivot table/chart when removing a cell (take 2)Julien Nabet
Change-Id: I56e0fb1716d38471682084569d48907520922b26 Reviewed-on: https://gerrit.libreoffice.org/40991 Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com> Tested-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
2017-08-10Revert "tdf#111318: Improve message about pivot table/chart when removing a ↵Julien Nabet
cell" This reverts commit fac539889e32e5e47ca6b6da0a588abbe4cbe066. Change-Id: I1496f13119936e7be24345bc6f56469ce40b6080 Reviewed-on: https://gerrit.libreoffice.org/40990 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Julien Nabet <serval2412@yahoo.fr>
2017-08-08tdf#111318: Improve message about pivot table/chart when removing a cellJulien Nabet
Change-Id: Ib27c20a7528c0376474586c7224eb9e4611147ce Reviewed-on: https://gerrit.libreoffice.org/40897 Reviewed-by: Heiko Tietze <tietze.heiko@googlemail.com> Tested-by: Heiko Tietze <tietze.heiko@googlemail.com>
2017-07-21migrate to boost::gettextCaolán McNamara
* all .ui files go from <interface> to <interface domain="MODULE"> e.g. vcl * all .src files go away and the english source strings folded into the .hrc as NC_("context", "source string") * ResMgr is dropped in favour of std::locale imbued by boost::locale::generator pointed at matching MODULE .mo files * UIConfig translations are folded into the module .mo, so e.g. UIConfig_cui goes from l10n target to normal one, so the res/lang.zips of UI files go away * translation via Translation::get(hrc-define-key, imbued-std::locale) * python can now be translated with its inbuilt gettext support (we keep the name strings.hrc there to keep finding the .hrc file uniform) so magic numbers can go away there * java and starbasic components can be translated via the pre-existing css.resource.StringResourceWithLocation mechanism * en-US res files go away, their strings are now the .hrc keys in the source code * remaining .res files are replaced by .mo files * in .res/.ui-lang-zip files, the old scheme missing translations of strings results in inserting the english original so something can be found, now the standard fallback of using the english original from the source key is used, so partial translations shrink dramatically in size * extract .hrc strings with hrcex which backs onto xgettext -C --add-comments --keyword=NC_:1c,2 --from-code=UTF-8 --no-wrap * extract .ui strings with uiex which backs onto xgettext --add-comments --no-wrap * qtz for gettext translations is generated at runtime as ascii-ified crc32 of content + "|" + msgid * [API CHANGE] remove deprecated binary .res resouce loader related uno apis com::sun::star::resource::OfficeResourceLoader com::sun::star::resource::XResourceBundleLoader com::sun::star::resource::XResourceBundle when translating strings via uno apis com.sun.star.resource.StringResourceWithLocation can continue to be used Change-Id: Ia2594a2672b7301d9c3421fdf31b6cfe7f3f8d0a
2017-04-20renumber string IDs and close 40 gaps of resident empty stringsEike Rathke
With the help of sc/util/number-defines-consecutively.awk Change-Id: I1d2656ee8527cde6d6464b423a332401946f82a1
2017-04-17ask to delete pivot chart if pivot table gets deletedTomaž Vajngerl
Change-Id: I2a0e1aedf870fa587b5596e0adde0b9e61278c88 Reviewed-on: https://gerrit.libreoffice.org/36624 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
2017-04-11tdf#84837 Add Show/Hide all comments commands to Calc.Gulsah Kose
Change-Id: I1e38335ff1269d0d464f03d23bfc5eba6e3b1532 Signed-off-by: Gulsah Kose <gulsah.1004@gmail.com> Reviewed-on: https://gerrit.libreoffice.org/35020 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Eike Rathke <erack@redhat.com>
2017-04-08support undo of whole conditional format list, tdf#95617Markus Mohrhard
Change-Id: I3ff0ddb05f794064e33164c60cd1b4e6b89dbcca Reviewed-on: https://gerrit.libreoffice.org/36295 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
2017-03-17remove unused defines from HRC files in sc(1)Noel Grandin
Change-Id: I7803a0564b2f7a2308bd7d009dbd300bec8a755f Reviewed-on: https://gerrit.libreoffice.org/35316 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2017-02-17remove unused formula ErrorCode enumeratorsNoel Grandin
Change-Id: I0d81b43ba4e0a8734074651228743acaeae7aa97
2017-02-16convert EESpellState to scoped enumNoel Grandin
and drop unused EE_SPELL_NOLANGUAGE enumerator Change-Id: I74a5f89335883a13d77b39f78b7de55bddb1f107
2017-01-31renumber global string IDs and close gapsEike Rathke
Eliminating 11 unused IDs that occupied empty elements in the string table. Also moved STR_ERR_NAME_INVALID_CELL_REF to the proper position. Change-Id: I2534476895edb438c7404d781781e6088adf0385
2017-01-28tdf#86214 User isn't warned entering a cell address not allowedAbhilash Singh
Refactored ScRangeData::IsNameValid Change-Id: I74dd5830d13e48e8fe9a5180a819be4acdc9a1db Reviewed-on: https://gerrit.libreoffice.org/33386 Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Jenkins <ci@libreoffice.org>
2017-01-03tdf#87111 Warn about data loss when deleting source data of pivot tableAbhilash Singh
Change-Id: I59ab7551494622b8f1e68bfd9ef5e7ae19e65aee Reviewed-on: https://gerrit.libreoffice.org/31852 Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Eike Rathke <erack@redhat.com>
2016-11-20PivotMedian: Implement median as a new pivot table functionTamás Zolnai
Change-Id: Ife90c8f1c36980254de3cec6e395a6ba94d99fea
2016-11-20Remove some unused resource stringsTamás Zolnai
Change-Id: I8529aa491d37aef5e732909357ddf93372dde6d2
2016-08-22Make the string 'and' translatable in Manage Conditional Formatting dialogAndras Timar
Change-Id: Ieb6422c399866c02e6f1e6170a2753495a7be5fd Reviewed-on: https://gerrit.libreoffice.org/28279 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
2016-06-27SfxProgress::SetState always returns trueStephan Bergmann
Change-Id: Ib606b0391f814ea9ff4383397a40a8a692563fa3
2016-06-01notebookbar: working number format listboxSzymon Kłos
Change-Id: I1555934646148b9cd4164cbaaf09dcb9affe861e Reviewed-on: https://gerrit.libreoffice.org/25579 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
2016-05-19Revert "tdf#35208 Allow choosing encoding for old Excel files"Maxim Monastirsky
This reverts commit 4f1ce46b8d65360436e09750242101b566e6186c. Change-Id: I4b93ef8233f172935e72401ec51abd3d4c8a9fac Reviewed-on: https://gerrit.libreoffice.org/25152 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Maxim Monastirsky <momonasmon@gmail.com>
2016-05-19tdf#35208 Allow choosing encoding for old Excel filesMaxim Monastirsky
Lots of BIFF2-BIFF5 files out there don't have CODEPAGE record at all, or have one with a wrong value, and/or FONT records with wrong charset value. To solve that, this patch adds a new "Choose Encoding" entry to the file picker, so that users could specify the encoding to use for a given file, instead of relying on the information that might be present (or not) inside the file. It can be also used in headless mode, e.g. --infilter="MS Excel (encoded)":61 This doesn't affect BIFF8 import, nor the default behavior when not explicitly using the "Choose Encoding" entry. Change-Id: I89d850d7679b81bd399044478fac7a02e8b7680e
2016-03-07add STR_LONG_ERR_MATRIX_SIZE "Error: Array or matrix size"Eike Rathke
Change-Id: I81f7b278ba75abca6db59ab12dd1cf79dda15d20
2016-01-21tdf#34873 : Show autofilter row count in status barDennis Francis
Change-Id: I91aa637d654c1f4d828832f2e43ad21f03036ad0 Reviewed-on: https://gerrit.libreoffice.org/20134 Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Eike Rathke <erack@redhat.com>
2016-01-21IMHO " : " doesn't need to be localizable, tdf#95878 follow-upEike Rathke
Removing STR_FUNCTIONS_NAMEDESCS from resident strings, what should poor localizers translate it to anyway? Change-Id: I333f3e48332a0796112c28c230be20529e2241c4
2016-01-18tdf#95878 made more useful function suggestion system in formula editingKeigo Kawamura
I made function list suggestion and description tip in libreoffice calc. This change give us a nice function suggestion and easy function input. For example if I write "=i" then calc suggests "[if], iferror, ifna, and 50 more". You should only choice the function you would write with Ctrl-Tab and Ctrl-Shift-Tab, and then type Enter. Also there is a description of suggesting function, so even if you do not know the true name of the function you want to write, you can find the function. This change also give us a description of arguments of selected function. If I write "=i" and push enter key, then calc show "=if()" and a description of arguments of function "if()". Change-Id: Icd5ad04ea092fa39f27bb2776fd9e93649896baf Reviewed-on: https://gerrit.libreoffice.org/20035 Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Eike Rathke <erack@redhat.com>
2015-10-28add comment that some STR_COND_... values must be in sequenceEike Rathke
Change-Id: Ibb1b14aa624b1ff6f52c5db8ba799d8cf30c3484
2015-07-13renumber globstr.hrc STR_...Eike Rathke
and move STR_HEADER_RANGE_OR_EXPR and STR_HEADER_RANGE to proper positions. Renumbered sc/inc/globstr.hrc consecutively using sc/util/number-defines-consecutively.awk which closed a gap of six strings. Change-Id: Ibf643ad5b243caf7b01226af399e60bbe0433a15
2015-07-13Resolves: tdf#92709 conditional formats are applied to ranges, not expressionsEike Rathke
Hence we need a separate string as header in the dialog. Unfortunately I did not see this when applying 0cf38e7d0c5d2b67dca828aae1797bff58b6c5fe Change-Id: Ib60cef29e663e71a25849df1d5a926f0e871bb8b
2015-04-10tdf#89641 Page numbering in Calc and Draw/ImpressDobra Gabor
Change-Id: I5ce2f528ae4a243ea8402c787b5c77cf75052d2e Format: "Slide 2 / 3" changed to "Slide 2 of 3 (1)". Reviewed-on: https://gerrit.libreoffice.org/14806 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Katarina Behrens <Katarina.Behrens@cib.de> Tested-by: Katarina Behrens <Katarina.Behrens@cib.de>
2015-03-28tdf#42897 Warn the user if string without quote is entered as condition value.Laszlo Kis-Adam
Change-Id: I5b30b608c0192b434ff237513ed7fbbf5af43f11
2014-10-02New feature to allow converting formula cells to static values.Kohei Yoshida
You used to have to convert formula cells to static values by copying them and pasting them as values onto the original place. Why not just allow converting them in place? This is something I've always wanted to implement.
2014-04-24add undo action for conditional formatting, cp#1000050, fdo#77381Markus Mohrhard
Change-Id: I11db1e5824077135c4352ae43cc0e8d139244268
2014-03-19cp#1000022: Display message in print preview when there is nothing to show.Kohei Yoshida
To make this experience slightly less confusing. Change-Id: I844dd2cdbc0349433d445955cdcf5e9723673286
2014-03-19fdo#64290 ui:count selected rows and columnsgdm.manmeet
Change-Id: Ie6443fd9b1ac6332b4937c4b6b5d565cca1fe612
2014-02-05fdo#74132: Do not interrupt search in Calc.Matúš Kukan
Extending f25cdaa78d5e7d200fbaf31cce9895bab7c5ee63 "fdo#74132: Do not interrupt search in Writer." for Calc. Change-Id: I3a7e5070300993d2811a79f17cb1b2edb0355c44
2013-10-30renumbered string ID defines consecutively to close gapsEike Rathke
... and shrink the resident array a little. Also included the awk script that does this. Change-Id: I47ab6d9d49d229dcffeef1a684f5c6fa836f91d0
2013-10-30renamed STR_COUNT to SC_GLOBSTR_STR_COUNT to clarify ...Eike Rathke
... that it is not an ID of a string but indeed the count of global strings. Change-Id: Ia4ebc389bad86333bae6a3ce761399b9248f2696
2013-10-30STR_VALERR had no place in globstr, moved to scstring SCSTR_VALERREike Rathke
Change-Id: I311918aaacc8b0de32af5bd7fd7e5be146d977e2
2013-10-30moved StatisticsDialogs string IDs from globstr to RID_STATISTICS_DLGSEike Rathke
They aren't needed in globstr and weren't in RID_GLOBSTR anyway but in global STR_START+... range possibly sharing IDs with something else after STR_END of sc.hrc ... Change-Id: I1f9f8e9e1748afdd00ceb3106ec405456415ee21
2013-10-30commented purpose of this file to clarify resident natureEike Rathke
currently it's a mess of what was added here Change-Id: Iaea4a6a44358c93c9dda45030898e2cb453526af
2013-10-30proper include guard nameEike Rathke
Change-Id: Ib2c8724ba0759860a6374d9152c6a1d93387f5cd