summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorChristian M. Heller <christian.heller63@gmail.com>2014-03-19 18:58:51 -0400
committerMiklos Vajna <vmiklos@collabora.co.uk>2014-03-20 12:04:31 +0100
commit76358d0cd1ffc0fe81230e4fed12e259ad131366 (patch)
treefc4b70a0a9aaba43a6a843d7755043d80b58122d /sw
parent6bc34153bc429b57694cfc59655814d0fe089e24 (diff)
fdo#39468 Translate German Comments - fltini.cxx
Reviewed on: https://gerrit.libreoffice.org/8664 Change-Id: I719fe3266b80fd6e4da73729c74f3d606708b691
Diffstat (limited to 'sw')
-rw-r--r--sw/source/filter/basflt/fltini.cxx15
1 files changed, 7 insertions, 8 deletions
diff --git a/sw/source/filter/basflt/fltini.cxx b/sw/source/filter/basflt/fltini.cxx
index 00b6e9aa9346..8374d19e668c 100644
--- a/sw/source/filter/basflt/fltini.cxx
+++ b/sw/source/filter/basflt/fltini.cxx
@@ -137,7 +137,7 @@ Filters::Filters()
Filters::~Filters()
{
- // die Reader vernichten
+ // kill Readers
for( sal_uInt16 n = 0; n < MAXFILTER; ++n )
{
SwReaderWriterEntry& rEntry = aReaderWriter[n];
@@ -188,7 +188,7 @@ SwRead GetReader( const OUString& rFltName )
if ( aFilterDetect[n].IsFilter( rFltName ) )
{
pRead = aReaderWriter[n].GetReader();
- // fuer einige Reader noch eine Sonderbehandlung:
+ // add special treatment for some readers
if ( pRead )
pRead->SetFltName( rFltName );
break;
@@ -214,7 +214,7 @@ sal_Bool SwReader::CheckPasswd( const OUString& /*rPasswd*/, const Reader& /*rOp
return sal_True;
}
-// Filter Flags lesen, wird von WW8 / W4W / EXCEL / LOTUS benutzt.
+// Read Filter Flags; used by WW8 / W4W / EXCEL / LOTUS
/*
<FilterFlags>
@@ -323,9 +323,8 @@ void CalculateFlySize(SfxItemSet& rFlySet, const SwNodeIndex& rAnchor,
aSz = (SwFmtFrmSize&)(*pItem);
SwTwips nWidth;
- // dann die Breite des Flys selbst bestimmen. Ist eine Tabelle
- // defininiert, dann benutze deren Breite, sonst die Breite der
- // Seite
+ // determine the width; if there is a table use the width of the table;
+ // otherwise use the width of the page
const SwTableNode* pTblNd = rAnchor.GetNode().FindTableNode();
if( pTblNd )
nWidth = pTblNd->GetTable().GetFrmFmt()->GetFrmSize().GetWidth();
@@ -378,7 +377,7 @@ void CalculateFlySize(SfxItemSet& rFlySet, const SwNodeIndex& rAnchor,
pFirstTxtNd->EraseText( aNdIdx, 2 );
}
- // Umrandung und Abstand zum Inhalt beachten
+ // consider border and distance to content
const SvxBoxItem& rBoxItem = (SvxBoxItem&)rFlySet.Get( RES_BOX );
sal_uInt16 nLine = BOX_LINE_LEFT;
for( int i = 0; i < 2; ++i )
@@ -394,7 +393,7 @@ void CalculateFlySize(SfxItemSet& rFlySet, const SwNodeIndex& rAnchor,
nLine = BOX_LINE_RIGHT;
}
- // Mindestbreite fuer Inhalt einhalten
+ // enforce minimum width for contents
if( nMinFrm < MINLAY )
nMinFrm = MINLAY;
if( nMaxFrm < MINLAY )