Kaydet (Commit) ca4333e9 authored tarafından Jennifer Liebel's avatar Jennifer Liebel Kaydeden (comit) Samuel Mehrbrodt

fdo#39468: Translated German comments

Change-Id: I10d334d85f80bbb4a46436914c79c91fc0282b35
Reviewed-on: https://gerrit.libreoffice.org/11485Reviewed-by: 's avatarSamuel Mehrbrodt <s.mehrbrodt@gmail.com>
Tested-by: 's avatarSamuel Mehrbrodt <s.mehrbrodt@gmail.com>
üst 1ca89248
...@@ -23,10 +23,10 @@ ...@@ -23,10 +23,10 @@
#include <svx/sdynitm.hxx> #include <svx/sdynitm.hxx>
// Die Masslinie unterhalb der Bezugskante // dimension line below the reference edge
// Zur Bemassung einer Objektunterkante // for dimensioning the lower edge of the object
// (Redundant zum drehen der Bezugskante um 180deg + // (redundant to turn the referece edge through 180deg +
// TextUpsideDown, jedoch besser bedienbar) // TextUpsideDown, but easily operated)
// laesst sich auch draggen, indem man den Masslinienabstand // laesst sich auch draggen, indem man den Masslinienabstand
// (SdrMeasureLineDistItem) ueber die Bezugskante hinwegdraggt // (SdrMeasureLineDistItem) ueber die Bezugskante hinwegdraggt
class SdrMeasureBelowRefEdgeItem: public SdrYesNoItem { class SdrMeasureBelowRefEdgeItem: public SdrYesNoItem {
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
/************************************************************************* /*************************************************************************
|* |*
|* Transparenz-Item fuer Fuellungen (Solid) |* transparency-Item for contents (Solid)
|* |*
\************************************************************************/ \************************************************************************/
......
...@@ -32,18 +32,17 @@ class OutputDevice; ...@@ -32,18 +32,17 @@ class OutputDevice;
#define XPOLYPOLY_APPEND 0xFFFF #define XPOLYPOLY_APPEND 0xFFFF
#define XPOLY_APPEND 0xFFFF #define XPOLY_APPEND 0xFFFF
#define XPOLY_MAXPOINTS 0xFFF0 /* Auch fuer die 32-Bitter etwas Luft lassen */ #define XPOLY_MAXPOINTS 0xFFF0 /* Let space for the 32-Bit systems too */
// Punktstile im XPolygon: // point-styles in XPolygon:
// NORMAL : Anfangs- oder Endpunkt einer Kurve oder Linie // NORMAL : start-/endpoint of a curve or a line
// SMOOTH : Glatter Uebergang zwischen Kurven // SMOOTH : smooth transition between curves
// SYMMTR : glatter und symmetrischer Uebergang zwischen Kurven // SYMMTR : smooth and symmetrical transition between curves
// CONTROL: Kontrollpunkt einer Bezierkurve // CONTROL: control handles of a Bezier curve
enum XPolyFlags { XPOLY_NORMAL, XPOLY_SMOOTH, XPOLY_CONTROL, XPOLY_SYMMTR }; enum XPolyFlags { XPOLY_NORMAL, XPOLY_SMOOTH, XPOLY_CONTROL, XPOLY_SYMMTR };
// Klasse XPolygon; hat neben dem Point-Array noch ein Array mit Flags, // Class XPolygon;has a point-array and a flag-array, which contains information about a particular point
// die Informationen ueber den jeweiligen Punkt enthalten
class ImpXPolygon; class ImpXPolygon;
...@@ -52,10 +51,10 @@ class SVX_DLLPUBLIC XPolygon ...@@ -52,10 +51,10 @@ class SVX_DLLPUBLIC XPolygon
protected: protected:
ImpXPolygon* pImpXPolygon; ImpXPolygon* pImpXPolygon;
// ImpXPolygon-ReferenceCount pruefen und ggf. abkoppeln // check ImpXPolygon-ReferenceCount and decouple if necessary
void CheckReference(); void CheckReference();
// Hilfsfunktionen fuer Bezierkonvertierung // auxiliary functions for Bezier conversion
void SubdivideBezier(sal_uInt16 nPos, bool bCalcFirst, double fT); void SubdivideBezier(sal_uInt16 nPos, bool bCalcFirst, double fT);
void GenBezArc(const Point& rCenter, long nRx, long nRy, void GenBezArc(const Point& rCenter, long nRx, long nRy,
long nXHdl, long nYHdl, sal_uInt16 nStart, sal_uInt16 nEnd, long nXHdl, long nYHdl, sal_uInt16 nStart, sal_uInt16 nEnd,
...@@ -95,15 +94,15 @@ public: ...@@ -95,15 +94,15 @@ public:
bool IsControl(sal_uInt16 nPos) const; bool IsControl(sal_uInt16 nPos) const;
bool IsSmooth(sal_uInt16 nPos) const; bool IsSmooth(sal_uInt16 nPos) const;
// Abstand zwischen zwei Punkten // distance between two points
double CalcDistance(sal_uInt16 nP1, sal_uInt16 nP2); double CalcDistance(sal_uInt16 nP1, sal_uInt16 nP2);
// Bezierkonvertierungen // Bezier conversion
void CalcSmoothJoin(sal_uInt16 nCenter, sal_uInt16 nDrag, sal_uInt16 nPnt); void CalcSmoothJoin(sal_uInt16 nCenter, sal_uInt16 nDrag, sal_uInt16 nPnt);
void CalcTangent(sal_uInt16 nCenter, sal_uInt16 nPrev, sal_uInt16 nNext); void CalcTangent(sal_uInt16 nCenter, sal_uInt16 nPrev, sal_uInt16 nNext);
void PointsToBezier(sal_uInt16 nFirst); void PointsToBezier(sal_uInt16 nFirst);
// Transformationen // transformations
void Translate(const Point& rTrans); void Translate(const Point& rTrans);
void Scale(double fSx, double fSy); void Scale(double fSx, double fSy);
void Distort(const Rectangle& rRefRect, const XPolygon& rDistortedRect); void Distort(const Rectangle& rRefRect, const XPolygon& rDistortedRect);
...@@ -116,8 +115,7 @@ public: ...@@ -116,8 +115,7 @@ public:
explicit XPolygon(const basegfx::B2DPolygon& rPolygon); explicit XPolygon(const basegfx::B2DPolygon& rPolygon);
}; };
// Klasse XPolyPolygon; wie PolyPolygon, nur statt aus Polygonen aus // Class XPolyPolygon; like PolyPolygon, composed of XPolygons instead of Polygons
// XPolygonen bestehend
class ImpXPolyPolygon; class ImpXPolyPolygon;
...@@ -126,7 +124,7 @@ class SVX_DLLPUBLIC XPolyPolygon ...@@ -126,7 +124,7 @@ class SVX_DLLPUBLIC XPolyPolygon
protected: protected:
ImpXPolyPolygon* pImpXPolyPolygon; ImpXPolyPolygon* pImpXPolyPolygon;
// ImpXPolyPolygon-ReferenceCount pruefen und ggf. abkoppeln // check ImpXPolyPolygon-ReferenceCount and decouple if necessary
void CheckReference(); void CheckReference();
public: public:
...@@ -155,7 +153,7 @@ public: ...@@ -155,7 +153,7 @@ public:
bool operator==( const XPolyPolygon& rXPolyPoly ) const; bool operator==( const XPolyPolygon& rXPolyPoly ) const;
bool operator!=( const XPolyPolygon& rXPolyPoly ) const; bool operator!=( const XPolyPolygon& rXPolyPoly ) const;
// Transformationen // transformations
void Distort(const Rectangle& rRefRect, const XPolygon& rDistortedRect); void Distort(const Rectangle& rRefRect, const XPolygon& rDistortedRect);
// #116512# convert to basegfx::B2DPolyPolygon and return // #116512# convert to basegfx::B2DPolyPolygon and return
......
...@@ -46,11 +46,11 @@ class Color; ...@@ -46,11 +46,11 @@ class Color;
class Bitmap; class Bitmap;
class VirtualDevice; class VirtualDevice;
// Standard-Vergleichsstring // standard reference string
extern sal_Unicode pszStandard[]; // "standard" extern sal_Unicode pszStandard[]; // "standard"
// Funktion zum Konvertieren in echte RGB-Farben, da mit // function to convert in real RGB_Colours;
// enum COL_NAME nicht verglichen werden kann. // it can't be compared with enum COL_NAME
SVX_DLLPUBLIC Color RGB_Color( ColorData nColorName ); SVX_DLLPUBLIC Color RGB_Color( ColorData nColorName );
......
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