summaryrefslogtreecommitdiff
path: root/wizards/com
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/com
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/com')
-rw-r--r--wizards/com/sun/star/wizards/db/CommandName.java2
-rw-r--r--wizards/com/sun/star/wizards/db/DBMetaData.java2
-rw-r--r--wizards/com/sun/star/wizards/db/FieldColumn.java4
-rw-r--r--wizards/com/sun/star/wizards/db/RecordParser.java2
-rw-r--r--wizards/com/sun/star/wizards/table/FieldDescription.java2
5 files changed, 6 insertions, 6 deletions
diff --git a/wizards/com/sun/star/wizards/db/CommandName.java b/wizards/com/sun/star/wizards/db/CommandName.java
index 91e54ed3ba25..4768018ef3b5 100644
--- a/wizards/com/sun/star/wizards/db/CommandName.java
+++ b/wizards/com/sun/star/wizards/db/CommandName.java
@@ -87,7 +87,7 @@ public class CommandName
this.DisplayName = _DisplayName;
int iIndex;
if (oCommandMetaData.xDBMetaData.supportsCatalogsInDataManipulation())
- { // ...dann Catalog mit in TableName
+ { // ...then Catalog also in TableName
iIndex = _DisplayName.indexOf(sCatalogSep);
if (iIndex >= 0)
{
diff --git a/wizards/com/sun/star/wizards/db/DBMetaData.java b/wizards/com/sun/star/wizards/db/DBMetaData.java
index 8d90126d3e5e..1a720b0ac3a5 100644
--- a/wizards/com/sun/star/wizards/db/DBMetaData.java
+++ b/wizards/com/sun/star/wizards/db/DBMetaData.java
@@ -351,7 +351,7 @@ public class DBMetaData
WidthList[4][0] = DataType.LONGVARCHAR; // == -1;
WidthList[5][0] = DataType.CHAR; // == 1;
WidthList[6][0] = DataType.NUMERIC; // == 2;
- WidthList[7][0] = DataType.DECIMAL; // == 3; [mit Nachkommastellen]
+ WidthList[7][0] = DataType.DECIMAL; // == 3; [with fractional part]
WidthList[8][0] = DataType.INTEGER; // == 4;
WidthList[9][0] = DataType.SMALLINT; // == 5;
WidthList[10][0] = DataType.FLOAT; // == 6;
diff --git a/wizards/com/sun/star/wizards/db/FieldColumn.java b/wizards/com/sun/star/wizards/db/FieldColumn.java
index 29e4b3939194..dd8b85a9207e 100644
--- a/wizards/com/sun/star/wizards/db/FieldColumn.java
+++ b/wizards/com/sun/star/wizards/db/FieldColumn.java
@@ -266,7 +266,7 @@ public class FieldColumn
bIsNumberFormat = true;
break;
- case DataType.DECIMAL: // == 3; [mit Nachkommastellen]
+ case DataType.DECIMAL: // == 3; [with fractional part]
case DataType.FLOAT: // == 6;
case DataType.REAL: // == 7;
case DataType.DOUBLE: // == 8;
@@ -369,7 +369,7 @@ public class FieldColumn
break;
case DataType.NUMERIC: // == 2;
- case DataType.DECIMAL: // == 3; [mit Nachkommastellen]
+ case DataType.DECIMAL: // == 3; [with fractional part]
case DataType.FLOAT: // == 6;
case DataType.REAL: // == 7;
case DataType.DOUBLE: // == 8;
diff --git a/wizards/com/sun/star/wizards/db/RecordParser.java b/wizards/com/sun/star/wizards/db/RecordParser.java
index c06566874cef..bb35b041fe97 100644
--- a/wizards/com/sun/star/wizards/db/RecordParser.java
+++ b/wizards/com/sun/star/wizards/db/RecordParser.java
@@ -127,7 +127,7 @@ public class RecordParser extends QueryMetaData
case DataType.NUMERIC: // == 2;
case DataType.INTEGER: // == 4;
case DataType.SMALLINT: // == 5;
- case DataType.DECIMAL: // == 3; [mit Nachkommastellen]
+ case DataType.DECIMAL: // == 3; [with fractional part]
case DataType.FLOAT: // == 6;
case DataType.REAL: // == 7;
case DataType.DOUBLE: // == 8;
diff --git a/wizards/com/sun/star/wizards/table/FieldDescription.java b/wizards/com/sun/star/wizards/table/FieldDescription.java
index 2128a760eabe..95a847136360 100644
--- a/wizards/com/sun/star/wizards/table/FieldDescription.java
+++ b/wizards/com/sun/star/wizards/table/FieldDescription.java
@@ -130,7 +130,7 @@ public class FieldDescription
if (propertyexists("DefaultValue"))
{
aPropertyValues.add(Properties.createProperty("DefaultValue", xPropertySet.getPropertyValue("DefaultValue")));// DefaultValue = (Boolean) xPropertySet.getPropertyValue("DefaultValue");
- //Type = 4; // TODO wo ist der Fehler?(Integer) xPropertySet.getPropertyValue("Type");
+ //Type = 4; // TODO where is the error?(Integer) xPropertySet.getPropertyValue("Type");
}
}
catch (Exception e)