未验证 提交 1f0ce464 编写于 作者: M Manish Vasani 提交者: GitHub

Merge pull request #35494 from mavasani/ImproveDiagnosticMessages

Improve diagnostic messaging for unused value assignment and unused p…
......@@ -81,12 +81,14 @@ protected DiagnosticDescriptor CreateDescriptorWithTitle(LocalizableString title
LocalizableString messageFormat,
bool isUnneccessary = false,
bool isConfigurable = true,
LocalizableString description = null,
params string[] customTags)
=> new DiagnosticDescriptor(
id, title, messageFormat,
DiagnosticCategory.Style,
DiagnosticSeverity.Hidden,
isEnabledByDefault: true,
description: description,
customTags: DiagnosticCustomTags.Create(isUnneccessary, isConfigurable, customTags));
public sealed override void Initialize(AnalysisContext context)
......
......@@ -693,6 +693,27 @@ internal class FeaturesResources {
}
}
/// <summary>
/// Looks up a localized string similar to Avoid unnecessary value assignments in your code, as these likely indicate redundant value computations. If the value computation is not redundant and you intend to retain the assignment, then change the assignment target to a local variable whose name starts with an underscore and is optionally followed by an integer, such as &apos;_&apos;, &apos;_1&apos;, &apos;_2&apos;, etc. These are treated as special discard symbol names..
/// </summary>
internal static string Avoid_unnecessary_value_assignments_in_your_code_as_these_likely_indicate_redundant_value_computations_If_the_value_computation_is_not_redundant_and_you_intend_to_retain_the_assignmentcomma_then_change_the_assignment_target_to_a_local_variable_whose_name_starts_with_an_underscore_and_is_optionally_followed_by_an_integercomma_such_as___comma__1_comma__2_comma_etc_These_are_treated_as_special_discard_symbol_names {
get {
return ResourceManager.GetString(@"Avoid_unnecessary_value_assignments_in_your_code_as_these_likely_indicate_redundant_value_computations_If_the_value_computation_is_not_redundant_and_you_intend_to_retain_the_assignmentcomma_then_change_the_assignment_target_to_a_local_variable_whose_name_starts_with_an_underscore_and_is_optionally_followed_by_an_integercomma_such_as___comma__1_comma__2_comma_etc_These_are_treated_as_special_discard_symbol_names", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Avoid unused paramereters in your code. If the parameter cannot be removed, then change its name so it starts with an underscore and is optionally followed by an integer, such as &apos;_&apos;, &apos;_1&apos;, &apos;_2&apos;, etc. These are treated as special discard symbol names..
/// </summary>
internal static string Avoid_unused_paramereters_in_your_code_If_the_parameter_cannot_be_removed_then_change_its_name_so_it_starts_with_an_underscore_and_is_optionally_followed_by_an_integer_such_as__comma__1_comma__2_etc_These_are_treated_as_special_discard_symbol_names {
get {
return ResourceManager.GetString("Avoid_unused_paramereters_in_your_code_If_the_parameter_cannot_be_removed_then_ch" +
"ange_its_name_so_it_starts_with_an_underscore_and_is_optionally_followed_by_an_i" +
"nteger_such_as__comma__1_comma__2_etc_These_are_treated_as_special_discard_symbo" +
"l_names", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Awaited task returns.
/// </summary>
......@@ -3753,6 +3774,24 @@ internal class FeaturesResources {
}
}
/// <summary>
/// Looks up a localized string similar to Unnecessary assignment of a value.
/// </summary>
internal static string Unnecessary_assignment_of_a_value {
get {
return ResourceManager.GetString("Unnecessary_assignment_of_a_value", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unnecessary assignment of a value to &apos;{0}&apos;.
/// </summary>
internal static string Unnecessary_assignment_of_a_value_to_0 {
get {
return ResourceManager.GetString("Unnecessary_assignment_of_a_value_to_0", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unreachable code detected.
/// </summary>
......@@ -4412,24 +4451,6 @@ internal class FeaturesResources {
}
}
/// <summary>
/// Looks up a localized string similar to Value assigned to &apos;{0}&apos; is never used.
/// </summary>
internal static string Value_assigned_to_0_is_never_used {
get {
return ResourceManager.GetString("Value_assigned_to_0_is_never_used", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Value assigned to symbol is never used.
/// </summary>
internal static string Value_assigned_to_symbol_is_never_used {
get {
return ResourceManager.GetString("Value_assigned_to_symbol_is_never_used", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Variable declaration can be deconstructed.
/// </summary>
......
......@@ -1499,11 +1499,14 @@ This version used in: {2}</value>
<data name="Expression_value_is_never_used" xml:space="preserve">
<value>Expression value is never used</value>
</data>
<data name="Value_assigned_to_0_is_never_used" xml:space="preserve">
<value>Value assigned to '{0}' is never used</value>
<data name="Unnecessary_assignment_of_a_value_to_0" xml:space="preserve">
<value>Unnecessary assignment of a value to '{0}'</value>
</data>
<data name="Value_assigned_to_symbol_is_never_used" xml:space="preserve">
<value>Value assigned to symbol is never used</value>
<data name="Unnecessary_assignment_of_a_value" xml:space="preserve">
<value>Unnecessary assignment of a value</value>
</data>
<data name="Avoid_unnecessary_value_assignments_in_your_code_as_these_likely_indicate_redundant_value_computations_If_the_value_computation_is_not_redundant_and_you_intend_to_retain_the_assignmentcomma_then_change_the_assignment_target_to_a_local_variable_whose_name_starts_with_an_underscore_and_is_optionally_followed_by_an_integercomma_such_as___comma__1_comma__2_comma_etc_These_are_treated_as_special_discard_symbol_names" xml:space="preserve">
<value>Avoid unnecessary value assignments in your code, as these likely indicate redundant value computations. If the value computation is not redundant and you intend to retain the assignment, then change the assignment target to a local variable whose name starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</value>
</data>
<data name="Use_discarded_local" xml:space="preserve">
<value>Use discarded local</value>
......@@ -1520,6 +1523,9 @@ This version used in: {2}</value>
<data name="Remove_unused_parameter_0" xml:space="preserve">
<value>Remove unused parameter '{0}'</value>
</data>
<data name="Avoid_unused_paramereters_in_your_code_If_the_parameter_cannot_be_removed_then_change_its_name_so_it_starts_with_an_underscore_and_is_optionally_followed_by_an_integer_such_as__comma__1_comma__2_etc_These_are_treated_as_special_discard_symbol_names" xml:space="preserve">
<value>Avoid unused paramereters in your code. If the parameter cannot be removed, then change its name so it starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</value>
</data>
<data name="Fix_formatting" xml:space="preserve">
<value>Fix formatting</value>
</data>
......
......@@ -68,8 +68,9 @@ internal abstract partial class AbstractRemoveUnusedParametersAndValuesDiagnosti
// Diagnostic reported for value assignments to locals/parameters that are never used on any control flow path.
private static readonly DiagnosticDescriptor s_valueAssignedIsUnusedRule = CreateDescriptorWithId(
IDEDiagnosticIds.ValueAssignedIsUnusedDiagnosticId,
new LocalizableResourceString(nameof(FeaturesResources.Value_assigned_to_symbol_is_never_used), FeaturesResources.ResourceManager, typeof(FeaturesResources)),
new LocalizableResourceString(nameof(FeaturesResources.Value_assigned_to_0_is_never_used), FeaturesResources.ResourceManager, typeof(FeaturesResources)),
new LocalizableResourceString(nameof(FeaturesResources.Unnecessary_assignment_of_a_value), FeaturesResources.ResourceManager, typeof(FeaturesResources)),
new LocalizableResourceString(nameof(FeaturesResources.Unnecessary_assignment_of_a_value_to_0), FeaturesResources.ResourceManager, typeof(FeaturesResources)),
description: new LocalizableResourceString(nameof(FeaturesResources.Avoid_unnecessary_value_assignments_in_your_code_as_these_likely_indicate_redundant_value_computations_If_the_value_computation_is_not_redundant_and_you_intend_to_retain_the_assignmentcomma_then_change_the_assignment_target_to_a_local_variable_whose_name_starts_with_an_underscore_and_is_optionally_followed_by_an_integercomma_such_as___comma__1_comma__2_comma_etc_These_are_treated_as_special_discard_symbol_names), FeaturesResources.ResourceManager, typeof(FeaturesResources)),
isUnneccessary: true);
// Diagnostic reported for unneccessary parameters that can be removed.
......@@ -77,6 +78,7 @@ internal abstract partial class AbstractRemoveUnusedParametersAndValuesDiagnosti
IDEDiagnosticIds.UnusedParameterDiagnosticId,
new LocalizableResourceString(nameof(FeaturesResources.Remove_unused_parameter), FeaturesResources.ResourceManager, typeof(FeaturesResources)),
new LocalizableResourceString(nameof(FeaturesResources.Remove_unused_parameter_0), FeaturesResources.ResourceManager, typeof(FeaturesResources)),
description: new LocalizableResourceString(nameof(FeaturesResources.Avoid_unused_paramereters_in_your_code_If_the_parameter_cannot_be_removed_then_change_its_name_so_it_starts_with_an_underscore_and_is_optionally_followed_by_an_integer_such_as__comma__1_comma__2_etc_These_are_treated_as_special_discard_symbol_names), FeaturesResources.ResourceManager, typeof(FeaturesResources)),
isUnneccessary: true);
private static readonly PropertiesMap s_propertiesMap = CreatePropertiesMap();
......
......@@ -57,6 +57,16 @@
<target state="translated">Zarovnat zalomené parametry</target>
<note />
</trans-unit>
<trans-unit id="Avoid_unnecessary_value_assignments_in_your_code_as_these_likely_indicate_redundant_value_computations_If_the_value_computation_is_not_redundant_and_you_intend_to_retain_the_assignmentcomma_then_change_the_assignment_target_to_a_local_variable_whose_name_starts_with_an_underscore_and_is_optionally_followed_by_an_integercomma_such_as___comma__1_comma__2_comma_etc_These_are_treated_as_special_discard_symbol_names">
<source>Avoid unnecessary value assignments in your code, as these likely indicate redundant value computations. If the value computation is not redundant and you intend to retain the assignment, then change the assignment target to a local variable whose name starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</source>
<target state="new">Avoid unnecessary value assignments in your code, as these likely indicate redundant value computations. If the value computation is not redundant and you intend to retain the assignment, then change the assignment target to a local variable whose name starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</target>
<note />
</trans-unit>
<trans-unit id="Avoid_unused_paramereters_in_your_code_If_the_parameter_cannot_be_removed_then_change_its_name_so_it_starts_with_an_underscore_and_is_optionally_followed_by_an_integer_such_as__comma__1_comma__2_etc_These_are_treated_as_special_discard_symbol_names">
<source>Avoid unused paramereters in your code. If the parameter cannot be removed, then change its name so it starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</source>
<target state="new">Avoid unused paramereters in your code. If the parameter cannot be removed, then change its name so it starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</target>
<note />
</trans-unit>
<trans-unit id="Change_namespace_to_0">
<source>Change namespace to '{0}'</source>
<target state="translated">Změnit obor názvů na {0}</target>
......@@ -352,6 +362,16 @@
<target state="new">Target type matches</target>
<note />
</trans-unit>
<trans-unit id="Unnecessary_assignment_of_a_value">
<source>Unnecessary assignment of a value</source>
<target state="new">Unnecessary assignment of a value</target>
<note />
</trans-unit>
<trans-unit id="Unnecessary_assignment_of_a_value_to_0">
<source>Unnecessary assignment of a value to '{0}'</source>
<target state="new">Unnecessary assignment of a value to '{0}'</target>
<note />
</trans-unit>
<trans-unit id="Unwrap_all_arguments">
<source>Unwrap all arguments</source>
<target state="translated">Zrušit zalomení všech argumentů</target>
......@@ -442,16 +462,6 @@
<target state="new">Use simple 'using' statement</target>
<note />
</trans-unit>
<trans-unit id="Value_assigned_to_0_is_never_used">
<source>Value assigned to '{0}' is never used</source>
<target state="translated">Hodnota přiřazená k: {0} se nikdy nepoužívá.</target>
<note />
</trans-unit>
<trans-unit id="Value_assigned_to_symbol_is_never_used">
<source>Value assigned to symbol is never used</source>
<target state="translated">Hodnota přiřazená symbolu se nikdy nepoužívá.</target>
<note />
</trans-unit>
<trans-unit id="Warning_colon_changing_namespace_may_produce_invalid_code_and_change_code_meaning">
<source>Warning: Changing namespace may produce invalid code and change code meaning.</source>
<target state="translated">Upozornění: Změna oboru názvů může vést k vytvoření neplatného kódu a změnit význam kódu.</target>
......
......@@ -57,6 +57,16 @@
<target state="translated">Umschlossene Parameter ausrichten</target>
<note />
</trans-unit>
<trans-unit id="Avoid_unnecessary_value_assignments_in_your_code_as_these_likely_indicate_redundant_value_computations_If_the_value_computation_is_not_redundant_and_you_intend_to_retain_the_assignmentcomma_then_change_the_assignment_target_to_a_local_variable_whose_name_starts_with_an_underscore_and_is_optionally_followed_by_an_integercomma_such_as___comma__1_comma__2_comma_etc_These_are_treated_as_special_discard_symbol_names">
<source>Avoid unnecessary value assignments in your code, as these likely indicate redundant value computations. If the value computation is not redundant and you intend to retain the assignment, then change the assignment target to a local variable whose name starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</source>
<target state="new">Avoid unnecessary value assignments in your code, as these likely indicate redundant value computations. If the value computation is not redundant and you intend to retain the assignment, then change the assignment target to a local variable whose name starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</target>
<note />
</trans-unit>
<trans-unit id="Avoid_unused_paramereters_in_your_code_If_the_parameter_cannot_be_removed_then_change_its_name_so_it_starts_with_an_underscore_and_is_optionally_followed_by_an_integer_such_as__comma__1_comma__2_etc_These_are_treated_as_special_discard_symbol_names">
<source>Avoid unused paramereters in your code. If the parameter cannot be removed, then change its name so it starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</source>
<target state="new">Avoid unused paramereters in your code. If the parameter cannot be removed, then change its name so it starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</target>
<note />
</trans-unit>
<trans-unit id="Change_namespace_to_0">
<source>Change namespace to '{0}'</source>
<target state="translated">Namespace in "{0}" ändern</target>
......@@ -352,6 +362,16 @@
<target state="new">Target type matches</target>
<note />
</trans-unit>
<trans-unit id="Unnecessary_assignment_of_a_value">
<source>Unnecessary assignment of a value</source>
<target state="new">Unnecessary assignment of a value</target>
<note />
</trans-unit>
<trans-unit id="Unnecessary_assignment_of_a_value_to_0">
<source>Unnecessary assignment of a value to '{0}'</source>
<target state="new">Unnecessary assignment of a value to '{0}'</target>
<note />
</trans-unit>
<trans-unit id="Unwrap_all_arguments">
<source>Unwrap all arguments</source>
<target state="translated">Alle Argumente entpacken</target>
......@@ -442,16 +462,6 @@
<target state="new">Use simple 'using' statement</target>
<note />
</trans-unit>
<trans-unit id="Value_assigned_to_0_is_never_used">
<source>Value assigned to '{0}' is never used</source>
<target state="translated">Der Wert, der "{0}" zugewiesen ist, wird niemals verwendet.</target>
<note />
</trans-unit>
<trans-unit id="Value_assigned_to_symbol_is_never_used">
<source>Value assigned to symbol is never used</source>
<target state="translated">Der Wert, der dem Symbol zugeordnet ist, wird niemals verwendet.</target>
<note />
</trans-unit>
<trans-unit id="Warning_colon_changing_namespace_may_produce_invalid_code_and_change_code_meaning">
<source>Warning: Changing namespace may produce invalid code and change code meaning.</source>
<target state="translated">Warnung: Durch die Änderung des Namespaces kann der Code ungültig werden oder seine Bedeutung verändern.</target>
......
......@@ -57,6 +57,16 @@
<target state="translated">Alinear parámetros ajustados</target>
<note />
</trans-unit>
<trans-unit id="Avoid_unnecessary_value_assignments_in_your_code_as_these_likely_indicate_redundant_value_computations_If_the_value_computation_is_not_redundant_and_you_intend_to_retain_the_assignmentcomma_then_change_the_assignment_target_to_a_local_variable_whose_name_starts_with_an_underscore_and_is_optionally_followed_by_an_integercomma_such_as___comma__1_comma__2_comma_etc_These_are_treated_as_special_discard_symbol_names">
<source>Avoid unnecessary value assignments in your code, as these likely indicate redundant value computations. If the value computation is not redundant and you intend to retain the assignment, then change the assignment target to a local variable whose name starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</source>
<target state="new">Avoid unnecessary value assignments in your code, as these likely indicate redundant value computations. If the value computation is not redundant and you intend to retain the assignment, then change the assignment target to a local variable whose name starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</target>
<note />
</trans-unit>
<trans-unit id="Avoid_unused_paramereters_in_your_code_If_the_parameter_cannot_be_removed_then_change_its_name_so_it_starts_with_an_underscore_and_is_optionally_followed_by_an_integer_such_as__comma__1_comma__2_etc_These_are_treated_as_special_discard_symbol_names">
<source>Avoid unused paramereters in your code. If the parameter cannot be removed, then change its name so it starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</source>
<target state="new">Avoid unused paramereters in your code. If the parameter cannot be removed, then change its name so it starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</target>
<note />
</trans-unit>
<trans-unit id="Change_namespace_to_0">
<source>Change namespace to '{0}'</source>
<target state="translated">Cambiar el espacio de nombres "{0}"</target>
......@@ -352,6 +362,16 @@
<target state="new">Target type matches</target>
<note />
</trans-unit>
<trans-unit id="Unnecessary_assignment_of_a_value">
<source>Unnecessary assignment of a value</source>
<target state="new">Unnecessary assignment of a value</target>
<note />
</trans-unit>
<trans-unit id="Unnecessary_assignment_of_a_value_to_0">
<source>Unnecessary assignment of a value to '{0}'</source>
<target state="new">Unnecessary assignment of a value to '{0}'</target>
<note />
</trans-unit>
<trans-unit id="Unwrap_all_arguments">
<source>Unwrap all arguments</source>
<target state="translated">Desajustar todos los argumentos</target>
......@@ -442,16 +462,6 @@
<target state="new">Use simple 'using' statement</target>
<note />
</trans-unit>
<trans-unit id="Value_assigned_to_0_is_never_used">
<source>Value assigned to '{0}' is never used</source>
<target state="translated">El valor asignado a "{0}" no se utiliza nunca.</target>
<note />
</trans-unit>
<trans-unit id="Value_assigned_to_symbol_is_never_used">
<source>Value assigned to symbol is never used</source>
<target state="translated">El valor asignado al símbolo nunca se utiliza.</target>
<note />
</trans-unit>
<trans-unit id="Warning_colon_changing_namespace_may_produce_invalid_code_and_change_code_meaning">
<source>Warning: Changing namespace may produce invalid code and change code meaning.</source>
<target state="translated">Advertencia: si cambia Cambiar el espacio de nombres puede producir código inválido y cambiar el significado del código.</target>
......
......@@ -57,6 +57,16 @@
<target state="translated">Aligner les paramètres inclus dans un wrapper</target>
<note />
</trans-unit>
<trans-unit id="Avoid_unnecessary_value_assignments_in_your_code_as_these_likely_indicate_redundant_value_computations_If_the_value_computation_is_not_redundant_and_you_intend_to_retain_the_assignmentcomma_then_change_the_assignment_target_to_a_local_variable_whose_name_starts_with_an_underscore_and_is_optionally_followed_by_an_integercomma_such_as___comma__1_comma__2_comma_etc_These_are_treated_as_special_discard_symbol_names">
<source>Avoid unnecessary value assignments in your code, as these likely indicate redundant value computations. If the value computation is not redundant and you intend to retain the assignment, then change the assignment target to a local variable whose name starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</source>
<target state="new">Avoid unnecessary value assignments in your code, as these likely indicate redundant value computations. If the value computation is not redundant and you intend to retain the assignment, then change the assignment target to a local variable whose name starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</target>
<note />
</trans-unit>
<trans-unit id="Avoid_unused_paramereters_in_your_code_If_the_parameter_cannot_be_removed_then_change_its_name_so_it_starts_with_an_underscore_and_is_optionally_followed_by_an_integer_such_as__comma__1_comma__2_etc_These_are_treated_as_special_discard_symbol_names">
<source>Avoid unused paramereters in your code. If the parameter cannot be removed, then change its name so it starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</source>
<target state="new">Avoid unused paramereters in your code. If the parameter cannot be removed, then change its name so it starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</target>
<note />
</trans-unit>
<trans-unit id="Change_namespace_to_0">
<source>Change namespace to '{0}'</source>
<target state="translated">Remplacer l’espace de noms par '{0}'</target>
......@@ -352,6 +362,16 @@
<target state="new">Target type matches</target>
<note />
</trans-unit>
<trans-unit id="Unnecessary_assignment_of_a_value">
<source>Unnecessary assignment of a value</source>
<target state="new">Unnecessary assignment of a value</target>
<note />
</trans-unit>
<trans-unit id="Unnecessary_assignment_of_a_value_to_0">
<source>Unnecessary assignment of a value to '{0}'</source>
<target state="new">Unnecessary assignment of a value to '{0}'</target>
<note />
</trans-unit>
<trans-unit id="Unwrap_all_arguments">
<source>Unwrap all arguments</source>
<target state="translated">Exclure du wrapper tous les arguments</target>
......@@ -442,16 +462,6 @@
<target state="new">Use simple 'using' statement</target>
<note />
</trans-unit>
<trans-unit id="Value_assigned_to_0_is_never_used">
<source>Value assigned to '{0}' is never used</source>
<target state="translated">La valeur attribuée à '{0}' n'est jamais utilisée</target>
<note />
</trans-unit>
<trans-unit id="Value_assigned_to_symbol_is_never_used">
<source>Value assigned to symbol is never used</source>
<target state="translated">La valeur attribuée au symbole n'est jamais utilisée</target>
<note />
</trans-unit>
<trans-unit id="Warning_colon_changing_namespace_may_produce_invalid_code_and_change_code_meaning">
<source>Warning: Changing namespace may produce invalid code and change code meaning.</source>
<target state="translated">Avertissement : Le changement d’espace de noms peut produire du code non valide et changer la signification du code.</target>
......
......@@ -57,6 +57,16 @@
<target state="translated">Allinea i parametri con ritorno a capo</target>
<note />
</trans-unit>
<trans-unit id="Avoid_unnecessary_value_assignments_in_your_code_as_these_likely_indicate_redundant_value_computations_If_the_value_computation_is_not_redundant_and_you_intend_to_retain_the_assignmentcomma_then_change_the_assignment_target_to_a_local_variable_whose_name_starts_with_an_underscore_and_is_optionally_followed_by_an_integercomma_such_as___comma__1_comma__2_comma_etc_These_are_treated_as_special_discard_symbol_names">
<source>Avoid unnecessary value assignments in your code, as these likely indicate redundant value computations. If the value computation is not redundant and you intend to retain the assignment, then change the assignment target to a local variable whose name starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</source>
<target state="new">Avoid unnecessary value assignments in your code, as these likely indicate redundant value computations. If the value computation is not redundant and you intend to retain the assignment, then change the assignment target to a local variable whose name starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</target>
<note />
</trans-unit>
<trans-unit id="Avoid_unused_paramereters_in_your_code_If_the_parameter_cannot_be_removed_then_change_its_name_so_it_starts_with_an_underscore_and_is_optionally_followed_by_an_integer_such_as__comma__1_comma__2_etc_These_are_treated_as_special_discard_symbol_names">
<source>Avoid unused paramereters in your code. If the parameter cannot be removed, then change its name so it starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</source>
<target state="new">Avoid unused paramereters in your code. If the parameter cannot be removed, then change its name so it starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</target>
<note />
</trans-unit>
<trans-unit id="Change_namespace_to_0">
<source>Change namespace to '{0}'</source>
<target state="translated">Modifica lo spazio dei nomi in '{0}'</target>
......@@ -352,6 +362,16 @@
<target state="new">Target type matches</target>
<note />
</trans-unit>
<trans-unit id="Unnecessary_assignment_of_a_value">
<source>Unnecessary assignment of a value</source>
<target state="new">Unnecessary assignment of a value</target>
<note />
</trans-unit>
<trans-unit id="Unnecessary_assignment_of_a_value_to_0">
<source>Unnecessary assignment of a value to '{0}'</source>
<target state="new">Unnecessary assignment of a value to '{0}'</target>
<note />
</trans-unit>
<trans-unit id="Unwrap_all_arguments">
<source>Unwrap all arguments</source>
<target state="translated">Annulla ritorno a capo per tutti gli argomenti</target>
......@@ -442,16 +462,6 @@
<target state="new">Use simple 'using' statement</target>
<note />
</trans-unit>
<trans-unit id="Value_assigned_to_0_is_never_used">
<source>Value assigned to '{0}' is never used</source>
<target state="translated">Il valore assegnato a '{0}' non viene mai usato</target>
<note />
</trans-unit>
<trans-unit id="Value_assigned_to_symbol_is_never_used">
<source>Value assigned to symbol is never used</source>
<target state="translated">Il valore assegnato al simbolo non viene mai usato</target>
<note />
</trans-unit>
<trans-unit id="Warning_colon_changing_namespace_may_produce_invalid_code_and_change_code_meaning">
<source>Warning: Changing namespace may produce invalid code and change code meaning.</source>
<target state="translated">Avviso: la modifica dello spazio dei nomi può comportare la creazione di codice non valido e modificare il significato del codice.</target>
......
......@@ -57,6 +57,16 @@
<target state="translated">折り返されたパラメーターを調整します</target>
<note />
</trans-unit>
<trans-unit id="Avoid_unnecessary_value_assignments_in_your_code_as_these_likely_indicate_redundant_value_computations_If_the_value_computation_is_not_redundant_and_you_intend_to_retain_the_assignmentcomma_then_change_the_assignment_target_to_a_local_variable_whose_name_starts_with_an_underscore_and_is_optionally_followed_by_an_integercomma_such_as___comma__1_comma__2_comma_etc_These_are_treated_as_special_discard_symbol_names">
<source>Avoid unnecessary value assignments in your code, as these likely indicate redundant value computations. If the value computation is not redundant and you intend to retain the assignment, then change the assignment target to a local variable whose name starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</source>
<target state="new">Avoid unnecessary value assignments in your code, as these likely indicate redundant value computations. If the value computation is not redundant and you intend to retain the assignment, then change the assignment target to a local variable whose name starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</target>
<note />
</trans-unit>
<trans-unit id="Avoid_unused_paramereters_in_your_code_If_the_parameter_cannot_be_removed_then_change_its_name_so_it_starts_with_an_underscore_and_is_optionally_followed_by_an_integer_such_as__comma__1_comma__2_etc_These_are_treated_as_special_discard_symbol_names">
<source>Avoid unused paramereters in your code. If the parameter cannot be removed, then change its name so it starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</source>
<target state="new">Avoid unused paramereters in your code. If the parameter cannot be removed, then change its name so it starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</target>
<note />
</trans-unit>
<trans-unit id="Change_namespace_to_0">
<source>Change namespace to '{0}'</source>
<target state="translated">名前空間を '{0}' に変更します</target>
......@@ -352,6 +362,16 @@
<target state="new">Target type matches</target>
<note />
</trans-unit>
<trans-unit id="Unnecessary_assignment_of_a_value">
<source>Unnecessary assignment of a value</source>
<target state="new">Unnecessary assignment of a value</target>
<note />
</trans-unit>
<trans-unit id="Unnecessary_assignment_of_a_value_to_0">
<source>Unnecessary assignment of a value to '{0}'</source>
<target state="new">Unnecessary assignment of a value to '{0}'</target>
<note />
</trans-unit>
<trans-unit id="Unwrap_all_arguments">
<source>Unwrap all arguments</source>
<target state="translated">すべての引数の折り返しを解除</target>
......@@ -442,16 +462,6 @@
<target state="new">Use simple 'using' statement</target>
<note />
</trans-unit>
<trans-unit id="Value_assigned_to_0_is_never_used">
<source>Value assigned to '{0}' is never used</source>
<target state="translated">'{0}' に割り当てられた値が使用されていません</target>
<note />
</trans-unit>
<trans-unit id="Value_assigned_to_symbol_is_never_used">
<source>Value assigned to symbol is never used</source>
<target state="translated">シンボルに割り当てられた値は使用されることがありません</target>
<note />
</trans-unit>
<trans-unit id="Warning_colon_changing_namespace_may_produce_invalid_code_and_change_code_meaning">
<source>Warning: Changing namespace may produce invalid code and change code meaning.</source>
<target state="translated">警告: 名前空間を変更すると無効なコードが生成され、コードの意味が変更される可能性があります。</target>
......
......@@ -57,6 +57,16 @@
<target state="translated">줄 바꿈 된 매개 변수 맞춤</target>
<note />
</trans-unit>
<trans-unit id="Avoid_unnecessary_value_assignments_in_your_code_as_these_likely_indicate_redundant_value_computations_If_the_value_computation_is_not_redundant_and_you_intend_to_retain_the_assignmentcomma_then_change_the_assignment_target_to_a_local_variable_whose_name_starts_with_an_underscore_and_is_optionally_followed_by_an_integercomma_such_as___comma__1_comma__2_comma_etc_These_are_treated_as_special_discard_symbol_names">
<source>Avoid unnecessary value assignments in your code, as these likely indicate redundant value computations. If the value computation is not redundant and you intend to retain the assignment, then change the assignment target to a local variable whose name starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</source>
<target state="new">Avoid unnecessary value assignments in your code, as these likely indicate redundant value computations. If the value computation is not redundant and you intend to retain the assignment, then change the assignment target to a local variable whose name starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</target>
<note />
</trans-unit>
<trans-unit id="Avoid_unused_paramereters_in_your_code_If_the_parameter_cannot_be_removed_then_change_its_name_so_it_starts_with_an_underscore_and_is_optionally_followed_by_an_integer_such_as__comma__1_comma__2_etc_These_are_treated_as_special_discard_symbol_names">
<source>Avoid unused paramereters in your code. If the parameter cannot be removed, then change its name so it starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</source>
<target state="new">Avoid unused paramereters in your code. If the parameter cannot be removed, then change its name so it starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</target>
<note />
</trans-unit>
<trans-unit id="Change_namespace_to_0">
<source>Change namespace to '{0}'</source>
<target state="translated">네임스페이스를 '{0}'(으)로 변경</target>
......@@ -352,6 +362,16 @@
<target state="new">Target type matches</target>
<note />
</trans-unit>
<trans-unit id="Unnecessary_assignment_of_a_value">
<source>Unnecessary assignment of a value</source>
<target state="new">Unnecessary assignment of a value</target>
<note />
</trans-unit>
<trans-unit id="Unnecessary_assignment_of_a_value_to_0">
<source>Unnecessary assignment of a value to '{0}'</source>
<target state="new">Unnecessary assignment of a value to '{0}'</target>
<note />
</trans-unit>
<trans-unit id="Unwrap_all_arguments">
<source>Unwrap all arguments</source>
<target state="translated">모든 인수 줄 바꿈 조정</target>
......@@ -442,16 +462,6 @@
<target state="new">Use simple 'using' statement</target>
<note />
</trans-unit>
<trans-unit id="Value_assigned_to_0_is_never_used">
<source>Value assigned to '{0}' is never used</source>
<target state="translated">'{0}'에 할당된 값은 사용되지 않습니다.</target>
<note />
</trans-unit>
<trans-unit id="Value_assigned_to_symbol_is_never_used">
<source>Value assigned to symbol is never used</source>
<target state="translated">기호에 할당된 값은 사용되지 않습니다.</target>
<note />
</trans-unit>
<trans-unit id="Warning_colon_changing_namespace_may_produce_invalid_code_and_change_code_meaning">
<source>Warning: Changing namespace may produce invalid code and change code meaning.</source>
<target state="translated">경고: 네임스페이스를 변경하면 잘못된 코드가 발생하고 코드 의미가 변경될 수 있습니다.</target>
......
......@@ -57,6 +57,16 @@
<target state="translated">Dopasuj opakowane parametry</target>
<note />
</trans-unit>
<trans-unit id="Avoid_unnecessary_value_assignments_in_your_code_as_these_likely_indicate_redundant_value_computations_If_the_value_computation_is_not_redundant_and_you_intend_to_retain_the_assignmentcomma_then_change_the_assignment_target_to_a_local_variable_whose_name_starts_with_an_underscore_and_is_optionally_followed_by_an_integercomma_such_as___comma__1_comma__2_comma_etc_These_are_treated_as_special_discard_symbol_names">
<source>Avoid unnecessary value assignments in your code, as these likely indicate redundant value computations. If the value computation is not redundant and you intend to retain the assignment, then change the assignment target to a local variable whose name starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</source>
<target state="new">Avoid unnecessary value assignments in your code, as these likely indicate redundant value computations. If the value computation is not redundant and you intend to retain the assignment, then change the assignment target to a local variable whose name starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</target>
<note />
</trans-unit>
<trans-unit id="Avoid_unused_paramereters_in_your_code_If_the_parameter_cannot_be_removed_then_change_its_name_so_it_starts_with_an_underscore_and_is_optionally_followed_by_an_integer_such_as__comma__1_comma__2_etc_These_are_treated_as_special_discard_symbol_names">
<source>Avoid unused paramereters in your code. If the parameter cannot be removed, then change its name so it starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</source>
<target state="new">Avoid unused paramereters in your code. If the parameter cannot be removed, then change its name so it starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</target>
<note />
</trans-unit>
<trans-unit id="Change_namespace_to_0">
<source>Change namespace to '{0}'</source>
<target state="translated">Zmień przestrzeń nazw na „{0}”</target>
......@@ -352,6 +362,16 @@
<target state="new">Target type matches</target>
<note />
</trans-unit>
<trans-unit id="Unnecessary_assignment_of_a_value">
<source>Unnecessary assignment of a value</source>
<target state="new">Unnecessary assignment of a value</target>
<note />
</trans-unit>
<trans-unit id="Unnecessary_assignment_of_a_value_to_0">
<source>Unnecessary assignment of a value to '{0}'</source>
<target state="new">Unnecessary assignment of a value to '{0}'</target>
<note />
</trans-unit>
<trans-unit id="Unwrap_all_arguments">
<source>Unwrap all arguments</source>
<target state="translated">Odpakuj wszystkie argumenty</target>
......@@ -442,16 +462,6 @@
<target state="new">Use simple 'using' statement</target>
<note />
</trans-unit>
<trans-unit id="Value_assigned_to_0_is_never_used">
<source>Value assigned to '{0}' is never used</source>
<target state="translated">Wartość przypisana do elementu „{0}” nie jest nigdy używana</target>
<note />
</trans-unit>
<trans-unit id="Value_assigned_to_symbol_is_never_used">
<source>Value assigned to symbol is never used</source>
<target state="translated">Wartość przypisana do symbolu nie jest nigdy używana</target>
<note />
</trans-unit>
<trans-unit id="Warning_colon_changing_namespace_may_produce_invalid_code_and_change_code_meaning">
<source>Warning: Changing namespace may produce invalid code and change code meaning.</source>
<target state="translated">Ostrzeżenie: Zmiana przestrzeni nazw może skutkować nieprawidłowym kodem i zmianą jego znaczenia.</target>
......
......@@ -57,6 +57,16 @@
<target state="translated">Alinhar os parâmetros encapsulados</target>
<note />
</trans-unit>
<trans-unit id="Avoid_unnecessary_value_assignments_in_your_code_as_these_likely_indicate_redundant_value_computations_If_the_value_computation_is_not_redundant_and_you_intend_to_retain_the_assignmentcomma_then_change_the_assignment_target_to_a_local_variable_whose_name_starts_with_an_underscore_and_is_optionally_followed_by_an_integercomma_such_as___comma__1_comma__2_comma_etc_These_are_treated_as_special_discard_symbol_names">
<source>Avoid unnecessary value assignments in your code, as these likely indicate redundant value computations. If the value computation is not redundant and you intend to retain the assignment, then change the assignment target to a local variable whose name starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</source>
<target state="new">Avoid unnecessary value assignments in your code, as these likely indicate redundant value computations. If the value computation is not redundant and you intend to retain the assignment, then change the assignment target to a local variable whose name starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</target>
<note />
</trans-unit>
<trans-unit id="Avoid_unused_paramereters_in_your_code_If_the_parameter_cannot_be_removed_then_change_its_name_so_it_starts_with_an_underscore_and_is_optionally_followed_by_an_integer_such_as__comma__1_comma__2_etc_These_are_treated_as_special_discard_symbol_names">
<source>Avoid unused paramereters in your code. If the parameter cannot be removed, then change its name so it starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</source>
<target state="new">Avoid unused paramereters in your code. If the parameter cannot be removed, then change its name so it starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</target>
<note />
</trans-unit>
<trans-unit id="Change_namespace_to_0">
<source>Change namespace to '{0}'</source>
<target state="translated">Alterar o namespace para '{0}'</target>
......@@ -352,6 +362,16 @@
<target state="new">Target type matches</target>
<note />
</trans-unit>
<trans-unit id="Unnecessary_assignment_of_a_value">
<source>Unnecessary assignment of a value</source>
<target state="new">Unnecessary assignment of a value</target>
<note />
</trans-unit>
<trans-unit id="Unnecessary_assignment_of_a_value_to_0">
<source>Unnecessary assignment of a value to '{0}'</source>
<target state="new">Unnecessary assignment of a value to '{0}'</target>
<note />
</trans-unit>
<trans-unit id="Unwrap_all_arguments">
<source>Unwrap all arguments</source>
<target state="translated">Desencapsular todos os argumentos</target>
......@@ -442,16 +462,6 @@
<target state="new">Use simple 'using' statement</target>
<note />
</trans-unit>
<trans-unit id="Value_assigned_to_0_is_never_used">
<source>Value assigned to '{0}' is never used</source>
<target state="translated">O valor atribuído a '{0}' nunca é usado</target>
<note />
</trans-unit>
<trans-unit id="Value_assigned_to_symbol_is_never_used">
<source>Value assigned to symbol is never used</source>
<target state="translated">O valor atribuído ao símbolo nunca é usado</target>
<note />
</trans-unit>
<trans-unit id="Warning_colon_changing_namespace_may_produce_invalid_code_and_change_code_meaning">
<source>Warning: Changing namespace may produce invalid code and change code meaning.</source>
<target state="translated">Aviso: a alteração do namespace pode produzir código inválido e mudar o significado do código.</target>
......
......@@ -57,6 +57,16 @@
<target state="translated">Выровнять свернутые параметры</target>
<note />
</trans-unit>
<trans-unit id="Avoid_unnecessary_value_assignments_in_your_code_as_these_likely_indicate_redundant_value_computations_If_the_value_computation_is_not_redundant_and_you_intend_to_retain_the_assignmentcomma_then_change_the_assignment_target_to_a_local_variable_whose_name_starts_with_an_underscore_and_is_optionally_followed_by_an_integercomma_such_as___comma__1_comma__2_comma_etc_These_are_treated_as_special_discard_symbol_names">
<source>Avoid unnecessary value assignments in your code, as these likely indicate redundant value computations. If the value computation is not redundant and you intend to retain the assignment, then change the assignment target to a local variable whose name starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</source>
<target state="new">Avoid unnecessary value assignments in your code, as these likely indicate redundant value computations. If the value computation is not redundant and you intend to retain the assignment, then change the assignment target to a local variable whose name starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</target>
<note />
</trans-unit>
<trans-unit id="Avoid_unused_paramereters_in_your_code_If_the_parameter_cannot_be_removed_then_change_its_name_so_it_starts_with_an_underscore_and_is_optionally_followed_by_an_integer_such_as__comma__1_comma__2_etc_These_are_treated_as_special_discard_symbol_names">
<source>Avoid unused paramereters in your code. If the parameter cannot be removed, then change its name so it starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</source>
<target state="new">Avoid unused paramereters in your code. If the parameter cannot be removed, then change its name so it starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</target>
<note />
</trans-unit>
<trans-unit id="Change_namespace_to_0">
<source>Change namespace to '{0}'</source>
<target state="translated">Изменить пространство имен на "{0}"</target>
......@@ -352,6 +362,16 @@
<target state="new">Target type matches</target>
<note />
</trans-unit>
<trans-unit id="Unnecessary_assignment_of_a_value">
<source>Unnecessary assignment of a value</source>
<target state="new">Unnecessary assignment of a value</target>
<note />
</trans-unit>
<trans-unit id="Unnecessary_assignment_of_a_value_to_0">
<source>Unnecessary assignment of a value to '{0}'</source>
<target state="new">Unnecessary assignment of a value to '{0}'</target>
<note />
</trans-unit>
<trans-unit id="Unwrap_all_arguments">
<source>Unwrap all arguments</source>
<target state="translated">Развернуть все аргументы</target>
......@@ -442,16 +462,6 @@
<target state="new">Use simple 'using' statement</target>
<note />
</trans-unit>
<trans-unit id="Value_assigned_to_0_is_never_used">
<source>Value assigned to '{0}' is never used</source>
<target state="translated">Значение, присвоенное "{0}", никогда не используется</target>
<note />
</trans-unit>
<trans-unit id="Value_assigned_to_symbol_is_never_used">
<source>Value assigned to symbol is never used</source>
<target state="translated">Значение, присваиваемое символу, никогда не используется</target>
<note />
</trans-unit>
<trans-unit id="Warning_colon_changing_namespace_may_produce_invalid_code_and_change_code_meaning">
<source>Warning: Changing namespace may produce invalid code and change code meaning.</source>
<target state="translated">Предупреждение: изменение пространства имен может привести к появлению недопустимого кода и к изменению значения кода.</target>
......
......@@ -57,6 +57,16 @@
<target state="translated">Sarmalanan parametreleri hizala</target>
<note />
</trans-unit>
<trans-unit id="Avoid_unnecessary_value_assignments_in_your_code_as_these_likely_indicate_redundant_value_computations_If_the_value_computation_is_not_redundant_and_you_intend_to_retain_the_assignmentcomma_then_change_the_assignment_target_to_a_local_variable_whose_name_starts_with_an_underscore_and_is_optionally_followed_by_an_integercomma_such_as___comma__1_comma__2_comma_etc_These_are_treated_as_special_discard_symbol_names">
<source>Avoid unnecessary value assignments in your code, as these likely indicate redundant value computations. If the value computation is not redundant and you intend to retain the assignment, then change the assignment target to a local variable whose name starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</source>
<target state="new">Avoid unnecessary value assignments in your code, as these likely indicate redundant value computations. If the value computation is not redundant and you intend to retain the assignment, then change the assignment target to a local variable whose name starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</target>
<note />
</trans-unit>
<trans-unit id="Avoid_unused_paramereters_in_your_code_If_the_parameter_cannot_be_removed_then_change_its_name_so_it_starts_with_an_underscore_and_is_optionally_followed_by_an_integer_such_as__comma__1_comma__2_etc_These_are_treated_as_special_discard_symbol_names">
<source>Avoid unused paramereters in your code. If the parameter cannot be removed, then change its name so it starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</source>
<target state="new">Avoid unused paramereters in your code. If the parameter cannot be removed, then change its name so it starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</target>
<note />
</trans-unit>
<trans-unit id="Change_namespace_to_0">
<source>Change namespace to '{0}'</source>
<target state="translated">Ad alanını '{0}' olarak değiştir</target>
......@@ -352,6 +362,16 @@
<target state="new">Target type matches</target>
<note />
</trans-unit>
<trans-unit id="Unnecessary_assignment_of_a_value">
<source>Unnecessary assignment of a value</source>
<target state="new">Unnecessary assignment of a value</target>
<note />
</trans-unit>
<trans-unit id="Unnecessary_assignment_of_a_value_to_0">
<source>Unnecessary assignment of a value to '{0}'</source>
<target state="new">Unnecessary assignment of a value to '{0}'</target>
<note />
</trans-unit>
<trans-unit id="Unwrap_all_arguments">
<source>Unwrap all arguments</source>
<target state="translated">Tüm bağımsız değişkenlerin sarmalamasını kaldır</target>
......@@ -442,16 +462,6 @@
<target state="new">Use simple 'using' statement</target>
<note />
</trans-unit>
<trans-unit id="Value_assigned_to_0_is_never_used">
<source>Value assigned to '{0}' is never used</source>
<target state="translated">'{0}' öğesine atanan değer hiç kullanılmaz</target>
<note />
</trans-unit>
<trans-unit id="Value_assigned_to_symbol_is_never_used">
<source>Value assigned to symbol is never used</source>
<target state="translated">Sembole atanan değer hiç kullanılmaz</target>
<note />
</trans-unit>
<trans-unit id="Warning_colon_changing_namespace_may_produce_invalid_code_and_change_code_meaning">
<source>Warning: Changing namespace may produce invalid code and change code meaning.</source>
<target state="translated">Uyarı: Ad alanının değiştirilmesi geçersiz kod oluşturabilir ve kodun anlamını değiştirebilir.</target>
......
......@@ -57,6 +57,16 @@
<target state="translated">对齐包装参数</target>
<note />
</trans-unit>
<trans-unit id="Avoid_unnecessary_value_assignments_in_your_code_as_these_likely_indicate_redundant_value_computations_If_the_value_computation_is_not_redundant_and_you_intend_to_retain_the_assignmentcomma_then_change_the_assignment_target_to_a_local_variable_whose_name_starts_with_an_underscore_and_is_optionally_followed_by_an_integercomma_such_as___comma__1_comma__2_comma_etc_These_are_treated_as_special_discard_symbol_names">
<source>Avoid unnecessary value assignments in your code, as these likely indicate redundant value computations. If the value computation is not redundant and you intend to retain the assignment, then change the assignment target to a local variable whose name starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</source>
<target state="new">Avoid unnecessary value assignments in your code, as these likely indicate redundant value computations. If the value computation is not redundant and you intend to retain the assignment, then change the assignment target to a local variable whose name starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</target>
<note />
</trans-unit>
<trans-unit id="Avoid_unused_paramereters_in_your_code_If_the_parameter_cannot_be_removed_then_change_its_name_so_it_starts_with_an_underscore_and_is_optionally_followed_by_an_integer_such_as__comma__1_comma__2_etc_These_are_treated_as_special_discard_symbol_names">
<source>Avoid unused paramereters in your code. If the parameter cannot be removed, then change its name so it starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</source>
<target state="new">Avoid unused paramereters in your code. If the parameter cannot be removed, then change its name so it starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</target>
<note />
</trans-unit>
<trans-unit id="Change_namespace_to_0">
<source>Change namespace to '{0}'</source>
<target state="translated">将名称空间更改为“{0}”</target>
......@@ -352,6 +362,16 @@
<target state="new">Target type matches</target>
<note />
</trans-unit>
<trans-unit id="Unnecessary_assignment_of_a_value">
<source>Unnecessary assignment of a value</source>
<target state="new">Unnecessary assignment of a value</target>
<note />
</trans-unit>
<trans-unit id="Unnecessary_assignment_of_a_value_to_0">
<source>Unnecessary assignment of a value to '{0}'</source>
<target state="new">Unnecessary assignment of a value to '{0}'</target>
<note />
</trans-unit>
<trans-unit id="Unwrap_all_arguments">
<source>Unwrap all arguments</source>
<target state="translated">解开所有参数</target>
......@@ -442,16 +462,6 @@
<target state="new">Use simple 'using' statement</target>
<note />
</trans-unit>
<trans-unit id="Value_assigned_to_0_is_never_used">
<source>Value assigned to '{0}' is never used</source>
<target state="translated">永远不会使用分配给 "{0}" 的值</target>
<note />
</trans-unit>
<trans-unit id="Value_assigned_to_symbol_is_never_used">
<source>Value assigned to symbol is never used</source>
<target state="translated">从不使用分配给符号的值</target>
<note />
</trans-unit>
<trans-unit id="Warning_colon_changing_namespace_may_produce_invalid_code_and_change_code_meaning">
<source>Warning: Changing namespace may produce invalid code and change code meaning.</source>
<target state="translated">警告: 更改命名空间可能会产生无效的代码并更改代码的含义。</target>
......
......@@ -57,6 +57,16 @@
<target state="translated">對齊包裝的參數</target>
<note />
</trans-unit>
<trans-unit id="Avoid_unnecessary_value_assignments_in_your_code_as_these_likely_indicate_redundant_value_computations_If_the_value_computation_is_not_redundant_and_you_intend_to_retain_the_assignmentcomma_then_change_the_assignment_target_to_a_local_variable_whose_name_starts_with_an_underscore_and_is_optionally_followed_by_an_integercomma_such_as___comma__1_comma__2_comma_etc_These_are_treated_as_special_discard_symbol_names">
<source>Avoid unnecessary value assignments in your code, as these likely indicate redundant value computations. If the value computation is not redundant and you intend to retain the assignment, then change the assignment target to a local variable whose name starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</source>
<target state="new">Avoid unnecessary value assignments in your code, as these likely indicate redundant value computations. If the value computation is not redundant and you intend to retain the assignment, then change the assignment target to a local variable whose name starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</target>
<note />
</trans-unit>
<trans-unit id="Avoid_unused_paramereters_in_your_code_If_the_parameter_cannot_be_removed_then_change_its_name_so_it_starts_with_an_underscore_and_is_optionally_followed_by_an_integer_such_as__comma__1_comma__2_etc_These_are_treated_as_special_discard_symbol_names">
<source>Avoid unused paramereters in your code. If the parameter cannot be removed, then change its name so it starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</source>
<target state="new">Avoid unused paramereters in your code. If the parameter cannot be removed, then change its name so it starts with an underscore and is optionally followed by an integer, such as '_', '_1', '_2', etc. These are treated as special discard symbol names.</target>
<note />
</trans-unit>
<trans-unit id="Change_namespace_to_0">
<source>Change namespace to '{0}'</source>
<target state="translated">將命名空間變更為 ‘{0}'</target>
......@@ -352,6 +362,16 @@
<target state="new">Target type matches</target>
<note />
</trans-unit>
<trans-unit id="Unnecessary_assignment_of_a_value">
<source>Unnecessary assignment of a value</source>
<target state="new">Unnecessary assignment of a value</target>
<note />
</trans-unit>
<trans-unit id="Unnecessary_assignment_of_a_value_to_0">
<source>Unnecessary assignment of a value to '{0}'</source>
<target state="new">Unnecessary assignment of a value to '{0}'</target>
<note />
</trans-unit>
<trans-unit id="Unwrap_all_arguments">
<source>Unwrap all arguments</source>
<target state="translated">將所有引數取消換行</target>
......@@ -442,16 +462,6 @@
<target state="new">Use simple 'using' statement</target>
<note />
</trans-unit>
<trans-unit id="Value_assigned_to_0_is_never_used">
<source>Value assigned to '{0}' is never used</source>
<target state="translated">永遠不會使用指派給 '{0}' 的值</target>
<note />
</trans-unit>
<trans-unit id="Value_assigned_to_symbol_is_never_used">
<source>Value assigned to symbol is never used</source>
<target state="translated">永遠不會使用指派給符號的值</target>
<note />
</trans-unit>
<trans-unit id="Warning_colon_changing_namespace_may_produce_invalid_code_and_change_code_meaning">
<source>Warning: Changing namespace may produce invalid code and change code meaning.</source>
<target state="translated">警告: 變更命名空間可能會產生無效的程式碼及變更程式碼意義。</target>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册