Commit Graph

1107 Commits

Author SHA1 Message Date
f04fe534bf The “Show font history” option no longer exists
This is still configurable, but as an advanced preference (search
for: org.openoffice.Office.Common > Font > View > History).

Change-Id: Ic3a87ce77044c663613f98aa6a6b1b60bd4fca75
2016-06-27 02:13:35 -05:00
c23a2a94aa Replace ASCII approximation of trademark symbol with real character
Change-Id: I70c466baaaa8e2fbcba8c4c36fd4df6f14cda22b
2016-06-22 22:22:25 -05:00
3a26a9f702 missing paragraph role
Change-Id: I7f3e30a07bbdc8a9dcb8c63519ba1a78c1ada0dc
2016-06-21 22:59:54 +02:00
e84bf12903 tdf#98401 fix wron paragraph role
Change-Id: I7a8ffd79550d6355d59bcb256f09c4a0b785ebd2
2016-06-21 21:30:31 +02:00
2f6e93f728 remove "-" between FileAttr-Function and FileLen-Function
to be consistent with the rest of the functions
reported via pootle-feedback

Change-Id: I6e95109a8cf4145dc84ab0f3ad699d74ee05d932
2016-06-21 15:49:56 +02:00
909af2a8cb "<emph>Drawing Object</emph> - " → "<emph>Drawing Object - </emph>"
(put the - inside the emph)
reported via pootle feedback

Change-Id: Ia8a26116085cf4c1bac6108f175d9b38fc319c78
2016-06-21 15:49:04 +02:00
1abe8b8b34 “Page Break Preview” → “Page Break” in Calc
Change-Id: Ic0d6cbe429305760a21ebc9fdbee67f0d752fe23
2016-06-20 08:09:12 -05:00
2db75854e2 tdf#100478 Correct the syntax of two examples of the N formula
Change-Id: If97787808183045e3a9573cf1a26ed3e923f3bdb
2016-06-19 20:48:53 -05:00
16c021b225 Better wording for FORECAST.ETS.* help pages
Change-Id: Iac41e281088fb1ca48f1b5509d38301405ff6348
Reviewed-on: https://gerrit.libreoffice.org/26437
Reviewed-by: Olivier Hallot <ohallot@collabora.co.uk>
Tested-by: Olivier Hallot <ohallot@collabora.co.uk>
2016-06-18 11:19:29 +00:00
fe617af636 tdf#100445 Fix name of style applied on Ctrl+0
Change-Id: I38bb9fb7c6d79f19b22391feab08ddaa18ccc29a
2016-06-17 03:49:05 -05:00
2b3576acb7 Checkbox renamed to “Enable cursor”
Change-Id: I0b73868c51d6d6637fa933f6ba37f897f1429f3b
2016-06-17 03:24:43 -05:00
5f7e3ad041 Recover lost basic in help indentation
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

Change-Id: Ic67abf36bb5d27be58a51ebbf5022830f56dcb37
2016-06-16 15:45:53 +01:00
02b56e7da2 Update several strings for Windows 8.x–10
Change-Id: I9346d905c8f65bf282790a35802f5e2328525bb5
2016-06-16 04:51:28 -05:00
6343e2e9b2 Duh!
Change-Id: I17ae04efde155cc38f8c3506400fb7431c3da641
2016-06-09 16:08:43 -05:00
5d7082c339 Remove duplicate <emph> and whitespace
Change-Id: If3a14040d2395584ef81b4d0d1f21bac2f471fd2
2016-06-09 16:03:39 -05:00
17405f4ca6 tdf#99637 add expert configuration property for number of undo steps
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>
2016-06-02 20:17:49 +00:00
d2dbd0dacb eliminate use of locale dependent date strings where possible
... unless used in input or formatting example.

Change-Id: Ibda8fdf6db62b61ec4bb0e2e6bfd096f37849916
2016-06-01 13:35:46 +02:00
8353d5baa0 eliminate the mentioning of locale dependent date string in ISLEAPYEAR
Rather use DATE() and "yyyy-mm-dd" ISO examples.

Change-Id: I41c9dc57167f8c70e8674fcd4b4038ab8e835141
2016-06-01 13:02:35 +02:00
1e2ea6f97c No need to be redundant
Change-Id: Id5ebb8b186920eeedad311663057c383eb7bd61c
2016-05-31 07:31:12 -05:00
b1d1171b0d Fix help page with new term
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>
2016-05-30 20:20:35 +00:00
a9a0e86256 Misused word: “strait” → “straight”
Change-Id: I9129c1d493ef47087fc3d39a58cc5142b4df8e38
2016-05-28 03:01:51 -05:00
5b1cb4f0bf tdf#70806 DCOUNT and DCOUNTA DatabaseField argument can be omitted
Change-Id: I340142fedd2239ff318c8f70fe228e696540cfdd
2016-05-27 12:25:41 +02:00
f5f2b49823 tdf#70806 get rid of the "number 0 for the entire database" nonsense
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
2016-05-26 23:58:18 +02:00
f2361eb91e remove spurious space before </paragraph>
Change-Id: Icf4d5ba12ab65bbedaf75bdee4ffc36131ea731e
2016-05-23 22:05:06 +02:00
caeff7f2fb remove spurious space before </variable>
Change-Id: I06d328b73455d5b6ea04d7c04c9b09fcb7bad366
2016-05-23 21:57:51 +02:00
bef1930211 remove duplicated variable (export_as_pdf same as ref_pdf_export)
Change-Id: I015e9674bf72e74e3d3ec69087dfd289adfa121f
2016-05-23 21:49:05 +02:00
30ecec125c remove obsolete attributes from changed strings
as it doesn't matter if the context changes, since they'll need to be
modified by translators anyway

Change-Id: I120289e3d944030ba1933c888795137d7ef71324
2016-05-23 21:32:13 +02:00
1ab77b7cc2 Ctrl + Down Arrow in fact jumps to the beginning of next paragraph
Change-Id: I5f55da8e8298f7cb3758e931ef3804b7df66bf0c
2016-05-23 14:58:46 +02:00
d05478e9a2 typo: "the the" → "the"
Change-Id: I315fd3151e4b52495f3f55a5a65813b13debd8a6
2016-05-23 14:51:48 +02:00
36b3f0c90d typo: periodical_abberation → periodical_aberration
Change-Id: I29e6938ddbad2cf31e07a80fadcffa12ced7c839
2016-05-23 14:45:15 +02:00
2ab9b7fddb hid="" → hid="."
Change-Id: I64a889f1cd519a0cf1898e913ad68f850d472eb6
2016-05-23 14:41:00 +02:00
7f87433d55 "Insert - Field", not "Insert - Fields"
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
2016-05-23 14:08:41 +02:00
a52d4ff593 COS(PI()/2) doesn't return 0 (fpu accurracy), use COS(PI()*2) instead
since that gives 1 as expected.

Change-Id: Icd1a0424f90ef9256c706cecc0ab3b7e2c741181
2016-05-23 12:13:47 +02:00
0f8cc79cae replace duplicated "pentagon" by "hexagon"
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>
2016-05-22 23:38:46 +00:00
ea6c97353f Do not translate numbers... (3)
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>
2016-05-22 23:20:05 +00:00
bd649dfd67 Fix Data menu help file w/ new entries
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>
2016-05-22 23:18:56 +00:00
fd115b0ed1 Do not translate numbers ... (2)
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>
2016-05-22 23:13:31 +00:00
a86c7d5fbd Do not translate numbers...
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>
2016-05-22 23:10:46 +00:00
f977f89d5e Initial classification bar documentation
Change-Id: Ieeff90ecf810e9e36e7f80815d57ccc0bc0e8067
2016-05-20 17:49:03 +02:00
eca5c42b82 Document Tools -> Options -> LibreOffice -> Paths -> Classification
Change-Id: I5616fe15ffd5a839d693a20c3e7eb1445421fd95
2016-05-20 16:20:52 +02:00
ce76ee35c4 tdf#99809 Add back some syntax highlighting tags…
… accidentally removed in 8799ced9da7b7aeb37fadf700e062cc3255ebfe0

Change-Id: I799b62bb169dbc0505ed03deef6e460d75a66e9d
2016-05-14 22:58:45 -05:00
8799ced9da tdf#99809: BASIC: Update Rnd function and Randomize statement
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>
2016-05-13 02:02:49 +00:00
603ab87d4a Cleaned up some English
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>
2016-05-10 12:54:21 +00:00
50ae47d785 tdf#99739 tdf#91945 Margins and edges aren’t the same thing
Change-Id: I6809b79bdde36fd5ee86f0eeb54c29871f54c19c
2016-05-10 04:06:12 -05:00
6bf8d987d0 tdf#99715 AutoCalculate has been moved to the Data menu
Change-Id: I4fc9162aa46cdad1af6052d02fd6e3da73a3bfb8
2016-05-07 05:24:38 -05:00
b4f803adf4 Fix bookmark element
...that was broken by previous 7baa265c995f1d27cef325bf1583a579737e11df
"tdf#99637 Don’t mention Undo settings now in Expert Configuration"

Change-Id: Idecc9cca5bdef2da8a027ae9e1ce6f76d46dcdb5
2016-05-03 09:04:40 +02:00
7baa265c99 tdf#99637 Don’t mention Undo settings now in Expert Configuration
Change-Id: I5a6c8a193a1f80683a79e1e1b255d67586493a6e
2016-05-02 17:40:31 -05:00
743ed49ef0 “Mail & News” is just “Mail” now
Support for the news:// protocol was removed in core commit 6d089a4c7

Change-Id: I858331b9fc73502915cbd5fc2a8618e0837ba2a6
2016-04-27 20:50:22 -05:00
32a855a02c tdf#92825 Update Impress’ Master menus
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
2016-04-27 20:27:38 -05:00
fa9de2c321 Update link to dictionary page
Change-Id: I65c27555fb686b4291ef78894e74f16c75c52a9b
2016-04-25 19:51:20 -05:00