German comment translation for odk folder

Mark
This commit is contained in:
Mark Wolf 2012-04-05 13:09:35 -04:00 committed by Philipp Weissenbacher
parent a4f4e51304
commit 62640a8436
6 changed files with 22 additions and 22 deletions

View file

@ -43,26 +43,26 @@ namespace connectivity
{
struct OTypeInfo
{
::rtl::OUString aTypeName; // Name des Types in der Datenbank
::rtl::OUString aLiteralPrefix; // Prefix zum Quoten
::rtl::OUString aLiteralSuffix; // Suffix zum Quoten
::rtl::OUString aCreateParams; // Parameter zum Erstellen
::rtl::OUString aTypeName; // Name of the the type in the database
::rtl::OUString aLiteralPrefix; // Prefix for literals
::rtl::OUString aLiteralSuffix; // Suffix for literals
::rtl::OUString aCreateParams; // Parameters to create
::rtl::OUString aLocalTypeName;
sal_Int32 nPrecision; // Laenge des Types
sal_Int32 nPrecision; // Length of the types
sal_Int16 nMaximumScale; // Nachkommastellen
sal_Int16 nMinimumScale; // Min Nachkommastellen
sal_Int16 nMaximumScale; // Decimal places (precision)
sal_Int16 nMinimumScale; // Min decimal places (precision)
sal_Int16 nType; // Datenbanktyp
sal_Int16 nSearchType; // kann nach dem Typen gesucht werden
sal_Int16 nType; // Database type
sal_Int16 nSearchType; // Can search for the type
sal_Int16 nNumPrecRadix; // indicating the radix, which is usually 2 or 10
sal_Bool bCurrency : 1, // Waehrung
bAutoIncrement : 1, // Ist es ein automatisch incrementierendes Feld
bNullable : 1, // Kann das Feld NULL annehmen
bCaseSensitive : 1, // Ist der Type Casesensitive
bUnsigned : 1, // Ist der Type Unsigned
sal_Bool bCurrency : 1, // Currency
bAutoIncrement : 1, // Is this field auto incrementing?
bNullable : 1, // Can this field assume a NULL value?
bCaseSensitive : 1, // Is this type case-sensitive?
bUnsigned : 1, // Is this type unsigned?
bEmpty_1 : 1, // for later use
bEmpty_2 : 1;

View file

@ -94,7 +94,7 @@ namespace connectivity
virtual ~OPreparedStatement();
public:
DECLARE_SERVICE_INFO();
// ein Konstruktor, der fuer das Returnen des Objektes benoetigt wird:
// a constructor, which is required for returning objects:
OPreparedStatement( OConnection* _pConnection,const TTypeInfoVector& _TypeInfo,const ::rtl::OUString& sql);
//XInterface

View file

@ -56,7 +56,7 @@ namespace connectivity
protected:
virtual ~OResultSetMetaData();
public:
// ein Konstruktor, der fuer das Returnen des Objektes benoetigt wird:
// a constructor, which is required for returning objects:
OResultSetMetaData(OConnection* _pConnection) : m_pConnection(_pConnection){}
/// Avoid ambigous cast error from the compiler.

View file

@ -159,7 +159,7 @@ namespace connectivity
protected:
virtual ~OStatement(){}
public:
// ein Konstruktor, der fuer das Returnen des Objektes benoetigt wird:
// a constructor, which is required for returning objects:
OStatement( OConnection* _pConnection) : OStatement_BASE2( _pConnection){}
DECLARE_SERVICE_INFO();

View file

@ -99,8 +99,8 @@ css::uno::Any SAL_CALL MyListener::execute(const css::uno::Sequence< css::beans:
!xInfo->supportsService(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.text.GlobalDocument")))
);
// Wir interessieren uns nur für Writer und Calc. Werden hier aber für
// alle neu geöffneten Dokumente benachrichtigt ...
// We are interested only in Writer and Calc. However, here we are
// notified of all newly opened Documents...
if (!bCalc && !bWriter)
return css::uno::Any();

View file

@ -147,8 +147,8 @@ void SAL_CALL MyProtocolHandler::initialize( const Sequence< Any >& aArguments )
Reference < XFrame > xFrame;
if ( aArguments.getLength() )
{
// das erste Argument ist immer der Frame, da ein ProtocolHandler den braucht um Zugriff
// auf den Context zu haben, in dem er aufgerufen wird
// the first Argument is always the Frame, as a ProtocolHandler needs to have access
// to the context in which it is invoked.
aArguments[0] >>= xFrame;
mxFrame = xFrame;
}
@ -167,7 +167,7 @@ Reference< XDispatch > SAL_CALL MyProtocolHandler::queryDispatch( const URL& a
Reference < XTextViewCursorSupplier > xCursor( xCtrl, UNO_QUERY );
Reference < XSpreadsheetView > xView( xCtrl, UNO_QUERY );
if ( !xCursor.is() && !xView.is() )
// ohne ein entsprechendes Dokument funktioniert der Handler nicht
// without an appropriate corresponding document the handler doesn't function
return xRet;
if ( aURL.Path == "Command1" || aURL.Path == "Command2" || aURL.Path == "Command3" || aURL.Path == "Command4" || aURL.Path == "Command5"