|
6984 | 6984 | </trans-unit> |
6985 | 6985 | <trans-unit id="writeToReadOnlyByref"> |
6986 | 6986 | <source>The byref pointer is readonly, so this write is not permitted.</source> |
6987 | | - <target state="new">The byref pointer is readonly, so this write is not permitted.</target> |
| 6987 | + <target state="translated">Der byref-Zeiger ist schreibgeschützt, daher ist dieser Schreibvorgang unzulässig.</target> |
6988 | 6988 | <note /> |
6989 | 6989 | </trans-unit> |
6990 | 6990 | <trans-unit id="tastValueMustBeMutable"> |
6991 | 6991 | <source>A value must be mutable in order to mutate the contents or take the address of a value type, e.g. 'let mutable x = ...'</source> |
6992 | | - <target state="new">A value must be mutable in order to mutate the contents or take the address of a value type, e.g. 'let mutable x = ...'</target> |
| 6992 | + <target state="translated">Ein Wert muss änderbar sein, um die Inhalte eines Werttyps zu mutieren oder seine Adresse zu übernehmen, z.B. "let mutable x = ...".</target> |
6993 | 6993 | <note /> |
6994 | 6994 | </trans-unit> |
6995 | 6995 | <trans-unit id="readOnlyAttributeOnStructWithMutableField"> |
6996 | 6996 | <source>A ReadOnly attribute has been applied to a struct type with a mutable field.</source> |
6997 | | - <target state="new">A ReadOnly attribute has been applied to a struct type with a mutable field.</target> |
| 6997 | + <target state="translated">Auf einen Strukturtyp mit einem veränderbaren Feld wurde ein ReadOnly-Attribut angewendet.</target> |
6998 | 6998 | <note /> |
6999 | 6999 | </trans-unit> |
7000 | 7000 | <trans-unit id="tcByrefReturnImplicitlyDereferenced"> |
7001 | 7001 | <source>A byref pointer returned by a function or method is implicitly dereferenced as of F# 4.5. To acquire the return value as a pointer, use the address-of operator, e.g. '&f(x)' or '&obj.Method(arg1, arg2)'.</source> |
7002 | | - <target state="new">A byref pointer returned by a function or method is implicitly dereferenced as ofF# 4.5. To acquire the return value as a pointer, use theaddress-of operator, e.g. '&f(x)' or '&obj.Method(arg1, arg2)'.</target> |
| 7002 | + <target state="translated">Ein von einer Funktion oder Methode zurückgegebener byref-Zeiger wird abF# 4.5 implizit dereferenziert. Um den Rückgabewert als Zeiger abzurufen, verwenden Sie den Operator "address-of", z. B. "&f(x)" oder "&obj.Method(arg1, arg2)".</target> |
7003 | 7003 | <note /> |
7004 | 7004 | </trans-unit> |
7005 | 7005 | <trans-unit id="tcByRefLikeNotStruct"> |
7006 | 7006 | <source>A type annotated with IsByRefLike must also be a struct. Consider adding the [<Struct>] attribute to the type.</source> |
7007 | | - <target state="new">A type annotated withIsByRefLike must also be a struct. Consider adding the[<Struct>] attribute to the type.</target> |
| 7007 | + <target state="translated">Ein Typ mit der Anmerkung "IsByRefLike" muss auch eine Struktur sein. Ziehen Sie in Betracht, dem Typ das Attribut "[<Struct>]" hinzuzufügen.</target> |
7008 | 7008 | <note /> |
7009 | 7009 | </trans-unit> |
7010 | 7010 | <trans-unit id="chkNoByrefAddressOfLocal"> |
7011 | 7011 | <source>The address of the variable '{0}' or a related expression cannot be used at this point. This is to ensure the address of the local value does not escape its scope.</source> |
7012 | | - <target state="new">The address of the variable '{0}' or a related expression cannot be used at this point. This is to ensure the address of the local value does not escape its scope.</target> |
| 7012 | + <target state="translated">Die Adresse der Variablen "{0}" oder ein entsprechender Ausdruck kann zu diesem Zeitpunkt nicht verwendet werden. Hierdurch wird sichergestellt, dass die Adresse des lokalen Werts den zugehörigen Bereich nicht verlässt.</target> |
7013 | 7013 | <note /> |
7014 | 7014 | </trans-unit> |
7015 | 7015 | <trans-unit id="chkNoReturnOfLimitedSpan"> |
7016 | 7016 | <source>The Span or IsByRefLike expression cannot be returned from this function or method, because it is composed using elements that may escape their scope.</source> |
7017 | | - <target state="new">TheSpan orIsByRefLike expression cannot be returned from this function or method, because it is composed using elements that may escape their scope.</target> |
| 7017 | + <target state="translated">Der Ausdruck "Span" oder "IsByRefLike" kann von dieser Funktion oder Methode nicht zurückgegeben werden, weil er anhand von Elementen zusammengestellt wurde, die möglicherweise ihren Bereich verlassen.</target> |
7018 | 7018 | <note /> |
7019 | 7019 | </trans-unit> |
7020 | 7020 | <trans-unit id="chkNoWriteToLimitedSpan"> |
7021 | 7021 | <source>This value can't be assigned because the target '{0}' may refer to non-stack-local memory, while the expression being assigned is assessed to potentially refer to stack-local memory. This is to help prevent pointers to stack-bound memory escaping their scope.</source> |
7022 | | - <target state="new">This value can't be assigned because the target '{0}' may refer to non-stack-local memory, while the expression being assigned is assessed to potentially refer to stack-local memory. This is to help prevent pointers to stack-bound memory escaping their scope.</target> |
| 7022 | + <target state="translated">Dieser Wert kann nicht zugewiesen werden, weil das Ziel "{0}" möglicherweise auf einen lokalen Nicht-Stapel-Arbeitsspeicher verweist, während der zugewiesene Ausdruck laut Auswertung möglicherweise auf einen lokalen Stapelarbeitsspeicher verweist. So wird verhindert, dass Zeiger auf stapelgebundenen Arbeitsspeicher ihren Bereich verlassen.</target> |
7023 | 7023 | <note /> |
7024 | 7024 | </trans-unit> |
7025 | 7025 | <trans-unit id="tastValueMustBeLocal"> |
7026 | 7026 | <source>A value defined in a module must be mutable in order to take its address, e.g. 'let mutable x = ...'</source> |
7027 | | - <target state="new">A value definedina module must be mutable in order to take its address, e.g. 'let mutable x = ...'</target> |
| 7027 | + <target state="translated">Einineinem Modul definierter Wert muss änderbar sein, um die Adresse anzunehmen, z. B. "let mutable x = ...".</target> |
7028 | 7028 | <note /> |
7029 | 7029 | </trans-unit> |
7030 | 7030 | <trans-unit id="tcIsReadOnlyNotStruct"> |
7031 | 7031 | <source>A type annotated with IsReadOnly must also be a struct. Consider adding the [<Struct>] attribute to the type.</source> |
7032 | | - <target state="new">A type annotated withIsReadOnly must also be a struct. Consider adding the[<Struct>] attribute to the type.</target> |
| 7032 | + <target state="translated">Ein Typ mit der Anmerkung "IsReadOnly" muss auch eine Struktur sein. Ziehen Sie in Betracht, dem Typ das Attribut "[<Struct>]" hinzuzufügen.</target> |
7033 | 7033 | <note /> |
7034 | 7034 | </trans-unit> |
7035 | 7035 | <trans-unit id="chkStructsMayNotReturnAddressesOfContents"> |
7036 | 7036 | <source>Struct members cannot return the address of fields of the struct by reference</source> |
7037 | | - <target state="new">Struct members cannot return the address of fields of the struct by reference</target> |
| 7037 | + <target state="translated">Strukturmember können die Adresse von Feldern der Struktur nicht per Referenz zurückgeben.</target> |
7038 | 7038 | <note /> |
7039 | 7039 | </trans-unit> |
7040 | 7040 | <trans-unit id="chkNoByrefLikeFunctionCall"> |
7041 | 7041 | <source>The function or method call cannot be used at this point, because one argument that is a byref of a non-stack-local Span or IsByRefLike type is used with another argument that is a stack-local Span or IsByRefLike type. This is to ensure the address of the local value does not escape its scope.</source> |
7042 | | - <target state="new">The function or method call cannot be used at this point, because one argument that is abyref of a non-stack-localSpan orIsByRefLike type is used with another argument that is a stack-localSpanorIsByRefLike type. This is to ensure the address of the local value does not escape its scope.</target> |
| 7042 | + <target state="translated">Der Funktions- oder Methodenaufruf kann zu diesem Zeitpunkt nicht verwendet werden, weil ein Argument, das einbyref-Zeiger eines lokalen Nicht-Stapel-Span- oder -IsByRefLike-Typs ist, mit einem anderen Argument verwendet wird, das ein lokaler Stapel-Spanoder -IsByRefLike-Typ ist. Hierdurch wird sichergestellt, dass die Adresse des lokalen Werts den zugehörigen Bereich nicht verlässt.</target> |
7043 | 7043 | <note /> |
7044 | 7044 | </trans-unit> |
7045 | 7045 | <trans-unit id="chkNoByrefAddressOfValueFromExpression"> |
7046 | 7046 | <source>The address of a value returned from the expression cannot be used at this point. This is to ensure the address of the local value does not escape its scope.</source> |
7047 | | - <target state="new">The address of a value returned from the expression cannot be used at this point. This is to ensure the address of the local value does not escape its scope.</target> |
| 7047 | + <target state="translated">Die Adresse eines vom Ausdruck zurückgegebenen Werts kann zu diesem Zeitpunkt nicht verwendet werden. Hierdurch wird sichergestellt, dass die Adresse des lokalen Werts den zugehörigen Bereich nicht verlässt.</target> |
7048 | 7048 | <note /> |
7049 | 7049 | </trans-unit> |
7050 | 7050 | <trans-unit id="chkNoSpanLikeVariable"> |
7051 | 7051 | <source>The Span or IsByRefLike variable '{0}' cannot be used at this point. This is to ensure the address of the local value does not escape its scope.</source> |
7052 | | - <target state="new">The Span or IsByRefLike variable '{0}' cannot be used at this point. This is to ensure the address of the local value does not escape its scope.</target> |
| 7052 | + <target state="translated">Die Span- oder IsByRefLike-Variable "{0}" kann zu diesem Zeitpunkt nicht verwendet werden. Hierdurch wird sichergestellt, dass die Adresse des lokalen Werts den zugehörigen Bereich nicht verlässt.</target> |
7053 | 7053 | <note /> |
7054 | 7054 | </trans-unit> |
7055 | 7055 | <trans-unit id="chkNoSpanLikeValueFromExpression"> |
7056 | 7056 | <source>A Span or IsByRefLike value returned from the expression cannot be used at ths point. This is to ensure the address of the local value does not escape its scope.</source> |
7057 | | - <target state="new">A Span or IsByRefLike value returned from the expression cannot be used at ths point. This is to ensure the address of the local value does not escape its scope.</target> |
| 7057 | + <target state="translated">Ein vom Ausdruck zurückgegebener Span- oder IsByRefLike-Wert kann zu diesem Zeitpunkt nicht verwendet werden. Hierdurch wird sichergestellt, dass die Adresse des lokalen Werts den zugehörigen Bereich nicht verlässt.</target> |
7058 | 7058 | <note /> |
7059 | 7059 | </trans-unit> |
7060 | 7060 | </body> |
|