diff options
author | Oliver Günther <mail@oliverguenther.de> | 2012-08-12 01:01:00 +0200 |
---|---|---|
committer | Philipp Riemer <ruderphilipp@gmail.com> | 2012-08-13 21:37:02 +0200 |
commit | c8b7aa55138848fe07108779099267424bc03e3d (patch) | |
tree | 7e3bf7d1b1242878f78d6b5a514f5776bf94f961 /tools/bootstrp | |
parent | bf222b4985ca535903835980357687ae6e137ba1 (diff) |
fdo#39468: Translated German comments in core/tools
Change-Id: I5b6fd5712f08dae180bdd3b57b63713946b82433
Diffstat (limited to 'tools/bootstrp')
-rw-r--r-- | tools/bootstrp/mkunroll/mkunroll.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/bootstrp/mkunroll/mkunroll.cxx b/tools/bootstrp/mkunroll/mkunroll.cxx index 2d4da77e15f0..cc417e0be9a6 100644 --- a/tools/bootstrp/mkunroll/mkunroll.cxx +++ b/tools/bootstrp/mkunroll/mkunroll.cxx @@ -136,13 +136,13 @@ void MkFilter::Filter() rtl::OString aLine(aLineBuf); if (aLine.indexOf(rtl::OString(RTL_CONSTASCII_STRINGPARAM("mkfilter1"))) != -1) { - // Zeilen unterdruecken + // surpress lines fprintf( stderr, "mkfilter1\n" ); nState = 0; } else if (aLine.indexOf(rtl::OString(RTL_CONSTASCII_STRINGPARAM("unroll begin"))) != -1) { - // Zeilen raus schreiben mit ersetzen von $(TNR) nach int n + // Print lines while replacing $(TNR) with int n fprintf( stderr, "\nunroll begin\n" ); nState = 1; } @@ -182,19 +182,19 @@ void MkFilter::Filter() pTnrLst->push_back( pMkLine ); } else { - /* Zeilen ignorieren */; + /* Skip these lines */; } } // End Of File fprintf( stderr, "\n" ); - // das File wieder ausgegeben + // Output file again size_t nLines = pLst->size(); for ( size_t j=0; j<nLines; j++ ) { MkLine *pLine = (*pLst)[ j ]; if ( pLine->bHier ) { - // die List n - Mal abarbeiten + // Iterate list n times for ( sal_uInt16 n=1; n<11; n++) { size_t nCount = pLine->pPrivateTnrLst->size(); |