summaryrefslogtreecommitdiff
path: root/officecfg
AgeCommit message (Collapse)AuthorFilesLines
2018-02-23tdf#114768: Update default font list for Simplified ChineseYousuf Philips1-20/+20
Change-Id: I23e92f1248d8f0bc424278e565bd5bfdbe30f7c5 Reviewed-on: https://gerrit.libreoffice.org/49520 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Yousuf Philips <philipz85@hotmail.com>
2018-02-23tdf#113651 Sync Calc Track Changes commands with WritersYousuf Philips3-23/+27
For a consistent UX Change-Id: I1ad937124786d2e7d0a752f819144172ae902ed5 Reviewed-on: https://gerrit.libreoffice.org/45267 Reviewed-by: Heiko Tietze <tietze.heiko@gmail.com> Tested-by: Heiko Tietze <tietze.heiko@gmail.com> Tested-by: Jenkins <ci@libreoffice.org>
2018-02-18tdf#113907 Remove StartModuleCommands.xcuStephan Bergmann2-26/+0
...now that it's empty after a1eff3100a41f592407916dd4a21d0404f1364e1 "tdf#114206 remove duplication of strings in startmodulecommands.xcu" Change-Id: I46bd0e86a274b65919a4a3f4a4036a7858520376 Reviewed-on: https://gerrit.libreoffice.org/49879 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2018-02-16tdf#114206 remove duplication of strings in startmodulecommands.xcuYousuf Philips1-186/+0
Change-Id: I4d034c029eec58d9e7c2dd500efc0b65a3c3dcb8 Reviewed-on: https://gerrit.libreoffice.org/44885 Reviewed-by: Yousuf Philips <philipz85@hotmail.com> Tested-by: Yousuf Philips <philipz85@hotmail.com>
2018-02-14tdf#113538 David CLM has higher priority to David LibreYousuf Philips1-1/+1
Mistake from my earlier patch a2158c6ca2ba831665019827889f01e98dc93394 Change-Id: Id535ca2243e368fde9482ae9853f7ae6dd10a449 Reviewed-on: https://gerrit.libreoffice.org/49392 Reviewed-by: Lior Kaplan <kaplanlior@gmail.com> Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Yousuf Philips <philipz85@hotmail.com>
2018-02-14tdf#114858 Use Ctrl+` for Formula Toggle on MacYousuf Philips1-1/+7
Change-Id: I0685eb0d1f6ea7c8502bbaa22f0e90004947282d Reviewed-on: https://gerrit.libreoffice.org/48793 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Yousuf Philips <philipz85@hotmail.com>
2018-02-11Check for erroneously localized values of non-localized propertiesStephan Bergmann1-0/+15
See ffd8369b909c86653ef30593fddf67c9f5308583 "rhbz#1541486: Fix localized'ness of ooSetupFactoryUIName props". Turns out adapting the XSLT was easier than feared. The two other incidents found are fixed with c7ab472b47023c94c06de9e3479a2e0271084dfc "/org.openoffice.Office.Writer/Layout/Other/TabStop should be localized" and 552bebc85d907748dcd72b7978a00a3eee7c4f34 "/org...Writer/Insert/Caption/CaptionOrderNumberingFirst should be localized". Change-Id: Ic3b29a69d517440d133daed1f3b07d1f7510dab8 Reviewed-on: https://gerrit.libreoffice.org/49473 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2018-02-09/org...Writer/Insert/Caption/CaptionOrderNumberingFirst should be localizedStephan Bergmann1-1/+1
...as f6281ec4112479b5bdd750be351f4437ecf8a65a "#i110273# caption order changed for locale hu" added a special value for xml:lang="hu", but failed to take into account that the property is not localized. Until now, every installation that had the hu localization installed (but regardless of whether or not it was actually using it) would always have reported the special hu value (true), while any other installation would always have reported the default value (nil, mapped to false in the else branch at the end of SwInsertConfig::Load, sw/source/uibase/config/modcfg.cxx). Unless the value was overwritten in registrymodifications.xcu (by changing the Options dialog "LibreOffice Writer - AutoCaption - Caption Order" setting). In which case the hu localization will now start to use its default again (true), while all other localizations will continue to use whatever value had been stored (without an xml:lang attribute) in registrymodifications.xcu. This is a bit unfortunate for the hu-localization case. It should probably be mentioned in the release notes. (Strictly speaking, changing a property from non-localized to localized, as is done here as well as in e.g. ffd8369b909c86653ef30593fddf67c9f5308583 "rhbz#1541486: Fix localized'ness of ooSetupFactoryUIName props" is an incompatible change which 3rd-party code can observe through the css.configuration UNO API. But chances are extremely low that this will have any impact, as access to any property's value is normally done in a way that makes it transparent whether or not the property is localizied.) Change-Id: Ia840e28e10d0fa388bff6eaf8aadf0e8e6b25a19 Reviewed-on: https://gerrit.libreoffice.org/49414 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2018-02-09/org.openoffice.Office.Writer/Layout/Other/TabStop should be localizedStephan Bergmann1-1/+1
...as b1b3251478926251d4d1c3e9ef864171548d85b5 "INTEGRATION: CWS os103: #i81308# default tab stop in local zh-CN changed to 0.74 cm" added a special value for xml:lang="zh-CN", but failed to take into account that the property is not localized. Until now, every installation that had the zh-CN localization installed (but regardless of whether or not it was actually using it) would always have reported the special zh-CN value (740), while any other installation would always have reported the default value (1250). Unless the value was overwritten in registrymodifications.xcu (which, it turns out, it always was, see 35140501779622194337e630b274e74abeedca4d "Add missing no-modify mode for SwMasterUsrPref::Set* functions"; but could also have been done explicitly by the user by changing the Options dialog "LibreOffice Writer - General - Settings - Tab stops" setting). In which case the zh-CN localization will now use its default value (740), while all other localizations will use whatever value had been stored (without an xml:lang attribute) in registrymodifications.xcu. This is unfortunate (as the zh-CN localization may lose any value explicitly set by the user, while non-zh-CN localizations may continue to use a wrong default value, if the zh-CN localization is or ever had been installed). It should probably be mentioned in the release notes. (Strictly speaking, changing a property from non-localized to localized, as is done here as well as in e.g. ffd8369b909c86653ef30593fddf67c9f5308583 "rhbz#1541486: Fix localized'ness of ooSetupFactoryUIName props" is an incompatible change which 3rd-party code can observe through the css.configuration UNO API. But chances are extremely low that this will have any impact, as access to any property's value is normally done in a way that makes it transparent whether or not the property is localizied.) Change-Id: I6f49ecd9ac145dfe6825e727e72fffea515490ea Reviewed-on: https://gerrit.libreoffice.org/49433 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2018-02-09tdf#115470 - Name of the "Cycle Case" is too longheiko tietze1-3/+3
Long text moved into a tooltip Change-Id: I981970c6e1fa16397264ea852fcd9bc480a41980 Reviewed-on: https://gerrit.libreoffice.org/49413 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Maxim Monastirsky <momonasmon@gmail.com>
2018-02-08tdf#108224: rename insert author menu entryGabriele Ponzo1-1/+1
The Insert Author menu entry does not insert the author field but the "DocInformation:Created" field. Change-Id: I6dadbf17d5cd3cd2c7b652c1b1c28996c1148a8c Reviewed-on: https://gerrit.libreoffice.org/49281 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
2018-02-05Remove unused officecfg/util/template.genStephan Bergmann1-51/+0
...that appears to be unused (and effectively unchanged) at least ever since ee27dd72550ce8815e06e337d3682d5b8d9d7b11 "initial import" Change-Id: Ie10fa6c28c375cc467aad104cbc224aef91b0d31 Reviewed-on: https://gerrit.libreoffice.org/49249 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2018-02-05rhbz#1541486: Fix localized'ness of ooSetupFactoryUIName propsStephan Bergmann1-1/+1
8f44fb5ee0bd21d192820ffd359504f6d1c68a52 "Mark Base window titles for localisation" localized some uses of ooSetupFactoryUIName in officecfg/registry/data/org/openoffice/Setup.xcu, but failed to mark the prop as oor:localized="true" in officecfg/registry/schema/org/openoffice/Setup.xcs. (So some arbitrary localized version of the prop would win at runtime, potentially displaying certain window titles in wrong languages.) Other uses of ooSetupFactoryUIName in Setup.xcu (for "Calc", "Impress", "Writer", etc.) have never been localized, and are probably not meant to be localized. AFAICS, irrespective of oor:localized="true" in Setup.xcs, their values not being marked with xml:lang="en-US" in Setup.xcu will mean that they will not appear in translations/source/*/officecfg/registry/data/org/openoffice.po and will not accidentally start to be translated after this commit. (Theoretically, inconsistencies between oor:localized in xcs and uses of xml:lang in xcu could statically be caught at build time, e.g., with officecfg/util/sanity.xsl. However, those checks work on each XML file individually, so don't have the schema information available when looking at the data in the xcu file. And those checks are written in XSLT, which makes writing new checks rather, erm, unpleasant.) Change-Id: I9c61e8ebf75d3d54f7e5b6688eac47a6ed8dc5c3 Reviewed-on: https://gerrit.libreoffice.org/49252 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2018-02-05Remove unused officecfg/util/resource.xslStephan Bergmann1-70/+0
...that was presumably used from officecfg/registry/schema/makefile.mk when it got introduced with 0fdb9a2b4abb0d05bbe89692515e5dc8f03768ad "#100282# create java property files for SOMC", but appears to be unused today (and has effectively been left unchanged since its introduction) Change-Id: I0b6ffbf1dff6950d24fa13c55f5b9cba23cd737f Reviewed-on: https://gerrit.libreoffice.org/49250 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2018-02-05Remove unused officecfg/util/component-*.gen filesStephan Bergmann3-242/+0
...that appear to never have been used for anything that would still be relevant for LO today at least, and have effectively never been modified since their introduction with 0ff65e7aa039b442e61080aae50e4ef629f8ff4c "#97750# property mapping for LDAP DS" (and seem to be about some other LDAP integration than what is provided by officecfg/registry/schema/oo-*.xcd.sample) Change-Id: I36f92dbb187ff6966e0b89152f3dd3eeb128662e Reviewed-on: https://gerrit.libreoffice.org/49248 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2018-02-01Support for webdav:// and webdavs:// schemes from command lineVasily Melenchuk1-0/+23
We have currently support for WebDAV schemes as vnd.sun.star.webdav:// but it is not user and tools friendly. Some related refactoring in ucb to reuse existing code instead of manual parsing of URLs. Change-Id: Ib14411796d6cf11afd80d5132abe67d4e46a42e1 Reviewed-on: https://gerrit.libreoffice.org/48585 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Katarina Behrens <Katarina.Behrens@cib.de>
2018-01-31Disable threading for formula groups for now.Michael Meeks1-1/+1
Change-Id: Ic72762c030878158d505306cbdd9c50553feecfd Reviewed-on: https://gerrit.libreoffice.org/49032 Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Michael Meeks <michael.meeks@collabora.com>
2018-01-26tdf#114200 : added 'Trim space' feature in 'Text Import'manujvashist1-0/+21
made a checkbox to Trim extra white spaces from both ends while using seperators in 'Text Imort' Change-Id: Ib05d9b17525e3ebec380ec8b7eebfa35fff78f01 Reviewed-on: https://gerrit.libreoffice.org/46177 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Manuj Vashist <manujvashist@gmail.com> Reviewed-by: Heiko Tietze <tietze.heiko@gmail.com> Tested-by: Heiko Tietze <tietze.heiko@gmail.com>
2018-01-26[Pardus] tdf#87357 Add contextual Conditional Format command.Gulsah Kose1-1/+13
This patch is sponsored by ULAKBIM/Pardus project. Change-Id: Id6148d39f68ac39067cc3a09b314c4f4de773384 Signed-off-by: Gulsah Kose <gulsah.1004@gmail.com> Reviewed-on: https://gerrit.libreoffice.org/48417 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Heiko Tietze <tietze.heiko@gmail.com> Tested-by: Heiko Tietze <tietze.heiko@gmail.com>
2018-01-25[Pardus] tdf#108989 Add contextual manage names command.Gulsah Kose1-0/+5
If cursor in a named range .uno:DefineCurrentName command appears on context menu. Opens manage names dialog. This patch is sponsored by ULAKBIM/Pardus project. Change-Id: I730fd427fa3d6f5c92563282ff8ca3c0e668eddd Signed-off-by: Gulsah Kose <gulsah.1004@gmail.com> Reviewed-on: https://gerrit.libreoffice.org/47925 Tested-by: Jenkins <ci@libreoffice.org>
2018-01-24[Pardus] tdf#108989 Add contextual validity command.Gulsah Kose1-0/+5
When cursor is in a cell has following validity attributes SC_VALID_WHOLE, SC_VALID_DECIMAL, SC_VALID_DATE, SC_VALID_TIME,SC_VALID_TEXTLEN, SC_VALID_LIST, SC_VALID_CUSTOM, Validity command appears on context menu. This patch is sponsored by ULAKBIM/Pardus project. Change-Id: I47c0de7b62befdf02c343c1419cf32441d8f4df2 Signed-off-by: Gulsah Kose <gulsah.1004@gmail.com> Reviewed-on: https://gerrit.libreoffice.org/48067 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Heiko Tietze <tietze.heiko@gmail.com> Tested-by: Heiko Tietze <tietze.heiko@gmail.com>
2018-01-22tdf#114523 Make inline tooltips for changes optionalheiko tietze1-0/+8
Tooltips on tracked changes are not shown when Show track changes is switched off; additional property introduced at Tools > Option > Writer > Changes to disable the inline tooltip completely Change-Id: I5b54895bb22d167a383b06627c69326c3c2f5b02 Reviewed-on: https://gerrit.libreoffice.org/46971 Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com> Tested-by: Heiko Tietze <tietze.heiko@gmail.com>
2018-01-20Fix Clone Formatting command labels in Writerheiko tietze1-5/+14
Regression of effc05eecb1359239ca7a86103a6fd9fc8424015 ("tdf#103705 Tooltip improvement for clone formatting") Change-Id: I3e7bfd95cb0de07d5ca4cd85166f679f7673655c Reviewed-on: https://gerrit.libreoffice.org/48201 Reviewed-by: Maxim Monastirsky <momonasmon@gmail.com> Tested-by: Maxim Monastirsky <momonasmon@gmail.com>
2018-01-12tdf#114939 officecfg,sfx2: always use AES/SHA256 in ODF 1.2Michael Stahl1-15/+0
The setting ODFVER_012_EXT_COMPAT "1.2 Extended (compatibility mode)" no longer has an effect on the encryption algorithms. API CHANGE: Remove the configuration settings: Office.Common.Save.ODF.UseSHA1InODF12 Office.Common.Save.ODF.UseBlowfishInODF12 Rationale: * Every release since 2012, from LO >= 3.4 and AOO >= 3.4, can read AES/SHA256 encrypted files. * SHA1 is broken anyway * tdf#114939 causes SHA1 interop issues Retain SHA1/Blowfish only for ODF 1.1 export. Change-Id: I007511d4830a90121e38bf5bb4534df5695621e9
2018-01-11tdf#103705 Tooltip improvement for clone formattingheiko tietze1-0/+5
Change-Id: I77b621197cd5d5ecd514390da216c1a903248db8 Reviewed-on: https://gerrit.libreoffice.org/47578 Reviewed-by: Heiko Tietze <tietze.heiko@gmail.com> Tested-by: Heiko Tietze <tietze.heiko@gmail.com>
2018-01-09tdf#114768: Update default font list for Traditional ChineseYousuf Philips1-27/+27
* Add Noto Sans/Serif CJK as alias for Source Han Sans/Serif * Order lists into open source, mac, windows and fallback * Add missing english names for localized names * Trim list of fallback fonts Change-Id: I7eb0b5bd54eb4625d6d605a2bc649c48411462ab Reviewed-on: https://gerrit.libreoffice.org/47191 Reviewed-by: Cheng-Chia Tseng <pswo10680@gmail.com> Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Mark Hung <marklh9@gmail.com>
2018-01-05tdf#95024 Add user dictionary for hu dict packageLászló Németh1-0/+1
supporting old Hungarian orthography optionally, according to the official 3-year transitional period in schools. Change-Id: Ifbc5583c1e53bc4ac07e73a90e0dd02e159f83e6 Reviewed-on: https://gerrit.libreoffice.org/47398 Reviewed-by: László Németh <nemeth@numbertext.org> Tested-by: László Németh <nemeth@numbertext.org>
2018-01-01Reduce large VARCHAR columns of the wizard sample databases to fit FirebirdTor Lillqvist1-38/+38
The maximum size of a VARCHAR column in Firebird is 32765 bytes [sic]. We use the UTF8 character set and that means 8190 characters as each character might take four bytes. The maximum size of a row in Firebird is 64 KB [sic]. Avoids errors when creating sample tables using the wizard using just the default values. If the varchar column lengths are under 8190 but the total row size is too large you do get a relatively helpful error message "new record size of <N> bytes is too big", but if you try use a too large size for a varchar column, just some "SQL error code = -204", "Impmentation limit exceeded", etc. Change-Id: I17c2bed4fc098f4e159822f6f81242aae274da7b Reviewed-on: https://gerrit.libreoffice.org/47232 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Tor Lillqvist <tml@collabora.com>
2017-12-23tdf#114605 Allow line split buttons to work in the menusYousuf Philips1-0/+42
Change-Id: Ie6cb2b19c56cb5b38f1dca89dba775970f405748 Reviewed-on: https://gerrit.libreoffice.org/46905 Reviewed-by: Maxim Monastirsky <momonasmon@gmail.com> Tested-by: Jenkins <ci@libreoffice.org>
2017-12-23tdf#95827 Reorganize draw's menu barYousuf Philips1-2/+23
Change-Id: Ied9be2da293e6d318548019e29ae4f95e568144a Reviewed-on: https://gerrit.libreoffice.org/46867 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Yousuf Philips <philipz85@hotmail.com>
2017-12-22request installation of langpack via packagekitCaolán McNamara2-0/+9
if ui is set to track the locale automatically and the current locale has no match in installed resources but has a match in the list of languages that libreoffice was compiled to contain so e.g. de_AT locale shouldn't trigger the installation of anything if langpack-de is already installed and yue_HK shouldn't trigger install of anything cause that not supported (at time of writing) for libreoffice put Fedora/RHEL/Ubuntu naming schemes in here. I moved the lang code from svl to svtools so I could use the restart dialog to prompt to restart after the langpack is installed, but packagekit's blocking mode seems to be no longer blocking and control returns immediately which is a change since the last time I played with this stuff, so drop the restart thing for now. The lack of a blocking modal also makes the "run this on idle when there's a toplevel window up and running" a bit futile, but lets keep that for now anyway. caolanm->rene: I know you'd disable this anyway, so Debian is left out, there's also config key Office/Common/PackageKit/EnableLangpackInstallation to disable this too. Change-Id: Ice731be539850338ccdd8af87839e0b4d83f01e7 Reviewed-on: https://gerrit.libreoffice.org/46856 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2017-12-21tdf#91781 Writer: Add Breaks submenu in Insert menuYousuf Philips1-0/+5
Change-Id: I6d143aa058bce731493e3f90fe361ee2a0d257f9 Reviewed-on: https://gerrit.libreoffice.org/46865 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Heiko Tietze <tietze.heiko@googlemail.com> Reviewed-by: Yousuf Philips <philipz85@hotmail.com>
2017-12-21tdf#113979 Add option to Skip empty cellsLaurent BP1-0/+14
During "Txt to column", empty cells should erase previous content (see tdf#69981) But during paste, user may want to keep previous content. This option makes all users happy. During import of CSV file, this option is hidden. In the same time, I've tried to remove some duplicate code. Update: properties offsets are now enum and replace define const Change-Id: I88be2d0432ff804033cff050422e666fa2882efd Reviewed-on: https://gerrit.libreoffice.org/46651 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Eike Rathke <erack@redhat.com>
2017-12-21Fix labels for page-related group button entriesYousuf Philips1-2/+2
Change-Id: Ia6ed455cc7b5e41895950a22b8d75284c847ebee Reviewed-on: https://gerrit.libreoffice.org/46873 Reviewed-by: Yousuf Philips <philipz85@hotmail.com> Tested-by: Yousuf Philips <philipz85@hotmail.com>
2017-12-20Fix typosAndrea Gelmini1-1/+1
Change-Id: I6f0eb93ec654e629c8fbe761f000190ea9343103 Reviewed-on: https://gerrit.libreoffice.org/46824 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
2017-12-20Fix typosAndrea Gelmini1-1/+1
Change-Id: I28d73221ea83d89f73460f591723c6f80594ff15 Reviewed-on: https://gerrit.libreoffice.org/46822 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
2017-12-20add icons to Reply and Delete Commentandreas kainz1-0/+6
Change-Id: Ie593a8cad4d0cbd663901fcabe07e5efb98f78be Reviewed-on: https://gerrit.libreoffice.org/46827 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: andreas_kainz <kainz.a@gmail.com>
2017-12-19tdf#113538 New font order for hebrew fontsYousuf Philips1-5/+5
Change-Id: I6e820886204a53de3b29f30b42bb6503cfcc8e35 Reviewed-on: https://gerrit.libreoffice.org/45065 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Yousuf Philips <philipz85@hotmail.com>
2017-12-18tdf#113590 Unify labels between both special character controlsYousuf Philips1-11/+14
Change-Id: I40a3d53b6d7052d4c09b4906022d5d142e1dd298 Reviewed-on: https://gerrit.libreoffice.org/46422 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Yousuf Philips <philipz85@hotmail.com>
2017-12-17tdf#113928 Add uno:ReadOnlyDoc command.Gulsah Kose1-0/+8
That uno command is opposition to uno:EditDoc command. Change-Id: I34977a46c274574e8e44097a16c0fa8972d68559 Signed-off-by: Gulsah Kose <gulsah.1004@gmail.com> Reviewed-on: https://gerrit.libreoffice.org/45005 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Maxim Monastirsky <momonasmon@gmail.com>
2017-12-17tdf#91857 Round of improvements to Impress's menus for 6.0Yousuf Philips1-7/+2
Change-Id: I844b8396a55820da904d4813cbb84c56c33af51c Reviewed-on: https://gerrit.libreoffice.org/46583 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Yousuf Philips <philipz85@hotmail.com>
2017-12-17tdf#91820 Round of improvements to Calc's menus for 6.0Yousuf Philips2-5/+7
Change-Id: Ia738456e5b351cc92777cd9795a3bfc641c454bc Reviewed-on: https://gerrit.libreoffice.org/46582 Reviewed-by: Yousuf Philips <philipz85@hotmail.com> Tested-by: Yousuf Philips <philipz85@hotmail.com>
2017-12-16tdf#114286 Move UnderlineDouble to GenericCommandsYousuf Philips4-24/+8
Change-Id: Iaaffb70e0023317816b582e3d2ea32eded66cd71 Reviewed-on: https://gerrit.libreoffice.org/45974 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Yousuf Philips <philipz85@hotmail.com>
2017-12-16tdf#91781 Round of improvements to Writer's menus for 6.0Yousuf Philips2-7/+80
Change-Id: I17c1edc2e14146144868df51a1f5a71e323eead6 Reviewed-on: https://gerrit.libreoffice.org/46451 Reviewed-by: Yousuf Philips <philipz85@hotmail.com> Tested-by: Yousuf Philips <philipz85@hotmail.com>
2017-12-14tdf#83877 Edit existing signature linesSamuel Mehrbrodt1-2/+10
Change-Id: I7a6861f599cb8794bcb8c246179cf6c7ff9966f3 Reviewed-on: https://gerrit.libreoffice.org/46289 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
2017-12-13tdf#83877 Add dialog to generate signature lineSamuel Mehrbrodt1-0/+8
Change-Id: Iacc929edf1469c7e37707f8d9518cd07642bb9dd Reviewed-on: https://gerrit.libreoffice.org/45810 Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> Tested-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
2017-12-13Remove traces of Report Builder's former status as extensionLionel Elie Mamane3-9/+3
Change-Id: I63730632933cbb1d6e655f70d222ffaaabd3fa08 Reviewed-on: https://gerrit.libreoffice.org/46361 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2017-12-09tdf#113715 Fix .uno: names appearing in the customization dialogMaxim Monastirsky3-16/+8
Change-Id: Ia4a4231acf2f15ebf58f2acd02b7fc0ab5a88072 Reviewed-on: https://gerrit.libreoffice.org/46062 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Heiko Tietze <tietze.heiko@googlemail.com> Tested-by: Heiko Tietze <tietze.heiko@googlemail.com> Reviewed-by: Maxim Monastirsky <momonasmon@gmail.com> Tested-by: Maxim Monastirsky <momonasmon@gmail.com>
2017-12-08tdf#86085 add slot for toggling thousands separatorJim Raykowski1-0/+8
In preparation of adding a button to the toolbar. Change-Id: Icd97f828def1aacbb92297e8e74bdd2310c4d0f8 Reviewed-on: https://gerrit.libreoffice.org/45731 Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Eike Rathke <erack@redhat.com>
2017-12-07tdf#106988 New names for the new numbering stylesYousuf Philips1-4/+4
Change-Id: Ibc93aaa552652d61ac49652cf0ac5fcb68b48a12 Reviewed-on: https://gerrit.libreoffice.org/37995 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Michael Stahl <mstahl@redhat.com>