Kaydet (Commit) ef575c9c authored tarafından Phillip Sz's avatar Phillip Sz Kaydeden (comit) Michael Stahl

fdo#39468 Translate German Comments - reportdesign

fix after review

Change-Id: Ie6a665e6e473cb774cfbcc805aeb944de5723639
Reviewed-on: https://gerrit.libreoffice.org/16527Reviewed-by: 's avatarMichael Stahl <mstahl@redhat.com>
Tested-by: 's avatarMichael Stahl <mstahl@redhat.com>
üst 81b606f5
...@@ -212,7 +212,7 @@ public: ...@@ -212,7 +212,7 @@ public:
virtual ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > getUnoShape() SAL_OVERRIDE; virtual ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > getUnoShape() SAL_OVERRIDE;
virtual sal_uInt16 GetObjIdentifier() const SAL_OVERRIDE; virtual sal_uInt16 GetObjIdentifier() const SAL_OVERRIDE;
virtual sal_uInt32 GetObjInventor() const SAL_OVERRIDE; virtual sal_uInt32 GetObjInventor() const SAL_OVERRIDE;
// Clone() soll eine komplette Kopie des Objektes erzeugen. // Clone() should make a complete copy of the object.
virtual OOle2Obj* Clone() const SAL_OVERRIDE; virtual OOle2Obj* Clone() const SAL_OVERRIDE;
virtual void initializeOle() SAL_OVERRIDE; virtual void initializeOle() SAL_OVERRIDE;
......
...@@ -1133,7 +1133,7 @@ OOle2Obj& OOle2Obj::operator=(const OOle2Obj& rObj) ...@@ -1133,7 +1133,7 @@ OOle2Obj& OOle2Obj::operator=(const OOle2Obj& rObj)
} }
// Clone() soll eine komplette Kopie des Objektes erzeugen. // Clone() should make a complete copy of the object.
OOle2Obj* OOle2Obj::Clone() const OOle2Obj* OOle2Obj::Clone() const
{ {
return CloneHelper< OOle2Obj >(); return CloneHelper< OOle2Obj >();
......
...@@ -40,7 +40,7 @@ namespace rptui ...@@ -40,7 +40,7 @@ namespace rptui
using namespace ::com::sun::star; using namespace ::com::sun::star;
// Initialisierung / gemeinsame Funktionen fuer Dialog // initialization / shared functions for the dialog
FormulaDialog::FormulaDialog(vcl::Window* pParent FormulaDialog::FormulaDialog(vcl::Window* pParent
......
...@@ -382,7 +382,7 @@ void OFieldExpressionControl::lateInit() ...@@ -382,7 +382,7 @@ void OFieldExpressionControl::lateInit()
aFont.SetWeight( WEIGHT_NORMAL ); aFont.SetWeight( WEIGHT_NORMAL );
GetDataWindow().SetFont( aFont ); GetDataWindow().SetFont( aFont );
// Font fuer die Ueberschriften auf Light setzen // Set font of the headline to light
aFont = GetFont(); aFont = GetFont();
aFont.SetWeight( WEIGHT_LIGHT ); aFont.SetWeight( WEIGHT_LIGHT );
SetFont(aFont); SetFont(aFont);
...@@ -578,7 +578,7 @@ CellController* OFieldExpressionControl::GetController( long /*nRow*/, sal_uInt1 ...@@ -578,7 +578,7 @@ CellController* OFieldExpressionControl::GetController( long /*nRow*/, sal_uInt1
bool OFieldExpressionControl::SeekRow( long _nRow ) bool OFieldExpressionControl::SeekRow( long _nRow )
{ {
// die Basisklasse braucht den Aufruf, da sie sich dort merkt, welche Zeile gepainted wird // the basis class needs the call, because that's how the class knows which line will be painted
EditBrowseBox::SeekRow(_nRow); EditBrowseBox::SeekRow(_nRow);
m_nCurrentPos = _nRow; m_nCurrentPos = _nRow;
return true; return true;
......
...@@ -146,7 +146,7 @@ class NavigatorTree : public ::cppu::BaseMutex ...@@ -146,7 +146,7 @@ class NavigatorTree : public ::cppu::BaseMutex
AutoTimer m_aDropActionTimer; AutoTimer m_aDropActionTimer;
Timer m_aSynchronizeTimer; Timer m_aSynchronizeTimer;
ImageList m_aNavigatorImages; ImageList m_aNavigatorImages;
Point m_aTimerTriggered; // die Position, an der der DropTimer angeschaltet wurde Point m_aTimerTriggered; // position at which the DropTimer started
DROP_ACTION m_aDropActionType; DROP_ACTION m_aDropActionType;
OReportController& m_rController; OReportController& m_rController;
SvTreeListEntry* m_pMasterReport; SvTreeListEntry* m_pMasterReport;
...@@ -279,7 +279,7 @@ void NavigatorTree::Command( const CommandEvent& rEvt ) ...@@ -279,7 +279,7 @@ void NavigatorTree::Command( const CommandEvent& rEvt )
{ {
case CommandEventId::ContextMenu: case CommandEventId::ContextMenu:
{ {
// die Stelle, an der geklickt wurde // the point that was clicked on
SvTreeListEntry* ptClickedOn = NULL; SvTreeListEntry* ptClickedOn = NULL;
::Point aWhere; ::Point aWhere;
if (rEvt.IsMouseEvent()) if (rEvt.IsMouseEvent())
...@@ -370,7 +370,7 @@ sal_Int8 NavigatorTree::AcceptDrop( const AcceptDropEvent& _rEvt ) ...@@ -370,7 +370,7 @@ sal_Int8 NavigatorTree::AcceptDrop( const AcceptDropEvent& _rEvt )
else else
{ {
bool bNeedTrigger = false; bool bNeedTrigger = false;
// auf dem ersten Eintrag ? // At the first record?
if ((aDropPos.Y() >= 0) && (aDropPos.Y() < GetEntryHeight())) if ((aDropPos.Y() >= 0) && (aDropPos.Y() < GetEntryHeight()))
{ {
m_aDropActionType = DA_SCROLLUP; m_aDropActionType = DA_SCROLLUP;
...@@ -393,12 +393,12 @@ sal_Int8 NavigatorTree::AcceptDrop( const AcceptDropEvent& _rEvt ) ...@@ -393,12 +393,12 @@ sal_Int8 NavigatorTree::AcceptDrop( const AcceptDropEvent& _rEvt )
if (bNeedTrigger && (m_aTimerTriggered != aDropPos)) if (bNeedTrigger && (m_aTimerTriggered != aDropPos))
{ {
// neu anfangen zu zaehlen // again start counting
m_nTimerCounter = DROP_ACTION_TIMER_INITIAL_TICKS; m_nTimerCounter = DROP_ACTION_TIMER_INITIAL_TICKS;
// die Pos merken, da ich auch AcceptDrops bekomme, wenn sich die Maus gar nicht bewegt hat // remember the position, because I also get AcceptDrops, if the mouse does not move
m_aTimerTriggered = aDropPos; m_aTimerTriggered = aDropPos;
// und den Timer los // start Timer
if (!m_aDropActionTimer.IsActive()) // gibt es den Timer schon ? if (!m_aDropActionTimer.IsActive()) // Does the Timer already exists?
{ {
m_aDropActionTimer.SetTimeout(DROP_ACTION_TIMER_TICK_BASE); m_aDropActionTimer.SetTimeout(DROP_ACTION_TIMER_TICK_BASE);
m_aDropActionTimer.Start(); m_aDropActionTimer.Start();
......
...@@ -33,7 +33,7 @@ namespace rptui ...@@ -33,7 +33,7 @@ namespace rptui
{ {
/************************************************************************* /*************************************************************************
|* |*
|* Konstruktor des Tab-Dialogs: Fuegt die Seiten zum Dialog hinzu |* constructor of the tab dialogs: Add the page to the dialog
|* |*
\************************************************************************/ \************************************************************************/
......
...@@ -709,7 +709,7 @@ void OViewsWindow::collectBoundResizeRect(const TRectangleMap& _rSortRectangles, ...@@ -709,7 +709,7 @@ void OViewsWindow::collectBoundResizeRect(const TRectangleMap& _rSortRectangles,
else else
{ {
if ( _bAlignAtSection || _rSortRectangles.size() == 1 ) if ( _bAlignAtSection || _rSortRectangles.size() == 1 )
{ // einzelnes Obj an der Seite ausrichten { // align single object at the page
if ( ! bOnlyOnce ) if ( ! bOnlyOnce )
{ {
bOnlyOnce = true; bOnlyOnce = true;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment