summaryrefslogtreecommitdiff
path: root/wizards/source
diff options
context:
space:
mode:
authorJohnny_M <klasse@partyheld.de>2017-09-17 14:23:46 +0200
committerMichael Stahl <mstahl@redhat.com>2017-09-18 12:08:40 +0200
commit510b9557c37c666016c55e6ed2be7a50dbd1b67f (patch)
tree2e6c33dd3672502bf7937bec66adb30c7e2bf8cd /wizards/source
parent3af68b14791118868e410133ea5a2b555bbac6eb (diff)
Translate German comments and debug strings (leftovers in dirs w... and x...)
Translates leftovers found using a custom regex in directories beginning with "w" and "x". Additionally: - A few corrections of previous translations Change-Id: Ic30cf6792748a6bea8782a9a3711fa468b80bdaf Reviewed-on: https://gerrit.libreoffice.org/42378 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'wizards/source')
-rw-r--r--wizards/source/formwizard/Layouter.xba2
-rw-r--r--wizards/source/gimmicks/GetTexts.xba2
-rw-r--r--wizards/source/tools/Misc.xba8
-rw-r--r--wizards/source/tutorials/Functions.xba2
4 files changed, 7 insertions, 7 deletions
diff --git a/wizards/source/formwizard/Layouter.xba b/wizards/source/formwizard/Layouter.xba
index 0b44a8668eba..24b209ad63e7 100644
--- a/wizards/source/formwizard/Layouter.xba
+++ b/wizards/source/formwizard/Layouter.xba
@@ -100,7 +100,7 @@ Public FieldMetaValues(MaxFieldIndex, 8)
&apos; Description of this List:
&apos; CurFieldType = FieldMetaValues(Index,0)
&apos; CurFieldLength = FieldMetaValues(Index,1)
-&apos; CurControlType = FieldMetaValues(Index,2) (ControlType eg. cLabel, cTextbox usw.)
+&apos; CurControlType = FieldMetaValues(Index,2) (ControlType, e.g., cLabel, cTextbox, etc.)
&apos; CurControlName = FieldMetaValues(Index,3)
&apos; CurFormatKey = FieldMetaValues(Index,4)
&apos; CurDefaultValue = FieldMetaValues(Index,5)
diff --git a/wizards/source/gimmicks/GetTexts.xba b/wizards/source/gimmicks/GetTexts.xba
index 9d3dec3be219..452ea776e413 100644
--- a/wizards/source/gimmicks/GetTexts.xba
+++ b/wizards/source/gimmicks/GetTexts.xba
@@ -19,7 +19,7 @@
-->
<script:module xmlns:script="http://openoffice.org/2000/script" script:name="GetTexts" script:language="StarBasic">Option Explicit
&apos; Macro-Description:
-&apos; This Macro extracts the Strings out of the currently activated document und inserts them into a logdocument
+&apos; This Macro extracts the strings out of the currently activated document and inserts them into a log document.
&apos; The aim of the macro is to provide the programmer an insight into the StarOffice API
&apos; It focusses on how document-Objects are accessed.
&apos; Therefore not only texts of the document-body are retrieved but also Texts of general
diff --git a/wizards/source/tools/Misc.xba b/wizards/source/tools/Misc.xba
index 460affd28e07..2bf17d32e984 100644
--- a/wizards/source/tools/Misc.xba
+++ b/wizards/source/tools/Misc.xba
@@ -235,8 +235,8 @@ End Function
&apos; Gets the fully qualified path to a subdirectory of the
&apos; Template Directory, e. g. with the parameter &quot;wizard/bitmap&quot;
-&apos; The parameter must be passed over in Url-scription
-&apos; The return-Value is in Urlscription
+&apos; The parameter must be passed in Url notation
+&apos; The return-Value is in Url notation
Function GetOfficeSubPath(sOfficePath as String, ByVal sSubDir as String)
Dim sOfficeString as String
Dim sOfficeList() as String
@@ -373,7 +373,7 @@ Dim oRange as Object
End Sub
-&apos; Inserts a certain String to all cells of a Range that ist passed over
+&apos; Inserts a certain string to all cells of a range that is passed
&apos; either as an object or as the RangeName
Sub ChangeValueofRange(oSheet as Object, Range, ReplaceValue, Optional StyleName as String)
Dim oCellRange as Object
@@ -381,7 +381,7 @@ Dim oCellRange as Object
&apos; Get the Range out of the Rangename
oCellRange = oSheet.GetCellRangeByName(Range)
Else
- &apos; The range is passed over as an object
+ &apos; The range is passed as an object
Set oCellRange = Range
End If
If IsMissing(StyleName) Then
diff --git a/wizards/source/tutorials/Functions.xba b/wizards/source/tutorials/Functions.xba
index b84f3af65753..cded8504ea30 100644
--- a/wizards/source/tutorials/Functions.xba
+++ b/wizards/source/tutorials/Functions.xba
@@ -148,7 +148,7 @@ Sub Destroy()
wait 1000
ShowInfoDialog.DisposeIDialog()
- &apos; HIER WIRD DAS DOCUMENT GESCHLOSSEN!!!!!!!! GPF
+ &apos; THE DOCUMENT GETS CLOSED HERE!!!!!!!! GPF
thisComponent.CurrentController.Frame.close(True)
End Sub