summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Version 5.2.0.2, tag libreoffice-5.2.0.2libreoffice-5.2.0.2libreoffice-5-2-0Christian Lohmaier2016-07-070-0/+0
| | | | Change-Id: Ic117c2199ace732725abe2797b67c05d94b66f7d
* Branch libreoffice-5-2-0Christian Lohmaier2016-07-070-0/+0
| | | | | | | | | | | | This is 'libreoffice-5-2-0' - the stable branch for the 5.2.0 release. Only very safe changes, reviewed by three people are allowed. If you want to commit more complicated fix for the next 5.2.x release, please use the 'libreoffice-5-2' branch. If you want to build something cool, unstable, and risky, use master. Change-Id: Id529a39e81a0e6879ca8e3ca7574346811800019
* remove "-" between FileAttr-Function and FileLen-Functiondistro/collabora/lov-5.2Christian Lohmaier2016-06-213-6/+6
| | | | | | | | to be consistent with the rest of the functions reported via pootle-feedback Change-Id: I6e95109a8cf4145dc84ab0f3ad699d74ee05d932 (cherry picked from commit 2f6e93f728e4c7b278b57479bf1fd8fda3344fff)
* "<emph>Drawing Object</emph> - " → "<emph>Drawing Object - </emph>"Christian Lohmaier2016-06-211-5/+1
| | | | | | | | (put the - inside the emph) reported via pootle feedback Change-Id: Ia8a26116085cf4c1bac6108f175d9b38fc319c78 (cherry picked from commit 909af2a8cb528fd502229eaa08f1eac5d83114cd)
* “Page Break Preview” → “Page Break” in CalcAdolfo Jayme Barrientos2016-06-203-5/+5
| | | | | | | | Change-Id: Ic0d6cbe429305760a21ebc9fdbee67f0d752fe23 (cherry picked from commit 1abe8b8b3462e7f62e1d5563402672c0b2ae4851) Reviewed-on: https://gerrit.libreoffice.org/26514 Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com> Tested-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
* tdf#100478 Correct the syntax of two examples of the N formulaAdolfo Jayme Barrientos2016-06-201-2/+2
| | | | | | | | Change-Id: If97787808183045e3a9573cf1a26ed3e923f3bdb (cherry picked from commit 2db75854e290a7ce93e869214b3d6fba86d93ae7) Reviewed-on: https://gerrit.libreoffice.org/26496 Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com> Tested-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
* tdf#100445 Fix name of style applied on Ctrl+0Adolfo Jayme Barrientos2016-06-171-1/+1
| | | | | | | | Change-Id: I38bb9fb7c6d79f19b22391feab08ddaa18ccc29a (cherry picked from commit fe617af636ad6b2a9b0b45d290a7d23604624733) Reviewed-on: https://gerrit.libreoffice.org/26410 Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com> Tested-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
* Checkbox renamed to “Enable cursor”Adolfo Jayme Barrientos2016-06-172-2/+2
| | | | | | | | Change-Id: I0b73868c51d6d6637fa933f6ba37f897f1429f3b (cherry picked from commit 2b3576acb7553a05ff5935dcd346306be8488b3a) Reviewed-on: https://gerrit.libreoffice.org/26409 Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com> Tested-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
* Resolves: tdf#99861 Recover lost basic in help indentationCaolán McNamara2016-06-16161-897/+897
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | regression from... commit 6614bedceadcc07ec082c5e926107f27903bda5c Date: Mon Jan 25 20:07:10 2016 +0100 fix validation errors by round-trip through helpauthoring extension with git show 6614bedceadcc07ec082c5e926107f27903bda5c | ~/recoverindent.py import fileinput import re import sys added = [] removed = [] filename = "" def processlastfile(filename, added, removed): if len(added) != len(removed): print "BROKEN" sys.exit(-2) if len(removed): f = open(filename, "rw") linestring = open(filename, "r").read() start = 0 for x in range(0, len(added)): if added[x] == removed[x]: continue if added[x].strip() != removed[x].strip(): print "BROKEN" sys.exit(-2) if filename == "source/text/sbasic/shared/03080301.xhp" and x == 6: print "skipping special hunk", removed[x], "in source/text/sbasic/shared/03080301.xhp" else: start = linestring.find(added[x], start) if start == -1: print "BROKEN" sys.exit(-2) linestring = linestring[0:start] + removed[x] + linestring[start + len(added[x]):] start = start + len(removed[x]) open(filename, "w").write(linestring) for line in fileinput.input(): if line.startswith("--- a/"): if filename is not "": processlastfile(filename, added, removed) added = [] removed = [] filename = line[6:-1] elif "role=\"bascode\"" in line: m = re.search('>(.+?)<', line) code = m.group(1) if line.startswith("-"): removed.append(code) else: added.append(code) processlastfile(filename, added, removed) which puts the code back the way it was, except for one string which had changed and was fixed manually afterwards (cherry picked from commit 5f7e3ad041ddf022f6b0feb11fac1debbcf835b2) Change-Id: Ic67abf36bb5d27be58a51ebbf5022830f56dcb37
* Update several strings for Windows 8.x–10Adolfo Jayme Barrientos2016-06-162-4/+4
| | | | | | | | Change-Id: I9346d905c8f65bf282790a35802f5e2328525bb5 (cherry picked from commit 02b56e7da2dba0f2cbc1847f8c52bc7ade6a8e32) Reviewed-on: https://gerrit.libreoffice.org/26355 Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com> Tested-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
* Duh!Adolfo Jayme Barrientos2016-06-091-1/+1
| | | | | | | | Change-Id: I17ae04efde155cc38f8c3506400fb7431c3da641 (cherry picked from commit 6343e2e9b252deb2f1fb0b9ec20ed578ac258a8e) Reviewed-on: https://gerrit.libreoffice.org/26136 Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com> Tested-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
* Remove duplicate <emph> and whitespaceAdolfo Jayme Barrientos2016-06-091-2/+1
| | | | | | | | Change-Id: If3a14040d2395584ef81b4d0d1f21bac2f471fd2 (cherry picked from commit 5d7082c339ed01e67d8296f60b8429f39ca2452f) Reviewed-on: https://gerrit.libreoffice.org/26135 Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com> Tested-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
* tdf#99637 add expert configuration property for number of undo stepsStanislav Horacek2016-06-022-1/+4
| | | | | | | | | Change-Id: I6ea67b95d3cc535166adbb0459a25b335f96d544 Reviewed-on: https://gerrit.libreoffice.org/24774 Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com> Tested-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com> (cherry picked from commit 17405f4ca6d12814f5abc0f97028745308edca9a) Reviewed-on: https://gerrit.libreoffice.org/25841
* eliminate use of locale dependent date strings where possibleEike Rathke2016-06-013-3/+3
| | | | | | | | | | ... unless used in input or formatting example. Change-Id: Ibda8fdf6db62b61ec4bb0e2e6bfd096f37849916 (cherry picked from commit d2dbd0dacb5c653680ed94d6a2ebabd52e300a0a) Reviewed-on: https://gerrit.libreoffice.org/25773 Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Eike Rathke <erack@redhat.com>
* eliminate the mentioning of locale dependent date string in ISLEAPYEAREike Rathke2016-06-011-3/+3
| | | | | | | | | | Rather use DATE() and "yyyy-mm-dd" ISO examples. Change-Id: I41c9dc57167f8c70e8674fcd4b4038ab8e835141 (cherry picked from commit 8353d5baa0186d0774a9ddd598677b31bff5922c) Reviewed-on: https://gerrit.libreoffice.org/25770 Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Eike Rathke <erack@redhat.com>
* Fix help page with new termOlivier Hallot2016-05-311-2/+2
| | | | | | | | | | | | | | | | Change-Id: I2b18f319e176a426dac5401561910169de44f5b3 Reviewed-on: https://gerrit.libreoffice.org/25689 Reviewed-by: Olivier Hallot <ohallot@collabora.co.uk> Tested-by: Olivier Hallot <ohallot@collabora.co.uk> (cherry picked from commit b1d1171b0dd1eda694c801478f183a0a15ae92ee) No need to be redundant Change-Id: Id5ebb8b186920eeedad311663057c383eb7bd61c (cherry picked from commit 1e2ea6f97cc4a3e329250a1e5708e2f45447e289) Reviewed-on: https://gerrit.libreoffice.org/25721 Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com> Tested-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
* Misused word: “strait” → “straight”Adolfo Jayme Barrientos2016-05-281-1/+1
| | | | | | | | Change-Id: I9129c1d493ef47087fc3d39a58cc5142b4df8e38 (cherry picked from commit a9a0e8625655eabdf702cfc754412488a79c0513) Reviewed-on: https://gerrit.libreoffice.org/25574 Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com> Tested-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
* tdf#70806 DCOUNT and DCOUNTA DatabaseField argument can be omittedEike Rathke2016-05-271-6/+5
| | | | | | | | Change-Id: I340142fedd2239ff318c8f70fe228e696540cfdd (cherry picked from commit 5b1cb4f0bfbae734818ae791165cd1ea7ac5fdcb) Reviewed-on: https://gerrit.libreoffice.org/25536 Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Eike Rathke <erack@redhat.com>
* tdf#70806 get rid of the "number 0 for the entire database" nonsenseEike Rathke2016-05-261-7/+7
| | | | | | | | | | | | | | | | | 1. there is no "entire database" in this context 2. 0 was an old workaround for an omitted argument that Excel knows for DCOUNT and DCOUNTA functions to count records that match the criteria without applying a further count on a selected column, but not for other functions 3. Excel does not know a 0 argument 4. ODFF does not specify a 0 argument => so give examples that don't use it. Change-Id: I03654e90798a97bfd37a5f20de26d45e96726206 (cherry picked from commit f5f2b4982350ee6e0616d49742b29b0a57edbbbb) Reviewed-on: https://gerrit.libreoffice.org/25525 Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Eike Rathke <erack@redhat.com>
* Branch libreoffice-5-2Christian Lohmaier2016-05-260-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | This is 'libreoffice-5-2' - the stable branch for the 5.2.x releases. The commit rules are different according to the development phase: A. 5.2.0 beta phase: A. any bug fixes are allowed without review B. late features need approval by 3 people with different affiliation B. 5.2.0 rc phase and later: A. fixes need approval by one reviewer B. late features need approval by 3 more people with different affiliation IMPORTANT: Every developer is responsible for pushing the fixes into all appropriate branches. Note that we do not plan any merge from this branch to master or vice versa. Please, help use to make stable and usable release. If you want to build something cool, unstable, and risky, use master. Change-Id: I994c2f423a16cf22ebaad1d2e8f9881eae8e7b22
* remove spurious space before </paragraph>libreoffice-5-2-branch-pointChristian Lohmaier2016-05-233-4/+4
| | | | Change-Id: Icf4d5ba12ab65bbedaf75bdee4ffc36131ea731e
* remove spurious space before </variable>Christian Lohmaier2016-05-234-4/+4
| | | | Change-Id: I06d328b73455d5b6ea04d7c04c9b09fcb7bad366
* remove duplicated variable (export_as_pdf same as ref_pdf_export)Christian Lohmaier2016-05-232-2/+2
| | | | Change-Id: I015e9674bf72e74e3d3ec69087dfd289adfa121f
* remove obsolete attributes from changed stringsChristian Lohmaier2016-05-234-149/+71
| | | | | | | as it doesn't matter if the context changes, since they'll need to be modified by translators anyway Change-Id: I120289e3d944030ba1933c888795137d7ef71324
* Ctrl + Down Arrow in fact jumps to the beginning of next paragraphAndras Timar2016-05-231-1/+1
| | | | Change-Id: I5f55da8e8298f7cb3758e931ef3804b7df66bf0c
* typo: "the the" → "the"Christian Lohmaier2016-05-232-2/+2
| | | | Change-Id: I315fd3151e4b52495f3f55a5a65813b13debd8a6
* typo: periodical_abberation → periodical_aberrationChristian Lohmaier2016-05-231-2/+2
| | | | Change-Id: I29e6938ddbad2cf31e07a80fadcffa12ced7c839
* hid="" → hid="."Christian Lohmaier2016-05-2312-12/+12
| | | | Change-Id: I64a889f1cd519a0cf1898e913ad68f850d472eb6
* "Insert - Field", not "Insert - Fields"Christian Lohmaier2016-05-2321-75/+52
| | | | | | | | | as per LO HIG - https://wiki.documentfoundation.org/Design/MenuBar ("Use singular form in labeling when applicable (e.g. Insert+Shape, though multiple shapes are listed under the submenu, a user can only select one item).") and already changed in UI Change-Id: Id15afe7e3c92b54526ff694f7959ab3e01a2d606
* COS(PI()/2) doesn't return 0 (fpu accurracy), use COS(PI()*2) insteadChristian Lohmaier2016-05-231-1/+1
| | | | | | since that gives 1 as expected. Change-Id: Icd1a0424f90ef9256c706cecc0ab3b7e2c741181
* replace duplicated "pentagon" by "hexagon"Stanislav Horacek2016-05-221-1/+1
| | | | | | | Change-Id: Ifcd8441f175040dbcb81dfd4d2a62a7c50b8583b Reviewed-on: https://gerrit.libreoffice.org/25300 Reviewed-by: Olivier Hallot <ohallot@collabora.co.uk> Tested-by: Olivier Hallot <ohallot@collabora.co.uk>
* Do not translate numbers... (3)Olivier Hallot2016-05-221-58/+58
| | | | | | | Change-Id: I2480be8d515d210413dc6e732467bdf9c420bdbe Reviewed-on: https://gerrit.libreoffice.org/25279 Reviewed-by: Olivier Hallot <ohallot@collabora.co.uk> Tested-by: Olivier Hallot <ohallot@collabora.co.uk>
* Fix Data menu help file w/ new entriesOlivier Hallot2016-05-221-7/+7
| | | | | | | Change-Id: I6055007c5b8811f65a8937c2ebd6eec913a95e95 Reviewed-on: https://gerrit.libreoffice.org/25277 Reviewed-by: Olivier Hallot <ohallot@collabora.co.uk> Tested-by: Olivier Hallot <ohallot@collabora.co.uk>
* Do not translate numbers ... (2)Olivier Hallot2016-05-221-7/+7
| | | | | | | Change-Id: Iff0930493bed0a839869a02518aa879cc6d11068 Reviewed-on: https://gerrit.libreoffice.org/25276 Reviewed-by: Olivier Hallot <ohallot@collabora.co.uk> Tested-by: Olivier Hallot <ohallot@collabora.co.uk>
* Do not translate numbers...Olivier Hallot2016-05-222-12/+12
| | | | | | | Change-Id: I87d272719a0a666744951d82f7c522b6cd554bc7 Reviewed-on: https://gerrit.libreoffice.org/25275 Reviewed-by: Olivier Hallot <ohallot@collabora.co.uk> Tested-by: Olivier Hallot <ohallot@collabora.co.uk>
* Initial classification bar documentationMiklos Vajna2016-05-205-0/+39
| | | | Change-Id: Ieeff90ecf810e9e36e7f80815d57ccc0bc0e8067
* Document Tools -> Options -> LibreOffice -> Paths -> ClassificationMiklos Vajna2016-05-201-0/+12
| | | | Change-Id: I5616fe15ffd5a839d693a20c3e7eb1445421fd95
* tdf#99809 Add back some syntax highlighting tags…Adolfo Jayme Barrientos2016-05-142-6/+10
| | | | | | … accidentally removed in 8799ced9da7b7aeb37fadf700e062cc3255ebfe0 Change-Id: I799b62bb169dbc0505ed03deef6e460d75a66e9d
* tdf#99809: BASIC: Update Rnd function and Randomize statementJohnny_M2016-05-132-17/+18
| | | | | | | | | | | | BASIC's Rnd function and Randomize statement were updated on tdf#70474 and tdf#90110. (See https://gerrit.libreoffice.org/#/c/15818/ for the latter change.) Their documentation needs to be updated accordingly. Change-Id: I17f6a04858a20a969dc427be43dd903aedc04ecb Reviewed-on: https://gerrit.libreoffice.org/24943 Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com> Tested-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
* Cleaned up some EnglishPeter2016-05-108-476/+615
| | | | | | | Change-Id: I5f81ef8381536aeca8eac8d409c75f20d4245786 Reviewed-on: https://gerrit.libreoffice.org/24796 Reviewed-by: Olivier Hallot <ohallot@collabora.co.uk> Tested-by: Olivier Hallot <ohallot@collabora.co.uk>
* tdf#99739 tdf#91945 Margins and edges aren’t the same thingAdolfo Jayme Barrientos2016-05-101-2/+2
| | | | Change-Id: I6809b79bdde36fd5ee86f0eeb54c29871f54c19c
* HC3: XSL to extract bookmarks from XHP filesOlivier Hallot2016-05-082-0/+183
| | | | | | | Change-Id: Idaf6e4e890a1be1a44d96a5a36786fd480dc01f9 Reviewed-on: https://gerrit.libreoffice.org/24756 Reviewed-by: Olivier Hallot <ohallot@collabora.co.uk> Tested-by: Olivier Hallot <ohallot@collabora.co.uk>
* tdf#99715 AutoCalculate has been moved to the Data menuAdolfo Jayme Barrientos2016-05-073-3/+3
| | | | Change-Id: I4fc9162aa46cdad1af6052d02fd6e3da73a3bfb8
* Fix bookmark elementStephan Bergmann2016-05-031-0/+1
| | | | | | | ...that was broken by previous 7baa265c995f1d27cef325bf1583a579737e11df "tdf#99637 Don’t mention Undo settings now in Expert Configuration" Change-Id: Idecc9cca5bdef2da8a027ae9e1ce6f76d46dcdb5
* tdf#99637 Don’t mention Undo settings now in Expert ConfigurationAdolfo Jayme Barrientos2016-05-021-6/+1
| | | | Change-Id: I5a6c8a193a1f80683a79e1e1b255d67586493a6e
* “Mail & News” is just “Mail” nowAdolfo Jayme Barrientos2016-04-272-7/+5
| | | | | | Support for the news:// protocol was removed in core commit 6d089a4c7 Change-Id: I858331b9fc73502915cbd5fc2a8618e0837ba2a6
* tdf#92825 Update Impress’ Master menusAdolfo Jayme Barrientos2016-04-271-9/+7
| | | | | | | | | | For now I removed the tip paragraph on “Format > Slide Layout”, which is a very old window (from ~2004-era OOo) that nowadays is replaced with the Sidebar (and before the Sidebar, it was replaced with the Tasks pane). This tip linked to more obsolete content… It’s a growing snowball. We really need to get ourselves busy and rewrite all that. Change-Id: I70e48f7613a0b17649e88f12c986a5ff1969deba
* Update link to dictionary pageAdolfo Jayme Barrientos2016-04-251-2/+2
| | | | Change-Id: I65c27555fb686b4291ef78894e74f16c75c52a9b
* tdf#89953 Help update for character spacing controls’ simplificationAdolfo Jayme Barrientos2016-04-251-19/+3
| | | | Change-Id: I9f9e3e19ef7d5e2cf97603231fba7df747d738a2
* tdf#94057 - add "bascode" element to xmlhelp dtdChristian Lohmaier2016-04-251-5/+7
| | | | | | | | | | it was introduced with d06c698b799e0e4ceaf3a3760c9589fe29dc29a9 on core to have LO apply syntax-highlighting for Basic (for 4.1.0) Change-Id: Ifbe4b511cad8810b2ebd179fb62097bcd22a556a Reviewed-on: https://gerrit.libreoffice.org/21793 Reviewed-by: Olivier Hallot <ohallot@collabora.co.uk> Tested-by: Olivier Hallot <ohallot@collabora.co.uk>