tdf#39468 Translate German comments

Translate German comments and terms in dbaccess/, forms/, fpicker/, framework/,
and idl/

Change-Id: I08b3db9492f16fc1c457e8f5eff838c13561c945
Reviewed-on: https://gerrit.libreoffice.org/35888
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Michael Stahl <mstahl@redhat.com>
This commit is contained in:
Jens Carl 2017-03-30 06:23:03 +00:00 committed by Michael Stahl
parent 63e36cdd9d
commit ad3681df0a
7 changed files with 7 additions and 7 deletions

View File

@ -1538,7 +1538,7 @@ bool ORowSetCache::checkInnerJoin(const ::connectivity::OSQLParseNode *pNode,con
else if (SQL_ISRULE(pNode,comparison_predicate)) else if (SQL_ISRULE(pNode,comparison_predicate))
{ {
// only the comparison of columns is allowed // only the comparison of columns is allowed
OSL_ENSURE(pNode->count() == 3,"checkInnerJoin: Fehler im Parse Tree"); OSL_ENSURE(pNode->count() == 3,"checkInnerJoin: Error in Parse Tree");
if (!(SQL_ISRULE(pNode->getChild(0),column_ref) && if (!(SQL_ISRULE(pNode->getChild(0),column_ref) &&
SQL_ISRULE(pNode->getChild(2),column_ref) && SQL_ISRULE(pNode->getChild(2),column_ref) &&
pNode->getChild(1)->getNodeType() == SQLNodeType::Equal)) pNode->getChild(1)->getNodeType() == SQLNodeType::Equal))

View File

@ -22,6 +22,6 @@
-o forms.OFixedTextModel -o forms.OFixedTextModel
-o forms.OFormattedControl -o forms.OFormattedControl
#i109939 -o forms.OFormattedFieldWrapper #i109939 -o forms.OFormattedFieldWrapper
# LäSST EIN DOKUMENT OFFEN -o forms.OFormsCollection # LETS A DOCUMENT OPEN -o forms.OFormsCollection
-o forms.OGridControlModel -o forms.OGridControlModel
-o forms.OGroupBoxControl -o forms.OGroupBoxControl

View File

@ -106,7 +106,7 @@ class OListBoxModel :public OBoundControlModel
::connectivity::ORowSetValue m_aSaveValue; ::connectivity::ORowSetValue m_aSaveValue;
// <properties> // <properties>
css::form::ListSourceType m_eListSourceType; // type der list source css::form::ListSourceType m_eListSourceType; // type of list source
css::uno::Any m_aBoundColumn; css::uno::Any m_aBoundColumn;
ValueList m_aListSourceValues; ValueList m_aListSourceValues;
ValueList m_aBoundValues; // do not write directly; use setBoundValues() ValueList m_aBoundValues; // do not write directly; use setBoundValues()

View File

@ -25,7 +25,7 @@
namespace frm namespace frm
{ {
// PropertyId's, welche eine Zuordnung zu einen PropertyName haben // PropertyId's, who have a mapping to a PropertyName
#define PROPERTY_ID_START 0 #define PROPERTY_ID_START 0
#define PROPERTY_ID_NAME (PROPERTY_ID_START + 1) #define PROPERTY_ID_NAME (PROPERTY_ID_START + 1)

View File

@ -166,7 +166,7 @@ public:
bool m_bNeedDelayedFilterExecute; bool m_bNeedDelayedFilterExecute;
// list of the 5 most recently used filters // list of the 5 most recently used filters
// Defaultfilter for <All> oder <All ...> // Defaultfilter for <All> or <All ...>
const SvtFileDialogFilter_Impl* _pDefaultFilter; const SvtFileDialogFilter_Impl* _pDefaultFilter;
// MultiSelection? // MultiSelection?

View File

@ -29,7 +29,7 @@ namespace framework{
@descr If you use a transaction manager as a member of your class and wish to use it earlier then other ones @descr If you use a transaction manager as a member of your class and wish to use it earlier then other ones
you should have a look on this implementation. You must use it as the first base class you should have a look on this implementation. You must use it as the first base class
of your implementation - because base classes are initialized by his order and before your of your implementation - because base classes are initialized by his order and before your
member! Thats why ist a good place to declare this member. member! Thats why is a good place to declare this member.
@devstatus ready to use @devstatus ready to use
*//*-*************************************************************************************************************/ *//*-*************************************************************************************************************/
struct TransactionBase struct TransactionBase

View File

@ -379,7 +379,7 @@ void SvMetaSlot::Insert( SvSlotElementList& rList)
while ( !bFound && nLow <= nHigh ) while ( !bFound && nLow <= nHigh )
{ {
nMid = (nLow + nHigh) >> 1; nMid = (nLow + nHigh) >> 1;
DBG_ASSERT( nMid < nListCount, "bsearch ist buggy" ); DBG_ASSERT( nMid < nListCount, "bsearch is buggy" );
int nDiff = (int) nId - (int) rList[ nMid ]->GetSlotId().GetValue(); int nDiff = (int) nId - (int) rList[ nMid ]->GetSlotId().GetValue();
if ( nDiff < 0) if ( nDiff < 0)
{ {