summaryrefslogtreecommitdiff
path: root/sw/inc/dbui.hrc
AgeCommit message (Collapse)Author
2019-02-07complete the univerbation of E-mail to Email in the uiCaolán McNamara
it now looks old-fashioned hyphenated Change-Id: I5b2b905277356c1b986f97de29f82ac1c21b1709 Reviewed-on: https://gerrit.libreoffice.org/66796 Tested-by: Jenkins Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
2019-01-11tdf#42949 Fix IWYU warnings in sw/inc/*Gabor Kelemen
Found with bin/find-unneeded-includes Only removal proposals are dealt with here. - Also fix .h / .hrc files - Remove a bit of duplication from the .yaml file Change-Id: I22145a79343497678e481d882544eb08e765312a Reviewed-on: https://gerrit.libreoffice.org/65878 Tested-by: Jenkins Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
2018-11-17Adapt to C++2a char_tStephan Bergmann
u8 literals incompatibly change their type (as implemented by recent Clang trunk) Change-Id: Ia4f7b91f5d86656a056303d2754981ab2093a739 Reviewed-on: https://gerrit.libreoffice.org/63494 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.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-07-18sw mail merge: add support for the new 'writer' connectivity driverMiklos Vajna
By mapping the .odt, .sxw, .doc and .docx extensions to sdbc:writer:. If we are at it, also accept xlsx next to xls. Change-Id: I8c6769b282adec1e7e8d191170e7aa9b324f2018 Reviewed-on: https://gerrit.libreoffice.org/40147 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
2017-04-27remove sw bitmaps from .src filesCaolán McNamara
Change-Id: I9ccd69662f9d3a77d1921b3433b0e2f541960a90 Reviewed-on: https://gerrit.libreoffice.org/37020 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2017-03-16remove unused defines from HRC files in sw/Noel Grandin
Change-Id: I74fb244b2440ddf7682362444c20730ac0e58cea Reviewed-on: https://gerrit.libreoffice.org/35212 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2017-03-08tdf#98899 Set a title for Mail Merge Wizard windowGabor Kelemen
Change-Id: Id50bae820bf5e4a84587ead0b600225a5f625050 Reviewed-on: https://gerrit.libreoffice.org/34964 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Katarina Behrens <Katarina.Behrens@cib.de>
2016-12-20unwind ILIST ImageListCaolán McNamara
Change-Id: I260f4263db35f708891e26fa943c1fd6af402366
2016-04-12Avoid reserved identifiersStephan Bergmann
Change-Id: Ib8cbcdff79ad8d621b8e9567df0afe32e9501279
2016-03-18mailmerge: Remove "Edit document" page, fuctionality available via toolbar.Jan Holesovsky
Change-Id: I0a5d1ed6703871dc5e90acf5e1119e0126755282
2016-03-18mailmerge: Implement toolbar controller to exclude entries.Jan Holesovsky
This can be used as a "How to implement a custom widget / control in the toolbar" example: * the Controller.xcu change introduces a .uno:MailMergeExcludeEntry command so that it can be added in the toolbar .xml description (in this case mailmerge.xml) * the swriter.sdi introduces the .uno:MailMergeExcludeEntry command for the sfx2 handling - so that it can get notifications about enable/disable changes, invalidates, etc. * wrtapp.sdi + associated apphdl.cxx change make it possible to forward command invalidates (the rBindings.Invalidate(FN_MAILMERGE_EXCLUDE_ENTRY);) to the MMExcludeEntryController::statusChanged() for further handling (in this case setting the checked state according to the current data) * MMExcludeEntryController::createItemWindow() implements the custom widget itself (in this case a checkbox, but can be any VCL widget, even a custom one) * the rest (sw.component and the associated getImplementationName(), supportsService(), etc.) takes care of the instantiation of the controller. Change-Id: I68269538f779a6680b0ba98395b7985d3f1ab95a
2015-11-28Typo: ST_DOCUMETNTYPE->ST_DOCUMENTTYPEJulien Nabet
Change-Id: I0067f2b2493f5ecd7430bbcbb3743407199d2a7e Reviewed-on: https://gerrit.libreoffice.org/20247 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Julien Nabet <serval2412@yahoo.fr>
2014-09-02convert DLG_MAILMERGECHILD floating window to .uiCaolán McNamara
Change-Id: I0ab16d3f5d86004b63f9a1baa454b18b7948f86a
2014-07-24DLG_MAILMERGEWIZARD conversion to .uiSzymon Kłos
Conflicts: sw/inc/dbui.hrc Change-Id: Id224fd3a99abe8ec497a38c40b099dd7ae917890 Reviewed-on: https://gerrit.libreoffice.org/10494 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2014-07-23use an expander instead of hand-crafted codeCaolán McNamara
Change-Id: Id5606051656f21309c9e5c8d08a2eacd65b22dbf
2014-07-23DLG_MM_SENDMAILS conversion to .uiSzymon Kłos
Change-Id: I5611508e9024032e9213636be94410280618f9e5 Reviewed-on: https://gerrit.libreoffice.org/10459 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2014-07-03make these global level residsCaolán McNamara
Change-Id: I129fa1f649f8dfcec1434734193daf22ea841889
2014-07-02DLG_MM_DBTABLEPREVIEWDIALOG and DLG_MM_MAILBODY conversion to .uiSzymon Kłos
Change-Id: Ie00c75e54918e51068ab69c5ea9047d0503b5b87 Reviewed-on: https://gerrit.libreoffice.org/10004 Tested-by: Caolán McNamara <caolanm@redhat.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2014-06-16DLG_MM_SELECTDBTABLEDDIALOG conversion to .uisk94
Change-Id: Iaaa32bd5723ae45099d0fb670b207fc64c46d306 Reviewed-on: https://gerrit.libreoffice.org/9780 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2014-06-12DLG_MM_ASSIGNFIELDS conversion to .uisk94
Change-Id: Ia625de9edd46c185c2712c0c5a7154ba1abb2894 Reviewed-on: https://gerrit.libreoffice.org/9726 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2014-06-09DLG_MM_CREATEADDRESSLIST conversion to .uisk94
Change-Id: I50b48599eac27be7834c61e4223541f662afd4c3 Reviewed-on: https://gerrit.libreoffice.org/9680 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2014-04-23huge hrc and src file cleanupThomas Arnhold
* mostly fallout from ui conversion * some completely unused defines from src files * lots of unused HID ids Change-Id: I976561205798db3d06ee139de6223f638e58f47a Reviewed-on: https://gerrit.libreoffice.org/9142 Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org> Reviewed-by: Thomas Arnhold <thomas@arnhold.org>
2014-04-22clean up hrc filesThomas Arnhold
and remove some unused stuff Change-Id: Iea6177c3d2f9d0668187e66155b62688ae2ecb04
2014-04-03convert mailmerge output page to .uiCaolán McNamara
Change-Id: Icafdd4780eebd6356bf2070ff99dbba9d6956c16
2014-03-25convert mail merge page to .uiCaolán McNamara
Change-Id: I13e23a2e5c19370b0a82c24bc96b532debf9c160
2014-03-24convert mail merge prepare page to .uiCaolán McNamara
Change-Id: I7bfd0a5b3f5ce5d548bf711ffb82b85a126fec2b
2014-03-18convert wizard layout page to .uiCaolán McNamara
Change-Id: I40ae0f7dea51bf0b8db60ec6b3cac955e9016af4
2014-03-18convert salutation wizard page to .uiCaolán McNamara
Change-Id: I31d352038175cde43020655546c8216ab4442e3e
2014-03-18convert address block wizard page to .uiCaolán McNamara
Change-Id: I38c0c7262dffaaf5280e2c000eb122f71203e385
2013-10-17mailmerge: fix salutation listAndras Timar
Previous state: there were two salutation lists, one for men, one for women. But they contained not only the salutation, but title, placeholder, and a punctuation merk. Therefore, when the user composed a Custom Salutation, and selected a pre-defined salutation, the result was something like for example "Dear Mr. 2, Mr. Lastname," instead of "Dear Mr. Lastname,". Current state: salutation list contains only salutations. There is no need for two lists, because the Custom Salutation is customizable separately for men and women and it is not necessary to choose from the list. Change-Id: Ibb4e195401f1d01d5e63c9085b99d7acf3ef1229
2013-10-14convert creating document mail merge dialog to .uiCaolán McNamara
Change-Id: Ibcb82ba8204fe94d31e32c74d8c2ade3228ff4f8
2013-10-14convert warn email's can't be sent dialog to .uiCaolán McNamara
Change-Id: I611c5cb7ab140a04e7ee4a78b6d828ca199c5624
2013-09-19convert mail merge subject/attachment dialogs to .uiCaolán McNamara
Factor out SwMessageAndEditDialog as a reusable base class. Split the attachment and subjects dialogs apart and base them on top of that. Change-Id: I321ef375b154f070715a3e8091e02974b376c9db
2013-09-16convert copy to (cc) dialog to .uiCaolán McNamara
Change-Id: I1d5ef0410a0e3d325fb6cf42dad2c07eeb89a87a
2013-09-14really convert select address block to .uiCaolán McNamara
Change-Id: Icfd77f2037a27f24fd796084509a1baa7734103b
2013-09-13convert edit address block dialog to .uiCaolán McNamara
this one nearly killed me Change-Id: I51f14017940a275cca33dacf6f42438da43f46bc
2013-09-09convert find entry dialog to .uiCaolán McNamara
Change-Id: I0d8ef363e45f9032676a161c63d7cf9bcbe417fd
2013-09-08convert add/rename entries dialogs to .uiCaolán McNamara
Change-Id: I40040a237763a0706177ba5c6c1a664a51b3ee07
2013-09-08convert already exists dialog to .uiCaolán McNamara
Change-Id: I6cb2a11b6ee2f94f611aa852c79dd1a6534381da
2013-08-31convert insert database columns dialog to .uiCaolán McNamara
Change-Id: Ia2d6b89a1e369adf55ffcabe189d34d46a4d7525
2013-08-22convert print monitory dialog to .uiCaolán McNamara
Change-Id: I59081c74adaf88d81a3c539c8fbfe3b535d7f6bb
2013-08-22MONITOR_TYPE_MAIL is never used anymoreCaolán McNamara
Change-Id: Id6d4b235e9eff610ad33a0815b2ade6d78ad704f
2013-07-05cleanup src filesThomas Arnhold
Those items are unused. Change-Id: If4fce0f91309d2ca09cbb636d4a5d9f86f38eb9a
2013-03-08fdo#60691 add modelines to *.src and *.hrc filesBorim
use solenv/bin/add-modulelines script for the task and remove all UTF bom from *.src and *.hrc files svx/source/dialog/hdft.src Change-Id: I745d4f0fe9b05436a142a03f8512970f91c41bd4
2012-06-27Reduce newline bloat at eofThomas Arnhold
Change-Id: I494ceee07d6825f9466cab810742d7f85291fe14
2012-06-21re-base on ALv2 code.Michael Meeks
Change-Id: I6c145e984c885c7e06caa1c27bfb354ea49ad9ce
2010-11-15Comment translations, bogus comments, commented code removed from SW includesRobert Roth
2010-10-06Remove redundant #include directives & commentsJ. Graeme Lingard
2010-02-12changefileheader2: #i109125#: change source file copyright notice from Sun ↵Jens-Heiner Rechtien
Microsystems to Oracle; remove CVS style keywords (RCSfile, Revision)