提交 526b3112 编写于 作者: D David Poeschl

Move strings to resources

上级 b9f40f34
......@@ -44,17 +44,17 @@
<Border Grid.Row="3" Grid.Column="1" BorderThickness="1" BorderBrush="LightGray" Margin="0,5,0,5">
<ContentControl x:Name="NameContentControl" Height="16" Focusable="False" Margin="0,0,0,0" PreviewKeyDown="TypeOrNameContentControl_PreviewKeyDown" KeyUp="TypeOrNameContentControl_KeyUp" AutomationProperties.LabeledBy="{Binding ElementName=ParameterNameLabelName}"/>
</Border>
<Label x:Name="ParameterKindLabelName" Grid.Row="4" Grid.Column="0" Grid.ColumnSpan="2" Content="Parameter kind:" />
<RadioButton x:Name="RequiredParameterRadioButton" Grid.Row="5" Margin="5" GroupName="ParameterKind" IsChecked="True">Required</RadioButton>
<Label x:Name="ParameterKindLabelName" Grid.Row="4" Grid.Column="0" Grid.ColumnSpan="2" Content="{Binding ElementName=dialog, Path=ParameterKind}" />
<RadioButton x:Name="RequiredParameterRadioButton" Grid.Row="5" Margin="5" GroupName="ParameterKind" IsChecked="True" Content="{Binding ElementName=dialog, Path=Required}" />
<Grid Grid.Row="6" Margin="5">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<RadioButton x:Name="OptionalParameterRadioButton" Grid.Column="0" GroupName="ParameterKind" VerticalContentAlignment="Center">Optional with default value:</RadioButton>
<RadioButton x:Name="OptionalParameterRadioButton" Grid.Column="0" GroupName="ParameterKind" VerticalContentAlignment="Center" Content="{Binding ElementName=dialog, Path=OptionalWithDefaultValue}" />
<TextBox x:Name="DefaultValue" Grid.Column="1" Margin="5,0,0,0" IsEnabled="{Binding IsChecked, ElementName=OptionalParameterRadioButton}"></TextBox>
</Grid>
<Label Grid.Row="7" Grid.Column="0" Grid.ColumnSpan="2" Content="Value to inject at callsites:" />
<Label Grid.Row="7" Grid.Column="0" Grid.ColumnSpan="2" Content="{Binding ElementName=dialog, Path=ValueToInjectAtCallsites}" />
<Grid Grid.Row="8" Margin="5">
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
......@@ -64,12 +64,12 @@
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<RadioButton x:Name="CallsiteValueRadioButton" Grid.Row="0" Grid.Column="0" GroupName="CallsiteKind" VerticalContentAlignment="Center" IsChecked="True">Value:</RadioButton>
<RadioButton x:Name="CallsiteValueRadioButton" Grid.Row="0" Grid.Column="0" GroupName="CallsiteKind" VerticalContentAlignment="Center" IsChecked="True" Content="{Binding ElementName=dialog, Path=Value}" />
<TextBox Grid.Column="1" Grid.Row="0" Margin="5,0,0,0" IsEnabled="{Binding IsChecked, ElementName=CallsiteValueRadioButton}" Text="{Binding CallsiteValue, Mode=TwoWay}"></TextBox>
<CheckBox Grid.Row="1" Grid.ColumnSpan="2" Margin="25,5,0,0" >Use named argument</CheckBox>
<CheckBox Grid.Row="1" Grid.ColumnSpan="2" Margin="25,5,0,0" Content="{Binding ElementName=dialog, Path=UseNamedArgument}" />
</Grid>
<RadioButton x:Name="IntroduceErrorRadioButton" Grid.Row="9" Margin="5,5,0,0" Grid.Column="0" GroupName="CallsiteKind" VerticalContentAlignment="Center">Introduce undefined TODO variables</RadioButton>
<RadioButton x:Name="OmitArgumentRadioButton" Grid.Row="10" Margin="5,10,0,0" GroupName="CallsiteKind" IsEnabled="{Binding IsChecked, ElementName=OptionalParameterRadioButton}" Content="Omit (only for optional parameters)" />
<RadioButton x:Name="IntroduceErrorRadioButton" Grid.Row="9" Margin="5,5,0,0" Grid.Column="0" GroupName="CallsiteKind" VerticalContentAlignment="Center" Content="{Binding ElementName=dialog, Path=IntroduceUndefinedTodoVariables}"/>
<RadioButton x:Name="OmitArgumentRadioButton" Grid.Row="10" Margin="5,10,0,0" GroupName="CallsiteKind" IsEnabled="{Binding IsChecked, ElementName=OptionalParameterRadioButton}" Content="{Binding ElementName=dialog, Path=OmitOnlyForOptionalParameters}" />
</Grid>
<StackPanel Grid.Row="1"
HorizontalAlignment="Right"
......
......@@ -22,14 +22,18 @@ internal partial class AddParameterDialog : DialogWindow
public string OK { get { return ServicesVSResources.OK; } }
public string Cancel { get { return ServicesVSResources.Cancel; } }
public string TypeNameLabel { get { return ServicesVSResources.Type_Name; } }
public string ParameterNameLabel { get { return ServicesVSResources.Parameter_Name; } }
public string CallSiteValueLabel { get { return ServicesVSResources.Call_site_value; } }
public string AddParameterDialogTitle { get { return ServicesVSResources.Add_Parameter; } }
public string ParameterKind { get { return ServicesVSResources.Parameter_kind_colon; } }
public string Required { get { return ServicesVSResources.Required; } }
public string OptionalWithDefaultValue { get { return ServicesVSResources.Optional_with_default_value_colon; } }
public string ValueToInjectAtCallsites { get { return ServicesVSResources.Value_to_inject_at_call_sites_colon; } }
public string Value { get { return ServicesVSResources.Value_colon; } }
public string UseNamedArgument { get { return ServicesVSResources.Use_named_argument; } }
public string IntroduceUndefinedTodoVariables { get { return ServicesVSResources.IntroduceUndefinedTodoVariables; } }
public string OmitOnlyForOptionalParameters { get { return ServicesVSResources.Omit_only_for_optional_parameters; } }
public AddParameterDialog(AddParameterDialogViewModel viewModel)
{
......
......@@ -1532,6 +1532,15 @@ internal class ServicesVSResources {
}
}
/// <summary>
/// Looks up a localized string similar to Introduce undefined TODO variables.
/// </summary>
internal static string IntroduceUndefinedTodoVariables {
get {
return ResourceManager.GetString("IntroduceUndefinedTodoVariables", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Invalid access..
/// </summary>
......@@ -2217,6 +2226,15 @@ internal class ServicesVSResources {
}
}
/// <summary>
/// Looks up a localized string similar to Omit (only for optional parameters).
/// </summary>
internal static string Omit_only_for_optional_parameters {
get {
return ResourceManager.GetString("Omit_only_for_optional_parameters", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Open documents.
/// </summary>
......@@ -2226,6 +2244,15 @@ internal class ServicesVSResources {
}
}
/// <summary>
/// Looks up a localized string similar to Optional with default value:.
/// </summary>
internal static string Optional_with_default_value_colon {
get {
return ResourceManager.GetString("Optional_with_default_value_colon", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Options.
/// </summary>
......@@ -2316,6 +2343,15 @@ internal class ServicesVSResources {
}
}
/// <summary>
/// Looks up a localized string similar to Parameter kind:.
/// </summary>
internal static string Parameter_kind_colon {
get {
return ResourceManager.GetString("Parameter_kind_colon", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Parameter name:.
/// </summary>
......@@ -2907,6 +2943,15 @@ internal class ServicesVSResources {
}
}
/// <summary>
/// Looks up a localized string similar to Required.
/// </summary>
internal static string Required {
get {
return ResourceManager.GetString("Required", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Required Prefix:.
/// </summary>
......@@ -3677,6 +3722,15 @@ internal class ServicesVSResources {
}
}
/// <summary>
/// Looks up a localized string similar to Use named argument.
/// </summary>
internal static string Use_named_argument {
get {
return ResourceManager.GetString("Use_named_argument", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Validating breakpoint location....
/// </summary>
......@@ -3695,6 +3749,15 @@ internal class ServicesVSResources {
}
}
/// <summary>
/// Looks up a localized string similar to Value:.
/// </summary>
internal static string Value_colon {
get {
return ResourceManager.GetString("Value_colon", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Value returned by invocation is implicitly ignored.
/// </summary>
......@@ -3704,6 +3767,15 @@ internal class ServicesVSResources {
}
}
/// <summary>
/// Looks up a localized string similar to Value to inject at call sites:.
/// </summary>
internal static string Value_to_inject_at_call_sites_colon {
get {
return ResourceManager.GetString("Value_to_inject_at_call_sites_colon", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Variable preferences:.
/// </summary>
......
......@@ -1419,4 +1419,30 @@ I agree to all of the foregoing:</value>
<value>Index</value>
<comment>Index of parameter in original signature</comment>
</data>
<data name="IntroduceUndefinedTodoVariables" xml:space="preserve">
<value>Introduce undefined TODO variables</value>
<comment>"TODO" is an indicator that more work should be done at the location where the TODO is inserted</comment>
</data>
<data name="Omit_only_for_optional_parameters" xml:space="preserve">
<value>Omit (only for optional parameters)</value>
</data>
<data name="Optional_with_default_value_colon" xml:space="preserve">
<value>Optional with default value:</value>
</data>
<data name="Parameter_kind_colon" xml:space="preserve">
<value>Parameter kind:</value>
</data>
<data name="Required" xml:space="preserve">
<value>Required</value>
</data>
<data name="Use_named_argument" xml:space="preserve">
<value>Use named argument</value>
<comment>"argument" is a programming term for a value passed to a function</comment>
</data>
<data name="Value_colon" xml:space="preserve">
<value>Value:</value>
</data>
<data name="Value_to_inject_at_call_sites_colon" xml:space="preserve">
<value>Value to inject at call sites:</value>
</data>
</root>
\ No newline at end of file
......@@ -222,6 +222,11 @@
<target state="translated">Rozhraní nemůže mít pole.</target>
<note />
</trans-unit>
<trans-unit id="IntroduceUndefinedTodoVariables">
<source>Introduce undefined TODO variables</source>
<target state="new">Introduce undefined TODO variables</target>
<note>"TODO" is an indicator that more work should be done at the location where the TODO is inserted</note>
</trans-unit>
<trans-unit id="Keep_all_parentheses_in_colon">
<source>Keep all parentheses in:</source>
<target state="translated">Zachovat všechny závorky v:</target>
......@@ -432,11 +437,21 @@
<target state="translated">Neveřejné metody</target>
<note />
</trans-unit>
<trans-unit id="Omit_only_for_optional_parameters">
<source>Omit (only for optional parameters)</source>
<target state="new">Omit (only for optional parameters)</target>
<note />
</trans-unit>
<trans-unit id="Open_documents">
<source>Open documents</source>
<target state="new">Open documents</target>
<note />
</trans-unit>
<trans-unit id="Optional_with_default_value_colon">
<source>Optional with default value:</source>
<target state="new">Optional with default value:</target>
<note />
</trans-unit>
<trans-unit id="Parameter_Details">
<source>Parameter Details</source>
<target state="new">Parameter Details</target>
......@@ -447,6 +462,11 @@
<target state="new">Parameter name:</target>
<note />
</trans-unit>
<trans-unit id="Parameter_kind_colon">
<source>Parameter kind:</source>
<target state="new">Parameter kind:</target>
<note />
</trans-unit>
<trans-unit id="Parameter_name_contains_invalid_characters">
<source>Parameter name contains invalid character(s).</source>
<target state="new">Parameter name contains invalid character(s).</target>
......@@ -527,6 +547,11 @@
<target state="translated">Nahlásit neplatné regulární výrazy</target>
<note />
</trans-unit>
<trans-unit id="Required">
<source>Required</source>
<target state="new">Required</target>
<note />
</trans-unit>
<trans-unit id="Requires_System_HashCode_be_present_in_project">
<source>Requires 'System.HashCode' be present in project</source>
<target state="translated">V projektu se musí nacházet System.HashCode.</target>
......@@ -657,16 +682,31 @@
<target state="translated">Pro místní funkce používat text výrazu</target>
<note />
</trans-unit>
<trans-unit id="Use_named_argument">
<source>Use named argument</source>
<target state="new">Use named argument</target>
<note>"argument" is a programming term for a value passed to a function</note>
</trans-unit>
<trans-unit id="Value_assigned_here_is_never_used">
<source>Value assigned here is never used</source>
<target state="translated">Zde přiřazená hodnota se nikdy nepoužije.</target>
<note />
</trans-unit>
<trans-unit id="Value_colon">
<source>Value:</source>
<target state="new">Value:</target>
<note />
</trans-unit>
<trans-unit id="Value_returned_by_invocation_is_implicitly_ignored">
<source>Value returned by invocation is implicitly ignored</source>
<target state="translated">Hodnota vrácená voláním je implicitně ignorována.</target>
<note />
</trans-unit>
<trans-unit id="Value_to_inject_at_call_sites_colon">
<source>Value to inject at call sites:</source>
<target state="new">Value to inject at call sites:</target>
<note />
</trans-unit>
<trans-unit id="We_notice_you_suspended_0_Reset_keymappings_to_continue_to_navigate_and_refactor">
<source>We notice you suspended '{0}'. Reset keymappings to continue to navigate and refactor.</source>
<target state="translated">Zaznamenali jsme, že jste pozastavili: {0}. Obnovte mapování klávesnice, abyste mohli pokračovat v navigaci a refactoringu.</target>
......
......@@ -222,6 +222,11 @@
<target state="translated">Die Schnittstelle kann kein Feld aufweisen.</target>
<note />
</trans-unit>
<trans-unit id="IntroduceUndefinedTodoVariables">
<source>Introduce undefined TODO variables</source>
<target state="new">Introduce undefined TODO variables</target>
<note>"TODO" is an indicator that more work should be done at the location where the TODO is inserted</note>
</trans-unit>
<trans-unit id="Keep_all_parentheses_in_colon">
<source>Keep all parentheses in:</source>
<target state="translated">Alle Klammern beibehalten in:</target>
......@@ -432,11 +437,21 @@
<target state="translated">Nicht öffentliche Methoden</target>
<note />
</trans-unit>
<trans-unit id="Omit_only_for_optional_parameters">
<source>Omit (only for optional parameters)</source>
<target state="new">Omit (only for optional parameters)</target>
<note />
</trans-unit>
<trans-unit id="Open_documents">
<source>Open documents</source>
<target state="new">Open documents</target>
<note />
</trans-unit>
<trans-unit id="Optional_with_default_value_colon">
<source>Optional with default value:</source>
<target state="new">Optional with default value:</target>
<note />
</trans-unit>
<trans-unit id="Parameter_Details">
<source>Parameter Details</source>
<target state="new">Parameter Details</target>
......@@ -447,6 +462,11 @@
<target state="new">Parameter name:</target>
<note />
</trans-unit>
<trans-unit id="Parameter_kind_colon">
<source>Parameter kind:</source>
<target state="new">Parameter kind:</target>
<note />
</trans-unit>
<trans-unit id="Parameter_name_contains_invalid_characters">
<source>Parameter name contains invalid character(s).</source>
<target state="new">Parameter name contains invalid character(s).</target>
......@@ -527,6 +547,11 @@
<target state="translated">Ungültige reguläre Ausdrücke melden</target>
<note />
</trans-unit>
<trans-unit id="Required">
<source>Required</source>
<target state="new">Required</target>
<note />
</trans-unit>
<trans-unit id="Requires_System_HashCode_be_present_in_project">
<source>Requires 'System.HashCode' be present in project</source>
<target state="translated">"System.HashCode" muss im Projekt vorhanden sein.</target>
......@@ -657,16 +682,31 @@
<target state="translated">Ausdruckskörper für lokale Funktionen verwenden</target>
<note />
</trans-unit>
<trans-unit id="Use_named_argument">
<source>Use named argument</source>
<target state="new">Use named argument</target>
<note>"argument" is a programming term for a value passed to a function</note>
</trans-unit>
<trans-unit id="Value_assigned_here_is_never_used">
<source>Value assigned here is never used</source>
<target state="translated">Der hier zugewiesene Wert wird nie verwendet.</target>
<note />
</trans-unit>
<trans-unit id="Value_colon">
<source>Value:</source>
<target state="new">Value:</target>
<note />
</trans-unit>
<trans-unit id="Value_returned_by_invocation_is_implicitly_ignored">
<source>Value returned by invocation is implicitly ignored</source>
<target state="translated">Der vom Aufruf zurückgegebene Wert wird implizit ignoriert.</target>
<note />
</trans-unit>
<trans-unit id="Value_to_inject_at_call_sites_colon">
<source>Value to inject at call sites:</source>
<target state="new">Value to inject at call sites:</target>
<note />
</trans-unit>
<trans-unit id="We_notice_you_suspended_0_Reset_keymappings_to_continue_to_navigate_and_refactor">
<source>We notice you suspended '{0}'. Reset keymappings to continue to navigate and refactor.</source>
<target state="translated">Wir haben festgestellt, dass Sie "{0}" angehalten haben. Setzen Sie die Tastenzuordnungen zurück, um Navigation und Umgestaltung fortzusetzen.</target>
......
......@@ -222,6 +222,11 @@
<target state="translated">La interfaz no puede tener campos.</target>
<note />
</trans-unit>
<trans-unit id="IntroduceUndefinedTodoVariables">
<source>Introduce undefined TODO variables</source>
<target state="new">Introduce undefined TODO variables</target>
<note>"TODO" is an indicator that more work should be done at the location where the TODO is inserted</note>
</trans-unit>
<trans-unit id="Keep_all_parentheses_in_colon">
<source>Keep all parentheses in:</source>
<target state="translated">Mantener todos los paréntesis en:</target>
......@@ -432,11 +437,21 @@
<target state="translated">Miembros no públicos</target>
<note />
</trans-unit>
<trans-unit id="Omit_only_for_optional_parameters">
<source>Omit (only for optional parameters)</source>
<target state="new">Omit (only for optional parameters)</target>
<note />
</trans-unit>
<trans-unit id="Open_documents">
<source>Open documents</source>
<target state="new">Open documents</target>
<note />
</trans-unit>
<trans-unit id="Optional_with_default_value_colon">
<source>Optional with default value:</source>
<target state="new">Optional with default value:</target>
<note />
</trans-unit>
<trans-unit id="Parameter_Details">
<source>Parameter Details</source>
<target state="new">Parameter Details</target>
......@@ -447,6 +462,11 @@
<target state="new">Parameter name:</target>
<note />
</trans-unit>
<trans-unit id="Parameter_kind_colon">
<source>Parameter kind:</source>
<target state="new">Parameter kind:</target>
<note />
</trans-unit>
<trans-unit id="Parameter_name_contains_invalid_characters">
<source>Parameter name contains invalid character(s).</source>
<target state="new">Parameter name contains invalid character(s).</target>
......@@ -527,6 +547,11 @@
<target state="translated">Notificar expresiones regulares no válidas</target>
<note />
</trans-unit>
<trans-unit id="Required">
<source>Required</source>
<target state="new">Required</target>
<note />
</trans-unit>
<trans-unit id="Requires_System_HashCode_be_present_in_project">
<source>Requires 'System.HashCode' be present in project</source>
<target state="translated">Requiere que "System.HashCode" esté presente en el proyecto</target>
......@@ -657,16 +682,31 @@
<target state="translated">Usar cuerpo de expresión para funciones locales</target>
<note />
</trans-unit>
<trans-unit id="Use_named_argument">
<source>Use named argument</source>
<target state="new">Use named argument</target>
<note>"argument" is a programming term for a value passed to a function</note>
</trans-unit>
<trans-unit id="Value_assigned_here_is_never_used">
<source>Value assigned here is never used</source>
<target state="translated">El valor asignado aquí no se usa nunca</target>
<note />
</trans-unit>
<trans-unit id="Value_colon">
<source>Value:</source>
<target state="new">Value:</target>
<note />
</trans-unit>
<trans-unit id="Value_returned_by_invocation_is_implicitly_ignored">
<source>Value returned by invocation is implicitly ignored</source>
<target state="translated">El valor devuelto por la invocación se omite implícitamente</target>
<note />
</trans-unit>
<trans-unit id="Value_to_inject_at_call_sites_colon">
<source>Value to inject at call sites:</source>
<target state="new">Value to inject at call sites:</target>
<note />
</trans-unit>
<trans-unit id="We_notice_you_suspended_0_Reset_keymappings_to_continue_to_navigate_and_refactor">
<source>We notice you suspended '{0}'. Reset keymappings to continue to navigate and refactor.</source>
<target state="translated">Observamos que ha suspendido "{0}". Restablezca las asignaciones de teclado para continuar navegando y refactorizando.</target>
......
......@@ -222,6 +222,11 @@
<target state="translated">L'interface ne peut pas avoir de champ.</target>
<note />
</trans-unit>
<trans-unit id="IntroduceUndefinedTodoVariables">
<source>Introduce undefined TODO variables</source>
<target state="new">Introduce undefined TODO variables</target>
<note>"TODO" is an indicator that more work should be done at the location where the TODO is inserted</note>
</trans-unit>
<trans-unit id="Keep_all_parentheses_in_colon">
<source>Keep all parentheses in:</source>
<target state="translated">Conserver toutes les parenthèses dans :</target>
......@@ -432,11 +437,21 @@
<target state="translated">Méthodes non publiques</target>
<note />
</trans-unit>
<trans-unit id="Omit_only_for_optional_parameters">
<source>Omit (only for optional parameters)</source>
<target state="new">Omit (only for optional parameters)</target>
<note />
</trans-unit>
<trans-unit id="Open_documents">
<source>Open documents</source>
<target state="new">Open documents</target>
<note />
</trans-unit>
<trans-unit id="Optional_with_default_value_colon">
<source>Optional with default value:</source>
<target state="new">Optional with default value:</target>
<note />
</trans-unit>
<trans-unit id="Parameter_Details">
<source>Parameter Details</source>
<target state="new">Parameter Details</target>
......@@ -447,6 +462,11 @@
<target state="new">Parameter name:</target>
<note />
</trans-unit>
<trans-unit id="Parameter_kind_colon">
<source>Parameter kind:</source>
<target state="new">Parameter kind:</target>
<note />
</trans-unit>
<trans-unit id="Parameter_name_contains_invalid_characters">
<source>Parameter name contains invalid character(s).</source>
<target state="new">Parameter name contains invalid character(s).</target>
......@@ -527,6 +547,11 @@
<target state="translated">Signaler les expressions régulières non valides</target>
<note />
</trans-unit>
<trans-unit id="Required">
<source>Required</source>
<target state="new">Required</target>
<note />
</trans-unit>
<trans-unit id="Requires_System_HashCode_be_present_in_project">
<source>Requires 'System.HashCode' be present in project</source>
<target state="translated">Nécessite la présence de 'System.HashCode' dans le projet</target>
......@@ -657,16 +682,31 @@
<target state="translated">Utiliser un corps d'expression pour les fonctions locales</target>
<note />
</trans-unit>
<trans-unit id="Use_named_argument">
<source>Use named argument</source>
<target state="new">Use named argument</target>
<note>"argument" is a programming term for a value passed to a function</note>
</trans-unit>
<trans-unit id="Value_assigned_here_is_never_used">
<source>Value assigned here is never used</source>
<target state="translated">La valeur affectée ici n'est jamais utilisée</target>
<note />
</trans-unit>
<trans-unit id="Value_colon">
<source>Value:</source>
<target state="new">Value:</target>
<note />
</trans-unit>
<trans-unit id="Value_returned_by_invocation_is_implicitly_ignored">
<source>Value returned by invocation is implicitly ignored</source>
<target state="translated">La valeur retournée par invocation est implicitement ignorée</target>
<note />
</trans-unit>
<trans-unit id="Value_to_inject_at_call_sites_colon">
<source>Value to inject at call sites:</source>
<target state="new">Value to inject at call sites:</target>
<note />
</trans-unit>
<trans-unit id="We_notice_you_suspended_0_Reset_keymappings_to_continue_to_navigate_and_refactor">
<source>We notice you suspended '{0}'. Reset keymappings to continue to navigate and refactor.</source>
<target state="translated">Nous avons remarqué que vous avez interrompu '{0}'. Réinitialisez la configuration du clavier pour continuer à naviguer et à refactoriser.</target>
......
......@@ -222,6 +222,11 @@
<target state="translated">L'interfaccia non può contenere il campo.</target>
<note />
</trans-unit>
<trans-unit id="IntroduceUndefinedTodoVariables">
<source>Introduce undefined TODO variables</source>
<target state="new">Introduce undefined TODO variables</target>
<note>"TODO" is an indicator that more work should be done at the location where the TODO is inserted</note>
</trans-unit>
<trans-unit id="Keep_all_parentheses_in_colon">
<source>Keep all parentheses in:</source>
<target state="translated">Mantieni tutte le parentesi in:</target>
......@@ -432,11 +437,21 @@
<target state="translated">Metodi non pubblici</target>
<note />
</trans-unit>
<trans-unit id="Omit_only_for_optional_parameters">
<source>Omit (only for optional parameters)</source>
<target state="new">Omit (only for optional parameters)</target>
<note />
</trans-unit>
<trans-unit id="Open_documents">
<source>Open documents</source>
<target state="new">Open documents</target>
<note />
</trans-unit>
<trans-unit id="Optional_with_default_value_colon">
<source>Optional with default value:</source>
<target state="new">Optional with default value:</target>
<note />
</trans-unit>
<trans-unit id="Parameter_Details">
<source>Parameter Details</source>
<target state="new">Parameter Details</target>
......@@ -447,6 +462,11 @@
<target state="new">Parameter name:</target>
<note />
</trans-unit>
<trans-unit id="Parameter_kind_colon">
<source>Parameter kind:</source>
<target state="new">Parameter kind:</target>
<note />
</trans-unit>
<trans-unit id="Parameter_name_contains_invalid_characters">
<source>Parameter name contains invalid character(s).</source>
<target state="new">Parameter name contains invalid character(s).</target>
......@@ -527,6 +547,11 @@
<target state="translated">Segnala espressioni regolari non valide</target>
<note />
</trans-unit>
<trans-unit id="Required">
<source>Required</source>
<target state="new">Required</target>
<note />
</trans-unit>
<trans-unit id="Requires_System_HashCode_be_present_in_project">
<source>Requires 'System.HashCode' be present in project</source>
<target state="translated">Richiede la presenza di 'System.HashCode' nel progetto</target>
......@@ -657,16 +682,31 @@
<target state="translated">Usa il corpo dell'espressione per le funzioni locali</target>
<note />
</trans-unit>
<trans-unit id="Use_named_argument">
<source>Use named argument</source>
<target state="new">Use named argument</target>
<note>"argument" is a programming term for a value passed to a function</note>
</trans-unit>
<trans-unit id="Value_assigned_here_is_never_used">
<source>Value assigned here is never used</source>
<target state="translated">Il valore assegnato qui non viene mai usato</target>
<note />
</trans-unit>
<trans-unit id="Value_colon">
<source>Value:</source>
<target state="new">Value:</target>
<note />
</trans-unit>
<trans-unit id="Value_returned_by_invocation_is_implicitly_ignored">
<source>Value returned by invocation is implicitly ignored</source>
<target state="translated">Il valore restituito dalla chiamata viene ignorato in modo implicito</target>
<note />
</trans-unit>
<trans-unit id="Value_to_inject_at_call_sites_colon">
<source>Value to inject at call sites:</source>
<target state="new">Value to inject at call sites:</target>
<note />
</trans-unit>
<trans-unit id="We_notice_you_suspended_0_Reset_keymappings_to_continue_to_navigate_and_refactor">
<source>We notice you suspended '{0}'. Reset keymappings to continue to navigate and refactor.</source>
<target state="translated">È stato notato che '{0}' è stato sospeso. Reimpostare i mapping dei tasti per continuare a esplorare e a eseguire il refactoring.</target>
......
......@@ -222,6 +222,11 @@
<target state="translated">インターフェイスにフィールドを含めることはできません。</target>
<note />
</trans-unit>
<trans-unit id="IntroduceUndefinedTodoVariables">
<source>Introduce undefined TODO variables</source>
<target state="new">Introduce undefined TODO variables</target>
<note>"TODO" is an indicator that more work should be done at the location where the TODO is inserted</note>
</trans-unit>
<trans-unit id="Keep_all_parentheses_in_colon">
<source>Keep all parentheses in:</source>
<target state="translated">すべてのかっこを保持:</target>
......@@ -432,11 +437,21 @@
<target state="translated">パブリックでないメソッド</target>
<note />
</trans-unit>
<trans-unit id="Omit_only_for_optional_parameters">
<source>Omit (only for optional parameters)</source>
<target state="new">Omit (only for optional parameters)</target>
<note />
</trans-unit>
<trans-unit id="Open_documents">
<source>Open documents</source>
<target state="new">Open documents</target>
<note />
</trans-unit>
<trans-unit id="Optional_with_default_value_colon">
<source>Optional with default value:</source>
<target state="new">Optional with default value:</target>
<note />
</trans-unit>
<trans-unit id="Parameter_Details">
<source>Parameter Details</source>
<target state="new">Parameter Details</target>
......@@ -447,6 +462,11 @@
<target state="new">Parameter name:</target>
<note />
</trans-unit>
<trans-unit id="Parameter_kind_colon">
<source>Parameter kind:</source>
<target state="new">Parameter kind:</target>
<note />
</trans-unit>
<trans-unit id="Parameter_name_contains_invalid_characters">
<source>Parameter name contains invalid character(s).</source>
<target state="new">Parameter name contains invalid character(s).</target>
......@@ -527,6 +547,11 @@
<target state="translated">無効な正規表現を報告</target>
<note />
</trans-unit>
<trans-unit id="Required">
<source>Required</source>
<target state="new">Required</target>
<note />
</trans-unit>
<trans-unit id="Requires_System_HashCode_be_present_in_project">
<source>Requires 'System.HashCode' be present in project</source>
<target state="translated">'System.HashCode' がプロジェクトに存在する必要があります</target>
......@@ -657,16 +682,31 @@
<target state="translated">ローカル関数に式本体を使用します</target>
<note />
</trans-unit>
<trans-unit id="Use_named_argument">
<source>Use named argument</source>
<target state="new">Use named argument</target>
<note>"argument" is a programming term for a value passed to a function</note>
</trans-unit>
<trans-unit id="Value_assigned_here_is_never_used">
<source>Value assigned here is never used</source>
<target state="translated">ここで割り当てた値は一度も使用されません</target>
<note />
</trans-unit>
<trans-unit id="Value_colon">
<source>Value:</source>
<target state="new">Value:</target>
<note />
</trans-unit>
<trans-unit id="Value_returned_by_invocation_is_implicitly_ignored">
<source>Value returned by invocation is implicitly ignored</source>
<target state="translated">呼び出しによって返された値が暗黙的に無視されます</target>
<note />
</trans-unit>
<trans-unit id="Value_to_inject_at_call_sites_colon">
<source>Value to inject at call sites:</source>
<target state="new">Value to inject at call sites:</target>
<note />
</trans-unit>
<trans-unit id="We_notice_you_suspended_0_Reset_keymappings_to_continue_to_navigate_and_refactor">
<source>We notice you suspended '{0}'. Reset keymappings to continue to navigate and refactor.</source>
<target state="translated">'{0}' が中断されました。キーマップをリセットして、移動とリファクターを続行してください。</target>
......
......@@ -222,6 +222,11 @@
<target state="translated">인터페이스에는 필드가 포함될 수 없습니다.</target>
<note />
</trans-unit>
<trans-unit id="IntroduceUndefinedTodoVariables">
<source>Introduce undefined TODO variables</source>
<target state="new">Introduce undefined TODO variables</target>
<note>"TODO" is an indicator that more work should be done at the location where the TODO is inserted</note>
</trans-unit>
<trans-unit id="Keep_all_parentheses_in_colon">
<source>Keep all parentheses in:</source>
<target state="translated">모든 괄호 유지:</target>
......@@ -432,11 +437,21 @@
<target state="translated">public이 아닌 메서드</target>
<note />
</trans-unit>
<trans-unit id="Omit_only_for_optional_parameters">
<source>Omit (only for optional parameters)</source>
<target state="new">Omit (only for optional parameters)</target>
<note />
</trans-unit>
<trans-unit id="Open_documents">
<source>Open documents</source>
<target state="new">Open documents</target>
<note />
</trans-unit>
<trans-unit id="Optional_with_default_value_colon">
<source>Optional with default value:</source>
<target state="new">Optional with default value:</target>
<note />
</trans-unit>
<trans-unit id="Parameter_Details">
<source>Parameter Details</source>
<target state="new">Parameter Details</target>
......@@ -447,6 +462,11 @@
<target state="new">Parameter name:</target>
<note />
</trans-unit>
<trans-unit id="Parameter_kind_colon">
<source>Parameter kind:</source>
<target state="new">Parameter kind:</target>
<note />
</trans-unit>
<trans-unit id="Parameter_name_contains_invalid_characters">
<source>Parameter name contains invalid character(s).</source>
<target state="new">Parameter name contains invalid character(s).</target>
......@@ -527,6 +547,11 @@
<target state="translated">잘못된 정규식 보고</target>
<note />
</trans-unit>
<trans-unit id="Required">
<source>Required</source>
<target state="new">Required</target>
<note />
</trans-unit>
<trans-unit id="Requires_System_HashCode_be_present_in_project">
<source>Requires 'System.HashCode' be present in project</source>
<target state="translated">'System.HashCode'가 프로젝트에 있어야 합니다.</target>
......@@ -657,16 +682,31 @@
<target state="translated">로컬 함수에 식 본문 사용</target>
<note />
</trans-unit>
<trans-unit id="Use_named_argument">
<source>Use named argument</source>
<target state="new">Use named argument</target>
<note>"argument" is a programming term for a value passed to a function</note>
</trans-unit>
<trans-unit id="Value_assigned_here_is_never_used">
<source>Value assigned here is never used</source>
<target state="translated">여기에 할당된 값은 사용되지 않습니다.</target>
<note />
</trans-unit>
<trans-unit id="Value_colon">
<source>Value:</source>
<target state="new">Value:</target>
<note />
</trans-unit>
<trans-unit id="Value_returned_by_invocation_is_implicitly_ignored">
<source>Value returned by invocation is implicitly ignored</source>
<target state="translated">호출로 반환된 값은 암시적으로 무시됩니다.</target>
<note />
</trans-unit>
<trans-unit id="Value_to_inject_at_call_sites_colon">
<source>Value to inject at call sites:</source>
<target state="new">Value to inject at call sites:</target>
<note />
</trans-unit>
<trans-unit id="We_notice_you_suspended_0_Reset_keymappings_to_continue_to_navigate_and_refactor">
<source>We notice you suspended '{0}'. Reset keymappings to continue to navigate and refactor.</source>
<target state="translated">'{0}'을(를) 일시 중단하신 것으로 보입니다. 계속 탐색하고 리팩터링하려면 키 매핑을 다시 설정하세요.</target>
......
......@@ -222,6 +222,11 @@
<target state="translated">Interfejs nie może mieć pola.</target>
<note />
</trans-unit>
<trans-unit id="IntroduceUndefinedTodoVariables">
<source>Introduce undefined TODO variables</source>
<target state="new">Introduce undefined TODO variables</target>
<note>"TODO" is an indicator that more work should be done at the location where the TODO is inserted</note>
</trans-unit>
<trans-unit id="Keep_all_parentheses_in_colon">
<source>Keep all parentheses in:</source>
<target state="translated">Zachowaj wszystkie nawiasy w:</target>
......@@ -432,11 +437,21 @@
<target state="translated">Metody niepubliczne</target>
<note />
</trans-unit>
<trans-unit id="Omit_only_for_optional_parameters">
<source>Omit (only for optional parameters)</source>
<target state="new">Omit (only for optional parameters)</target>
<note />
</trans-unit>
<trans-unit id="Open_documents">
<source>Open documents</source>
<target state="new">Open documents</target>
<note />
</trans-unit>
<trans-unit id="Optional_with_default_value_colon">
<source>Optional with default value:</source>
<target state="new">Optional with default value:</target>
<note />
</trans-unit>
<trans-unit id="Parameter_Details">
<source>Parameter Details</source>
<target state="new">Parameter Details</target>
......@@ -447,6 +462,11 @@
<target state="new">Parameter name:</target>
<note />
</trans-unit>
<trans-unit id="Parameter_kind_colon">
<source>Parameter kind:</source>
<target state="new">Parameter kind:</target>
<note />
</trans-unit>
<trans-unit id="Parameter_name_contains_invalid_characters">
<source>Parameter name contains invalid character(s).</source>
<target state="new">Parameter name contains invalid character(s).</target>
......@@ -527,6 +547,11 @@
<target state="translated">Raportuj nieprawidłowe wyrażenia regularne</target>
<note />
</trans-unit>
<trans-unit id="Required">
<source>Required</source>
<target state="new">Required</target>
<note />
</trans-unit>
<trans-unit id="Requires_System_HashCode_be_present_in_project">
<source>Requires 'System.HashCode' be present in project</source>
<target state="translated">Wymaga, aby element „System.HashCode” był obecny w projekcie</target>
......@@ -657,16 +682,31 @@
<target state="translated">Użyj treści wyrażenia dla funkcji lokalnych</target>
<note />
</trans-unit>
<trans-unit id="Use_named_argument">
<source>Use named argument</source>
<target state="new">Use named argument</target>
<note>"argument" is a programming term for a value passed to a function</note>
</trans-unit>
<trans-unit id="Value_assigned_here_is_never_used">
<source>Value assigned here is never used</source>
<target state="translated">Przypisana tu wartość nigdy nie jest używana</target>
<note />
</trans-unit>
<trans-unit id="Value_colon">
<source>Value:</source>
<target state="new">Value:</target>
<note />
</trans-unit>
<trans-unit id="Value_returned_by_invocation_is_implicitly_ignored">
<source>Value returned by invocation is implicitly ignored</source>
<target state="translated">Wartość zwracana przez wywołanie jest niejawnie ignorowana</target>
<note />
</trans-unit>
<trans-unit id="Value_to_inject_at_call_sites_colon">
<source>Value to inject at call sites:</source>
<target state="new">Value to inject at call sites:</target>
<note />
</trans-unit>
<trans-unit id="We_notice_you_suspended_0_Reset_keymappings_to_continue_to_navigate_and_refactor">
<source>We notice you suspended '{0}'. Reset keymappings to continue to navigate and refactor.</source>
<target state="translated">Zauważyliśmy, że element „{0}” został przez Ciebie wstrzymany. Zresetuj mapowanie klawiszy, aby kontynuować nawigowanie i refaktoryzację.</target>
......
......@@ -222,6 +222,11 @@
<target state="translated">A interface não pode ter campo.</target>
<note />
</trans-unit>
<trans-unit id="IntroduceUndefinedTodoVariables">
<source>Introduce undefined TODO variables</source>
<target state="new">Introduce undefined TODO variables</target>
<note>"TODO" is an indicator that more work should be done at the location where the TODO is inserted</note>
</trans-unit>
<trans-unit id="Keep_all_parentheses_in_colon">
<source>Keep all parentheses in:</source>
<target state="translated">Mantenha todos os parênteses em:</target>
......@@ -432,11 +437,21 @@
<target state="translated">Métodos não públicos</target>
<note />
</trans-unit>
<trans-unit id="Omit_only_for_optional_parameters">
<source>Omit (only for optional parameters)</source>
<target state="new">Omit (only for optional parameters)</target>
<note />
</trans-unit>
<trans-unit id="Open_documents">
<source>Open documents</source>
<target state="new">Open documents</target>
<note />
</trans-unit>
<trans-unit id="Optional_with_default_value_colon">
<source>Optional with default value:</source>
<target state="new">Optional with default value:</target>
<note />
</trans-unit>
<trans-unit id="Parameter_Details">
<source>Parameter Details</source>
<target state="new">Parameter Details</target>
......@@ -447,6 +462,11 @@
<target state="new">Parameter name:</target>
<note />
</trans-unit>
<trans-unit id="Parameter_kind_colon">
<source>Parameter kind:</source>
<target state="new">Parameter kind:</target>
<note />
</trans-unit>
<trans-unit id="Parameter_name_contains_invalid_characters">
<source>Parameter name contains invalid character(s).</source>
<target state="new">Parameter name contains invalid character(s).</target>
......@@ -527,6 +547,11 @@
<target state="translated">Relatar expressões regulares inválidas</target>
<note />
</trans-unit>
<trans-unit id="Required">
<source>Required</source>
<target state="new">Required</target>
<note />
</trans-unit>
<trans-unit id="Requires_System_HashCode_be_present_in_project">
<source>Requires 'System.HashCode' be present in project</source>
<target state="translated">Requer que 'System.HashCode' esteja presente no projeto</target>
......@@ -657,16 +682,31 @@
<target state="translated">Usar o corpo da expressão para funções locais</target>
<note />
</trans-unit>
<trans-unit id="Use_named_argument">
<source>Use named argument</source>
<target state="new">Use named argument</target>
<note>"argument" is a programming term for a value passed to a function</note>
</trans-unit>
<trans-unit id="Value_assigned_here_is_never_used">
<source>Value assigned here is never used</source>
<target state="translated">O valor atribuído aqui nunca é usado</target>
<note />
</trans-unit>
<trans-unit id="Value_colon">
<source>Value:</source>
<target state="new">Value:</target>
<note />
</trans-unit>
<trans-unit id="Value_returned_by_invocation_is_implicitly_ignored">
<source>Value returned by invocation is implicitly ignored</source>
<target state="translated">O valor retornado por chamada é implicitamente ignorado</target>
<note />
</trans-unit>
<trans-unit id="Value_to_inject_at_call_sites_colon">
<source>Value to inject at call sites:</source>
<target state="new">Value to inject at call sites:</target>
<note />
</trans-unit>
<trans-unit id="We_notice_you_suspended_0_Reset_keymappings_to_continue_to_navigate_and_refactor">
<source>We notice you suspended '{0}'. Reset keymappings to continue to navigate and refactor.</source>
<target state="translated">Notamos que você suspendeu '{0}'. Redefina os mapeamentos de teclas para continuar a navegar e refatorar.</target>
......
......@@ -222,6 +222,11 @@
<target state="translated">Интерфейс не может содержать поле.</target>
<note />
</trans-unit>
<trans-unit id="IntroduceUndefinedTodoVariables">
<source>Introduce undefined TODO variables</source>
<target state="new">Introduce undefined TODO variables</target>
<note>"TODO" is an indicator that more work should be done at the location where the TODO is inserted</note>
</trans-unit>
<trans-unit id="Keep_all_parentheses_in_colon">
<source>Keep all parentheses in:</source>
<target state="translated">Сохранять все круглые скобки в:</target>
......@@ -432,11 +437,21 @@
<target state="translated">Методы, не являющиеся открытыми</target>
<note />
</trans-unit>
<trans-unit id="Omit_only_for_optional_parameters">
<source>Omit (only for optional parameters)</source>
<target state="new">Omit (only for optional parameters)</target>
<note />
</trans-unit>
<trans-unit id="Open_documents">
<source>Open documents</source>
<target state="new">Open documents</target>
<note />
</trans-unit>
<trans-unit id="Optional_with_default_value_colon">
<source>Optional with default value:</source>
<target state="new">Optional with default value:</target>
<note />
</trans-unit>
<trans-unit id="Parameter_Details">
<source>Parameter Details</source>
<target state="new">Parameter Details</target>
......@@ -447,6 +462,11 @@
<target state="new">Parameter name:</target>
<note />
</trans-unit>
<trans-unit id="Parameter_kind_colon">
<source>Parameter kind:</source>
<target state="new">Parameter kind:</target>
<note />
</trans-unit>
<trans-unit id="Parameter_name_contains_invalid_characters">
<source>Parameter name contains invalid character(s).</source>
<target state="new">Parameter name contains invalid character(s).</target>
......@@ -527,6 +547,11 @@
<target state="translated">Сообщать о недопустимых регулярных выражениях</target>
<note />
</trans-unit>
<trans-unit id="Required">
<source>Required</source>
<target state="new">Required</target>
<note />
</trans-unit>
<trans-unit id="Requires_System_HashCode_be_present_in_project">
<source>Requires 'System.HashCode' be present in project</source>
<target state="translated">Требуется наличие "System.HashCode" в проекте.</target>
......@@ -657,16 +682,31 @@
<target state="translated">Использовать тело выражения для локальных функций</target>
<note />
</trans-unit>
<trans-unit id="Use_named_argument">
<source>Use named argument</source>
<target state="new">Use named argument</target>
<note>"argument" is a programming term for a value passed to a function</note>
</trans-unit>
<trans-unit id="Value_assigned_here_is_never_used">
<source>Value assigned here is never used</source>
<target state="translated">Заданное здесь значение не используется.</target>
<note />
</trans-unit>
<trans-unit id="Value_colon">
<source>Value:</source>
<target state="new">Value:</target>
<note />
</trans-unit>
<trans-unit id="Value_returned_by_invocation_is_implicitly_ignored">
<source>Value returned by invocation is implicitly ignored</source>
<target state="translated">Значение, возвращаемое вызовом, неявным образом игнорируется.</target>
<note />
</trans-unit>
<trans-unit id="Value_to_inject_at_call_sites_colon">
<source>Value to inject at call sites:</source>
<target state="new">Value to inject at call sites:</target>
<note />
</trans-unit>
<trans-unit id="We_notice_you_suspended_0_Reset_keymappings_to_continue_to_navigate_and_refactor">
<source>We notice you suspended '{0}'. Reset keymappings to continue to navigate and refactor.</source>
<target state="translated">Вы приостановили действие "{0}". Сбросьте назначения клавиш, чтобы продолжить работу и рефакторинг.</target>
......
......@@ -222,6 +222,11 @@
<target state="translated">Arabirimde alan olamaz.</target>
<note />
</trans-unit>
<trans-unit id="IntroduceUndefinedTodoVariables">
<source>Introduce undefined TODO variables</source>
<target state="new">Introduce undefined TODO variables</target>
<note>"TODO" is an indicator that more work should be done at the location where the TODO is inserted</note>
</trans-unit>
<trans-unit id="Keep_all_parentheses_in_colon">
<source>Keep all parentheses in:</source>
<target state="translated">Şunun içindeki tüm parantezleri tut:</target>
......@@ -432,11 +437,21 @@
<target state="translated">Ortak olmayan yöntemler</target>
<note />
</trans-unit>
<trans-unit id="Omit_only_for_optional_parameters">
<source>Omit (only for optional parameters)</source>
<target state="new">Omit (only for optional parameters)</target>
<note />
</trans-unit>
<trans-unit id="Open_documents">
<source>Open documents</source>
<target state="new">Open documents</target>
<note />
</trans-unit>
<trans-unit id="Optional_with_default_value_colon">
<source>Optional with default value:</source>
<target state="new">Optional with default value:</target>
<note />
</trans-unit>
<trans-unit id="Parameter_Details">
<source>Parameter Details</source>
<target state="new">Parameter Details</target>
......@@ -447,6 +462,11 @@
<target state="new">Parameter name:</target>
<note />
</trans-unit>
<trans-unit id="Parameter_kind_colon">
<source>Parameter kind:</source>
<target state="new">Parameter kind:</target>
<note />
</trans-unit>
<trans-unit id="Parameter_name_contains_invalid_characters">
<source>Parameter name contains invalid character(s).</source>
<target state="new">Parameter name contains invalid character(s).</target>
......@@ -527,6 +547,11 @@
<target state="translated">Geçersiz normal ifadeleri bildir</target>
<note />
</trans-unit>
<trans-unit id="Required">
<source>Required</source>
<target state="new">Required</target>
<note />
</trans-unit>
<trans-unit id="Requires_System_HashCode_be_present_in_project">
<source>Requires 'System.HashCode' be present in project</source>
<target state="translated">Projede 'System.HashCode' bulunmasını gerektirir</target>
......@@ -657,16 +682,31 @@
<target state="translated">Yerel işlevler için ifade gövdesi kullan</target>
<note />
</trans-unit>
<trans-unit id="Use_named_argument">
<source>Use named argument</source>
<target state="new">Use named argument</target>
<note>"argument" is a programming term for a value passed to a function</note>
</trans-unit>
<trans-unit id="Value_assigned_here_is_never_used">
<source>Value assigned here is never used</source>
<target state="translated">Burada atanan değer hiçbir zaman kullanılmadı</target>
<note />
</trans-unit>
<trans-unit id="Value_colon">
<source>Value:</source>
<target state="new">Value:</target>
<note />
</trans-unit>
<trans-unit id="Value_returned_by_invocation_is_implicitly_ignored">
<source>Value returned by invocation is implicitly ignored</source>
<target state="translated">Çağrı ile döndürülen değer örtük olarak yok sayıldı</target>
<note />
</trans-unit>
<trans-unit id="Value_to_inject_at_call_sites_colon">
<source>Value to inject at call sites:</source>
<target state="new">Value to inject at call sites:</target>
<note />
</trans-unit>
<trans-unit id="We_notice_you_suspended_0_Reset_keymappings_to_continue_to_navigate_and_refactor">
<source>We notice you suspended '{0}'. Reset keymappings to continue to navigate and refactor.</source>
<target state="translated">'{0}' öğesini askıya aldığınızı fark ettik. Gezintiye ve yeniden düzenlemeye devam etmek için tuş eşlemelerini sıfırlayın.</target>
......
......@@ -222,6 +222,11 @@
<target state="translated">接口不可具有字段。</target>
<note />
</trans-unit>
<trans-unit id="IntroduceUndefinedTodoVariables">
<source>Introduce undefined TODO variables</source>
<target state="new">Introduce undefined TODO variables</target>
<note>"TODO" is an indicator that more work should be done at the location where the TODO is inserted</note>
</trans-unit>
<trans-unit id="Keep_all_parentheses_in_colon">
<source>Keep all parentheses in:</source>
<target state="translated">保留所有括号:</target>
......@@ -432,11 +437,21 @@
<target state="translated">非公共成员</target>
<note />
</trans-unit>
<trans-unit id="Omit_only_for_optional_parameters">
<source>Omit (only for optional parameters)</source>
<target state="new">Omit (only for optional parameters)</target>
<note />
</trans-unit>
<trans-unit id="Open_documents">
<source>Open documents</source>
<target state="new">Open documents</target>
<note />
</trans-unit>
<trans-unit id="Optional_with_default_value_colon">
<source>Optional with default value:</source>
<target state="new">Optional with default value:</target>
<note />
</trans-unit>
<trans-unit id="Parameter_Details">
<source>Parameter Details</source>
<target state="new">Parameter Details</target>
......@@ -447,6 +462,11 @@
<target state="new">Parameter name:</target>
<note />
</trans-unit>
<trans-unit id="Parameter_kind_colon">
<source>Parameter kind:</source>
<target state="new">Parameter kind:</target>
<note />
</trans-unit>
<trans-unit id="Parameter_name_contains_invalid_characters">
<source>Parameter name contains invalid character(s).</source>
<target state="new">Parameter name contains invalid character(s).</target>
......@@ -527,6 +547,11 @@
<target state="translated">报告无效的正规表达式</target>
<note />
</trans-unit>
<trans-unit id="Required">
<source>Required</source>
<target state="new">Required</target>
<note />
</trans-unit>
<trans-unit id="Requires_System_HashCode_be_present_in_project">
<source>Requires 'System.HashCode' be present in project</source>
<target state="translated">要求项目中存在 "System.HashCode"</target>
......@@ -657,16 +682,31 @@
<target state="translated">使用本地函数的表达式主体</target>
<note />
</trans-unit>
<trans-unit id="Use_named_argument">
<source>Use named argument</source>
<target state="new">Use named argument</target>
<note>"argument" is a programming term for a value passed to a function</note>
</trans-unit>
<trans-unit id="Value_assigned_here_is_never_used">
<source>Value assigned here is never used</source>
<target state="translated">此处分配的值从未使用过</target>
<note />
</trans-unit>
<trans-unit id="Value_colon">
<source>Value:</source>
<target state="new">Value:</target>
<note />
</trans-unit>
<trans-unit id="Value_returned_by_invocation_is_implicitly_ignored">
<source>Value returned by invocation is implicitly ignored</source>
<target state="translated">已隐式忽略调用所返回的值</target>
<note />
</trans-unit>
<trans-unit id="Value_to_inject_at_call_sites_colon">
<source>Value to inject at call sites:</source>
<target state="new">Value to inject at call sites:</target>
<note />
</trans-unit>
<trans-unit id="We_notice_you_suspended_0_Reset_keymappings_to_continue_to_navigate_and_refactor">
<source>We notice you suspended '{0}'. Reset keymappings to continue to navigate and refactor.</source>
<target state="translated">我们注意到你挂起了“{0}”。请重置项映射以继续导航和重构。</target>
......
......@@ -222,6 +222,11 @@
<target state="translated">介面不得具有欄位。</target>
<note />
</trans-unit>
<trans-unit id="IntroduceUndefinedTodoVariables">
<source>Introduce undefined TODO variables</source>
<target state="new">Introduce undefined TODO variables</target>
<note>"TODO" is an indicator that more work should be done at the location where the TODO is inserted</note>
</trans-unit>
<trans-unit id="Keep_all_parentheses_in_colon">
<source>Keep all parentheses in:</source>
<target state="translated">以下情況保留所有括號:</target>
......@@ -432,11 +437,21 @@
<target state="translated">非公用方法</target>
<note />
</trans-unit>
<trans-unit id="Omit_only_for_optional_parameters">
<source>Omit (only for optional parameters)</source>
<target state="new">Omit (only for optional parameters)</target>
<note />
</trans-unit>
<trans-unit id="Open_documents">
<source>Open documents</source>
<target state="new">Open documents</target>
<note />
</trans-unit>
<trans-unit id="Optional_with_default_value_colon">
<source>Optional with default value:</source>
<target state="new">Optional with default value:</target>
<note />
</trans-unit>
<trans-unit id="Parameter_Details">
<source>Parameter Details</source>
<target state="new">Parameter Details</target>
......@@ -447,6 +462,11 @@
<target state="new">Parameter name:</target>
<note />
</trans-unit>
<trans-unit id="Parameter_kind_colon">
<source>Parameter kind:</source>
<target state="new">Parameter kind:</target>
<note />
</trans-unit>
<trans-unit id="Parameter_name_contains_invalid_characters">
<source>Parameter name contains invalid character(s).</source>
<target state="new">Parameter name contains invalid character(s).</target>
......@@ -527,6 +547,11 @@
<target state="translated">回報無效的規則運算式</target>
<note />
</trans-unit>
<trans-unit id="Required">
<source>Required</source>
<target state="new">Required</target>
<note />
</trans-unit>
<trans-unit id="Requires_System_HashCode_be_present_in_project">
<source>Requires 'System.HashCode' be present in project</source>
<target state="translated">專案中必須有 'System.HashCode'</target>
......@@ -657,16 +682,31 @@
<target state="translated">使用區域函式的運算式主體</target>
<note />
</trans-unit>
<trans-unit id="Use_named_argument">
<source>Use named argument</source>
<target state="new">Use named argument</target>
<note>"argument" is a programming term for a value passed to a function</note>
</trans-unit>
<trans-unit id="Value_assigned_here_is_never_used">
<source>Value assigned here is never used</source>
<target state="translated">這裡指派的值從未使用過</target>
<note />
</trans-unit>
<trans-unit id="Value_colon">
<source>Value:</source>
<target state="new">Value:</target>
<note />
</trans-unit>
<trans-unit id="Value_returned_by_invocation_is_implicitly_ignored">
<source>Value returned by invocation is implicitly ignored</source>
<target state="translated">明確地忽略引動過程傳回的值</target>
<note />
</trans-unit>
<trans-unit id="Value_to_inject_at_call_sites_colon">
<source>Value to inject at call sites:</source>
<target state="new">Value to inject at call sites:</target>
<note />
</trans-unit>
<trans-unit id="We_notice_you_suspended_0_Reset_keymappings_to_continue_to_navigate_and_refactor">
<source>We notice you suspended '{0}'. Reset keymappings to continue to navigate and refactor.</source>
<target state="translated">我們發現您暫止了 '{0}'。重設按鍵對應以繼續巡覽和重構。</target>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册