Kaydet (Commit) 8827b08d authored tarafından Stefan Ring's avatar Stefan Ring Kaydeden (comit) Caolán McNamara

fdo#39468 Translate German comments: sw/source/filter/ww1

There was still one untranslated paragraph left.

Change-Id: I9b951c5216560614bd3fc42f9118477ad66cbdf2
Reviewed-on: https://gerrit.libreoffice.org/8385Reviewed-by: 's avatarCaolán McNamara <caolanm@redhat.com>
Tested-by: 's avatarCaolán McNamara <caolanm@redhat.com>
üst b731909d
...@@ -1236,23 +1236,19 @@ void Ww1Style::Out(Ww1Shell& rOut, Ww1Manager& rMan) ...@@ -1236,23 +1236,19 @@ void Ww1Style::Out(Ww1Shell& rOut, Ww1Manager& rMan)
pPapx->Start(rOut, rMan); pPapx->Start(rOut, rMan);
} }
// die Out() methoden von plaintext fuer den filter geben eine anzahl // The Out() methods output a number of characters to the shell, a
// zeichen aus auf die shell, einen string oder einen char, wieviel // string or a character. The amount of output is determined by ulEnd,
// zeichen ausgegeben werden, bestimmt ulEnd, das das ende bestimmt, // which specifies the position at which to stop. Control characters
// bis zudem ausgegeben wird. ausserdem beenden die methoden die // also end the output.
// ausgabe bei kontrollzeichen. // They are defined by MinChar. All characters with a value lower than
// diese sind definiert durch MinChar. alle zeichen mit wert darunter // that are treated as control characters. This classification is
// gelten als kontroll- zeichen. dafuer gibts die methode IsChar, die // handled by IsChar. If a control character is encountered, the
// zurueckgibt, ob es sich um ein standard zeichen handelt. kommt ein // output method returns immediately and returns it. Pay attention to
// solches zeichen, wird dieses zeichen zurueckgegeben und die methode // this; ulEnd might not have been reached if !IsChar(Out(...)). In
// beendet, auch wenn ulEnd noch nicht erreicht wurde. bei nutzung // this case, the control character has been consumed, but not been
// also beachten, dasz wenn !IsChar(Out(...)) gilt, ulEnd unter // output.
// umstaenden nicht erreicht wurde. dann wurde das kontrollzeichen
// zwar (weg-)gelesen, jedoch noch nicht ausgegeben.
sal_Unicode Ww1PlainText::Out( Ww1Shell& rOut, sal_uLong& ulEnd ) sal_Unicode Ww1PlainText::Out( Ww1Shell& rOut, sal_uLong& ulEnd )
{ {
// gibt die zeichen bis ulEnd aus, es sei den es kommen sonderzeichen
// die eine bedeutung haben wie absatzende oder seitenumbruch.
if (ulEnd > Count()) if (ulEnd > Count())
ulEnd = Count(); ulEnd = Count();
while (ulSeek < ulEnd) while (ulSeek < ulEnd)
......
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