From 79b1e0a282368214b8bfa0f2b19944e49a892f47 Mon Sep 17 00:00:00 2001 From: dotnet bot Date: Fri, 15 Mar 2024 17:21:28 -0700 Subject: [PATCH 1/2] Localized file check-in by OneLocBuild Task: Build definition ID 830: Build ID 2406064 --- .../MicrosoftNetCoreAnalyzersResources.cs.xlf | 40 +++++++++---------- .../MicrosoftNetCoreAnalyzersResources.de.xlf | 40 +++++++++---------- .../MicrosoftNetCoreAnalyzersResources.es.xlf | 40 +++++++++---------- .../MicrosoftNetCoreAnalyzersResources.fr.xlf | 40 +++++++++---------- .../MicrosoftNetCoreAnalyzersResources.it.xlf | 40 +++++++++---------- .../MicrosoftNetCoreAnalyzersResources.ja.xlf | 40 +++++++++---------- .../MicrosoftNetCoreAnalyzersResources.ko.xlf | 40 +++++++++---------- .../MicrosoftNetCoreAnalyzersResources.pl.xlf | 40 +++++++++---------- ...crosoftNetCoreAnalyzersResources.pt-BR.xlf | 40 +++++++++---------- .../MicrosoftNetCoreAnalyzersResources.ru.xlf | 40 +++++++++---------- .../MicrosoftNetCoreAnalyzersResources.tr.xlf | 40 +++++++++---------- ...osoftNetCoreAnalyzersResources.zh-Hans.xlf | 40 +++++++++---------- ...osoftNetCoreAnalyzersResources.zh-Hant.xlf | 40 +++++++++---------- 13 files changed, 260 insertions(+), 260 deletions(-) diff --git a/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.cs.xlf b/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.cs.xlf index 1be99c1d36..ddaad600e0 100644 --- a/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.cs.xlf +++ b/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.cs.xlf @@ -625,27 +625,27 @@ Obecné přetypování (IL unbox.any) používané sekvencí vrácenou metodou E Comparing a span to 'default' might not do what you intended, make the code more explicit by checking 'IsEmpty' - Comparing a span to 'default' might not do what you intended, make the code more explicit by checking 'IsEmpty' + Porovnání rozsahu s hodnotou default nemusí udělat to, co jste zamýšleli. Udělejte kód explicitnějším zaškrtnutím hodnoty IsEmpty. Use 'IsEmpty' - Use 'IsEmpty' + Použijte IsEmpty Comparing a span to 'null' might be redundant, the 'null' literal will be implicitly converted to a 'Span<T>.Empty' - Comparing a span to 'null' might be redundant, the 'null' literal will be implicitly converted to a 'Span<T>.Empty' + Porovnávání rozsahu s hodnotou null může být redundantní. Literál null se implicitně převede na Span<T>.Empty. Comparing a span to 'null' or 'default' might not do what you intended. 'default' and the 'null' literal are implicitly converted to 'Span<T>.Empty'. Remove the redundant comparison or make the code more explicit by using 'IsEmpty'. - Comparing a span to 'null' or 'default' might not do what you intended. 'default' and the 'null' literal are implicitly converted to 'Span<T>.Empty'. Remove the redundant comparison or make the code more explicit by using 'IsEmpty'. + Porovnávání rozsahu s hodnotou null nebo default nemusí udělat to, co jste zamýšleli. Literál default a null se implicitně převedou na Span<T>.Empty. Odeberte redundantní porovnání nebo nastavte kód explicitněji pomocí IsEmpty. Do not compare Span<T> to 'null' or 'default' - Do not compare Span<T> to 'null' or 'default' + Neporovnávejte rozsah Span<T> s hodnotami null nebo default @@ -885,42 +885,42 @@ Obecné přetypování (IL unbox.any) používané sekvencí vrácenou metodou E Remove superfluous 'ArgumentNullException.ThrowIfNull' call - Remove superfluous 'ArgumentNullException.ThrowIfNull' call + Odeberte nadbytečné volání ArgumentNullException.ThrowIfNull 'ArgumentNullException.ThrowIfNull' throws when the passed argument is 'null'. Certain constructs like non-nullable structs, 'nameof()' and 'new' expressions are known to never be null, so 'ArgumentNullException.ThrowIfNull' will never throw. - 'ArgumentNullException.ThrowIfNull' throws when the passed argument is 'null'. Certain constructs like non-nullable structs, 'nameof()' and 'new' expressions are known to never be null, so 'ArgumentNullException.ThrowIfNull' will never throw. + ArgumentNullException.ThrowIfNull použije příkaz throw, pokud je předaný argument null. O některých konstruktorech, jako jsou struktury, které nemohou mít hodnotu null, výrazy nameof() a new, se ví, že nikdy nemají hodnotu null, takže argument ArgumentNullException.ThrowIfNull nikdy nepoužije příkaz throw. Calling 'ArgumentNullException.ThrowIfNull' and passing a non-nullable value is a no-op - Calling 'ArgumentNullException.ThrowIfNull' and passing a non-nullable value is a no-op + Volání argumentu ArgumentNullException.ThrowIfNull a předání hodnoty, která nemůže mít hodnotu null, není možné. Do not pass a non-nullable value to 'ArgumentNullException.ThrowIfNull' - Do not pass a non-nullable value to 'ArgumentNullException.ThrowIfNull' + Nepředávejte hodnotu, která nemůže mít hodnotu null, argumentu ArgumentNullException.ThrowIfNull Replace the 'ArgumentNullException.ThrowIfNull' call with a conditional - Replace the 'ArgumentNullException.ThrowIfNull' call with a conditional + Nahraďte volání ArgumentNullException.ThrowIfNull podmíněným výrazem 'ArgumentNullException.ThrowIfNull' accepts an 'object', so passing a nullable struct may cause the value to be boxed. - 'ArgumentNullException.ThrowIfNull' accepts an 'object', so passing a nullable struct may cause the value to be boxed. + ArgumentNullException.ThrowIfNull přijímá hodnotu object, takže předání struktury s možnou hodnotou null může způsobit zabalení hodnoty. Passing a nullable struct to 'ArgumentNullException.ThrowIfNull' may cause boxing - Passing a nullable struct to 'ArgumentNullException.ThrowIfNull' may cause boxing + Předání struktury s možnou hodnotou null argumentu ArgumentNullException.ThrowIfNull může způsobit zabalení. Do not pass a nullable struct to 'ArgumentNullException.ThrowIfNull' - Do not pass a nullable struct to 'ArgumentNullException.ThrowIfNull' + Nepředávejte strukturu s možnou hodnotou null argumentu ArgumentNullException.ThrowIfNull. @@ -1165,7 +1165,7 @@ Obecné přetypování (IL unbox.any) používané sekvencí vrácenou metodou E Replace obsolete call - Replace obsolete call + Nahradit zastaralé volání @@ -2105,22 +2105,22 @@ Obecné přetypování (IL unbox.any) používané sekvencí vrácenou metodou E Use generic overload - Use generic overload + Použijte obecné přetížení Using a generic overload is preferable to the 'System.Type' overload when the type is known, promoting cleaner and more type-safe code with improved compile-time checks. - Using a generic overload is preferable to the 'System.Type' overload when the type is known, promoting cleaner and more type-safe code with improved compile-time checks. + Použití obecného přetížení je vhodnější než přetížení System.Type, pokud je typ známý, což zvyšuje přehlednější kód zajišťující bezpečnost typů díky vylepšeným kontrolám za kompilace. Prefer the generic overload '{0}' instead of '{1}' - Prefer the generic overload '{0}' instead of '{1}' + Preferovat obecné přetížení {0} místo {1} Prefer generic overload when type is known - Prefer generic overload when type is known + Preferujte obecné přetížení, pokud je známý typ @@ -2305,12 +2305,12 @@ Obecné přetypování (IL unbox.any) používané sekvencí vrácenou metodou E The property 'MaxResponseHeadersLength' is measured in kilobytes, not in bytes. The provided value is multiplied by 1024, which might be greater than your intended maximum length. - The property 'MaxResponseHeadersLength' is measured in kilobytes, not in bytes. The provided value is multiplied by 1024, which might be greater than your intended maximum length. + Vlastnost MaxResponseHeadersLength se měří v kilobajtech, nikoli v bajtech. Zadaná hodnota se vynásobí hodnotou 1024, která může být větší než zamýšlená maximální délka. Make sure the value '{0}' is correct. This value is measured in kilobytes, not bytes. - Make sure the value '{0}' is correct. This value is measured in kilobytes, not bytes. + Ujistěte se, že hodnota {0} je správná. Tato hodnota se měří v kilobajtech, nikoli v bajtech. diff --git a/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.de.xlf b/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.de.xlf index 22dee2f2e6..754626a53a 100644 --- a/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.de.xlf +++ b/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.de.xlf @@ -625,27 +625,27 @@ Erweiterungen und benutzerdefinierte Konvertierungen werden bei generischen Type Comparing a span to 'default' might not do what you intended, make the code more explicit by checking 'IsEmpty' - Comparing a span to 'default' might not do what you intended, make the code more explicit by checking 'IsEmpty' + Wenn Sie eine Spanne mit „default“ vergleichen, wird möglicherweise nicht das gewünschte Ergebnis ausgeführt. Machen Sie den Code expliziter, indem Sie „IsEmpty“ überprüfen. Use 'IsEmpty' - Use 'IsEmpty' + „IsEmpty“ verwenden Comparing a span to 'null' might be redundant, the 'null' literal will be implicitly converted to a 'Span<T>.Empty' - Comparing a span to 'null' might be redundant, the 'null' literal will be implicitly converted to a 'Span<T>.Empty' + Der Vergleich einer Spanne mit „null“ ist möglicherweise redundant. Das „null“-Literal wird implizit in ein „Span<T>.Empty“ konvertiert. Comparing a span to 'null' or 'default' might not do what you intended. 'default' and the 'null' literal are implicitly converted to 'Span<T>.Empty'. Remove the redundant comparison or make the code more explicit by using 'IsEmpty'. - Comparing a span to 'null' or 'default' might not do what you intended. 'default' and the 'null' literal are implicitly converted to 'Span<T>.Empty'. Remove the redundant comparison or make the code more explicit by using 'IsEmpty'. + Der Vergleich einer Spanne mit „null“ oder „default“ funktioniert möglicherweise nicht wie gewünscht. “default“ und das „null“-Literal werden implizit in „Span<T>.Empty“ konvertiert. Entfernen Sie den redundanten Vergleich, oder machen Sie den Code mithilfe von „IsEmpty“ expliziter. Do not compare Span<T> to 'null' or 'default' - Do not compare Span<T> to 'null' or 'default' + Vergleichen Sie Span<T> nicht mit „null“ oder „default“. @@ -885,42 +885,42 @@ Erweiterungen und benutzerdefinierte Konvertierungen werden bei generischen Type Remove superfluous 'ArgumentNullException.ThrowIfNull' call - Remove superfluous 'ArgumentNullException.ThrowIfNull' call + Entfernen Sie den überflüssigen Aufruf „ArgumentNullException.ThrowIfNull“ 'ArgumentNullException.ThrowIfNull' throws when the passed argument is 'null'. Certain constructs like non-nullable structs, 'nameof()' and 'new' expressions are known to never be null, so 'ArgumentNullException.ThrowIfNull' will never throw. - 'ArgumentNullException.ThrowIfNull' throws when the passed argument is 'null'. Certain constructs like non-nullable structs, 'nameof()' and 'new' expressions are known to never be null, so 'ArgumentNullException.ThrowIfNull' will never throw. + “ArgumentNullException.ThrowIfNull“ wird ausgelöst, wenn das übergebene Argument „null“ ist. Bestimmte Konstrukte wie Strukturen, die keine Nullwerte zulassen, „nameof()“ und „new“ sind bekanntermaßen nie NULL, sodass „ArgumentNullException.ThrowIfNull“ nie ausgelöst wird. Calling 'ArgumentNullException.ThrowIfNull' and passing a non-nullable value is a no-op - Calling 'ArgumentNullException.ThrowIfNull' and passing a non-nullable value is a no-op + Das Aufrufen von „ArgumentNullException.ThrowIfNull“ und das Übergeben eines Werts, der keine Nullwerte zulässt, ist kein Vorgang. Do not pass a non-nullable value to 'ArgumentNullException.ThrowIfNull' - Do not pass a non-nullable value to 'ArgumentNullException.ThrowIfNull' + Übergeben Sie keinen Wert, der keine Nullwerte zulässt, an „ArgumentNullException.ThrowIfNull“. Replace the 'ArgumentNullException.ThrowIfNull' call with a conditional - Replace the 'ArgumentNullException.ThrowIfNull' call with a conditional + Ersetzen Sie den Aufruf „ArgumentNullException.ThrowIfNull“ durch eine Bedingung 'ArgumentNullException.ThrowIfNull' accepts an 'object', so passing a nullable struct may cause the value to be boxed. - 'ArgumentNullException.ThrowIfNull' accepts an 'object', so passing a nullable struct may cause the value to be boxed. + „ArgumentNullException.ThrowIfNull“ akzeptiert ein Objekt, sodass das Übergeben einer Struktur, die Nullwerte zulässt, dazu führen kann, dass der Wert geschachtelt wird. Passing a nullable struct to 'ArgumentNullException.ThrowIfNull' may cause boxing - Passing a nullable struct to 'ArgumentNullException.ThrowIfNull' may cause boxing + Das Übergeben einer Struktur, Nullwerte zulässt, an „ArgumentNullException.ThrowIfNull“ kann zu Boxing führen. Do not pass a nullable struct to 'ArgumentNullException.ThrowIfNull' - Do not pass a nullable struct to 'ArgumentNullException.ThrowIfNull' + Übergeben Sie keine Struktur, die Nullwerte zulässt, an „ArgumentNullException.ThrowIfNull“. @@ -1165,7 +1165,7 @@ Erweiterungen und benutzerdefinierte Konvertierungen werden bei generischen Type Replace obsolete call - Replace obsolete call + Veralteten Aufruf ersetzen @@ -2105,22 +2105,22 @@ Erweiterungen und benutzerdefinierte Konvertierungen werden bei generischen Type Use generic overload - Use generic overload + Generische Überladung verwenden Using a generic overload is preferable to the 'System.Type' overload when the type is known, promoting cleaner and more type-safe code with improved compile-time checks. - Using a generic overload is preferable to the 'System.Type' overload when the type is known, promoting cleaner and more type-safe code with improved compile-time checks. + Die Verwendung einer generischen Überladung ist der Überladung „System.Type“ vorzuziehen, wenn der Typ bekannt ist, und fördert übersichtlicheren und typsichereren Code mit verbesserten Kompilierzeitüberprüfungen. Prefer the generic overload '{0}' instead of '{1}' - Prefer the generic overload '{0}' instead of '{1}' + Generische Überladung „{0}“ anstelle von „{1}“ bevorzugen Prefer generic overload when type is known - Prefer generic overload when type is known + Generische Überladung bevorzugen, wenn der Typ bekannt ist @@ -2305,12 +2305,12 @@ Erweiterungen und benutzerdefinierte Konvertierungen werden bei generischen Type The property 'MaxResponseHeadersLength' is measured in kilobytes, not in bytes. The provided value is multiplied by 1024, which might be greater than your intended maximum length. - The property 'MaxResponseHeadersLength' is measured in kilobytes, not in bytes. The provided value is multiplied by 1024, which might be greater than your intended maximum length. + Die Eigenschaft „MaxResponseHeadersLength“ wird in Kilobytes und nicht in Bytes gemessen. Der angegebene Wert wird mit 1024 multipliziert, was möglicherweise größer als die beabsichtigte maximale Länge ist. Make sure the value '{0}' is correct. This value is measured in kilobytes, not bytes. - Make sure the value '{0}' is correct. This value is measured in kilobytes, not bytes. + Stellen Sie sicher, dass der Wert „{0}“ richtig ist. Dieser Wert wird in Kilobytes und nicht in Bytes gemessen. diff --git a/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.es.xlf b/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.es.xlf index e9791484aa..d1bd1814df 100644 --- a/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.es.xlf +++ b/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.es.xlf @@ -625,27 +625,27 @@ La ampliación y las conversiones definidas por el usuario no se admiten con tip Comparing a span to 'default' might not do what you intended, make the code more explicit by checking 'IsEmpty' - Comparing a span to 'default' might not do what you intended, make the code more explicit by checking 'IsEmpty' + Si se compara un intervalo con "default", es posible que no haga lo que esperaba. Haga el código más explícito marcando "IsEmpty". Use 'IsEmpty' - Use 'IsEmpty' + Usar "IsEmpty" Comparing a span to 'null' might be redundant, the 'null' literal will be implicitly converted to a 'Span<T>.Empty' - Comparing a span to 'null' might be redundant, the 'null' literal will be implicitly converted to a 'Span<T>.Empty' + La comparación de un intervalo con "null" puede ser redundante; el literal "null" se convertirá implícitamente en "Span<T>.Empty" Comparing a span to 'null' or 'default' might not do what you intended. 'default' and the 'null' literal are implicitly converted to 'Span<T>.Empty'. Remove the redundant comparison or make the code more explicit by using 'IsEmpty'. - Comparing a span to 'null' or 'default' might not do what you intended. 'default' and the 'null' literal are implicitly converted to 'Span<T>.Empty'. Remove the redundant comparison or make the code more explicit by using 'IsEmpty'. + La comparación de un intervalo con "null" o "default" podría no hacer lo que se esperaba. "default" y el literal "null" se convierten implícitamente en "Span<T>.Empty". Quite la comparación redundante o haga el código más explícito mediante "IsEmpty". Do not compare Span<T> to 'null' or 'default' - Do not compare Span<T> to 'null' or 'default' + No comparar Span<T> con "null" o "default" @@ -885,42 +885,42 @@ La ampliación y las conversiones definidas por el usuario no se admiten con tip Remove superfluous 'ArgumentNullException.ThrowIfNull' call - Remove superfluous 'ArgumentNullException.ThrowIfNull' call + Quitar llamada superflua a "ArgumentNullException.ThrowIfNull" 'ArgumentNullException.ThrowIfNull' throws when the passed argument is 'null'. Certain constructs like non-nullable structs, 'nameof()' and 'new' expressions are known to never be null, so 'ArgumentNullException.ThrowIfNull' will never throw. - 'ArgumentNullException.ThrowIfNull' throws when the passed argument is 'null'. Certain constructs like non-nullable structs, 'nameof()' and 'new' expressions are known to never be null, so 'ArgumentNullException.ThrowIfNull' will never throw. + "ArgumentNullException.ThrowIfNull" se produce cuando el argumento pasado es "null". Se sabe que ciertas construcciones, como las estructuras que no aceptan valores NULL, las expresiones "nameof()" y "new", nunca son null, por lo que "ArgumentNullException.ThrowIfNull" nunca se iniciará. Calling 'ArgumentNullException.ThrowIfNull' and passing a non-nullable value is a no-op - Calling 'ArgumentNullException.ThrowIfNull' and passing a non-nullable value is a no-op + Llamar a "ArgumentNullException.ThrowIfNull" y pasar un valor que no acepta valores NULL es una instrucción no-op Do not pass a non-nullable value to 'ArgumentNullException.ThrowIfNull' - Do not pass a non-nullable value to 'ArgumentNullException.ThrowIfNull' + No pasar un valor que no acepta valores NULL a "ArgumentNullException.ThrowIfNull" Replace the 'ArgumentNullException.ThrowIfNull' call with a conditional - Replace the 'ArgumentNullException.ThrowIfNull' call with a conditional + Reemplazar la llamada "ArgumentNullException.ThrowIfNull" por una condicional. 'ArgumentNullException.ThrowIfNull' accepts an 'object', so passing a nullable struct may cause the value to be boxed. - 'ArgumentNullException.ThrowIfNull' accepts an 'object', so passing a nullable struct may cause the value to be boxed. + "ArgumentNullException.ThrowIfNull" acepta un "object", por lo que pasar un struct que admite un valor NULL puede hacer que el valor se encuadre. Passing a nullable struct to 'ArgumentNullException.ThrowIfNull' may cause boxing - Passing a nullable struct to 'ArgumentNullException.ThrowIfNull' may cause boxing + Pasar una estructura que admite un valor NULL a "ArgumentNullException.ThrowIfNull" puede provocar la conversión boxing Do not pass a nullable struct to 'ArgumentNullException.ThrowIfNull' - Do not pass a nullable struct to 'ArgumentNullException.ThrowIfNull' + No pasar una estructura que admite un valor NULL a "ArgumentNullException.ThrowIfNull" @@ -1165,7 +1165,7 @@ La ampliación y las conversiones definidas por el usuario no se admiten con tip Replace obsolete call - Replace obsolete call + Reemplazar llamada obsoleta @@ -2105,22 +2105,22 @@ La ampliación y las conversiones definidas por el usuario no se admiten con tip Use generic overload - Use generic overload + Usar sobrecarga genérica Using a generic overload is preferable to the 'System.Type' overload when the type is known, promoting cleaner and more type-safe code with improved compile-time checks. - Using a generic overload is preferable to the 'System.Type' overload when the type is known, promoting cleaner and more type-safe code with improved compile-time checks. + El uso de una sobrecarga genérica es preferible a la sobrecarga "System.Type" cuando se conoce el tipo, lo que promueve código más limpio y más seguro para tipos con comprobaciones en tiempo de compilación mejoradas. Prefer the generic overload '{0}' instead of '{1}' - Prefer the generic overload '{0}' instead of '{1}' + Preferir la sobrecarga genérica "{0}" en lugar de "{1}" Prefer generic overload when type is known - Prefer generic overload when type is known + Preferir sobrecarga genérica cuando se conoce el tipo @@ -2305,12 +2305,12 @@ La ampliación y las conversiones definidas por el usuario no se admiten con tip The property 'MaxResponseHeadersLength' is measured in kilobytes, not in bytes. The provided value is multiplied by 1024, which might be greater than your intended maximum length. - The property 'MaxResponseHeadersLength' is measured in kilobytes, not in bytes. The provided value is multiplied by 1024, which might be greater than your intended maximum length. + La propiedad "MaxResponseHeadersLength" se mide en kilobytes, no en bytes. El valor proporcionado se multiplica por 1024, que puede ser mayor que la longitud máxima prevista. Make sure the value '{0}' is correct. This value is measured in kilobytes, not bytes. - Make sure the value '{0}' is correct. This value is measured in kilobytes, not bytes. + Asegúrese de que el valor "{0}" es correcto. Este valor se mide en kilobytes, no en bytes. diff --git a/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.fr.xlf b/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.fr.xlf index f43c7f1e45..9453a73efe 100644 --- a/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.fr.xlf +++ b/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.fr.xlf @@ -625,27 +625,27 @@ Les conversions étendues et définies par l’utilisateur ne sont pas prises en Comparing a span to 'default' might not do what you intended, make the code more explicit by checking 'IsEmpty' - Comparing a span to 'default' might not do what you intended, make the code more explicit by checking 'IsEmpty' + La comparaison d’une étendue à « default » peut ne pas faire ce que vous avez prévu, rendre le code plus explicite en vérifiant « IsEmpty » Use 'IsEmpty' - Use 'IsEmpty' + Utiliser 'IsEmpty' Comparing a span to 'null' might be redundant, the 'null' literal will be implicitly converted to a 'Span<T>.Empty' - Comparing a span to 'null' might be redundant, the 'null' literal will be implicitly converted to a 'Span<T>.Empty' + La comparaison d’une étendue à 'null' peut être redondante. Le littéral 'null' est implicitement converti en 'Span<T>.Vide' Comparing a span to 'null' or 'default' might not do what you intended. 'default' and the 'null' literal are implicitly converted to 'Span<T>.Empty'. Remove the redundant comparison or make the code more explicit by using 'IsEmpty'. - Comparing a span to 'null' or 'default' might not do what you intended. 'default' and the 'null' literal are implicitly converted to 'Span<T>.Empty'. Remove the redundant comparison or make the code more explicit by using 'IsEmpty'. + La comparaison d’une étendue à « null » ou « default » peut ne pas faire ce que vous avez prévu. 'default' et le littéral 'null' sont implicitement convertis en 'Span<T>. Vide'. Supprimez la comparaison redondante ou rendez le code plus explicite à l’aide de 'IsEmpty'. Do not compare Span<T> to 'null' or 'default' - Do not compare Span<T> to 'null' or 'default' + Ne pas comparer Span<T> à 'null' ou 'default' @@ -885,42 +885,42 @@ Les conversions étendues et définies par l’utilisateur ne sont pas prises en Remove superfluous 'ArgumentNullException.ThrowIfNull' call - Remove superfluous 'ArgumentNullException.ThrowIfNull' call + Supprimer l’appel superflu 'ArgumentNullException.ThrowIfNull' 'ArgumentNullException.ThrowIfNull' throws when the passed argument is 'null'. Certain constructs like non-nullable structs, 'nameof()' and 'new' expressions are known to never be null, so 'ArgumentNullException.ThrowIfNull' will never throw. - 'ArgumentNullException.ThrowIfNull' throws when the passed argument is 'null'. Certain constructs like non-nullable structs, 'nameof()' and 'new' expressions are known to never be null, so 'ArgumentNullException.ThrowIfNull' will never throw. + 'ArgumentNullException.ThrowIfNull' lève lorsque l’argument passé est 'null'. Certaines constructions telles que les structs non nullables, les expressions 'nameof()' et 'new' sont connues pour ne jamais avoir la valeur null, donc 'ArgumentNullException.ThrowIfNull' ne lève jamais. Calling 'ArgumentNullException.ThrowIfNull' and passing a non-nullable value is a no-op - Calling 'ArgumentNullException.ThrowIfNull' and passing a non-nullable value is a no-op + L’appel de 'ArgumentNullException.ThrowIfNull' et le passage d’une valeur non nullable est une opération sans opération Do not pass a non-nullable value to 'ArgumentNullException.ThrowIfNull' - Do not pass a non-nullable value to 'ArgumentNullException.ThrowIfNull' + Ne passez pas de valeur non nullable à 'ArgumentNullException.ThrowIfNull' Replace the 'ArgumentNullException.ThrowIfNull' call with a conditional - Replace the 'ArgumentNullException.ThrowIfNull' call with a conditional + Remplacez l’appel 'ArgumentNullException.ThrowIfNull' par une condition 'ArgumentNullException.ThrowIfNull' accepts an 'object', so passing a nullable struct may cause the value to be boxed. - 'ArgumentNullException.ThrowIfNull' accepts an 'object', so passing a nullable struct may cause the value to be boxed. + 'ArgumentNullException.ThrowIfNull' accepte un 'object', donc le passage d’un struct nullable peut entraîner la mise en boîte de la valeur. Passing a nullable struct to 'ArgumentNullException.ThrowIfNull' may cause boxing - Passing a nullable struct to 'ArgumentNullException.ThrowIfNull' may cause boxing + Le passage d’un struct nullable à 'ArgumentNullException.ThrowIfNull' peut provoquer un boxing Do not pass a nullable struct to 'ArgumentNullException.ThrowIfNull' - Do not pass a nullable struct to 'ArgumentNullException.ThrowIfNull' + Ne pas passer un struct nullable à 'ArgumentNullException.ThrowIfNull' @@ -1165,7 +1165,7 @@ Les conversions étendues et définies par l’utilisateur ne sont pas prises en Replace obsolete call - Replace obsolete call + Remplacer un appel obsolète @@ -2105,22 +2105,22 @@ Les conversions étendues et définies par l’utilisateur ne sont pas prises en Use generic overload - Use generic overload + Utiliser une surcharge générique Using a generic overload is preferable to the 'System.Type' overload when the type is known, promoting cleaner and more type-safe code with improved compile-time checks. - Using a generic overload is preferable to the 'System.Type' overload when the type is known, promoting cleaner and more type-safe code with improved compile-time checks. + L’utilisation d’une surcharge générique est préférable à la surcharge « System.Type » lorsque le type est connu, ce qui favorise un code plus propre et plus sécurisé avec des vérifications améliorées au moment de la compilation. Prefer the generic overload '{0}' instead of '{1}' - Prefer the generic overload '{0}' instead of '{1}' + Préférer la surcharge générique '{0}' au lieu de '{1}' Prefer generic overload when type is known - Prefer generic overload when type is known + Préférer la surcharge générique lorsque le type est connu @@ -2305,12 +2305,12 @@ Les conversions étendues et définies par l’utilisateur ne sont pas prises en The property 'MaxResponseHeadersLength' is measured in kilobytes, not in bytes. The provided value is multiplied by 1024, which might be greater than your intended maximum length. - The property 'MaxResponseHeadersLength' is measured in kilobytes, not in bytes. The provided value is multiplied by 1024, which might be greater than your intended maximum length. + La propriété « MaxResponseHeadersLength » est mesurée en kilo-octets, et non en octets. La valeur fournie est multipliée par 1024, ce qui peut être supérieur à la longueur maximale prévue. Make sure the value '{0}' is correct. This value is measured in kilobytes, not bytes. - Make sure the value '{0}' is correct. This value is measured in kilobytes, not bytes. + Vérifiez que la valeur «{0}» est correcte. Cette valeur est mesurée en kilo-octets, et non en octets. diff --git a/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.it.xlf b/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.it.xlf index 404f6d8bef..f47fc5744a 100644 --- a/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.it.xlf +++ b/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.it.xlf @@ -625,27 +625,27 @@ L'ampliamento e le conversioni definite dall'utente non sono supportate con tipi Comparing a span to 'default' might not do what you intended, make the code more explicit by checking 'IsEmpty' - Comparing a span to 'default' might not do what you intended, make the code more explicit by checking 'IsEmpty' + Il confronto di un intervallo con "default" potrebbe non eseguire le operazioni previste. Rendere il codice più esplicito selezionando "IsEmpty" Use 'IsEmpty' - Use 'IsEmpty' + Usare"IsEmpty" Comparing a span to 'null' might be redundant, the 'null' literal will be implicitly converted to a 'Span<T>.Empty' - Comparing a span to 'null' might be redundant, the 'null' literal will be implicitly converted to a 'Span<T>.Empty' + Il confronto di un'estensione con 'null' potrebbe essere ridondante. Il valore letterale "null" verrà convertito in modo implicito in un elemento "Span<T>.Empty" Comparing a span to 'null' or 'default' might not do what you intended. 'default' and the 'null' literal are implicitly converted to 'Span<T>.Empty'. Remove the redundant comparison or make the code more explicit by using 'IsEmpty'. - Comparing a span to 'null' or 'default' might not do what you intended. 'default' and the 'null' literal are implicitly converted to 'Span<T>.Empty'. Remove the redundant comparison or make the code more explicit by using 'IsEmpty'. + Il confronto di un intervallo con "null" o "default" potrebbe non eseguire le operazioni previste. Il valore letterale "default" and "null" vengono convertiti in modo implicito in "Span<T>.Empty". Rimuovere il confronto ridondante o rendere il codice più esplicito usando "IsEmpty". Do not compare Span<T> to 'null' or 'default' - Do not compare Span<T> to 'null' or 'default' + Non confrontare l'intervallo<T> con "null" o "default" @@ -885,42 +885,42 @@ L'ampliamento e le conversioni definite dall'utente non sono supportate con tipi Remove superfluous 'ArgumentNullException.ThrowIfNull' call - Remove superfluous 'ArgumentNullException.ThrowIfNull' call + Rimuovere la chiamata superflua ad "ArgumentNullException.ThrowIfNull" 'ArgumentNullException.ThrowIfNull' throws when the passed argument is 'null'. Certain constructs like non-nullable structs, 'nameof()' and 'new' expressions are known to never be null, so 'ArgumentNullException.ThrowIfNull' will never throw. - 'ArgumentNullException.ThrowIfNull' throws when the passed argument is 'null'. Certain constructs like non-nullable structs, 'nameof()' and 'new' expressions are known to never be null, so 'ArgumentNullException.ThrowIfNull' will never throw. + "ArgumentNullException.ThrowIfNull" viene generato quando l'argomento passato è "null". Alcuni costrutti come gli struct che non ammettono i valori Null, le espressioni "nameof()" e "new" non sono mai Null, di conseguenza "ArgumentNullException.ThrowIfNull" non verrà mai generato. Calling 'ArgumentNullException.ThrowIfNull' and passing a non-nullable value is a no-op - Calling 'ArgumentNullException.ThrowIfNull' and passing a non-nullable value is a no-op + Chiamare "ArgumentNullException.ThrowIfNull" e passare un valore che non ammette i valori Null non restituisce alcuna operazione Do not pass a non-nullable value to 'ArgumentNullException.ThrowIfNull' - Do not pass a non-nullable value to 'ArgumentNullException.ThrowIfNull' + Non passare uno struct che non ammette i valori Null ad "AgumentNullException.ThrowIfNull" Replace the 'ArgumentNullException.ThrowIfNull' call with a conditional - Replace the 'ArgumentNullException.ThrowIfNull' call with a conditional + Sostituire la chiamata ad "ArgumentNullException.ThrowIfNull" con un elemento condizionale 'ArgumentNullException.ThrowIfNull' accepts an 'object', so passing a nullable struct may cause the value to be boxed. - 'ArgumentNullException.ThrowIfNull' accepts an 'object', so passing a nullable struct may cause the value to be boxed. + "ArgumentNullException.ThrowIfNull" accetta un "object"; di conseguenza, il passaggio di uno struct che ammette i valori Null può causare la conversione boxing del valore. Passing a nullable struct to 'ArgumentNullException.ThrowIfNull' may cause boxing - Passing a nullable struct to 'ArgumentNullException.ThrowIfNull' may cause boxing + Il passaggio di uno struct che ammette i valori Null a "ArgumentNullException.ThrowIfNull" può causare la conversione boxing Do not pass a nullable struct to 'ArgumentNullException.ThrowIfNull' - Do not pass a nullable struct to 'ArgumentNullException.ThrowIfNull' + Non passare uno struct nullable ad "AgumentNullException.ThrowIfNull" @@ -1165,7 +1165,7 @@ L'ampliamento e le conversioni definite dall'utente non sono supportate con tipi Replace obsolete call - Replace obsolete call + Sostituire chiamata obsoleta @@ -2105,22 +2105,22 @@ L'ampliamento e le conversioni definite dall'utente non sono supportate con tipi Use generic overload - Use generic overload + Usare overload generico Using a generic overload is preferable to the 'System.Type' overload when the type is known, promoting cleaner and more type-safe code with improved compile-time checks. - Using a generic overload is preferable to the 'System.Type' overload when the type is known, promoting cleaner and more type-safe code with improved compile-time checks. + L'uso di un overload generico è preferibile all'overload "System.Type" quando il tipo è noto, promuovendo un codice più pulito e indipendente dai tipi con controlli migliorati in fase di compilazione. Prefer the generic overload '{0}' instead of '{1}' - Prefer the generic overload '{0}' instead of '{1}' + Preferire l'overload generico "{0}" invece di '{1}' Prefer generic overload when type is known - Prefer generic overload when type is known + Preferire l'overload generico quando il tipo è noto @@ -2305,12 +2305,12 @@ L'ampliamento e le conversioni definite dall'utente non sono supportate con tipi The property 'MaxResponseHeadersLength' is measured in kilobytes, not in bytes. The provided value is multiplied by 1024, which might be greater than your intended maximum length. - The property 'MaxResponseHeadersLength' is measured in kilobytes, not in bytes. The provided value is multiplied by 1024, which might be greater than your intended maximum length. + La proprietà "MaxResponseHeadersLength" viene misurata in kilobyte, non in byte. Il valore fornito è moltiplicato per 1024, quindi potrebbe superare la lunghezza massima prevista. Make sure the value '{0}' is correct. This value is measured in kilobytes, not bytes. - Make sure the value '{0}' is correct. This value is measured in kilobytes, not bytes. + Assicurarsi che il valore "{0}" sia corretto. Questo valore viene misurato in kilobyte, non in byte. diff --git a/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.ja.xlf b/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.ja.xlf index 8c5ce5e334..a6b58303c1 100644 --- a/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.ja.xlf +++ b/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.ja.xlf @@ -625,27 +625,27 @@ Enumerable.OfType<T> で使用されるジェネリック型チェック ( Comparing a span to 'default' might not do what you intended, make the code more explicit by checking 'IsEmpty' - Comparing a span to 'default' might not do what you intended, make the code more explicit by checking 'IsEmpty' + スパンを 'default' と比較すると、意図したとおりに動作しない可能性があります。'IsEmpty' をチェックして、コードをより明示的にしてください Use 'IsEmpty' - Use 'IsEmpty' + 'IsEmpty' の使用 Comparing a span to 'null' might be redundant, the 'null' literal will be implicitly converted to a 'Span<T>.Empty' - Comparing a span to 'null' might be redundant, the 'null' literal will be implicitly converted to a 'Span<T>.Empty' + スパンを 'null' と比較すると冗長である可能性があります。'null' リテラルは暗黙的に 'Span<T>.Empty' に変換されます。 Comparing a span to 'null' or 'default' might not do what you intended. 'default' and the 'null' literal are implicitly converted to 'Span<T>.Empty'. Remove the redundant comparison or make the code more explicit by using 'IsEmpty'. - Comparing a span to 'null' or 'default' might not do what you intended. 'default' and the 'null' literal are implicitly converted to 'Span<T>.Empty'. Remove the redundant comparison or make the code more explicit by using 'IsEmpty'. + スパンを 'null' または 'default' と比較しても、意図したとおりにならない場合があります。'default' と 'null' リテラルは暗黙的に 'Span<T>.Empty' に変換されます。冗長な比較を削除するか、'IsEmpty' を使用してコードをより明示的にします。 Do not compare Span<T> to 'null' or 'default' - Do not compare Span<T> to 'null' or 'default' + Span<T> を 'null' または 'default' と比較しない @@ -885,42 +885,42 @@ Enumerable.OfType<T> で使用されるジェネリック型チェック ( Remove superfluous 'ArgumentNullException.ThrowIfNull' call - Remove superfluous 'ArgumentNullException.ThrowIfNull' call + 余分な 'ArgumentNullException.ThrowIfNull' 呼び出しを削除する 'ArgumentNullException.ThrowIfNull' throws when the passed argument is 'null'. Certain constructs like non-nullable structs, 'nameof()' and 'new' expressions are known to never be null, so 'ArgumentNullException.ThrowIfNull' will never throw. - 'ArgumentNullException.ThrowIfNull' throws when the passed argument is 'null'. Certain constructs like non-nullable structs, 'nameof()' and 'new' expressions are known to never be null, so 'ArgumentNullException.ThrowIfNull' will never throw. + 渡された引数が 'null' の場合、'ArgumentNullException.ThrowIfNull' がスローされます。null 非許容構造体、'nameof()'、'new' 式などの特定のコンストラクトは null になることはないため、'ArgumentNullException.ThrowIfNull' はスローされません。 Calling 'ArgumentNullException.ThrowIfNull' and passing a non-nullable value is a no-op - Calling 'ArgumentNullException.ThrowIfNull' and passing a non-nullable value is a no-op + 'ArgumentNullException.ThrowIfNull' を呼び出し、NULL 非許容の値を渡すことは no-op です Do not pass a non-nullable value to 'ArgumentNullException.ThrowIfNull' - Do not pass a non-nullable value to 'ArgumentNullException.ThrowIfNull' + NULL 非許容値を 'ArgumentNullException.ThrowIfNull' に渡さない Replace the 'ArgumentNullException.ThrowIfNull' call with a conditional - Replace the 'ArgumentNullException.ThrowIfNull' call with a conditional + 'ArgumentNullException.ThrowIfNull' 呼び出しを条件に置き換る 'ArgumentNullException.ThrowIfNull' accepts an 'object', so passing a nullable struct may cause the value to be boxed. - 'ArgumentNullException.ThrowIfNull' accepts an 'object', so passing a nullable struct may cause the value to be boxed. + 'ArgumentNullException.ThrowIfNull' は 'object' を受け入れるので、null 許容の構造体を渡すと値がボックス化される可能性があります。 Passing a nullable struct to 'ArgumentNullException.ThrowIfNull' may cause boxing - Passing a nullable struct to 'ArgumentNullException.ThrowIfNull' may cause boxing + NULL 許容構造体を 'ArgumentNullException.ThrowIfNull' に渡すと、ボックス化が発生する可能性があります Do not pass a nullable struct to 'ArgumentNullException.ThrowIfNull' - Do not pass a nullable struct to 'ArgumentNullException.ThrowIfNull' + Null 許容構造体を 'ArgumentNullException.ThrowIfNull' に渡さないでください @@ -1165,7 +1165,7 @@ Enumerable.OfType<T> で使用されるジェネリック型チェック ( Replace obsolete call - Replace obsolete call + 古い呼び出しを置き換える @@ -2105,22 +2105,22 @@ Enumerable.OfType<T> で使用されるジェネリック型チェック ( Use generic overload - Use generic overload + ジェネリック オーバーロードの使用 Using a generic overload is preferable to the 'System.Type' overload when the type is known, promoting cleaner and more type-safe code with improved compile-time checks. - Using a generic overload is preferable to the 'System.Type' overload when the type is known, promoting cleaner and more type-safe code with improved compile-time checks. + ジェネリック オーバーロードの使用は、型が既知の場合に 'System.Type' オーバーロードに適しており、改善されたコンパイル時チェックで、よりクリーンでよりタイプ セーフなコードを促進します。 Prefer the generic overload '{0}' instead of '{1}' - Prefer the generic overload '{0}' instead of '{1}' + '{1}' ではなく、ジェネリック オーバーロード '{0}' を優先する Prefer generic overload when type is known - Prefer generic overload when type is known + 型が既知の場合はジェネリック オーバーロードを優先する @@ -2305,12 +2305,12 @@ Enumerable.OfType<T> で使用されるジェネリック型チェック ( The property 'MaxResponseHeadersLength' is measured in kilobytes, not in bytes. The provided value is multiplied by 1024, which might be greater than your intended maximum length. - The property 'MaxResponseHeadersLength' is measured in kilobytes, not in bytes. The provided value is multiplied by 1024, which might be greater than your intended maximum length. + プロパティ 'MaxResponseHeadersLength' がバイト単位ではなくキロバイト単位で測定されています。指定された値に 1024 を乗算します。これは、意図した最大長を超える可能性があります。 Make sure the value '{0}' is correct. This value is measured in kilobytes, not bytes. - Make sure the value '{0}' is correct. This value is measured in kilobytes, not bytes. + 値 '{0}' が正しいことを確認します。この値はバイト単位ではなくキロバイト単位で測定されます。 diff --git a/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.ko.xlf b/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.ko.xlf index 46b5f4069e..81c593fd49 100644 --- a/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.ko.xlf +++ b/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.ko.xlf @@ -625,27 +625,27 @@ Enumerable.OfType<T>에서 사용하는 제네릭 형식 검사(C# 'is' Comparing a span to 'default' might not do what you intended, make the code more explicit by checking 'IsEmpty' - Comparing a span to 'default' might not do what you intended, make the code more explicit by checking 'IsEmpty' + 범위를 'default'로 비교해도 의도한 대로 수행되지 않을 수 있습니다. 'IsEmpty'를 확인하여 코드를 더 명시적으로 만듭니다. Use 'IsEmpty' - Use 'IsEmpty' + 'IsEmpty' 사용 Comparing a span to 'null' might be redundant, the 'null' literal will be implicitly converted to a 'Span<T>.Empty' - Comparing a span to 'null' might be redundant, the 'null' literal will be implicitly converted to a 'Span<T>.Empty' + 범위를 'null'에 비교하면 중복될 수 있습니다. 'null' 리터럴은 암시적으로 'Span<T>.Empty'로 변환됩니다. Comparing a span to 'null' or 'default' might not do what you intended. 'default' and the 'null' literal are implicitly converted to 'Span<T>.Empty'. Remove the redundant comparison or make the code more explicit by using 'IsEmpty'. - Comparing a span to 'null' or 'default' might not do what you intended. 'default' and the 'null' literal are implicitly converted to 'Span<T>.Empty'. Remove the redundant comparison or make the code more explicit by using 'IsEmpty'. + 범위를 'null' 또는 'default'에 비교해도 의도한 대로 수행되지 않을 수 있습니다. 'default'와 'null' 리터럴은 암시적으로 'Span<T>.Empty'로 변환됩니다. 중복 비교를 제거하거나 'IsEmpty'를 사용하여 코드를 더 명시적으로 만듭니다. Do not compare Span<T> to 'null' or 'default' - Do not compare Span<T> to 'null' or 'default' + Span<T>을(를) 'null' 또는 'default'와 비교하지 마세요. @@ -885,42 +885,42 @@ Enumerable.OfType<T>에서 사용하는 제네릭 형식 검사(C# 'is' Remove superfluous 'ArgumentNullException.ThrowIfNull' call - Remove superfluous 'ArgumentNullException.ThrowIfNull' call + 불필요한 'ArgumentNullException.ThrowIfNull' 호출 제거 'ArgumentNullException.ThrowIfNull' throws when the passed argument is 'null'. Certain constructs like non-nullable structs, 'nameof()' and 'new' expressions are known to never be null, so 'ArgumentNullException.ThrowIfNull' will never throw. - 'ArgumentNullException.ThrowIfNull' throws when the passed argument is 'null'. Certain constructs like non-nullable structs, 'nameof()' and 'new' expressions are known to never be null, so 'ArgumentNullException.ThrowIfNull' will never throw. + 전달된 인수가 'null'이면 'ArgumentNullException.ThrowIfNull'이 throw됩니다. null을 허용하지 않는 구조체, 'nameof()' 및 'new' 식과 같은 특정 구문은 null이 아닌 것으로 알려져 있으므로 'ArgumentNullException.ThrowIfNull'은 throw되지 않습니다. Calling 'ArgumentNullException.ThrowIfNull' and passing a non-nullable value is a no-op - Calling 'ArgumentNullException.ThrowIfNull' and passing a non-nullable value is a no-op + 'ArgumentNullException.ThrowIfNull'을 호출하고 null을 허용하지 않는 값을 전달하는 no-op Do not pass a non-nullable value to 'ArgumentNullException.ThrowIfNull' - Do not pass a non-nullable value to 'ArgumentNullException.ThrowIfNull' + null을 허용하지 않는 값을 'ArgumentNullException.ThrowIfNull'에 전달 금지 Replace the 'ArgumentNullException.ThrowIfNull' call with a conditional - Replace the 'ArgumentNullException.ThrowIfNull' call with a conditional + 'ArgumentNullException.ThrowIfNull' 호출을 조건부로 바꾸기 'ArgumentNullException.ThrowIfNull' accepts an 'object', so passing a nullable struct may cause the value to be boxed. - 'ArgumentNullException.ThrowIfNull' accepts an 'object', so passing a nullable struct may cause the value to be boxed. + 'ArgumentNullException.ThrowIfNull'은 'object'를 허용하므로 nullable 구조체를 전달하면 값이 박스 처리될 수 있습니다. Passing a nullable struct to 'ArgumentNullException.ThrowIfNull' may cause boxing - Passing a nullable struct to 'ArgumentNullException.ThrowIfNull' may cause boxing + nullable 구조체를 'ArgumentNullException.ThrowIfNull'에 전달하면 박스 처리가 발생할 수 있음 Do not pass a nullable struct to 'ArgumentNullException.ThrowIfNull' - Do not pass a nullable struct to 'ArgumentNullException.ThrowIfNull' + nullable 구조체를 'ArgumentNullException.ThrowIfNull'에 전달 금지 @@ -1165,7 +1165,7 @@ Enumerable.OfType<T>에서 사용하는 제네릭 형식 검사(C# 'is' Replace obsolete call - Replace obsolete call + 사용되지 않는 호출 바꾸기 @@ -2105,22 +2105,22 @@ Enumerable.OfType<T>에서 사용하는 제네릭 형식 검사(C# 'is' Use generic overload - Use generic overload + 제네릭 오버로드 사용 Using a generic overload is preferable to the 'System.Type' overload when the type is known, promoting cleaner and more type-safe code with improved compile-time checks. - Using a generic overload is preferable to the 'System.Type' overload when the type is known, promoting cleaner and more type-safe code with improved compile-time checks. + 형식이 알려진 경우 제네릭 오버로드를 사용하는 것이 'System.Type' 오버로드보다 낫기 때문에 컴파일 시간 검사를 개선하여 보다 깔끔하고 형식이 안전한 코드를 승격할 수 있습니다. Prefer the generic overload '{0}' instead of '{1}' - Prefer the generic overload '{0}' instead of '{1}' + '{1}' 대신 '{0}' 제네릭 오버로드를 선호합니다. Prefer generic overload when type is known - Prefer generic overload when type is known + 형식이 알려진 경우 제네릭 오버로드 선호 @@ -2305,12 +2305,12 @@ Enumerable.OfType<T>에서 사용하는 제네릭 형식 검사(C# 'is' The property 'MaxResponseHeadersLength' is measured in kilobytes, not in bytes. The provided value is multiplied by 1024, which might be greater than your intended maximum length. - The property 'MaxResponseHeadersLength' is measured in kilobytes, not in bytes. The provided value is multiplied by 1024, which might be greater than your intended maximum length. + 'MaxResponseHeadersLength' 속성은 바이트가 아닌 킬로바이트 단위로 측정됩니다. 제공된 값에 1024를 곱합니다. 이 값은 의도한 최대 길이보다 클 수 있습니다. Make sure the value '{0}' is correct. This value is measured in kilobytes, not bytes. - Make sure the value '{0}' is correct. This value is measured in kilobytes, not bytes. + '{0}' 값이 올바른지 확인합니다. 이 값은 바이트가 아닌 킬로바이트 단위로 측정됩니다. diff --git a/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.pl.xlf b/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.pl.xlf index 0b50729af9..3324d945e0 100644 --- a/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.pl.xlf +++ b/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.pl.xlf @@ -625,27 +625,27 @@ Konwersje poszerzane i zdefiniowane przez użytkownika nie są obsługiwane w pr Comparing a span to 'default' might not do what you intended, make the code more explicit by checking 'IsEmpty' - Comparing a span to 'default' might not do what you intended, make the code more explicit by checking 'IsEmpty' + Porównanie rozpiętości do wartości „domyślne” może nie przynieść zamierzonego efektu, dlatego zwiększ jawność kodu, sprawdzając pozycję „IsEmpty” Use 'IsEmpty' - Use 'IsEmpty' + Użyj elementu „IsEmpty” Comparing a span to 'null' might be redundant, the 'null' literal will be implicitly converted to a 'Span<T>.Empty' - Comparing a span to 'null' might be redundant, the 'null' literal will be implicitly converted to a 'Span<T>.Empty' + Porównanie zakresu z wartością „null”może być nadmiarowe, literał „null” zostanie niejawnie przekonwertowany na literał „Span<T>.Empty” Comparing a span to 'null' or 'default' might not do what you intended. 'default' and the 'null' literal are implicitly converted to 'Span<T>.Empty'. Remove the redundant comparison or make the code more explicit by using 'IsEmpty'. - Comparing a span to 'null' or 'default' might not do what you intended. 'default' and the 'null' literal are implicitly converted to 'Span<T>.Empty'. Remove the redundant comparison or make the code more explicit by using 'IsEmpty'. + Porównanie zakresu z wartością „null” lub „domyślne” może nie działać zgodnie z oczekiwaniami. Literał „domyślne” i literał „null” są niejawnie konwertowane na wartość „Span<T>.Empty”. Usuń nadmiarowe porównanie lub zwiększ jawność kodu, używając elementu „IsEmpty”. Do not compare Span<T> to 'null' or 'default' - Do not compare Span<T> to 'null' or 'default' + Nie porównuj wartości Span<T> z wartością „null” lub „domyślne” @@ -885,42 +885,42 @@ Konwersje poszerzane i zdefiniowane przez użytkownika nie są obsługiwane w pr Remove superfluous 'ArgumentNullException.ThrowIfNull' call - Remove superfluous 'ArgumentNullException.ThrowIfNull' call + Usuń zbędne wywołanie „ArgumentNullException.ThrowIfNull” 'ArgumentNullException.ThrowIfNull' throws when the passed argument is 'null'. Certain constructs like non-nullable structs, 'nameof()' and 'new' expressions are known to never be null, so 'ArgumentNullException.ThrowIfNull' will never throw. - 'ArgumentNullException.ThrowIfNull' throws when the passed argument is 'null'. Certain constructs like non-nullable structs, 'nameof()' and 'new' expressions are known to never be null, so 'ArgumentNullException.ThrowIfNull' will never throw. + Element „ArgumentNullException.ThrowIfNull” zgłasza, gdy przekazany argument ma wartość „null”. Niektóre konstrukcje, takie jak struktury nie dopuszczające wartości null, wyrażenia „nameof()” i „nowy”, nigdy nie mają wartości null, więc metoda „ArgumentNullException.ThrowIfNull” nigdy nie będzie zgłaszać. Calling 'ArgumentNullException.ThrowIfNull' and passing a non-nullable value is a no-op - Calling 'ArgumentNullException.ThrowIfNull' and passing a non-nullable value is a no-op + Wywołanie metody „ArgumentNullException.ThrowIfNull” i przekazanie wartości dopuszczającej wartość null jest operacją bezskuteczną Do not pass a non-nullable value to 'ArgumentNullException.ThrowIfNull' - Do not pass a non-nullable value to 'ArgumentNullException.ThrowIfNull' + Nie przekazuj wartości nie dopuszczającej wartość null do elementu „ArgumentNullException.ThrowIfNull” Replace the 'ArgumentNullException.ThrowIfNull' call with a conditional - Replace the 'ArgumentNullException.ThrowIfNull' call with a conditional + Zastąp wywołanie „ArgumentNullException.ThrowIfNull” wywołaniem warunkowym 'ArgumentNullException.ThrowIfNull' accepts an 'object', so passing a nullable struct may cause the value to be boxed. - 'ArgumentNullException.ThrowIfNull' accepts an 'object', so passing a nullable struct may cause the value to be boxed. + Element „ArgumentNullException.ThrowIfNull” akceptuje element „obiekt”, więc przekazanie struktury dopuszczającej wartość null może spowodować, że wartość zostanie zablokowana. Passing a nullable struct to 'ArgumentNullException.ThrowIfNull' may cause boxing - Passing a nullable struct to 'ArgumentNullException.ThrowIfNull' may cause boxing + Przekazanie struktury dopuszczającej wartość null do elementu „ArgumentNullException.ThrowIfNull” może spowodować konwersję boxing Do not pass a nullable struct to 'ArgumentNullException.ThrowIfNull' - Do not pass a nullable struct to 'ArgumentNullException.ThrowIfNull' + Nie przekazuj struktury dopuszczającej wartość null do elementu „ArgumentNullException.ThrowIfNull” @@ -1165,7 +1165,7 @@ Konwersje poszerzane i zdefiniowane przez użytkownika nie są obsługiwane w pr Replace obsolete call - Replace obsolete call + Zamień przestarzałe wywołanie @@ -2105,22 +2105,22 @@ Konwersje poszerzane i zdefiniowane przez użytkownika nie są obsługiwane w pr Use generic overload - Use generic overload + Użyj ogólnego przeciążenia Using a generic overload is preferable to the 'System.Type' overload when the type is known, promoting cleaner and more type-safe code with improved compile-time checks. - Using a generic overload is preferable to the 'System.Type' overload when the type is known, promoting cleaner and more type-safe code with improved compile-time checks. + Użycie ogólnego przeciążenia jest lepsze niż przeciążenie „System.Type”, gdy typ jest znany, promując czystszy i bardziej bezpieczny kod z ulepszonymi kontrolami czasu kompilacji. Prefer the generic overload '{0}' instead of '{1}' - Prefer the generic overload '{0}' instead of '{1}' + Preferuj ogólne przeciążenie „{0}” zamiast „{1}” Prefer generic overload when type is known - Prefer generic overload when type is known + Preferuj ogólne przeciążenie, gdy typ jest znany @@ -2305,12 +2305,12 @@ Konwersje poszerzane i zdefiniowane przez użytkownika nie są obsługiwane w pr The property 'MaxResponseHeadersLength' is measured in kilobytes, not in bytes. The provided value is multiplied by 1024, which might be greater than your intended maximum length. - The property 'MaxResponseHeadersLength' is measured in kilobytes, not in bytes. The provided value is multiplied by 1024, which might be greater than your intended maximum length. + Właściwość „MaxResponseHeadersLength” jest mierzona w kilobajtach, a nie w bajtach. Podana wartość jest mnożona przez 1024, co może być wartością większą niż zamierzona maksymalna długość. Make sure the value '{0}' is correct. This value is measured in kilobytes, not bytes. - Make sure the value '{0}' is correct. This value is measured in kilobytes, not bytes. + Upewnij się, że wartość „{0}” jest poprawna. Ta wartość jest mierzona w kilobajtach, a nie w bajtach. diff --git a/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.pt-BR.xlf b/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.pt-BR.xlf index f93551ea42..92981429a1 100644 --- a/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.pt-BR.xlf +++ b/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.pt-BR.xlf @@ -625,27 +625,27 @@ Ampliação e conversões definidas pelo usuário não são compatíveis com tip Comparing a span to 'default' might not do what you intended, make the code more explicit by checking 'IsEmpty' - Comparing a span to 'default' might not do what you intended, make the code more explicit by checking 'IsEmpty' + Comparar um intervalo com 'default' pode não fazer o que você pretendia, torne o código mais explícito verificando 'IsEmpty' Use 'IsEmpty' - Use 'IsEmpty' + Usar 'IsEmpty' Comparing a span to 'null' might be redundant, the 'null' literal will be implicitly converted to a 'Span<T>.Empty' - Comparing a span to 'null' might be redundant, the 'null' literal will be implicitly converted to a 'Span<T>.Empty' + Comparar um intervalo com 'null' pode ser redundante, o literal 'null' será convertido implicitamente em um 'Span<T>.Empty' Comparing a span to 'null' or 'default' might not do what you intended. 'default' and the 'null' literal are implicitly converted to 'Span<T>.Empty'. Remove the redundant comparison or make the code more explicit by using 'IsEmpty'. - Comparing a span to 'null' or 'default' might not do what you intended. 'default' and the 'null' literal are implicitly converted to 'Span<T>.Empty'. Remove the redundant comparison or make the code more explicit by using 'IsEmpty'. + Comparar um intervalo com 'null' ou 'default' pode não fazer o que você pretendia. 'default' e o literal 'null' são convertidos implicitamente em 'Span<T>.Empty'. Remova a comparação redundante ou torne o código mais explícito usando 'IsEmpty'. Do not compare Span<T> to 'null' or 'default' - Do not compare Span<T> to 'null' or 'default' + Não compare Span<T> a 'null' ou 'default' @@ -885,42 +885,42 @@ Ampliação e conversões definidas pelo usuário não são compatíveis com tip Remove superfluous 'ArgumentNullException.ThrowIfNull' call - Remove superfluous 'ArgumentNullException.ThrowIfNull' call + Remova a chamada 'ArgumentNullException.ThrowIfNull' supérflua 'ArgumentNullException.ThrowIfNull' throws when the passed argument is 'null'. Certain constructs like non-nullable structs, 'nameof()' and 'new' expressions are known to never be null, so 'ArgumentNullException.ThrowIfNull' will never throw. - 'ArgumentNullException.ThrowIfNull' throws when the passed argument is 'null'. Certain constructs like non-nullable structs, 'nameof()' and 'new' expressions are known to never be null, so 'ArgumentNullException.ThrowIfNull' will never throw. + 'ArgumentNullException.ThrowIfNull' é lançado quando o argumento passado é 'null'. Certas construções, como structs não anuláveis, expressões 'nameof()' e 'new', nunca são nulas, portanto, 'ArgumentNullException.ThrowIfNull' nunca será lançada. Calling 'ArgumentNullException.ThrowIfNull' and passing a non-nullable value is a no-op - Calling 'ArgumentNullException.ThrowIfNull' and passing a non-nullable value is a no-op + Chamar 'ArgumentNullException.ThrowIfNull' e passar um valor que não permite valor nulo é uma operação não operacional Do not pass a non-nullable value to 'ArgumentNullException.ThrowIfNull' - Do not pass a non-nullable value to 'ArgumentNullException.ThrowIfNull' + Não passe um valor não anulável para 'ArgumentNullException.ThrowIfNull' Replace the 'ArgumentNullException.ThrowIfNull' call with a conditional - Replace the 'ArgumentNullException.ThrowIfNull' call with a conditional + Substitua a chamada 'ArgumentNullException.ThrowIfNull' por uma condicional 'ArgumentNullException.ThrowIfNull' accepts an 'object', so passing a nullable struct may cause the value to be boxed. - 'ArgumentNullException.ThrowIfNull' accepts an 'object', so passing a nullable struct may cause the value to be boxed. + 'ArgumentNullException.ThrowIfNull' aceita um 'objeto', portanto, passar struct anulável pode fazer com que o valor fique em caixa. Passing a nullable struct to 'ArgumentNullException.ThrowIfNull' may cause boxing - Passing a nullable struct to 'ArgumentNullException.ThrowIfNull' may cause boxing + Passe um struct anulável para 'ArgumentNullException.ThrowIfNull' pode causar conversão boxing Do not pass a nullable struct to 'ArgumentNullException.ThrowIfNull' - Do not pass a nullable struct to 'ArgumentNullException.ThrowIfNull' + Não passe um struct anulável para 'ArgumentNullException.ThrowIfNull' @@ -1165,7 +1165,7 @@ Ampliação e conversões definidas pelo usuário não são compatíveis com tip Replace obsolete call - Replace obsolete call + Substituir a chamada obsoleta @@ -2105,22 +2105,22 @@ Ampliação e conversões definidas pelo usuário não são compatíveis com tip Use generic overload - Use generic overload + Usar sobrecarga genérica Using a generic overload is preferable to the 'System.Type' overload when the type is known, promoting cleaner and more type-safe code with improved compile-time checks. - Using a generic overload is preferable to the 'System.Type' overload when the type is known, promoting cleaner and more type-safe code with improved compile-time checks. + O uso de uma sobrecarga genérica é preferível à sobrecarga 'System.Type' quando o tipo é conhecido, promovendo um código mais limpo e mais seguro para tipos com verificações aprimoradas de tempo de compilação. Prefer the generic overload '{0}' instead of '{1}' - Prefer the generic overload '{0}' instead of '{1}' + Preferir a sobrecarga genérica '{0}' em vez de '{1}' Prefer generic overload when type is known - Prefer generic overload when type is known + Preferir sobrecarga genérica quando o tipo for conhecido @@ -2305,12 +2305,12 @@ Ampliação e conversões definidas pelo usuário não são compatíveis com tip The property 'MaxResponseHeadersLength' is measured in kilobytes, not in bytes. The provided value is multiplied by 1024, which might be greater than your intended maximum length. - The property 'MaxResponseHeadersLength' is measured in kilobytes, not in bytes. The provided value is multiplied by 1024, which might be greater than your intended maximum length. + A propriedade “MaxResponseHeadersLength” é medida em quilobytes, não em bytes. O valor fornecido é multiplicado por 1024, que pode ser maior que o comprimento máximo pretendido. Make sure the value '{0}' is correct. This value is measured in kilobytes, not bytes. - Make sure the value '{0}' is correct. This value is measured in kilobytes, not bytes. + Verifique se o valor '{0}' está correto. Esse valor é medido em quilobytes e não em bytes. diff --git a/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.ru.xlf b/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.ru.xlf index 060375fe0f..f980ebf090 100644 --- a/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.ru.xlf +++ b/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.ru.xlf @@ -625,27 +625,27 @@ Widening and user defined conversions are not supported with generic types. Comparing a span to 'default' might not do what you intended, make the code more explicit by checking 'IsEmpty' - Comparing a span to 'default' might not do what you intended, make the code more explicit by checking 'IsEmpty' + Сравнение диапазона со значением "default" может не выполнить желаемое действие. Сделайте код более явным путем проверки "IsEmpty" Use 'IsEmpty' - Use 'IsEmpty' + Использовать "IsEmpty" Comparing a span to 'null' might be redundant, the 'null' literal will be implicitly converted to a 'Span<T>.Empty' - Comparing a span to 'null' might be redundant, the 'null' literal will be implicitly converted to a 'Span<T>.Empty' + Сравнение диапазона с "null" может быть избыточным. Литерал "null" будет неявно преобразован в "Span<T>.Empty" Comparing a span to 'null' or 'default' might not do what you intended. 'default' and the 'null' literal are implicitly converted to 'Span<T>.Empty'. Remove the redundant comparison or make the code more explicit by using 'IsEmpty'. - Comparing a span to 'null' or 'default' might not do what you intended. 'default' and the 'null' literal are implicitly converted to 'Span<T>.Empty'. Remove the redundant comparison or make the code more explicit by using 'IsEmpty'. + Сравнение диапазона с значением "null" или "default" может не выполнить желаемое действие. Литералы "default" и "null" неявно преобразуются в "Span<T>.Empty". Удалите избыточное сравнение или сделайте код более явным с помощью "isEmpty". Do not compare Span<T> to 'null' or 'default' - Do not compare Span<T> to 'null' or 'default' + Не сравнивать Span<T> со значением "null" или "default" @@ -885,42 +885,42 @@ Widening and user defined conversions are not supported with generic types. Remove superfluous 'ArgumentNullException.ThrowIfNull' call - Remove superfluous 'ArgumentNullException.ThrowIfNull' call + Удалить избыточный вызов "ArgumentNullException.ThrowIfNull" 'ArgumentNullException.ThrowIfNull' throws when the passed argument is 'null'. Certain constructs like non-nullable structs, 'nameof()' and 'new' expressions are known to never be null, so 'ArgumentNullException.ThrowIfNull' will never throw. - 'ArgumentNullException.ThrowIfNull' throws when the passed argument is 'null'. Certain constructs like non-nullable structs, 'nameof()' and 'new' expressions are known to never be null, so 'ArgumentNullException.ThrowIfNull' will never throw. + "ArgumentNullException.ThrowIfNull" возникает, когда переданный аргумент имеет значение "null". Некоторые конструкции, например структуры, не допускающие значения NULL, а также выражения "nameof()" и "new", никогда не имеют значение NULL, поэтому "ArgumentNullException.ThrowIfNull" никогда не возникнет. Calling 'ArgumentNullException.ThrowIfNull' and passing a non-nullable value is a no-op - Calling 'ArgumentNullException.ThrowIfNull' and passing a non-nullable value is a no-op + Вызов "ArgumentNullException.ThrowIfNull" и передача значения, не допускающего значения NULL, является холостой командой Do not pass a non-nullable value to 'ArgumentNullException.ThrowIfNull' - Do not pass a non-nullable value to 'ArgumentNullException.ThrowIfNull' + Не передавать значение, не допускающее значения NULL, в "ArgumentNullException.ThrowIfNull" Replace the 'ArgumentNullException.ThrowIfNull' call with a conditional - Replace the 'ArgumentNullException.ThrowIfNull' call with a conditional + Заменить вызов "ArgumentNullException.ThrowIfNull" условным 'ArgumentNullException.ThrowIfNull' accepts an 'object', so passing a nullable struct may cause the value to be boxed. - 'ArgumentNullException.ThrowIfNull' accepts an 'object', so passing a nullable struct may cause the value to be boxed. + "ArgumentNullException.ThrowIfNull" принимает "object", поэтому передача структуры, допускающей значение NULL, может привести к упаковке-преобразованию значения. Passing a nullable struct to 'ArgumentNullException.ThrowIfNull' may cause boxing - Passing a nullable struct to 'ArgumentNullException.ThrowIfNull' may cause boxing + Передача структуры, допускающей значение NULL, в "ArgumentNullException.ThrowIfNull" может привести к упаковке-преобразованию Do not pass a nullable struct to 'ArgumentNullException.ThrowIfNull' - Do not pass a nullable struct to 'ArgumentNullException.ThrowIfNull' + Не передавать структуру, допускающую значение NULL, в "ArgumentNullException.ThrowIfNull" @@ -1165,7 +1165,7 @@ Widening and user defined conversions are not supported with generic types. Replace obsolete call - Replace obsolete call + Замена устаревшего вызова @@ -2105,22 +2105,22 @@ Widening and user defined conversions are not supported with generic types. Use generic overload - Use generic overload + Использовать универсальную перегрузку Using a generic overload is preferable to the 'System.Type' overload when the type is known, promoting cleaner and more type-safe code with improved compile-time checks. - Using a generic overload is preferable to the 'System.Type' overload when the type is known, promoting cleaner and more type-safe code with improved compile-time checks. + Использование универсальной перегрузки предпочтительнее перегрузки "System.Type" в случае, если тип известен. Это обеспечивает более чистый и типобезопасный код с улучшенными проверками времени компиляции. Prefer the generic overload '{0}' instead of '{1}' - Prefer the generic overload '{0}' instead of '{1}' + Предпочитайте универсальную перегрузку "{0}" вместо "{1}" Prefer generic overload when type is known - Prefer generic overload when type is known + Предпочитать универсальную перегрузку, если тип известен @@ -2305,12 +2305,12 @@ Widening and user defined conversions are not supported with generic types. The property 'MaxResponseHeadersLength' is measured in kilobytes, not in bytes. The provided value is multiplied by 1024, which might be greater than your intended maximum length. - The property 'MaxResponseHeadersLength' is measured in kilobytes, not in bytes. The provided value is multiplied by 1024, which might be greater than your intended maximum length. + Свойство "MaxResponseHeadersLength" измеряется в килобайтах, а не байтах. Указанное значение умножается на 1024, что может быть больше, чем предполагаемая максимальная длина. Make sure the value '{0}' is correct. This value is measured in kilobytes, not bytes. - Make sure the value '{0}' is correct. This value is measured in kilobytes, not bytes. + Убедитесь, что значение "{0}" верно. Это значение измеряется в килобайтах, а не байтах. diff --git a/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.tr.xlf b/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.tr.xlf index d0fbb40ea5..74e8725e5a 100644 --- a/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.tr.xlf +++ b/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.tr.xlf @@ -625,27 +625,27 @@ Genel türlerde genişletme ve kullanıcı tanımlı dönüştürmeler desteklen Comparing a span to 'default' might not do what you intended, make the code more explicit by checking 'IsEmpty' - Comparing a span to 'default' might not do what you intended, make the code more explicit by checking 'IsEmpty' + Bir aralığı 'default' ile karşılaştırmak, istediğiniz şeyi gerçekleştiremeyebilir, 'IsEmpty' kullanarak kodu daha açık hale getirin Use 'IsEmpty' - Use 'IsEmpty' + 'IsEmpty' kullanın Comparing a span to 'null' might be redundant, the 'null' literal will be implicitly converted to a 'Span<T>.Empty' - Comparing a span to 'null' might be redundant, the 'null' literal will be implicitly converted to a 'Span<T>.Empty' + Bir aralığı 'null' ile karşılaştırmak gereksiz olabilir, 'null' değişmez değeri örtük olarak 'Span<T>.Empty' değerine dönüştürülür. Comparing a span to 'null' or 'default' might not do what you intended. 'default' and the 'null' literal are implicitly converted to 'Span<T>.Empty'. Remove the redundant comparison or make the code more explicit by using 'IsEmpty'. - Comparing a span to 'null' or 'default' might not do what you intended. 'default' and the 'null' literal are implicitly converted to 'Span<T>.Empty'. Remove the redundant comparison or make the code more explicit by using 'IsEmpty'. + Bir aralığı 'null' veya 'default' ile karşılaştırmak, istediğiniz işlemi gerçekleştirmeyebilir. 'default' ve 'null' sabit değeri örtük olarak 'Span<T>.Empty' değerine dönüştürülür. Gereksiz karşılaştırmayı kaldırın veya 'IsEmpty' kullanarak kodu daha açık hale getirin. Do not compare Span<T> to 'null' or 'default' - Do not compare Span<T> to 'null' or 'default' + Span<T> değerini 'null' veya 'default' ile karşılaştırma @@ -885,42 +885,42 @@ Genel türlerde genişletme ve kullanıcı tanımlı dönüştürmeler desteklen Remove superfluous 'ArgumentNullException.ThrowIfNull' call - Remove superfluous 'ArgumentNullException.ThrowIfNull' call + Gereksiz 'ArgumentNullException.ThrowIfNull' çağrısını kaldırın 'ArgumentNullException.ThrowIfNull' throws when the passed argument is 'null'. Certain constructs like non-nullable structs, 'nameof()' and 'new' expressions are known to never be null, so 'ArgumentNullException.ThrowIfNull' will never throw. - 'ArgumentNullException.ThrowIfNull' throws when the passed argument is 'null'. Certain constructs like non-nullable structs, 'nameof()' and 'new' expressions are known to never be null, so 'ArgumentNullException.ThrowIfNull' will never throw. + Geçirilen bağımsız değişken 'null' olduğunda 'ArgumentNullException.ThrowIfNull' oluşur. Null atanamaz yapılar, 'nameof()' ve 'new' ifadeleri gibi bazı yapılar hiçbir zaman null olmadığı için 'ArgumentNullException.ThrowIfNull' hiçbir zaman oluşmaz. Calling 'ArgumentNullException.ThrowIfNull' and passing a non-nullable value is a no-op - Calling 'ArgumentNullException.ThrowIfNull' and passing a non-nullable value is a no-op + 'ArgumentNullException.ThrowIfNull' çağırmak ve null atanamaz bir değer geçirmek işlem yok olur. Do not pass a non-nullable value to 'ArgumentNullException.ThrowIfNull' - Do not pass a non-nullable value to 'ArgumentNullException.ThrowIfNull' + Null atanamaz bir değeri 'ArgumentNullException.ThrowIfNull' öğesine geçirme Replace the 'ArgumentNullException.ThrowIfNull' call with a conditional - Replace the 'ArgumentNullException.ThrowIfNull' call with a conditional + 'ArgumentNullException.ThrowIfNull' çağrısını bir koşullu değerle değiştirin 'ArgumentNullException.ThrowIfNull' accepts an 'object', so passing a nullable struct may cause the value to be boxed. - 'ArgumentNullException.ThrowIfNull' accepts an 'object', so passing a nullable struct may cause the value to be boxed. + 'ArgumentNullException.ThrowIfNull' bir 'object' kabul eder, bu nedenle null atanabilir bir yapının geçirilmesi değerin kutulanmasına neden olabilir. Passing a nullable struct to 'ArgumentNullException.ThrowIfNull' may cause boxing - Passing a nullable struct to 'ArgumentNullException.ThrowIfNull' may cause boxing + 'ArgumentNullException.ThrowIfNull' öğesine null atanabilir bir yapının geçirilmesi kutulamaya neden olabilir Do not pass a nullable struct to 'ArgumentNullException.ThrowIfNull' - Do not pass a nullable struct to 'ArgumentNullException.ThrowIfNull' + Null atanabilir bir yapıyı 'ArgumentNullException.ThrowIfNull' öğesine geçirme @@ -1165,7 +1165,7 @@ Genel türlerde genişletme ve kullanıcı tanımlı dönüştürmeler desteklen Replace obsolete call - Replace obsolete call + Eski çağrıyı değiştirin @@ -2105,22 +2105,22 @@ Genel türlerde genişletme ve kullanıcı tanımlı dönüştürmeler desteklen Use generic overload - Use generic overload + Genel aşırı yükleme kullan Using a generic overload is preferable to the 'System.Type' overload when the type is known, promoting cleaner and more type-safe code with improved compile-time checks. - Using a generic overload is preferable to the 'System.Type' overload when the type is known, promoting cleaner and more type-safe code with improved compile-time checks. + Tür biliniyorsa genel bir aşırı yükleme kullanmak 'System.Type' aşırı yüklemesi kullanmaya tercih edilir ve bu, geliştirilmiş derleme zamanı denetimleriyle kodun daha temiz ve daha tür kullanımı uyumlu olmasını sağlar. Prefer the generic overload '{0}' instead of '{1}' - Prefer the generic overload '{0}' instead of '{1}' + '{1}' yerine genel aşırı yükleme '{0}' tercih edin Prefer generic overload when type is known - Prefer generic overload when type is known + Tür bilindiğinde genel aşırı yükleme tercih edin @@ -2305,12 +2305,12 @@ Genel türlerde genişletme ve kullanıcı tanımlı dönüştürmeler desteklen The property 'MaxResponseHeadersLength' is measured in kilobytes, not in bytes. The provided value is multiplied by 1024, which might be greater than your intended maximum length. - The property 'MaxResponseHeadersLength' is measured in kilobytes, not in bytes. The provided value is multiplied by 1024, which might be greater than your intended maximum length. + 'MaxResponseHeadersLength' bayt cinsinden değil, kilobayt cinsinden ölçülür. Sağlanan değer 1024 ile çarpılır ve bu, istediğiniz maksimum uzunluktan büyük olabilir. Make sure the value '{0}' is correct. This value is measured in kilobytes, not bytes. - Make sure the value '{0}' is correct. This value is measured in kilobytes, not bytes. + '{0}' değerinin doğru olduğundan emin olun. Bu değer bayt değil, kilobayt cinsinden ölçülür. diff --git a/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.zh-Hans.xlf b/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.zh-Hans.xlf index 99bf8d44f6..e264bdaa2c 100644 --- a/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.zh-Hans.xlf +++ b/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.zh-Hans.xlf @@ -625,27 +625,27 @@ Enumerable.OfType<T> 使用的泛型类型检查 (C# 'is' operator/IL 'isi Comparing a span to 'default' might not do what you intended, make the code more explicit by checking 'IsEmpty' - Comparing a span to 'default' might not do what you intended, make the code more explicit by checking 'IsEmpty' + 将范围与“默认值”进行比较可能不会达到预期,请通过勾选 "IsEmpty" 使代码更加明确 Use 'IsEmpty' - Use 'IsEmpty' + 使用 "IsEmpty" Comparing a span to 'null' might be redundant, the 'null' literal will be implicitly converted to a 'Span<T>.Empty' - Comparing a span to 'null' might be redundant, the 'null' literal will be implicitly converted to a 'Span<T>.Empty' + 将范围与 "null" 进行比较可能是冗余的,"null" 文本将隐式转换为 "Span<T>.Empty" Comparing a span to 'null' or 'default' might not do what you intended. 'default' and the 'null' literal are implicitly converted to 'Span<T>.Empty'. Remove the redundant comparison or make the code more explicit by using 'IsEmpty'. - Comparing a span to 'null' or 'default' might not do what you intended. 'default' and the 'null' literal are implicitly converted to 'Span<T>.Empty'. Remove the redundant comparison or make the code more explicit by using 'IsEmpty'. + 将范围与 "null "或 "default" 进行比较可能不会达到预期。"default" 和 "null" 文本隐式转换为 "Span<T>.Empty"。删除冗余比较,或使用 "IsEmpty" 使代码更加明确。 Do not compare Span<T> to 'null' or 'default' - Do not compare Span<T> to 'null' or 'default' + 请勿将 Span<T> 与 "null" 或 "default" 进行比较 @@ -885,42 +885,42 @@ Enumerable.OfType<T> 使用的泛型类型检查 (C# 'is' operator/IL 'isi Remove superfluous 'ArgumentNullException.ThrowIfNull' call - Remove superfluous 'ArgumentNullException.ThrowIfNull' call + 删除多余的 "ArgumentNullException.ThrowIfNull" 调用 'ArgumentNullException.ThrowIfNull' throws when the passed argument is 'null'. Certain constructs like non-nullable structs, 'nameof()' and 'new' expressions are known to never be null, so 'ArgumentNullException.ThrowIfNull' will never throw. - 'ArgumentNullException.ThrowIfNull' throws when the passed argument is 'null'. Certain constructs like non-nullable structs, 'nameof()' and 'new' expressions are known to never be null, so 'ArgumentNullException.ThrowIfNull' will never throw. + 当传递的参数为 "null" 时,"ArgumentNullException.ThrowIfNull" 会引发异常。某些构造(如不可为 null 的结构、"nameof()" 和 "new" 表达式)已知永远不会为 null,因此 "ArgumentNullException.ThrowIfNull" 永远不会引发异常。 Calling 'ArgumentNullException.ThrowIfNull' and passing a non-nullable value is a no-op - Calling 'ArgumentNullException.ThrowIfNull' and passing a non-nullable value is a no-op + 调用 "ArgumentNullException.ThrowIfNull" 并传递不可为 null 的值是无操作 Do not pass a non-nullable value to 'ArgumentNullException.ThrowIfNull' - Do not pass a non-nullable value to 'ArgumentNullException.ThrowIfNull' + 不要将不可为 null 的值传递给 "ArgumentNullException.ThrowIfNull" Replace the 'ArgumentNullException.ThrowIfNull' call with a conditional - Replace the 'ArgumentNullException.ThrowIfNull' call with a conditional + 将 "ArgumentNullException.ThrowIfNull" 调用替换为条件 'ArgumentNullException.ThrowIfNull' accepts an 'object', so passing a nullable struct may cause the value to be boxed. - 'ArgumentNullException.ThrowIfNull' accepts an 'object', so passing a nullable struct may cause the value to be boxed. + "ArgumentNullException.ThrowIfNull" 接受 "object",因此传递可为 null 的结构可能导致值装箱。 Passing a nullable struct to 'ArgumentNullException.ThrowIfNull' may cause boxing - Passing a nullable struct to 'ArgumentNullException.ThrowIfNull' may cause boxing + 将可为 null 的结构传递到 "ArgumentNullException.ThrowIfNull" 可能会导致装箱 Do not pass a nullable struct to 'ArgumentNullException.ThrowIfNull' - Do not pass a nullable struct to 'ArgumentNullException.ThrowIfNull' + 不要将可为 null 的结构传递给 "ArgumentNullException.ThrowIfNull" @@ -1165,7 +1165,7 @@ Enumerable.OfType<T> 使用的泛型类型检查 (C# 'is' operator/IL 'isi Replace obsolete call - Replace obsolete call + 替换过时的调用 @@ -2105,22 +2105,22 @@ Enumerable.OfType<T> 使用的泛型类型检查 (C# 'is' operator/IL 'isi Use generic overload - Use generic overload + 使用泛型重载 Using a generic overload is preferable to the 'System.Type' overload when the type is known, promoting cleaner and more type-safe code with improved compile-time checks. - Using a generic overload is preferable to the 'System.Type' overload when the type is known, promoting cleaner and more type-safe code with improved compile-time checks. + 当类型已知时,泛型重载比 "System.Type" 重载更适合,通过改进的编译时检查来提升更简洁且更具类型安全性的代码。 Prefer the generic overload '{0}' instead of '{1}' - Prefer the generic overload '{0}' instead of '{1}' + 首选泛型重载“{0}”而不是“{1}” Prefer generic overload when type is known - Prefer generic overload when type is known + 类型已知时首选泛型重载 @@ -2305,12 +2305,12 @@ Enumerable.OfType<T> 使用的泛型类型检查 (C# 'is' operator/IL 'isi The property 'MaxResponseHeadersLength' is measured in kilobytes, not in bytes. The provided value is multiplied by 1024, which might be greater than your intended maximum length. - The property 'MaxResponseHeadersLength' is measured in kilobytes, not in bytes. The provided value is multiplied by 1024, which might be greater than your intended maximum length. + 属性 "MaxResponseHeadersLength" 以千字节为单位而不是以字节为单位。提供的值乘以 1024,这可能大于预期的最大长度。 Make sure the value '{0}' is correct. This value is measured in kilobytes, not bytes. - Make sure the value '{0}' is correct. This value is measured in kilobytes, not bytes. + 确保值“{0}”正确。此值以千字节为单位而不是字节为单位。 diff --git a/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.zh-Hant.xlf b/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.zh-Hant.xlf index ad57a6fe7c..f5cf12d34c 100644 --- a/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.zh-Hant.xlf +++ b/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/xlf/MicrosoftNetCoreAnalyzersResources.zh-Hant.xlf @@ -625,27 +625,27 @@ Enumerable.OfType<T> 使用的一般型別檢查 (C# 'is' operator/IL 'isi Comparing a span to 'default' might not do what you intended, make the code more explicit by checking 'IsEmpty' - Comparing a span to 'default' might not do what you intended, make the code more explicit by checking 'IsEmpty' + 將範圍與 'default' 進行比較,可能無法達到您預期的效果,請檢查 'IsEmpty',讓程式碼更加明確 Use 'IsEmpty' - Use 'IsEmpty' + 使用 'IsEmpty' Comparing a span to 'null' might be redundant, the 'null' literal will be implicitly converted to a 'Span<T>.Empty' - Comparing a span to 'null' might be redundant, the 'null' literal will be implicitly converted to a 'Span<T>.Empty' + 將範圍與 'null' 進行比較可能是多餘的,'null' 常值會隱含轉換為 'Span<T>.Empty' Comparing a span to 'null' or 'default' might not do what you intended. 'default' and the 'null' literal are implicitly converted to 'Span<T>.Empty'. Remove the redundant comparison or make the code more explicit by using 'IsEmpty'. - Comparing a span to 'null' or 'default' might not do what you intended. 'default' and the 'null' literal are implicitly converted to 'Span<T>.Empty'. Remove the redundant comparison or make the code more explicit by using 'IsEmpty'. + 將範圍與 'null' 或 'default' 進行比較,可能無法達到您預期的效果。'default' 和 'null' 常值會隱含轉換為 'Span<T>.Empty'。移除多餘的比較,或使用 'IsEmpty' 讓程式碼更明確。 Do not compare Span<T> to 'null' or 'default' - Do not compare Span<T> to 'null' or 'default' + 請勿將 Span<T> 與 'null' 或 'default' 進行比較 @@ -885,42 +885,42 @@ Enumerable.OfType<T> 使用的一般型別檢查 (C# 'is' operator/IL 'isi Remove superfluous 'ArgumentNullException.ThrowIfNull' call - Remove superfluous 'ArgumentNullException.ThrowIfNull' call + 移除非必要的 'ArgumentNullException.ThrowIfNull' 呼叫 'ArgumentNullException.ThrowIfNull' throws when the passed argument is 'null'. Certain constructs like non-nullable structs, 'nameof()' and 'new' expressions are known to never be null, so 'ArgumentNullException.ThrowIfNull' will never throw. - 'ArgumentNullException.ThrowIfNull' throws when the passed argument is 'null'. Certain constructs like non-nullable structs, 'nameof()' and 'new' expressions are known to never be null, so 'ArgumentNullException.ThrowIfNull' will never throw. + 傳遞的引數為 'null' 時,會擲回 'ArgumentNullException.ThrowIfNull'。已知某些建構一律不可為 Null,例如不可為 Null 的結構、'nameof()' 和 'new' 運算式,因此 'ArgumentNullException.ThrowIfNull' 永遠不會擲回。 Calling 'ArgumentNullException.ThrowIfNull' and passing a non-nullable value is a no-op - Calling 'ArgumentNullException.ThrowIfNull' and passing a non-nullable value is a no-op + 呼叫 'ArgumentNullException.ThrowIfNull' 且傳遞不可為 Null 的值是無作業 Do not pass a non-nullable value to 'ArgumentNullException.ThrowIfNull' - Do not pass a non-nullable value to 'ArgumentNullException.ThrowIfNull' + 請勿將不可為 Null 的值傳遞到 'ArgumentNullException.ThrowIfNull' Replace the 'ArgumentNullException.ThrowIfNull' call with a conditional - Replace the 'ArgumentNullException.ThrowIfNull' call with a conditional + 以條件式取代 'ArgumentNullException.ThrowIfNull' 呼叫 'ArgumentNullException.ThrowIfNull' accepts an 'object', so passing a nullable struct may cause the value to be boxed. - 'ArgumentNullException.ThrowIfNull' accepts an 'object', so passing a nullable struct may cause the value to be boxed. + 'ArgumentNullException.ThrowIfNull' 接受 'object',所以傳遞可為 Null 的結構可能導致值受到 box 處理。 Passing a nullable struct to 'ArgumentNullException.ThrowIfNull' may cause boxing - Passing a nullable struct to 'ArgumentNullException.ThrowIfNull' may cause boxing + 將可為 Null 的結構傳遞至 'ArgumentNullException.ThrowIfNull' 可能會導致 boxing Do not pass a nullable struct to 'ArgumentNullException.ThrowIfNull' - Do not pass a nullable struct to 'ArgumentNullException.ThrowIfNull' + 請勿將可為 Null 的結構傳遞到 'ArgumentNullException.ThrowIfNull' @@ -1165,7 +1165,7 @@ Enumerable.OfType<T> 使用的一般型別檢查 (C# 'is' operator/IL 'isi Replace obsolete call - Replace obsolete call + 取代過時的通話 @@ -2105,22 +2105,22 @@ Enumerable.OfType<T> 使用的一般型別檢查 (C# 'is' operator/IL 'isi Use generic overload - Use generic overload + 使用泛型多載 Using a generic overload is preferable to the 'System.Type' overload when the type is known, promoting cleaner and more type-safe code with improved compile-time checks. - Using a generic overload is preferable to the 'System.Type' overload when the type is known, promoting cleaner and more type-safe code with improved compile-time checks. + 當型別為已知時,使用泛型多載會比使用 'System.Type' 多載更合適,可透過改善的編譯時間檢查來提升更為簡潔且型別安全的程式碼。 Prefer the generic overload '{0}' instead of '{1}' - Prefer the generic overload '{0}' instead of '{1}' + 偏好泛型多載 '{0}',而非 '{1}' Prefer generic overload when type is known - Prefer generic overload when type is known + 當型別為已知時,優先使用泛型多載 @@ -2305,12 +2305,12 @@ Enumerable.OfType<T> 使用的一般型別檢查 (C# 'is' operator/IL 'isi The property 'MaxResponseHeadersLength' is measured in kilobytes, not in bytes. The provided value is multiplied by 1024, which might be greater than your intended maximum length. - The property 'MaxResponseHeadersLength' is measured in kilobytes, not in bytes. The provided value is multiplied by 1024, which might be greater than your intended maximum length. + 屬性 'MaxResponseHeadersLength' 以 KB 為衡量單位,而不是以位元組為衡量單位。提供的值會乘以 1024,這可能大於您預期的最大長度。 Make sure the value '{0}' is correct. This value is measured in kilobytes, not bytes. - Make sure the value '{0}' is correct. This value is measured in kilobytes, not bytes. + 請確定值 '{0}' 正確無誤。此值以 KB 為衡量單位,而不是以位元組為衡量單位。 From a6addb98e2253756a2e748da323867198dc3d28b Mon Sep 17 00:00:00 2001 From: dotnet bot Date: Fri, 15 Mar 2024 17:22:33 -0700 Subject: [PATCH 2/2] Localized file check-in by OneLocBuild Task: Build definition ID 830: Build ID 2406064 --- .../Core/xlf/RoslynDiagnosticsAnalyzersResources.cs.xlf | 6 +++--- .../Core/xlf/RoslynDiagnosticsAnalyzersResources.de.xlf | 6 +++--- .../Core/xlf/RoslynDiagnosticsAnalyzersResources.es.xlf | 6 +++--- .../Core/xlf/RoslynDiagnosticsAnalyzersResources.fr.xlf | 6 +++--- .../Core/xlf/RoslynDiagnosticsAnalyzersResources.it.xlf | 6 +++--- .../Core/xlf/RoslynDiagnosticsAnalyzersResources.ja.xlf | 6 +++--- .../Core/xlf/RoslynDiagnosticsAnalyzersResources.ko.xlf | 6 +++--- .../Core/xlf/RoslynDiagnosticsAnalyzersResources.pl.xlf | 6 +++--- .../Core/xlf/RoslynDiagnosticsAnalyzersResources.pt-BR.xlf | 6 +++--- .../Core/xlf/RoslynDiagnosticsAnalyzersResources.ru.xlf | 6 +++--- .../Core/xlf/RoslynDiagnosticsAnalyzersResources.tr.xlf | 6 +++--- .../xlf/RoslynDiagnosticsAnalyzersResources.zh-Hans.xlf | 6 +++--- .../xlf/RoslynDiagnosticsAnalyzersResources.zh-Hant.xlf | 6 +++--- 13 files changed, 39 insertions(+), 39 deletions(-) diff --git a/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.cs.xlf b/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.cs.xlf index 8c128701ef..e8e6626558 100644 --- a/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.cs.xlf +++ b/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.cs.xlf @@ -79,17 +79,17 @@ Primary constructor parameters should not be implicitly captured. Manually assign them to fields at the start of the type. - Primary constructor parameters should not be implicitly captured. Manually assign them to fields at the start of the type. + Parametry primárního konstruktoru by se neměly implicitně zachytávat. Ručně je přiřaďte k polím na začátku typu. Primary constructor parameter '{0}' should not be implicitly captured - Primary constructor parameter '{0}' should not be implicitly captured + Parametr primárního konstruktoru {0} by se neměl implicitně zachytávat. Do not capture primary constructor parameters - Do not capture primary constructor parameters + Nezachytávejte parametry primárního konstruktoru diff --git a/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.de.xlf b/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.de.xlf index 37b0d7df1d..4bbf23d7aa 100644 --- a/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.de.xlf +++ b/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.de.xlf @@ -79,17 +79,17 @@ Primary constructor parameters should not be implicitly captured. Manually assign them to fields at the start of the type. - Primary constructor parameters should not be implicitly captured. Manually assign them to fields at the start of the type. + Primäre Konstruktorparameter sollten nicht implizit erfasst werden. Weisen Sie sie Feldern am Anfang des Typs manuell zu. Primary constructor parameter '{0}' should not be implicitly captured - Primary constructor parameter '{0}' should not be implicitly captured + Der primäre Konstruktorparameter „{0}“ sollte nicht implizit erfasst werden. Do not capture primary constructor parameters - Do not capture primary constructor parameters + Primäre Konstruktorparameter nicht erfassen diff --git a/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.es.xlf b/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.es.xlf index 1235c6eda6..1f95dbd2fe 100644 --- a/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.es.xlf +++ b/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.es.xlf @@ -79,17 +79,17 @@ Primary constructor parameters should not be implicitly captured. Manually assign them to fields at the start of the type. - Primary constructor parameters should not be implicitly captured. Manually assign them to fields at the start of the type. + Los parámetros del constructor principal no deben capturarse implícitamente. Asígnelos manualmente a campos al principio del tipo. Primary constructor parameter '{0}' should not be implicitly captured - Primary constructor parameter '{0}' should not be implicitly captured + El parámetro de constructor principal "{0}" no se debe capturar implícitamente Do not capture primary constructor parameters - Do not capture primary constructor parameters + No capturar parámetros del constructor principal diff --git a/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.fr.xlf b/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.fr.xlf index d59a2ee062..167af8fcf8 100644 --- a/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.fr.xlf +++ b/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.fr.xlf @@ -79,17 +79,17 @@ Primary constructor parameters should not be implicitly captured. Manually assign them to fields at the start of the type. - Primary constructor parameters should not be implicitly captured. Manually assign them to fields at the start of the type. + Les paramètres du constructeur principal ne doivent pas être capturés implicitement. Affectez-les manuellement aux champs au début du type. Primary constructor parameter '{0}' should not be implicitly captured - Primary constructor parameter '{0}' should not be implicitly captured + Le paramètre de constructeur principal '{0}' ne doit pas être capturé implicitement Do not capture primary constructor parameters - Do not capture primary constructor parameters + Ne pas capturer les paramètres du constructeur principal diff --git a/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.it.xlf b/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.it.xlf index 1fc4790c92..fe0679a179 100644 --- a/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.it.xlf +++ b/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.it.xlf @@ -79,17 +79,17 @@ Primary constructor parameters should not be implicitly captured. Manually assign them to fields at the start of the type. - Primary constructor parameters should not be implicitly captured. Manually assign them to fields at the start of the type. + I parametri del costruttore primario non devono essere acquisiti in modo implicito. Assegnarli manualmente ai campi all'inizio del tipo. Primary constructor parameter '{0}' should not be implicitly captured - Primary constructor parameter '{0}' should not be implicitly captured + Il parametro del costruttore primario "{0}" non deve essere acquisito in modo implicito Do not capture primary constructor parameters - Do not capture primary constructor parameters + Non acquisire parametri del costruttore primario diff --git a/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.ja.xlf b/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.ja.xlf index 37e4f8fec8..890df1c7e2 100644 --- a/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.ja.xlf +++ b/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.ja.xlf @@ -79,17 +79,17 @@ Primary constructor parameters should not be implicitly captured. Manually assign them to fields at the start of the type. - Primary constructor parameters should not be implicitly captured. Manually assign them to fields at the start of the type. + プライマリ コンストラクター パラメーターを暗黙的にキャプチャしてはいけません。型の先頭にあるフィールドに手動で割り当てます。 Primary constructor parameter '{0}' should not be implicitly captured - Primary constructor parameter '{0}' should not be implicitly captured + プライマリ コンストラクター パラメーター '{0}' を暗黙的にキャプチャすることはできません Do not capture primary constructor parameters - Do not capture primary constructor parameters + プライマリ コンストラクター パラメーターをキャプチャしない diff --git a/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.ko.xlf b/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.ko.xlf index a5eb8a3664..ef944830fd 100644 --- a/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.ko.xlf +++ b/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.ko.xlf @@ -79,17 +79,17 @@ Primary constructor parameters should not be implicitly captured. Manually assign them to fields at the start of the type. - Primary constructor parameters should not be implicitly captured. Manually assign them to fields at the start of the type. + 기본 생성자 매개 변수는 암시적으로 캡처하면 안 됩니다. 형식이 시작될 때 필드에 수동으로 할당합니다. Primary constructor parameter '{0}' should not be implicitly captured - Primary constructor parameter '{0}' should not be implicitly captured + 기본 생성자 매개 변수 '{0}'을(를) 암시적으로 캡처하면 안 됩니다. Do not capture primary constructor parameters - Do not capture primary constructor parameters + 기본 생성자 매개 변수 캡처 안 함 diff --git a/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.pl.xlf b/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.pl.xlf index 410280c87d..3fdef0044b 100644 --- a/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.pl.xlf +++ b/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.pl.xlf @@ -79,17 +79,17 @@ Primary constructor parameters should not be implicitly captured. Manually assign them to fields at the start of the type. - Primary constructor parameters should not be implicitly captured. Manually assign them to fields at the start of the type. + Podstawowe parametry konstruktora nie powinny być przechwytywane niejawnie. Przypisz je ręcznie do pól na początku typu. Primary constructor parameter '{0}' should not be implicitly captured - Primary constructor parameter '{0}' should not be implicitly captured + Podstawowy parametr konstruktora „{0}” nie powinien być przechwytywany niejawnie Do not capture primary constructor parameters - Do not capture primary constructor parameters + Nie przechwytuj parametrów konstruktora podstawowego diff --git a/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.pt-BR.xlf b/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.pt-BR.xlf index 29d95f98fc..d369a96092 100644 --- a/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.pt-BR.xlf +++ b/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.pt-BR.xlf @@ -79,17 +79,17 @@ Primary constructor parameters should not be implicitly captured. Manually assign them to fields at the start of the type. - Primary constructor parameters should not be implicitly captured. Manually assign them to fields at the start of the type. + Os parâmetros do construtor primário não devem ser capturados implicitamente. Atribua-os manualmente aos campos no início do tipo. Primary constructor parameter '{0}' should not be implicitly captured - Primary constructor parameter '{0}' should not be implicitly captured + O parâmetro do construtor primário '{0}' não deve ser capturado implicitamente Do not capture primary constructor parameters - Do not capture primary constructor parameters + Não capturar parâmetros de construtor primário diff --git a/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.ru.xlf b/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.ru.xlf index 8fd616ba21..235c28b1e0 100644 --- a/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.ru.xlf +++ b/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.ru.xlf @@ -79,17 +79,17 @@ Primary constructor parameters should not be implicitly captured. Manually assign them to fields at the start of the type. - Primary constructor parameters should not be implicitly captured. Manually assign them to fields at the start of the type. + Параметры первичного конструктора не должны записываться неявным образом. Вручную назначьте их полям в начале типа. Primary constructor parameter '{0}' should not be implicitly captured - Primary constructor parameter '{0}' should not be implicitly captured + Параметр первичного конструктора "{0}" не должен записываться неявным образом Do not capture primary constructor parameters - Do not capture primary constructor parameters + Не записывать параметры первичного конструктора diff --git a/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.tr.xlf b/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.tr.xlf index 7d0e1b2822..83c2f2e66c 100644 --- a/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.tr.xlf +++ b/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.tr.xlf @@ -79,17 +79,17 @@ Primary constructor parameters should not be implicitly captured. Manually assign them to fields at the start of the type. - Primary constructor parameters should not be implicitly captured. Manually assign them to fields at the start of the type. + Birincil oluşturucu parametreleri örtük olarak yakalanmamalıdır. Bunları türün başındaki alanlara el ile atayın. Primary constructor parameter '{0}' should not be implicitly captured - Primary constructor parameter '{0}' should not be implicitly captured + Birincil oluşturucu parametre '{0}' örtük olarak yakalanmamalıdır Do not capture primary constructor parameters - Do not capture primary constructor parameters + Birincil oluşturucu parametrelerini yakalama diff --git a/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.zh-Hans.xlf b/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.zh-Hans.xlf index 72ad20c39f..1b1f1e3bbc 100644 --- a/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.zh-Hans.xlf +++ b/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.zh-Hans.xlf @@ -79,17 +79,17 @@ Primary constructor parameters should not be implicitly captured. Manually assign them to fields at the start of the type. - Primary constructor parameters should not be implicitly captured. Manually assign them to fields at the start of the type. + 不应隐式捕获主构造函数参数。手动将它们分配给类型开头的字段。 Primary constructor parameter '{0}' should not be implicitly captured - Primary constructor parameter '{0}' should not be implicitly captured + 不应隐式捕获主构造函数参数"{0}" Do not capture primary constructor parameters - Do not capture primary constructor parameters + 不要捕获主构造函数参数 diff --git a/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.zh-Hant.xlf b/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.zh-Hant.xlf index 4b6c631f5b..75f7b6990e 100644 --- a/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.zh-Hant.xlf +++ b/src/Roslyn.Diagnostics.Analyzers/Core/xlf/RoslynDiagnosticsAnalyzersResources.zh-Hant.xlf @@ -79,17 +79,17 @@ Primary constructor parameters should not be implicitly captured. Manually assign them to fields at the start of the type. - Primary constructor parameters should not be implicitly captured. Manually assign them to fields at the start of the type. + 不應隱含擷取主要建構函式參數。在型別的開頭,手動將它們指派給欄位。 Primary constructor parameter '{0}' should not be implicitly captured - Primary constructor parameter '{0}' should not be implicitly captured + 不應隱含擷取主要建構函式參數 '{0}'。 Do not capture primary constructor parameters - Do not capture primary constructor parameters + 請勿擷取主要建構函式參數