summaryrefslogtreecommitdiff
path: root/source/text/sbasic/shared/03030120.xhp
AgeCommit message (Collapse)AuthorFilesLines
2021-12-27Re-enable translation of strings in sbasic/sharedRafael Lima1-1/+1
This patch partially reverts the following two commits: - bba53dc2eb06941ab4e9b9c22722b22c19cd3698 - fa7fd622849d9e31d3f27e3762b0a0e578838cc0 The reason is that I wrongly silenced a few strings used in syntax declarations that should be translatable. Change-Id: I9929f2c43a611598450a05433a78ed88824d0935 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/127482 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-12-11Silence strings for l10n in sbasic/shared (Part 2)Rafael Lima1-1/+1
Change-Id: Ia14a0773d1dc13eaf8737eca3f68594eb1bb8054 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/126670 Tested-by: Jenkins Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
2021-04-29sf_basic py2bas bridgeAlain Romedenne1-5/+4
It includes Basic functions rework in order to - share content, - correct Basic keywords argument names tdf#141474 - accommodate Python lowercased arguments. Change-Id: If59a82444a8e001b02d085f5e10e0053666f8485 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/114008 Tested-by: Jenkins Reviewed-by: Alain Romedenne <alain.romedenne@libreoffice.org>
2021-03-24Basic DateXXX methodsAlain Romedenne1-14/+14
- Fix to Basic DateXxx examples - Locale independant date literals documentation - keywords arguments examples Change-Id: I906b035bb687e6164c6b296f50449986414fa756 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/112616 Tested-by: Jenkins Reviewed-by: Rafael Lima <rafael.palma.lima@gmail.com>
2018-02-22Deletion [Runtime] from names functionstagezi1-2/+2
[Runtime] was deleted [Runtime - VBA] was replaced to [VBA] Combination of words "runtime functions" and "runtime categiries" was replaced to "functions" and "categiries" respectively Change-Id: I1f03a5f2ef1697e216e144ecccbfb8942b315718 Reviewed-on: https://gerrit.libreoffice.org/49914 Tested-by: Olivier Hallot <olivier.hallot@libreoffice.org> Reviewed-by: Sophie Gautier <gautier.sophie@gmail.com> Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2016-06-16Recover lost basic in help indentationCaolán McNamara1-1/+1
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-01-25fix validation errors by round-trip through helpauthoring extensionChristian Lohmaier1-146/+151
lots of missing attributes "id" and "xml-lang" (extension patched to keep bascode tag) Change-Id: I9c5600b6fa133a6b1062803eadb976e043db7a4a
2015-11-12The 'lastedited' element is useless, we have git.Jan Holesovsky1-1/+0
2012-12-13re-base on ALv2 code. Includes:Michael Meeks1-23/+14
Patch contributed by Oliver Rainer-Wittmann i#118572 - remove ui string and help content regarding usage of Java Mail in Writer's Mail Merge as Java Mail is not used. http://svn.apache.org/viewvc?view=revision&revision=1197035 Patches contributed by Herbert Duerr updated help text for regexp word boundaries http://svn.apache.org/viewvc?view=revision&revision=1228026 improved help text for word boundary regexp expression \b http://svn.apache.org/viewvc?view=revision&revision=1234738 Patches contributed by Jurgen Schmidt remove onlineregistration with dependencies http://svn.apache.org/viewvc?view=revision&revision=1240245 Patch contributed by Regina Henschel Extended tips for corner and cap style http://svn.apache.org/viewvc?view=revision&revision=1242287 * re-enable on-line update help, remove obsolete on-line purchasing.
2012-11-15format Basic code examplesAndras Timar1-4/+8
2012-10-16move help structure one directory upNorbert Thiebaud1-0/+188
Change-Id: Ie970e39fbb6795a92d9fdd13510409d7dcd071bc